diff --git a/corpus/patterns-extended.txt b/corpus/patterns-extended.txt index aeae343..79a478f 100644 --- a/corpus/patterns-extended.txt +++ b/corpus/patterns-extended.txt @@ -27,7 +27,8 @@ match { (enum_pattern (enum_variant_pattern (enum_tag - (raw_enum_tag))))))))) + (raw_enum_tag)) + (pattern_fun)))))))) (term (uni_term (infix_expr @@ -174,8 +175,9 @@ match { (enum_variant_pattern (enum_tag (raw_enum_tag)) - (constant_pattern - (signed_num_literal)))))) + (pattern_fun + (constant_pattern + (signed_num_literal))))))) (last_field_pat (field_pattern (ident) @@ -184,10 +186,11 @@ match { (enum_variant_pattern (enum_tag (raw_enum_tag)) - (constant_pattern - (static_string - (chunk_literal_single - (str_literal))))))))))) + (pattern_fun + (constant_pattern + (static_string + (chunk_literal_single + (str_literal)))))))))))) (term (uni_term (infix_expr @@ -248,7 +251,8 @@ match { (enum_variant_pattern (enum_tag (raw_enum_tag)) - (ident)))) + (pattern_fun + (ident))))) (last_elem_pat (pattern (record_pattern @@ -550,19 +554,22 @@ match { (enum_variant_pattern (enum_tag (raw_enum_tag)) - (ident)))) + (pattern_fun + (ident))))) (pattern_or_branch (enum_pattern_parens (enum_variant_pattern (enum_tag (raw_enum_tag)) - (ident)))) + (pattern_fun + (ident))))) (pattern_or_branch (enum_pattern_parens (enum_variant_pattern (enum_tag (raw_enum_tag)) - (ident))))))) + (pattern_fun + (ident)))))))) (term (uni_term (infix_expr diff --git a/corpus/patterns.txt b/corpus/patterns.txt index 885d84a..b0c8233 100644 --- a/corpus/patterns.txt +++ b/corpus/patterns.txt @@ -15,11 +15,13 @@ let 'Foo ('Bar x) = 'Foo ('Bar std.array) in x (enum_variant_pattern (enum_tag (raw_enum_tag)) - (enum_pattern_parens - (enum_variant_pattern - (enum_tag - (raw_enum_tag)) - (ident)))))) + (pattern_fun + (enum_pattern_parens + (enum_variant_pattern + (enum_tag + (raw_enum_tag)) + (pattern_fun + (ident)))))))) (term (uni_term (infix_expr @@ -79,7 +81,8 @@ fun {x,y} {y,z} ('Foo e) 'Bar or 'Baz => x + y + z (enum_variant_pattern (enum_tag (raw_enum_tag)) - (ident)))) + (pattern_fun + (ident))))) (pattern_fun (enum_pattern_parens (enum_tag @@ -179,7 +182,8 @@ match { (enum_variant_pattern (enum_tag (raw_enum_tag)) - (ident)))))))) + (pattern_fun + (ident))))))))) (term (uni_term (infix_expr @@ -219,12 +223,13 @@ match { (enum_variant_pattern (enum_tag (raw_enum_tag)) - (record_pattern - (field_pattern - (ident)) - (last_field_pat + (pattern_fun + (record_pattern (field_pattern - (ident))))))))))) + (ident)) + (last_field_pat + (field_pattern + (ident)))))))))))) (term (uni_term (infix_expr diff --git a/grammar.js b/grammar.js index 283683a..fc197f2 100644 --- a/grammar.js +++ b/grammar.js @@ -277,9 +277,9 @@ module.exports = grammar({ // keyword used as an identifier in a pattern. This requires to either // update the scanner or to play with token precedence, with is left for // future work. - pattern: $ => patternF($, $.enum_pattern, $.or_pattern, $.ident), - pattern_fun: $ => patternF($, $.enum_pattern_parens, $.or_pattern_parens, $.ident), - pattern_or_branch: $ => pattern_dataF($, $.enum_pattern_parens, $.or_pattern_parens, $.ident_no_or), + pattern: $ => patternF($, $.enum_pattern, $.or_pattern), + pattern_fun: $ => patternF($, $.enum_pattern_parens, $.or_pattern_parens), + pattern_or_branch: $ => pattern_dataF($, $.enum_pattern_parens, $.or_pattern_parens), constant_pattern: $ => choice( $.signed_num_literal, @@ -311,7 +311,7 @@ module.exports = grammar({ enum_variant_pattern: $ => seq( field("tag", $.enum_tag), - field("pat", patternF($, $.enum_pattern_parens, $.or_pattern_parens)), + field("pat", $.pattern_fun), ), enum_pattern_unparens: $ => choice( diff --git a/src/grammar.json b/src/grammar.json index b8d1cef..8637364 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -1443,76 +1443,8 @@ "type": "FIELD", "name": "pat", "content": { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "FIELD", - "name": "alias", - "content": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "ident" - }, - { - "type": "STRING", - "value": "@" - } - ] - } - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "FIELD", - "name": "pat", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "record_pattern" - }, - { - "type": "SYMBOL", - "name": "array_pattern" - }, - { - "type": "SYMBOL", - "name": "constant_pattern" - }, - { - "type": "SYMBOL", - "name": "enum_pattern_parens" - }, - { - "type": "SYMBOL", - "name": "ident" - }, - { - "type": "STRING", - "value": "_" - }, - { - "type": "SYMBOL", - "name": "or_pattern_parens" - } - ] - } - } - ] - } - ] + "type": "SYMBOL", + "name": "pattern_fun" } } ] diff --git a/src/node-types.json b/src/node-types.json index ce5a431..05a06d5 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -478,50 +478,12 @@ "type": "enum_variant_pattern", "named": true, "fields": { - "alias": { - "multiple": true, - "required": false, - "types": [ - { - "type": "@", - "named": false - }, - { - "type": "ident", - "named": true - } - ] - }, "pat": { "multiple": false, "required": true, "types": [ { - "type": "_", - "named": false - }, - { - "type": "array_pattern", - "named": true - }, - { - "type": "constant_pattern", - "named": true - }, - { - "type": "enum_pattern_parens", - "named": true - }, - { - "type": "ident", - "named": true - }, - { - "type": "or_pattern_parens", - "named": true - }, - { - "type": "record_pattern", + "type": "pattern_fun", "named": true } ] diff --git a/src/parser.c b/src/parser.c index 9f2f4f8..89ff1e6 100644 --- a/src/parser.c +++ b/src/parser.c @@ -6,7 +6,7 @@ #endif #define LANGUAGE_VERSION 14 -#define STATE_COUNT 1148 +#define STATE_COUNT 1149 #define LARGE_STATE_COUNT 8 #define SYMBOL_COUNT 165 #define ALIAS_COUNT 0 @@ -14,7 +14,7 @@ #define EXTERNAL_TOKEN_COUNT 8 #define FIELD_COUNT 36 #define MAX_ALIAS_SEQUENCE_LENGTH 7 -#define PRODUCTION_ID_COUNT 65 +#define PRODUCTION_ID_COUNT 64 enum { sym_keyword = 1, @@ -1306,26 +1306,25 @@ static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [42] = {.index = 72, .length = 3}, [43] = {.index = 75, .length = 2}, [44] = {.index = 77, .length = 2}, - [45] = {.index = 79, .length = 4}, - [46] = {.index = 83, .length = 2}, - [47] = {.index = 85, .length = 2}, - [48] = {.index = 87, .length = 1}, - [49] = {.index = 88, .length = 3}, - [50] = {.index = 91, .length = 4}, - [51] = {.index = 95, .length = 3}, - [52] = {.index = 98, .length = 3}, - [53] = {.index = 101, .length = 3}, - [54] = {.index = 104, .length = 2}, + [45] = {.index = 79, .length = 2}, + [46] = {.index = 81, .length = 2}, + [47] = {.index = 83, .length = 1}, + [48] = {.index = 84, .length = 3}, + [49] = {.index = 87, .length = 4}, + [50] = {.index = 91, .length = 3}, + [51] = {.index = 94, .length = 3}, + [52] = {.index = 97, .length = 3}, + [53] = {.index = 100, .length = 2}, + [54] = {.index = 102, .length = 4}, [55] = {.index = 106, .length = 4}, - [56] = {.index = 110, .length = 4}, - [57] = {.index = 114, .length = 3}, - [58] = {.index = 117, .length = 3}, - [59] = {.index = 120, .length = 3}, - [60] = {.index = 123, .length = 4}, - [61] = {.index = 127, .length = 3}, - [62] = {.index = 130, .length = 4}, - [63] = {.index = 134, .length = 3}, - [64] = {.index = 137, .length = 5}, + [56] = {.index = 110, .length = 3}, + [57] = {.index = 113, .length = 3}, + [58] = {.index = 116, .length = 3}, + [59] = {.index = 119, .length = 4}, + [60] = {.index = 123, .length = 3}, + [61] = {.index = 126, .length = 4}, + [62] = {.index = 130, .length = 3}, + [63] = {.index = 133, .length = 5}, }; static const TSFieldMapEntry ts_field_map_entries[] = { @@ -1453,83 +1452,78 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_pat, 1}, {field_t1, 3}, [79] = - {field_alias, 1}, - {field_alias, 2}, - {field_pat, 3}, - {field_tag, 0}, - [83] = {field_body, 2}, {field_pat, 0}, - [85] = + [81] = {field_cases, 2}, {field_cases, 3}, - [87] = + [83] = {field_types, 3}, - [88] = + [84] = {field_last, 1}, {field_tail, 2}, {field_tail, 3}, - [91] = + [87] = {field_ann, 1}, {field_path, 0}, {field_t, 2}, {field_t, 3}, - [95] = + [91] = {field_fields, 1}, {field_tail, 2}, {field_tail, 3}, - [98] = + [94] = {field_terms, 1}, {field_terms, 2}, {field_terms, 3}, - [101] = + [97] = {field_rows, 1}, {field_tail, 2}, {field_tail, 3}, - [104] = + [100] = {field_pat, 2}, {field_t1, 4}, - [106] = + [102] = {field_anns, 1}, {field_id, 0}, {field_pat, 2}, {field_pat, 3}, - [110] = + [106] = {field_default, 1}, {field_id, 0}, {field_pat, 2}, {field_pat, 3}, - [114] = + [110] = {field_meta, 2}, {field_pat, 1}, {field_t1, 4}, - [117] = + [113] = {field_body, 3}, {field_guard, 1}, {field_pat, 0}, - [120] = + [116] = {field_cases, 2}, {field_cases, 3}, {field_cases, 4}, - [123] = + [119] = {field_fields, 1}, {field_last, 2}, {field_tail, 3}, {field_tail, 4}, - [127] = + [123] = {field_cond, 1}, {field_t1, 3}, {field_t2, 5}, - [130] = + [126] = {field_rows, 1}, {field_rows, 2}, {field_tail, 3}, {field_tail, 4}, - [134] = + [130] = {field_meta, 3}, {field_pat, 2}, {field_t1, 5}, - [137] = + [133] = {field_anns, 1}, {field_default, 2}, {field_id, 0}, @@ -1569,65 +1563,65 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [20] = 16, [21] = 17, [22] = 17, - [23] = 16, + [23] = 17, [24] = 16, [25] = 16, - [26] = 17, + [26] = 16, [27] = 17, [28] = 28, [29] = 29, [30] = 30, [31] = 31, - [32] = 32, + [32] = 30, [33] = 33, - [34] = 33, - [35] = 31, - [36] = 36, + [34] = 34, + [35] = 34, + [36] = 30, [37] = 28, - [38] = 36, + [38] = 38, [39] = 39, - [40] = 31, - [41] = 41, + [40] = 30, + [41] = 38, [42] = 42, - [43] = 31, + [43] = 38, [44] = 44, - [45] = 36, - [46] = 36, - [47] = 44, - [48] = 48, - [49] = 42, + [45] = 45, + [46] = 38, + [47] = 47, + [48] = 30, + [49] = 49, [50] = 50, - [51] = 51, + [51] = 50, [52] = 52, - [53] = 36, - [54] = 44, - [55] = 31, + [53] = 38, + [54] = 42, + [55] = 50, [56] = 42, - [57] = 33, - [58] = 36, - [59] = 44, + [57] = 34, + [58] = 38, + [59] = 50, [60] = 42, - [61] = 33, + [61] = 30, [62] = 42, - [63] = 63, - [64] = 33, + [63] = 42, + [64] = 64, [65] = 65, - [66] = 44, - [67] = 33, - [68] = 42, - [69] = 31, - [70] = 44, - [71] = 71, + [66] = 34, + [67] = 34, + [68] = 34, + [69] = 50, + [70] = 50, + [71] = 8, [72] = 8, - [73] = 71, - [74] = 71, - [75] = 8, + [73] = 73, + [74] = 73, + [75] = 73, [76] = 8, - [77] = 71, - [78] = 8, - [79] = 71, + [77] = 73, + [78] = 73, + [79] = 73, [80] = 8, - [81] = 71, + [81] = 8, [82] = 9, [83] = 9, [84] = 9, @@ -1675,30 +1669,30 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [126] = 126, [127] = 127, [128] = 128, - [129] = 129, - [130] = 130, - [131] = 128, + [129] = 128, + [130] = 127, + [131] = 131, [132] = 127, - [133] = 133, + [133] = 128, [134] = 134, - [135] = 127, + [135] = 131, [136] = 136, - [137] = 130, - [138] = 128, - [139] = 128, + [137] = 128, + [138] = 127, + [139] = 127, [140] = 140, - [141] = 127, - [142] = 127, - [143] = 143, + [141] = 131, + [142] = 142, + [143] = 127, [144] = 128, - [145] = 127, - [146] = 128, - [147] = 130, - [148] = 130, + [145] = 145, + [146] = 131, + [147] = 131, + [148] = 128, [149] = 149, - [150] = 130, + [150] = 150, [151] = 151, - [152] = 130, + [152] = 131, [153] = 153, [154] = 154, [155] = 155, @@ -1712,299 +1706,299 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [163] = 163, [164] = 164, [165] = 165, - [166] = 166, + [166] = 161, [167] = 155, - [168] = 165, - [169] = 155, - [170] = 163, - [171] = 171, - [172] = 172, - [173] = 171, - [174] = 166, + [168] = 168, + [169] = 165, + [170] = 170, + [171] = 163, + [172] = 155, + [173] = 173, + [174] = 168, [175] = 164, [176] = 157, [177] = 160, [178] = 161, - [179] = 172, - [180] = 166, - [181] = 164, - [182] = 157, - [183] = 160, - [184] = 161, - [185] = 156, - [186] = 172, - [187] = 163, - [188] = 171, - [189] = 155, - [190] = 165, - [191] = 155, - [192] = 171, + [179] = 170, + [180] = 173, + [181] = 168, + [182] = 164, + [183] = 157, + [184] = 160, + [185] = 161, + [186] = 156, + [187] = 173, + [188] = 163, + [189] = 170, + [190] = 155, + [191] = 165, + [192] = 155, [193] = 160, [194] = 157, [195] = 164, - [196] = 166, - [197] = 172, - [198] = 171, + [196] = 168, + [197] = 173, + [198] = 170, [199] = 155, [200] = 165, - [201] = 172, - [202] = 161, - [203] = 160, - [204] = 157, + [201] = 170, + [202] = 173, + [203] = 168, + [204] = 161, [205] = 163, - [206] = 164, - [207] = 163, - [208] = 166, - [209] = 172, - [210] = 171, - [211] = 165, - [212] = 166, + [206] = 160, + [207] = 157, + [208] = 163, + [209] = 164, + [210] = 168, + [211] = 173, + [212] = 170, [213] = 165, [214] = 164, - [215] = 157, - [216] = 160, - [217] = 156, - [218] = 161, - [219] = 163, - [220] = 161, - [221] = 97, - [222] = 107, - [223] = 122, - [224] = 91, - [225] = 123, - [226] = 105, - [227] = 104, - [228] = 124, - [229] = 114, + [215] = 165, + [216] = 157, + [217] = 160, + [218] = 156, + [219] = 161, + [220] = 163, + [221] = 124, + [222] = 101, + [223] = 120, + [224] = 101, + [225] = 97, + [226] = 104, + [227] = 103, + [228] = 122, + [229] = 113, [230] = 93, - [231] = 100, - [232] = 91, - [233] = 122, - [234] = 126, - [235] = 120, - [236] = 88, - [237] = 112, - [238] = 106, - [239] = 103, - [240] = 99, - [241] = 111, - [242] = 121, - [243] = 101, - [244] = 116, - [245] = 89, - [246] = 90, - [247] = 113, + [231] = 99, + [232] = 120, + [233] = 121, + [234] = 123, + [235] = 126, + [236] = 95, + [237] = 115, + [238] = 107, + [239] = 106, + [240] = 98, + [241] = 110, + [242] = 100, + [243] = 105, + [244] = 89, + [245] = 90, + [246] = 91, + [247] = 117, [248] = 92, - [249] = 115, - [250] = 96, - [251] = 98, - [252] = 95, + [249] = 102, + [250] = 116, + [251] = 87, + [252] = 96, [253] = 94, - [254] = 95, - [255] = 93, + [254] = 93, + [255] = 87, [256] = 94, - [257] = 99, - [258] = 100, - [259] = 114, - [260] = 102, - [261] = 87, - [262] = 117, - [263] = 124, - [264] = 98, - [265] = 96, - [266] = 119, - [267] = 104, - [268] = 125, - [269] = 126, - [270] = 109, - [271] = 105, - [272] = 108, - [273] = 107, - [274] = 96, - [275] = 105, + [257] = 113, + [258] = 98, + [259] = 99, + [260] = 88, + [261] = 122, + [262] = 114, + [263] = 102, + [264] = 118, + [265] = 103, + [266] = 96, + [267] = 125, + [268] = 109, + [269] = 104, + [270] = 112, + [271] = 108, + [272] = 112, + [273] = 101, + [274] = 116, + [275] = 123, [276] = 104, - [277] = 108, - [278] = 124, - [279] = 114, + [277] = 103, + [278] = 122, + [279] = 113, [280] = 93, - [281] = 115, - [282] = 118, - [283] = 91, - [284] = 122, - [285] = 126, - [286] = 120, - [287] = 88, - [288] = 112, - [289] = 109, - [290] = 106, - [291] = 103, - [292] = 120, - [293] = 110, - [294] = 118, - [295] = 125, - [296] = 111, - [297] = 107, - [298] = 108, - [299] = 110, + [281] = 102, + [282] = 119, + [283] = 120, + [284] = 121, + [285] = 123, + [286] = 126, + [287] = 95, + [288] = 115, + [289] = 108, + [290] = 111, + [291] = 109, + [292] = 107, + [293] = 106, + [294] = 101, + [295] = 112, + [296] = 119, + [297] = 108, + [298] = 126, + [299] = 125, [300] = 109, - [301] = 88, - [302] = 112, - [303] = 125, - [304] = 119, - [305] = 119, - [306] = 121, - [307] = 117, - [308] = 87, - [309] = 106, - [310] = 102, - [311] = 100, + [301] = 95, + [302] = 125, + [303] = 110, + [304] = 111, + [305] = 115, + [306] = 100, + [307] = 118, + [308] = 114, + [309] = 88, + [310] = 107, + [311] = 97, [312] = 99, - [313] = 113, - [314] = 123, - [315] = 103, + [313] = 118, + [314] = 98, + [315] = 114, [316] = 117, - [317] = 110, - [318] = 87, - [319] = 95, - [320] = 97, - [321] = 102, - [322] = 101, - [323] = 116, - [324] = 100, - [325] = 99, + [317] = 106, + [318] = 88, + [319] = 111, + [320] = 87, + [321] = 99, + [322] = 98, + [323] = 124, + [324] = 94, + [325] = 105, [326] = 89, - [327] = 118, - [328] = 90, - [329] = 92, - [330] = 94, - [331] = 123, - [332] = 98, - [333] = 95, - [334] = 94, - [335] = 92, - [336] = 106, - [337] = 115, - [338] = 118, + [327] = 119, + [328] = 92, + [329] = 96, + [330] = 87, + [331] = 94, + [332] = 90, + [333] = 116, + [334] = 107, + [335] = 91, + [336] = 97, + [337] = 92, + [338] = 119, [339] = 92, - [340] = 113, - [341] = 90, - [342] = 89, - [343] = 116, + [340] = 117, + [341] = 91, + [342] = 90, + [343] = 89, [344] = 94, - [345] = 95, - [346] = 101, - [347] = 110, - [348] = 92, - [349] = 111, - [350] = 90, - [351] = 97, - [352] = 121, - [353] = 113, - [354] = 99, - [355] = 100, - [356] = 123, - [357] = 102, - [358] = 111, - [359] = 89, - [360] = 121, - [361] = 116, - [362] = 118, - [363] = 101, - [364] = 97, - [365] = 103, - [366] = 102, - [367] = 110, - [368] = 112, - [369] = 111, - [370] = 88, - [371] = 121, - [372] = 120, - [373] = 126, - [374] = 122, - [375] = 91, - [376] = 97, - [377] = 90, - [378] = 101, - [379] = 115, + [345] = 87, + [346] = 105, + [347] = 92, + [348] = 111, + [349] = 91, + [350] = 110, + [351] = 124, + [352] = 100, + [353] = 117, + [354] = 98, + [355] = 99, + [356] = 97, + [357] = 88, + [358] = 90, + [359] = 110, + [360] = 89, + [361] = 100, + [362] = 105, + [363] = 124, + [364] = 119, + [365] = 106, + [366] = 88, + [367] = 111, + [368] = 115, + [369] = 110, + [370] = 95, + [371] = 100, + [372] = 126, + [373] = 123, + [374] = 121, + [375] = 120, + [376] = 124, + [377] = 91, + [378] = 105, + [379] = 102, [380] = 93, - [381] = 116, - [382] = 114, - [383] = 124, - [384] = 104, - [385] = 105, - [386] = 96, - [387] = 103, - [388] = 106, - [389] = 89, - [390] = 112, - [391] = 88, - [392] = 120, - [393] = 126, - [394] = 122, - [395] = 91, - [396] = 115, + [381] = 89, + [382] = 113, + [383] = 122, + [384] = 103, + [385] = 104, + [386] = 116, + [387] = 106, + [388] = 107, + [389] = 90, + [390] = 115, + [391] = 95, + [392] = 126, + [393] = 123, + [394] = 121, + [395] = 120, + [396] = 102, [397] = 93, - [398] = 114, - [399] = 124, - [400] = 104, - [401] = 105, - [402] = 96, - [403] = 107, - [404] = 108, - [405] = 109, - [406] = 98, - [407] = 125, - [408] = 119, - [409] = 113, - [410] = 117, - [411] = 87, - [412] = 107, - [413] = 108, - [414] = 109, - [415] = 125, - [416] = 119, - [417] = 98, - [418] = 117, - [419] = 87, - [420] = 123, + [398] = 113, + [399] = 122, + [400] = 103, + [401] = 104, + [402] = 116, + [403] = 121, + [404] = 112, + [405] = 108, + [406] = 96, + [407] = 109, + [408] = 125, + [409] = 117, + [410] = 118, + [411] = 114, + [412] = 101, + [413] = 112, + [414] = 108, + [415] = 109, + [416] = 125, + [417] = 96, + [418] = 118, + [419] = 114, + [420] = 97, [421] = 151, - [422] = 149, - [423] = 143, - [424] = 143, + [422] = 150, + [423] = 145, + [424] = 145, [425] = 136, [426] = 151, [427] = 136, - [428] = 129, - [429] = 133, + [428] = 140, + [429] = 149, [430] = 151, - [431] = 140, - [432] = 133, + [431] = 142, + [432] = 150, [433] = 149, - [434] = 140, - [435] = 129, - [436] = 133, - [437] = 140, - [438] = 129, + [434] = 142, + [435] = 140, + [436] = 149, + [437] = 142, + [438] = 140, [439] = 149, - [440] = 133, + [440] = 150, [441] = 134, [442] = 134, [443] = 134, [444] = 134, - [445] = 140, - [446] = 140, + [445] = 142, + [446] = 142, [447] = 151, - [448] = 143, - [449] = 143, - [450] = 129, + [448] = 145, + [449] = 145, + [450] = 140, [451] = 136, - [452] = 143, + [452] = 145, [453] = 134, - [454] = 149, + [454] = 150, [455] = 136, - [456] = 149, - [457] = 133, - [458] = 129, + [456] = 150, + [457] = 149, + [458] = 140, [459] = 151, [460] = 136, [461] = 461, @@ -2025,103 +2019,103 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [476] = 474, [477] = 475, [478] = 478, - [479] = 461, - [480] = 480, - [481] = 461, - [482] = 482, - [483] = 480, + [479] = 478, + [480] = 461, + [481] = 481, + [482] = 478, + [483] = 483, [484] = 461, - [485] = 482, - [486] = 480, - [487] = 480, + [485] = 481, + [486] = 478, + [487] = 481, [488] = 461, - [489] = 480, - [490] = 482, - [491] = 482, - [492] = 480, + [489] = 478, + [490] = 481, + [491] = 461, + [492] = 478, [493] = 461, - [494] = 482, - [495] = 482, + [494] = 481, + [495] = 481, [496] = 496, [497] = 496, - [498] = 496, - [499] = 499, - [500] = 499, + [498] = 498, + [499] = 496, + [500] = 498, [501] = 496, - [502] = 496, - [503] = 499, - [504] = 499, - [505] = 499, - [506] = 496, - [507] = 499, + [502] = 498, + [503] = 496, + [504] = 498, + [505] = 496, + [506] = 498, + [507] = 498, [508] = 508, [509] = 509, - [510] = 470, - [511] = 466, - [512] = 462, - [513] = 471, - [514] = 472, - [515] = 468, - [516] = 473, - [517] = 463, - [518] = 466, - [519] = 464, - [520] = 465, - [521] = 463, - [522] = 468, - [523] = 469, - [524] = 470, - [525] = 463, - [526] = 466, - [527] = 465, - [528] = 467, - [529] = 469, - [530] = 466, - [531] = 467, - [532] = 464, - [533] = 467, + [510] = 510, + [511] = 469, + [512] = 472, + [513] = 465, + [514] = 466, + [515] = 464, + [516] = 463, + [517] = 465, + [518] = 467, + [519] = 463, + [520] = 466, + [521] = 464, + [522] = 465, + [523] = 467, + [524] = 464, + [525] = 469, + [526] = 462, + [527] = 470, + [528] = 471, + [529] = 472, + [530] = 473, + [531] = 464, + [532] = 466, + [533] = 533, [534] = 468, - [535] = 470, - [536] = 471, - [537] = 469, - [538] = 472, - [539] = 473, - [540] = 473, - [541] = 472, - [542] = 471, - [543] = 470, - [544] = 462, - [545] = 462, - [546] = 469, - [547] = 468, - [548] = 471, - [549] = 467, - [550] = 550, - [551] = 466, - [552] = 465, - [553] = 472, - [554] = 473, + [535] = 465, + [536] = 463, + [537] = 463, + [538] = 467, + [539] = 468, + [540] = 468, + [541] = 462, + [542] = 469, + [543] = 462, + [544] = 470, + [545] = 471, + [546] = 473, + [547] = 470, + [548] = 469, + [549] = 466, + [550] = 471, + [551] = 470, + [552] = 467, + [553] = 462, + [554] = 468, [555] = 555, - [556] = 463, - [557] = 473, - [558] = 472, - [559] = 471, - [560] = 462, - [561] = 470, - [562] = 469, - [563] = 468, + [556] = 467, + [557] = 466, + [558] = 468, + [559] = 465, + [560] = 471, + [561] = 472, + [562] = 472, + [563] = 473, [564] = 564, - [565] = 467, + [565] = 473, [566] = 566, - [567] = 465, - [568] = 464, + [567] = 469, + [568] = 473, [569] = 463, - [570] = 462, - [571] = 464, - [572] = 572, - [573] = 464, - [574] = 574, - [575] = 465, + [570] = 464, + [571] = 472, + [572] = 471, + [573] = 470, + [574] = 462, + [575] = 575, [576] = 576, [577] = 577, [578] = 578, @@ -2130,25 +2124,25 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [581] = 580, [582] = 582, [583] = 583, - [584] = 583, - [585] = 585, - [586] = 585, - [587] = 587, - [588] = 585, - [589] = 589, - [590] = 585, - [591] = 585, - [592] = 564, - [593] = 585, + [584] = 509, + [585] = 583, + [586] = 586, + [587] = 586, + [588] = 586, + [589] = 586, + [590] = 586, + [591] = 591, + [592] = 586, + [593] = 593, [594] = 594, [595] = 595, - [596] = 594, + [596] = 596, [597] = 594, - [598] = 594, - [599] = 599, + [598] = 598, + [599] = 594, [600] = 600, [601] = 601, - [602] = 602, + [602] = 594, [603] = 594, [604] = 604, [605] = 594, @@ -2158,542 +2152,543 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [609] = 609, [610] = 610, [611] = 611, - [612] = 612, - [613] = 118, - [614] = 123, - [615] = 110, - [616] = 140, - [617] = 129, - [618] = 123, - [619] = 118, - [620] = 110, + [612] = 611, + [613] = 97, + [614] = 111, + [615] = 119, + [616] = 111, + [617] = 142, + [618] = 97, + [619] = 119, + [620] = 140, [621] = 621, - [622] = 621, - [623] = 621, - [624] = 624, - [625] = 621, - [626] = 621, - [627] = 627, - [628] = 621, + [622] = 622, + [623] = 623, + [624] = 623, + [625] = 623, + [626] = 623, + [627] = 623, + [628] = 623, [629] = 629, [630] = 630, - [631] = 631, + [631] = 630, [632] = 632, - [633] = 633, + [633] = 140, [634] = 634, - [635] = 635, - [636] = 636, + [635] = 630, + [636] = 630, [637] = 637, [638] = 638, - [639] = 638, + [639] = 639, [640] = 640, [641] = 641, - [642] = 638, + [642] = 642, [643] = 643, - [644] = 113, - [645] = 645, - [646] = 638, - [647] = 110, + [644] = 644, + [645] = 119, + [646] = 646, + [647] = 647, [648] = 648, - [649] = 118, - [650] = 123, - [651] = 651, + [649] = 649, + [650] = 650, + [651] = 117, [652] = 652, [653] = 653, - [654] = 638, - [655] = 655, - [656] = 140, - [657] = 129, - [658] = 658, - [659] = 659, - [660] = 660, - [661] = 638, + [654] = 654, + [655] = 111, + [656] = 97, + [657] = 657, + [658] = 142, + [659] = 630, + [660] = 630, + [661] = 661, [662] = 662, [663] = 663, - [664] = 123, - [665] = 110, + [664] = 119, + [665] = 111, [666] = 666, [667] = 667, - [668] = 118, + [668] = 97, [669] = 669, [670] = 670, [671] = 671, [672] = 672, [673] = 673, [674] = 674, - [675] = 631, + [675] = 657, [676] = 676, - [677] = 637, - [678] = 643, - [679] = 679, - [680] = 676, - [681] = 681, - [682] = 113, - [683] = 683, - [684] = 655, - [685] = 629, - [686] = 683, - [687] = 676, - [688] = 676, - [689] = 636, - [690] = 683, - [691] = 691, - [692] = 683, - [693] = 630, - [694] = 683, - [695] = 676, - [696] = 651, - [697] = 659, - [698] = 698, - [699] = 699, - [700] = 683, - [701] = 676, - [702] = 652, - [703] = 683, - [704] = 676, - [705] = 658, - [706] = 648, + [677] = 677, + [678] = 649, + [679] = 653, + [680] = 680, + [681] = 646, + [682] = 680, + [683] = 648, + [684] = 652, + [685] = 677, + [686] = 638, + [687] = 680, + [688] = 680, + [689] = 677, + [690] = 634, + [691] = 661, + [692] = 692, + [693] = 677, + [694] = 117, + [695] = 654, + [696] = 677, + [697] = 697, + [698] = 677, + [699] = 680, + [700] = 700, + [701] = 677, + [702] = 641, + [703] = 680, + [704] = 647, + [705] = 680, + [706] = 621, [707] = 707, - [708] = 708, - [709] = 707, + [708] = 707, + [709] = 709, [710] = 707, [711] = 711, - [712] = 712, - [713] = 707, - [714] = 711, + [712] = 632, + [713] = 713, + [714] = 709, [715] = 715, - [716] = 711, - [717] = 707, - [718] = 711, + [716] = 716, + [717] = 709, + [718] = 718, [719] = 719, - [720] = 711, + [720] = 707, [721] = 707, - [722] = 711, - [723] = 723, - [724] = 724, - [725] = 711, - [726] = 726, - [727] = 707, - [728] = 728, - [729] = 729, + [722] = 709, + [723] = 707, + [724] = 707, + [725] = 709, + [726] = 709, + [727] = 727, + [728] = 629, + [729] = 709, [730] = 730, [731] = 731, - [732] = 730, - [733] = 733, + [732] = 732, + [733] = 732, [734] = 734, - [735] = 733, - [736] = 733, - [737] = 737, - [738] = 738, + [735] = 735, + [736] = 730, + [737] = 730, + [738] = 732, [739] = 739, - [740] = 730, - [741] = 733, + [740] = 740, + [741] = 730, [742] = 730, - [743] = 743, - [744] = 733, - [745] = 730, - [746] = 733, - [747] = 733, - [748] = 748, - [749] = 733, + [743] = 732, + [744] = 730, + [745] = 732, + [746] = 746, + [747] = 747, + [748] = 732, + [749] = 732, [750] = 730, - [751] = 733, - [752] = 730, + [751] = 751, + [752] = 732, [753] = 753, - [754] = 730, + [754] = 732, [755] = 730, - [756] = 756, - [757] = 757, + [756] = 730, + [757] = 110, [758] = 758, [759] = 759, - [760] = 756, - [761] = 759, - [762] = 759, - [763] = 756, - [764] = 758, - [765] = 757, - [766] = 757, - [767] = 756, - [768] = 757, + [760] = 760, + [761] = 761, + [762] = 762, + [763] = 760, + [764] = 761, + [765] = 758, + [766] = 759, + [767] = 758, + [768] = 759, [769] = 758, - [770] = 759, - [771] = 756, - [772] = 757, - [773] = 773, - [774] = 758, - [775] = 756, - [776] = 757, - [777] = 758, - [778] = 98, + [770] = 116, + [771] = 758, + [772] = 759, + [773] = 760, + [774] = 774, + [775] = 760, + [776] = 96, + [777] = 761, + [778] = 759, [779] = 759, - [780] = 758, - [781] = 115, - [782] = 759, + [780] = 761, + [781] = 761, + [782] = 761, [783] = 759, - [784] = 111, - [785] = 756, - [786] = 759, - [787] = 96, - [788] = 756, - [789] = 756, + [784] = 758, + [785] = 760, + [786] = 760, + [787] = 759, + [788] = 761, + [789] = 789, [790] = 758, - [791] = 758, - [792] = 121, - [793] = 793, - [794] = 757, - [795] = 757, - [796] = 758, - [797] = 759, - [798] = 757, - [799] = 799, - [800] = 759, - [801] = 801, - [802] = 756, - [803] = 803, + [791] = 761, + [792] = 760, + [793] = 758, + [794] = 760, + [795] = 758, + [796] = 100, + [797] = 102, + [798] = 798, + [799] = 760, + [800] = 760, + [801] = 761, + [802] = 758, + [803] = 759, [804] = 804, [805] = 805, - [806] = 804, - [807] = 804, - [808] = 804, - [809] = 809, + [806] = 806, + [807] = 807, + [808] = 805, + [809] = 805, [810] = 810, - [811] = 810, - [812] = 812, - [813] = 810, - [814] = 810, + [811] = 811, + [812] = 805, + [813] = 805, + [814] = 811, [815] = 815, - [816] = 810, - [817] = 810, + [816] = 815, + [817] = 815, [818] = 818, - [819] = 803, + [819] = 815, [820] = 820, - [821] = 804, - [822] = 809, - [823] = 804, - [824] = 824, - [825] = 666, - [826] = 666, - [827] = 827, - [828] = 820, - [829] = 812, - [830] = 666, - [831] = 667, - [832] = 805, - [833] = 667, - [834] = 812, - [835] = 667, - [836] = 836, - [837] = 666, - [838] = 667, + [821] = 807, + [822] = 822, + [823] = 815, + [824] = 805, + [825] = 815, + [826] = 826, + [827] = 667, + [828] = 666, + [829] = 804, + [830] = 830, + [831] = 666, + [832] = 804, + [833] = 833, + [834] = 667, + [835] = 666, + [836] = 667, + [837] = 818, + [838] = 666, [839] = 666, - [840] = 667, - [841] = 841, - [842] = 842, + [840] = 810, + [841] = 667, + [842] = 667, [843] = 843, - [844] = 842, - [845] = 843, - [846] = 842, - [847] = 843, - [848] = 842, + [844] = 844, + [845] = 844, + [846] = 846, + [847] = 844, + [848] = 846, [849] = 849, - [850] = 812, - [851] = 842, - [852] = 842, - [853] = 843, - [854] = 843, - [855] = 827, - [856] = 843, - [857] = 857, - [858] = 858, - [859] = 748, - [860] = 860, - [861] = 861, + [850] = 844, + [851] = 844, + [852] = 846, + [853] = 853, + [854] = 804, + [855] = 830, + [856] = 846, + [857] = 846, + [858] = 846, + [859] = 731, + [860] = 844, + [861] = 140, [862] = 862, [863] = 863, - [864] = 861, + [864] = 864, [865] = 865, - [866] = 861, + [866] = 866, [867] = 867, [868] = 868, [869] = 869, [870] = 870, - [871] = 871, - [872] = 634, - [873] = 869, - [874] = 874, - [875] = 645, - [876] = 641, - [877] = 865, - [878] = 878, + [871] = 869, + [872] = 870, + [873] = 873, + [874] = 644, + [875] = 643, + [876] = 637, + [877] = 867, + [878] = 642, [879] = 879, - [880] = 863, - [881] = 874, - [882] = 862, - [883] = 635, - [884] = 640, - [885] = 885, - [886] = 886, - [887] = 870, - [888] = 868, - [889] = 878, - [890] = 874, - [891] = 885, - [892] = 863, - [893] = 861, - [894] = 894, - [895] = 885, - [896] = 869, - [897] = 868, - [898] = 874, - [899] = 865, - [900] = 878, - [901] = 878, - [902] = 870, - [903] = 632, + [880] = 880, + [881] = 862, + [882] = 882, + [883] = 883, + [884] = 884, + [885] = 865, + [886] = 873, + [887] = 868, + [888] = 880, + [889] = 873, + [890] = 865, + [891] = 650, + [892] = 868, + [893] = 880, + [894] = 879, + [895] = 862, + [896] = 896, + [897] = 897, + [898] = 883, + [899] = 870, + [900] = 867, + [901] = 639, + [902] = 869, + [903] = 880, [904] = 865, - [905] = 140, - [906] = 863, - [907] = 862, - [908] = 868, + [905] = 869, + [906] = 867, + [907] = 870, + [908] = 864, [909] = 909, - [910] = 869, - [911] = 885, - [912] = 912, - [913] = 861, - [914] = 870, - [915] = 862, - [916] = 878, - [917] = 865, - [918] = 863, - [919] = 862, + [910] = 873, + [911] = 868, + [912] = 883, + [913] = 640, + [914] = 879, + [915] = 865, + [916] = 868, + [917] = 142, + [918] = 879, + [919] = 883, [920] = 920, - [921] = 874, - [922] = 874, - [923] = 868, + [921] = 921, + [922] = 865, + [923] = 867, [924] = 924, - [925] = 925, - [926] = 861, - [927] = 862, - [928] = 129, + [925] = 862, + [926] = 868, + [927] = 867, + [928] = 862, [929] = 870, - [930] = 930, - [931] = 931, - [932] = 863, - [933] = 869, - [934] = 868, - [935] = 878, - [936] = 869, - [937] = 860, - [938] = 865, - [939] = 870, - [940] = 633, - [941] = 885, - [942] = 885, + [930] = 883, + [931] = 869, + [932] = 880, + [933] = 873, + [934] = 879, + [935] = 873, + [936] = 879, + [937] = 862, + [938] = 883, + [939] = 880, + [940] = 869, + [941] = 870, + [942] = 942, [943] = 943, [944] = 944, [945] = 945, [946] = 946, - [947] = 944, + [947] = 946, [948] = 948, - [949] = 949, + [949] = 946, [950] = 950, - [951] = 951, - [952] = 950, + [951] = 944, + [952] = 952, [953] = 953, [954] = 954, [955] = 955, - [956] = 953, - [957] = 944, - [958] = 948, - [959] = 953, - [960] = 948, - [961] = 944, - [962] = 953, - [963] = 948, - [964] = 953, - [965] = 965, - [966] = 950, - [967] = 953, + [956] = 956, + [957] = 952, + [958] = 952, + [959] = 959, + [960] = 960, + [961] = 952, + [962] = 962, + [963] = 944, + [964] = 946, + [965] = 944, + [966] = 966, + [967] = 946, [968] = 968, - [969] = 950, - [970] = 948, - [971] = 971, - [972] = 950, + [969] = 969, + [970] = 953, + [971] = 953, + [972] = 972, [973] = 973, - [974] = 974, + [974] = 953, [975] = 975, - [976] = 950, - [977] = 977, - [978] = 978, + [976] = 953, + [977] = 953, + [978] = 972, [979] = 944, - [980] = 948, - [981] = 944, - [982] = 945, - [983] = 983, + [980] = 946, + [981] = 952, + [982] = 944, + [983] = 952, [984] = 984, [985] = 985, [986] = 986, [987] = 987, - [988] = 984, + [988] = 988, [989] = 989, - [990] = 990, + [990] = 669, [991] = 991, [992] = 992, - [993] = 993, + [993] = 984, [994] = 994, [995] = 995, - [996] = 996, - [997] = 997, + [996] = 670, + [997] = 989, [998] = 998, - [999] = 674, - [1000] = 672, + [999] = 991, + [1000] = 1000, [1001] = 1001, [1002] = 1002, [1003] = 1003, [1004] = 1004, - [1005] = 1005, + [1005] = 992, [1006] = 1006, - [1007] = 986, - [1008] = 984, - [1009] = 1009, - [1010] = 995, - [1011] = 1011, - [1012] = 996, - [1013] = 991, - [1014] = 992, - [1015] = 993, - [1016] = 669, - [1017] = 995, - [1018] = 986, - [1019] = 996, - [1020] = 992, - [1021] = 1006, - [1022] = 1004, - [1023] = 998, - [1024] = 1003, - [1025] = 1002, - [1026] = 1001, - [1027] = 1001, - [1028] = 1002, - [1029] = 1003, - [1030] = 1004, - [1031] = 1031, - [1032] = 1006, - [1033] = 1033, - [1034] = 986, - [1035] = 984, - [1036] = 1036, - [1037] = 1037, - [1038] = 998, + [1007] = 991, + [1008] = 985, + [1009] = 986, + [1010] = 1003, + [1011] = 1004, + [1012] = 992, + [1013] = 1006, + [1014] = 987, + [1015] = 998, + [1016] = 1000, + [1017] = 1017, + [1018] = 984, + [1019] = 1019, + [1020] = 995, + [1021] = 1021, + [1022] = 995, + [1023] = 984, + [1024] = 1000, + [1025] = 1025, + [1026] = 1006, + [1027] = 1004, + [1028] = 998, + [1029] = 985, + [1030] = 986, + [1031] = 987, + [1032] = 1003, + [1033] = 989, + [1034] = 1034, + [1035] = 991, + [1036] = 992, + [1037] = 989, + [1038] = 987, [1039] = 1039, - [1040] = 996, - [1041] = 995, - [1042] = 1042, - [1043] = 993, - [1044] = 998, - [1045] = 992, - [1046] = 991, - [1047] = 993, - [1048] = 1002, - [1049] = 1049, + [1040] = 992, + [1041] = 991, + [1042] = 986, + [1043] = 989, + [1044] = 987, + [1045] = 986, + [1046] = 985, + [1047] = 998, + [1048] = 985, + [1049] = 998, [1050] = 1050, - [1051] = 1051, - [1052] = 1052, - [1053] = 1053, - [1054] = 991, - [1055] = 1055, - [1056] = 1056, - [1057] = 984, - [1058] = 986, - [1059] = 1006, - [1060] = 604, - [1061] = 1061, - [1062] = 1004, - [1063] = 1003, - [1064] = 1064, - [1065] = 1002, - [1066] = 1001, - [1067] = 606, - [1068] = 608, - [1069] = 1069, - [1070] = 609, - [1071] = 601, - [1072] = 600, - [1073] = 599, - [1074] = 1050, - [1075] = 607, + [1051] = 1000, + [1052] = 995, + [1053] = 984, + [1054] = 1006, + [1055] = 1004, + [1056] = 1003, + [1057] = 671, + [1058] = 1058, + [1059] = 1059, + [1060] = 1060, + [1061] = 992, + [1062] = 1062, + [1063] = 991, + [1064] = 989, + [1065] = 1065, + [1066] = 987, + [1067] = 986, + [1068] = 985, + [1069] = 998, + [1070] = 1070, + [1071] = 1059, + [1072] = 1072, + [1073] = 1072, + [1074] = 984, + [1075] = 1075, [1076] = 1076, - [1077] = 673, - [1078] = 1061, - [1079] = 998, - [1080] = 996, - [1081] = 1064, - [1082] = 995, - [1083] = 1069, - [1084] = 993, - [1085] = 992, - [1086] = 991, + [1077] = 1025, + [1078] = 1000, + [1079] = 1062, + [1080] = 995, + [1081] = 1081, + [1082] = 1065, + [1083] = 1083, + [1084] = 1070, + [1085] = 1085, + [1086] = 1086, [1087] = 1087, - [1088] = 1050, - [1089] = 1089, - [1090] = 1076, - [1091] = 1091, - [1092] = 1061, - [1093] = 1093, - [1094] = 984, - [1095] = 1064, - [1096] = 986, - [1097] = 1069, - [1098] = 1098, - [1099] = 1006, - [1100] = 1004, - [1101] = 1003, - [1102] = 1050, - [1103] = 1002, - [1104] = 1076, - [1105] = 670, - [1106] = 1061, - [1107] = 1001, - [1108] = 671, - [1109] = 1064, - [1110] = 985, - [1111] = 1069, - [1112] = 1064, - [1113] = 1113, - [1114] = 1076, - [1115] = 1006, - [1116] = 1050, - [1117] = 1004, - [1118] = 1076, - [1119] = 1119, - [1120] = 1061, - [1121] = 1056, - [1122] = 998, - [1123] = 1064, - [1124] = 1003, - [1125] = 1069, - [1126] = 996, - [1127] = 995, - [1128] = 1009, - [1129] = 1129, - [1130] = 1050, - [1131] = 997, - [1132] = 1076, - [1133] = 990, + [1088] = 1088, + [1089] = 1075, + [1090] = 1090, + [1091] = 1025, + [1092] = 1006, + [1093] = 1062, + [1094] = 1004, + [1095] = 1003, + [1096] = 1065, + [1097] = 674, + [1098] = 1070, + [1099] = 1099, + [1100] = 995, + [1101] = 1101, + [1102] = 1102, + [1103] = 1075, + [1104] = 607, + [1105] = 1025, + [1106] = 600, + [1107] = 1062, + [1108] = 595, + [1109] = 672, + [1110] = 1065, + [1111] = 601, + [1112] = 1070, + [1113] = 1065, + [1114] = 610, + [1115] = 608, + [1116] = 673, + [1117] = 1075, + [1118] = 606, + [1119] = 1025, + [1120] = 604, + [1121] = 1062, + [1122] = 1003, + [1123] = 1123, + [1124] = 1065, + [1125] = 1125, + [1126] = 1070, + [1127] = 1127, + [1128] = 1004, + [1129] = 1006, + [1130] = 1070, + [1131] = 1075, + [1132] = 1090, + [1133] = 1025, [1134] = 1087, - [1135] = 987, - [1136] = 1087, - [1137] = 1001, - [1138] = 1087, - [1139] = 1039, - [1140] = 1087, - [1141] = 993, - [1142] = 1087, - [1143] = 1061, - [1144] = 992, - [1145] = 991, - [1146] = 1069, - [1147] = 1113, + [1135] = 1101, + [1136] = 1136, + [1137] = 1101, + [1138] = 1086, + [1139] = 1101, + [1140] = 1085, + [1141] = 1101, + [1142] = 1000, + [1143] = 1101, + [1144] = 1062, + [1145] = 1145, + [1146] = 1075, + [1147] = 1083, + [1148] = 1076, }; static bool ts_lex(TSLexer *lexer, TSStateId state) { @@ -4782,21 +4777,21 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [68] = {.lex_state = 83, .external_lex_state = 2}, [69] = {.lex_state = 83, .external_lex_state = 2}, [70] = {.lex_state = 83, .external_lex_state = 2}, - [71] = {.lex_state = 83, .external_lex_state = 2}, + [71] = {.lex_state = 84, .external_lex_state = 3}, [72] = {.lex_state = 84, .external_lex_state = 2}, [73] = {.lex_state = 83, .external_lex_state = 2}, [74] = {.lex_state = 83, .external_lex_state = 2}, - [75] = {.lex_state = 84, .external_lex_state = 2}, + [75] = {.lex_state = 83, .external_lex_state = 2}, [76] = {.lex_state = 84, .external_lex_state = 2}, [77] = {.lex_state = 83, .external_lex_state = 2}, - [78] = {.lex_state = 84, .external_lex_state = 3}, + [78] = {.lex_state = 83, .external_lex_state = 2}, [79] = {.lex_state = 83, .external_lex_state = 2}, [80] = {.lex_state = 84, .external_lex_state = 2}, - [81] = {.lex_state = 83, .external_lex_state = 2}, + [81] = {.lex_state = 84, .external_lex_state = 2}, [82] = {.lex_state = 84, .external_lex_state = 2}, - [83] = {.lex_state = 84, .external_lex_state = 2}, + [83] = {.lex_state = 84, .external_lex_state = 3}, [84] = {.lex_state = 84, .external_lex_state = 2}, - [85] = {.lex_state = 84, .external_lex_state = 3}, + [85] = {.lex_state = 84, .external_lex_state = 2}, [86] = {.lex_state = 84, .external_lex_state = 2}, [87] = {.lex_state = 84, .external_lex_state = 2}, [88] = {.lex_state = 84, .external_lex_state = 2}, @@ -4840,11 +4835,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [126] = {.lex_state = 84, .external_lex_state = 2}, [127] = {.lex_state = 83, .external_lex_state = 2}, [128] = {.lex_state = 83, .external_lex_state = 2}, - [129] = {.lex_state = 84, .external_lex_state = 2}, + [129] = {.lex_state = 83, .external_lex_state = 2}, [130] = {.lex_state = 83, .external_lex_state = 2}, [131] = {.lex_state = 83, .external_lex_state = 2}, [132] = {.lex_state = 83, .external_lex_state = 2}, - [133] = {.lex_state = 84, .external_lex_state = 2}, + [133] = {.lex_state = 83, .external_lex_state = 2}, [134] = {.lex_state = 84, .external_lex_state = 2}, [135] = {.lex_state = 83, .external_lex_state = 2}, [136] = {.lex_state = 84, .external_lex_state = 2}, @@ -4853,15 +4848,15 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [139] = {.lex_state = 83, .external_lex_state = 2}, [140] = {.lex_state = 84, .external_lex_state = 2}, [141] = {.lex_state = 83, .external_lex_state = 2}, - [142] = {.lex_state = 83, .external_lex_state = 2}, - [143] = {.lex_state = 84, .external_lex_state = 2}, + [142] = {.lex_state = 84, .external_lex_state = 2}, + [143] = {.lex_state = 83, .external_lex_state = 2}, [144] = {.lex_state = 83, .external_lex_state = 2}, - [145] = {.lex_state = 83, .external_lex_state = 2}, + [145] = {.lex_state = 84, .external_lex_state = 2}, [146] = {.lex_state = 83, .external_lex_state = 2}, [147] = {.lex_state = 83, .external_lex_state = 2}, [148] = {.lex_state = 83, .external_lex_state = 2}, [149] = {.lex_state = 84, .external_lex_state = 2}, - [150] = {.lex_state = 83, .external_lex_state = 2}, + [150] = {.lex_state = 84, .external_lex_state = 2}, [151] = {.lex_state = 84, .external_lex_state = 2}, [152] = {.lex_state = 83, .external_lex_state = 2}, [153] = {.lex_state = 83, .external_lex_state = 2}, @@ -4962,8 +4957,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [248] = {.lex_state = 84, .external_lex_state = 2}, [249] = {.lex_state = 84, .external_lex_state = 3}, [250] = {.lex_state = 84, .external_lex_state = 3}, - [251] = {.lex_state = 84, .external_lex_state = 3}, - [252] = {.lex_state = 84, .external_lex_state = 2}, + [251] = {.lex_state = 84, .external_lex_state = 2}, + [252] = {.lex_state = 84, .external_lex_state = 3}, [253] = {.lex_state = 84, .external_lex_state = 2}, [254] = {.lex_state = 84, .external_lex_state = 2}, [255] = {.lex_state = 84, .external_lex_state = 2}, @@ -4972,23 +4967,23 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [258] = {.lex_state = 84, .external_lex_state = 2}, [259] = {.lex_state = 84, .external_lex_state = 2}, [260] = {.lex_state = 84, .external_lex_state = 2}, - [261] = {.lex_state = 84, .external_lex_state = 3}, + [261] = {.lex_state = 84, .external_lex_state = 2}, [262] = {.lex_state = 84, .external_lex_state = 3}, [263] = {.lex_state = 84, .external_lex_state = 2}, - [264] = {.lex_state = 84, .external_lex_state = 2}, + [264] = {.lex_state = 84, .external_lex_state = 3}, [265] = {.lex_state = 84, .external_lex_state = 2}, - [266] = {.lex_state = 84, .external_lex_state = 3}, - [267] = {.lex_state = 84, .external_lex_state = 2}, + [266] = {.lex_state = 84, .external_lex_state = 2}, + [267] = {.lex_state = 84, .external_lex_state = 3}, [268] = {.lex_state = 84, .external_lex_state = 3}, [269] = {.lex_state = 84, .external_lex_state = 2}, - [270] = {.lex_state = 84, .external_lex_state = 3}, - [271] = {.lex_state = 84, .external_lex_state = 2}, + [270] = {.lex_state = 84, .external_lex_state = 2}, + [271] = {.lex_state = 84, .external_lex_state = 3}, [272] = {.lex_state = 84, .external_lex_state = 3}, [273] = {.lex_state = 84, .external_lex_state = 3}, [274] = {.lex_state = 84, .external_lex_state = 2}, - [275] = {.lex_state = 84, .external_lex_state = 3}, + [275] = {.lex_state = 84, .external_lex_state = 2}, [276] = {.lex_state = 84, .external_lex_state = 3}, - [277] = {.lex_state = 84, .external_lex_state = 2}, + [277] = {.lex_state = 84, .external_lex_state = 3}, [278] = {.lex_state = 84, .external_lex_state = 3}, [279] = {.lex_state = 84, .external_lex_state = 3}, [280] = {.lex_state = 84, .external_lex_state = 3}, @@ -5001,10 +4996,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [287] = {.lex_state = 84, .external_lex_state = 3}, [288] = {.lex_state = 84, .external_lex_state = 3}, [289] = {.lex_state = 84, .external_lex_state = 2}, - [290] = {.lex_state = 84, .external_lex_state = 3}, - [291] = {.lex_state = 84, .external_lex_state = 3}, - [292] = {.lex_state = 84, .external_lex_state = 2}, - [293] = {.lex_state = 84, .external_lex_state = 2}, + [290] = {.lex_state = 84, .external_lex_state = 2}, + [291] = {.lex_state = 84, .external_lex_state = 2}, + [292] = {.lex_state = 84, .external_lex_state = 3}, + [293] = {.lex_state = 84, .external_lex_state = 3}, [294] = {.lex_state = 84, .external_lex_state = 2}, [295] = {.lex_state = 84, .external_lex_state = 2}, [296] = {.lex_state = 84, .external_lex_state = 2}, @@ -5024,31 +5019,31 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [310] = {.lex_state = 84, .external_lex_state = 2}, [311] = {.lex_state = 84, .external_lex_state = 2}, [312] = {.lex_state = 84, .external_lex_state = 2}, - [313] = {.lex_state = 84, .external_lex_state = 3}, + [313] = {.lex_state = 84, .external_lex_state = 2}, [314] = {.lex_state = 84, .external_lex_state = 2}, [315] = {.lex_state = 84, .external_lex_state = 2}, - [316] = {.lex_state = 84, .external_lex_state = 2}, + [316] = {.lex_state = 84, .external_lex_state = 3}, [317] = {.lex_state = 84, .external_lex_state = 2}, [318] = {.lex_state = 84, .external_lex_state = 2}, [319] = {.lex_state = 84, .external_lex_state = 2}, - [320] = {.lex_state = 84, .external_lex_state = 3}, + [320] = {.lex_state = 84, .external_lex_state = 2}, [321] = {.lex_state = 84, .external_lex_state = 2}, - [322] = {.lex_state = 84, .external_lex_state = 3}, + [322] = {.lex_state = 84, .external_lex_state = 2}, [323] = {.lex_state = 84, .external_lex_state = 3}, [324] = {.lex_state = 84, .external_lex_state = 2}, - [325] = {.lex_state = 84, .external_lex_state = 2}, + [325] = {.lex_state = 84, .external_lex_state = 3}, [326] = {.lex_state = 84, .external_lex_state = 3}, [327] = {.lex_state = 84, .external_lex_state = 2}, - [328] = {.lex_state = 84, .external_lex_state = 3}, + [328] = {.lex_state = 84, .external_lex_state = 2}, [329] = {.lex_state = 84, .external_lex_state = 2}, [330] = {.lex_state = 84, .external_lex_state = 2}, [331] = {.lex_state = 84, .external_lex_state = 2}, - [332] = {.lex_state = 84, .external_lex_state = 2}, + [332] = {.lex_state = 84, .external_lex_state = 3}, [333] = {.lex_state = 84, .external_lex_state = 2}, [334] = {.lex_state = 84, .external_lex_state = 2}, [335] = {.lex_state = 84, .external_lex_state = 3}, [336] = {.lex_state = 84, .external_lex_state = 2}, - [337] = {.lex_state = 84, .external_lex_state = 2}, + [337] = {.lex_state = 84, .external_lex_state = 3}, [338] = {.lex_state = 84, .external_lex_state = 2}, [339] = {.lex_state = 84, .external_lex_state = 2}, [340] = {.lex_state = 84, .external_lex_state = 2}, @@ -5058,8 +5053,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [344] = {.lex_state = 84, .external_lex_state = 3}, [345] = {.lex_state = 84, .external_lex_state = 3}, [346] = {.lex_state = 84, .external_lex_state = 2}, - [347] = {.lex_state = 84, .external_lex_state = 3}, - [348] = {.lex_state = 84, .external_lex_state = 2}, + [347] = {.lex_state = 84, .external_lex_state = 2}, + [348] = {.lex_state = 84, .external_lex_state = 3}, [349] = {.lex_state = 84, .external_lex_state = 2}, [350] = {.lex_state = 84, .external_lex_state = 2}, [351] = {.lex_state = 84, .external_lex_state = 2}, @@ -5073,9 +5068,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [359] = {.lex_state = 84, .external_lex_state = 2}, [360] = {.lex_state = 84, .external_lex_state = 2}, [361] = {.lex_state = 84, .external_lex_state = 2}, - [362] = {.lex_state = 84, .external_lex_state = 3}, + [362] = {.lex_state = 84, .external_lex_state = 2}, [363] = {.lex_state = 84, .external_lex_state = 2}, - [364] = {.lex_state = 84, .external_lex_state = 2}, + [364] = {.lex_state = 84, .external_lex_state = 3}, [365] = {.lex_state = 84, .external_lex_state = 2}, [366] = {.lex_state = 84, .external_lex_state = 2}, [367] = {.lex_state = 84, .external_lex_state = 2}, @@ -5143,15 +5138,15 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [429] = {.lex_state = 84, .external_lex_state = 2}, [430] = {.lex_state = 84, .external_lex_state = 2}, [431] = {.lex_state = 84, .external_lex_state = 3}, - [432] = {.lex_state = 84, .external_lex_state = 2}, - [433] = {.lex_state = 84, .external_lex_state = 3}, + [432] = {.lex_state = 84, .external_lex_state = 3}, + [433] = {.lex_state = 84, .external_lex_state = 2}, [434] = {.lex_state = 84, .external_lex_state = 2}, [435] = {.lex_state = 84, .external_lex_state = 2}, [436] = {.lex_state = 84, .external_lex_state = 2}, [437] = {.lex_state = 84, .external_lex_state = 2}, [438] = {.lex_state = 84, .external_lex_state = 2}, - [439] = {.lex_state = 84, .external_lex_state = 2}, - [440] = {.lex_state = 84, .external_lex_state = 3}, + [439] = {.lex_state = 84, .external_lex_state = 3}, + [440] = {.lex_state = 84, .external_lex_state = 2}, [441] = {.lex_state = 84, .external_lex_state = 2}, [442] = {.lex_state = 84, .external_lex_state = 2}, [443] = {.lex_state = 84, .external_lex_state = 2}, @@ -5189,20 +5184,20 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [475] = {.lex_state = 3, .external_lex_state = 2}, [476] = {.lex_state = 3, .external_lex_state = 2}, [477] = {.lex_state = 3, .external_lex_state = 2}, - [478] = {.lex_state = 3, .external_lex_state = 2}, - [479] = {.lex_state = 83, .external_lex_state = 5}, - [480] = {.lex_state = 84, .external_lex_state = 2}, - [481] = {.lex_state = 85, .external_lex_state = 4}, - [482] = {.lex_state = 3, .external_lex_state = 2}, - [483] = {.lex_state = 84, .external_lex_state = 2}, - [484] = {.lex_state = 85, .external_lex_state = 4}, + [478] = {.lex_state = 84, .external_lex_state = 2}, + [479] = {.lex_state = 84, .external_lex_state = 2}, + [480] = {.lex_state = 85, .external_lex_state = 4}, + [481] = {.lex_state = 3, .external_lex_state = 2}, + [482] = {.lex_state = 84, .external_lex_state = 2}, + [483] = {.lex_state = 3, .external_lex_state = 2}, + [484] = {.lex_state = 83, .external_lex_state = 5}, [485] = {.lex_state = 3, .external_lex_state = 2}, [486] = {.lex_state = 84, .external_lex_state = 2}, - [487] = {.lex_state = 84, .external_lex_state = 2}, + [487] = {.lex_state = 3, .external_lex_state = 2}, [488] = {.lex_state = 83, .external_lex_state = 4}, [489] = {.lex_state = 84, .external_lex_state = 2}, [490] = {.lex_state = 3, .external_lex_state = 2}, - [491] = {.lex_state = 3, .external_lex_state = 2}, + [491] = {.lex_state = 85, .external_lex_state = 4}, [492] = {.lex_state = 84, .external_lex_state = 2}, [493] = {.lex_state = 85, .external_lex_state = 4}, [494] = {.lex_state = 3, .external_lex_state = 2}, @@ -5220,48 +5215,48 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [506] = {.lex_state = 3, .external_lex_state = 2}, [507] = {.lex_state = 3, .external_lex_state = 2}, [508] = {.lex_state = 3, .external_lex_state = 2}, - [509] = {.lex_state = 3, .external_lex_state = 2}, - [510] = {.lex_state = 85, .external_lex_state = 4}, + [509] = {.lex_state = 4, .external_lex_state = 2}, + [510] = {.lex_state = 3, .external_lex_state = 2}, [511] = {.lex_state = 85, .external_lex_state = 4}, - [512] = {.lex_state = 83, .external_lex_state = 4}, + [512] = {.lex_state = 85, .external_lex_state = 4}, [513] = {.lex_state = 83, .external_lex_state = 4}, [514] = {.lex_state = 83, .external_lex_state = 4}, - [515] = {.lex_state = 83, .external_lex_state = 5}, - [516] = {.lex_state = 83, .external_lex_state = 4}, - [517] = {.lex_state = 83, .external_lex_state = 4}, + [515] = {.lex_state = 85, .external_lex_state = 4}, + [516] = {.lex_state = 85, .external_lex_state = 4}, + [517] = {.lex_state = 85, .external_lex_state = 4}, [518] = {.lex_state = 83, .external_lex_state = 5}, [519] = {.lex_state = 83, .external_lex_state = 4}, [520] = {.lex_state = 83, .external_lex_state = 5}, - [521] = {.lex_state = 85, .external_lex_state = 4}, - [522] = {.lex_state = 83, .external_lex_state = 4}, + [521] = {.lex_state = 83, .external_lex_state = 4}, + [522] = {.lex_state = 83, .external_lex_state = 5}, [523] = {.lex_state = 83, .external_lex_state = 4}, - [524] = {.lex_state = 83, .external_lex_state = 4}, - [525] = {.lex_state = 85, .external_lex_state = 4}, + [524] = {.lex_state = 85, .external_lex_state = 4}, + [525] = {.lex_state = 83, .external_lex_state = 4}, [526] = {.lex_state = 83, .external_lex_state = 4}, [527] = {.lex_state = 83, .external_lex_state = 4}, - [528] = {.lex_state = 83, .external_lex_state = 5}, - [529] = {.lex_state = 83, .external_lex_state = 5}, - [530] = {.lex_state = 85, .external_lex_state = 4}, - [531] = {.lex_state = 83, .external_lex_state = 4}, + [528] = {.lex_state = 83, .external_lex_state = 4}, + [529] = {.lex_state = 83, .external_lex_state = 4}, + [530] = {.lex_state = 83, .external_lex_state = 4}, + [531] = {.lex_state = 85, .external_lex_state = 4}, [532] = {.lex_state = 85, .external_lex_state = 4}, - [533] = {.lex_state = 85, .external_lex_state = 4}, - [534] = {.lex_state = 85, .external_lex_state = 4}, - [535] = {.lex_state = 83, .external_lex_state = 5}, - [536] = {.lex_state = 83, .external_lex_state = 5}, + [533] = {.lex_state = 3, .external_lex_state = 2}, + [534] = {.lex_state = 83, .external_lex_state = 4}, + [535] = {.lex_state = 85, .external_lex_state = 4}, + [536] = {.lex_state = 85, .external_lex_state = 4}, [537] = {.lex_state = 85, .external_lex_state = 4}, - [538] = {.lex_state = 83, .external_lex_state = 5}, + [538] = {.lex_state = 85, .external_lex_state = 4}, [539] = {.lex_state = 83, .external_lex_state = 5}, [540] = {.lex_state = 85, .external_lex_state = 4}, - [541] = {.lex_state = 85, .external_lex_state = 4}, + [541] = {.lex_state = 83, .external_lex_state = 5}, [542] = {.lex_state = 85, .external_lex_state = 4}, [543] = {.lex_state = 85, .external_lex_state = 4}, - [544] = {.lex_state = 85, .external_lex_state = 4}, - [545] = {.lex_state = 85, .external_lex_state = 4}, + [544] = {.lex_state = 83, .external_lex_state = 5}, + [545] = {.lex_state = 83, .external_lex_state = 5}, [546] = {.lex_state = 85, .external_lex_state = 4}, [547] = {.lex_state = 85, .external_lex_state = 4}, - [548] = {.lex_state = 85, .external_lex_state = 4}, + [548] = {.lex_state = 83, .external_lex_state = 5}, [549] = {.lex_state = 85, .external_lex_state = 4}, - [550] = {.lex_state = 3, .external_lex_state = 2}, + [550] = {.lex_state = 85, .external_lex_state = 4}, [551] = {.lex_state = 85, .external_lex_state = 4}, [552] = {.lex_state = 85, .external_lex_state = 4}, [553] = {.lex_state = 85, .external_lex_state = 4}, @@ -5272,21 +5267,21 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [558] = {.lex_state = 85, .external_lex_state = 4}, [559] = {.lex_state = 85, .external_lex_state = 4}, [560] = {.lex_state = 85, .external_lex_state = 4}, - [561] = {.lex_state = 85, .external_lex_state = 4}, + [561] = {.lex_state = 83, .external_lex_state = 5}, [562] = {.lex_state = 85, .external_lex_state = 4}, - [563] = {.lex_state = 85, .external_lex_state = 4}, - [564] = {.lex_state = 4, .external_lex_state = 2}, + [563] = {.lex_state = 83, .external_lex_state = 5}, + [564] = {.lex_state = 3, .external_lex_state = 2}, [565] = {.lex_state = 85, .external_lex_state = 4}, [566] = {.lex_state = 3, .external_lex_state = 2}, [567] = {.lex_state = 85, .external_lex_state = 4}, - [568] = {.lex_state = 83, .external_lex_state = 5}, + [568] = {.lex_state = 85, .external_lex_state = 4}, [569] = {.lex_state = 83, .external_lex_state = 5}, [570] = {.lex_state = 83, .external_lex_state = 5}, [571] = {.lex_state = 85, .external_lex_state = 4}, - [572] = {.lex_state = 3, .external_lex_state = 2}, + [572] = {.lex_state = 85, .external_lex_state = 4}, [573] = {.lex_state = 85, .external_lex_state = 4}, - [574] = {.lex_state = 3, .external_lex_state = 2}, - [575] = {.lex_state = 85, .external_lex_state = 4}, + [574] = {.lex_state = 85, .external_lex_state = 4}, + [575] = {.lex_state = 3, .external_lex_state = 2}, [576] = {.lex_state = 83, .external_lex_state = 2}, [577] = {.lex_state = 83, .external_lex_state = 2}, [578] = {.lex_state = 83, .external_lex_state = 2}, @@ -5295,22 +5290,22 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [581] = {.lex_state = 3, .external_lex_state = 2}, [582] = {.lex_state = 3, .external_lex_state = 2}, [583] = {.lex_state = 3, .external_lex_state = 2}, - [584] = {.lex_state = 3, .external_lex_state = 2}, + [584] = {.lex_state = 5, .external_lex_state = 2}, [585] = {.lex_state = 3, .external_lex_state = 2}, [586] = {.lex_state = 3, .external_lex_state = 2}, - [587] = {.lex_state = 83, .external_lex_state = 2}, + [587] = {.lex_state = 3, .external_lex_state = 2}, [588] = {.lex_state = 3, .external_lex_state = 2}, [589] = {.lex_state = 3, .external_lex_state = 2}, [590] = {.lex_state = 3, .external_lex_state = 2}, [591] = {.lex_state = 3, .external_lex_state = 2}, - [592] = {.lex_state = 5, .external_lex_state = 2}, - [593] = {.lex_state = 3, .external_lex_state = 2}, + [592] = {.lex_state = 3, .external_lex_state = 2}, + [593] = {.lex_state = 83, .external_lex_state = 2}, [594] = {.lex_state = 3, .external_lex_state = 2}, - [595] = {.lex_state = 3, .external_lex_state = 2}, - [596] = {.lex_state = 3, .external_lex_state = 2}, + [595] = {.lex_state = 83, .external_lex_state = 2}, + [596] = {.lex_state = 4, .external_lex_state = 2}, [597] = {.lex_state = 3, .external_lex_state = 2}, [598] = {.lex_state = 3, .external_lex_state = 2}, - [599] = {.lex_state = 83, .external_lex_state = 2}, + [599] = {.lex_state = 3, .external_lex_state = 2}, [600] = {.lex_state = 83, .external_lex_state = 2}, [601] = {.lex_state = 83, .external_lex_state = 2}, [602] = {.lex_state = 3, .external_lex_state = 2}, @@ -5320,61 +5315,61 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [606] = {.lex_state = 83, .external_lex_state = 2}, [607] = {.lex_state = 83, .external_lex_state = 2}, [608] = {.lex_state = 83, .external_lex_state = 2}, - [609] = {.lex_state = 83, .external_lex_state = 2}, - [610] = {.lex_state = 4, .external_lex_state = 2}, + [609] = {.lex_state = 3, .external_lex_state = 2}, + [610] = {.lex_state = 83, .external_lex_state = 2}, [611] = {.lex_state = 3, .external_lex_state = 2}, [612] = {.lex_state = 3, .external_lex_state = 2}, [613] = {.lex_state = 4, .external_lex_state = 2}, [614] = {.lex_state = 4, .external_lex_state = 2}, [615] = {.lex_state = 4, .external_lex_state = 2}, - [616] = {.lex_state = 85, .external_lex_state = 4}, + [616] = {.lex_state = 5, .external_lex_state = 2}, [617] = {.lex_state = 85, .external_lex_state = 4}, [618] = {.lex_state = 5, .external_lex_state = 2}, [619] = {.lex_state = 5, .external_lex_state = 2}, - [620] = {.lex_state = 5, .external_lex_state = 2}, - [621] = {.lex_state = 7, .external_lex_state = 6}, - [622] = {.lex_state = 7, .external_lex_state = 6}, + [620] = {.lex_state = 85, .external_lex_state = 4}, + [621] = {.lex_state = 3, .external_lex_state = 2}, + [622] = {.lex_state = 3, .external_lex_state = 2}, [623] = {.lex_state = 7, .external_lex_state = 6}, - [624] = {.lex_state = 3, .external_lex_state = 2}, + [624] = {.lex_state = 7, .external_lex_state = 6}, [625] = {.lex_state = 7, .external_lex_state = 6}, [626] = {.lex_state = 7, .external_lex_state = 6}, - [627] = {.lex_state = 3, .external_lex_state = 2}, + [627] = {.lex_state = 7, .external_lex_state = 6}, [628] = {.lex_state = 7, .external_lex_state = 6}, [629] = {.lex_state = 3, .external_lex_state = 2}, - [630] = {.lex_state = 3, .external_lex_state = 2}, - [631] = {.lex_state = 3, .external_lex_state = 2}, - [632] = {.lex_state = 85, .external_lex_state = 4}, - [633] = {.lex_state = 85, .external_lex_state = 4}, - [634] = {.lex_state = 85, .external_lex_state = 4}, - [635] = {.lex_state = 85, .external_lex_state = 4}, - [636] = {.lex_state = 3, .external_lex_state = 2}, - [637] = {.lex_state = 3, .external_lex_state = 2}, - [638] = {.lex_state = 7, .external_lex_state = 6}, - [639] = {.lex_state = 7, .external_lex_state = 6}, + [630] = {.lex_state = 7, .external_lex_state = 6}, + [631] = {.lex_state = 7, .external_lex_state = 6}, + [632] = {.lex_state = 3, .external_lex_state = 2}, + [633] = {.lex_state = 3, .external_lex_state = 2}, + [634] = {.lex_state = 3, .external_lex_state = 2}, + [635] = {.lex_state = 7, .external_lex_state = 6}, + [636] = {.lex_state = 7, .external_lex_state = 6}, + [637] = {.lex_state = 85, .external_lex_state = 4}, + [638] = {.lex_state = 3, .external_lex_state = 2}, + [639] = {.lex_state = 85, .external_lex_state = 4}, [640] = {.lex_state = 85, .external_lex_state = 4}, - [641] = {.lex_state = 85, .external_lex_state = 4}, - [642] = {.lex_state = 7, .external_lex_state = 6}, - [643] = {.lex_state = 3, .external_lex_state = 2}, - [644] = {.lex_state = 3, .external_lex_state = 2}, - [645] = {.lex_state = 85, .external_lex_state = 4}, - [646] = {.lex_state = 7, .external_lex_state = 6}, + [641] = {.lex_state = 3, .external_lex_state = 2}, + [642] = {.lex_state = 85, .external_lex_state = 4}, + [643] = {.lex_state = 85, .external_lex_state = 4}, + [644] = {.lex_state = 85, .external_lex_state = 4}, + [645] = {.lex_state = 3, .external_lex_state = 2}, + [646] = {.lex_state = 3, .external_lex_state = 2}, [647] = {.lex_state = 3, .external_lex_state = 2}, [648] = {.lex_state = 3, .external_lex_state = 2}, [649] = {.lex_state = 3, .external_lex_state = 2}, - [650] = {.lex_state = 3, .external_lex_state = 2}, + [650] = {.lex_state = 85, .external_lex_state = 4}, [651] = {.lex_state = 3, .external_lex_state = 2}, [652] = {.lex_state = 3, .external_lex_state = 2}, [653] = {.lex_state = 3, .external_lex_state = 2}, - [654] = {.lex_state = 7, .external_lex_state = 6}, + [654] = {.lex_state = 3, .external_lex_state = 2}, [655] = {.lex_state = 3, .external_lex_state = 2}, [656] = {.lex_state = 3, .external_lex_state = 2}, [657] = {.lex_state = 3, .external_lex_state = 2}, [658] = {.lex_state = 3, .external_lex_state = 2}, - [659] = {.lex_state = 3, .external_lex_state = 2}, - [660] = {.lex_state = 3, .external_lex_state = 2}, - [661] = {.lex_state = 7, .external_lex_state = 6}, - [662] = {.lex_state = 7, .external_lex_state = 6}, - [663] = {.lex_state = 3, .external_lex_state = 2}, + [659] = {.lex_state = 7, .external_lex_state = 6}, + [660] = {.lex_state = 7, .external_lex_state = 6}, + [661] = {.lex_state = 3, .external_lex_state = 2}, + [662] = {.lex_state = 3, .external_lex_state = 2}, + [663] = {.lex_state = 7, .external_lex_state = 6}, [664] = {.lex_state = 6, .external_lex_state = 4}, [665] = {.lex_state = 6, .external_lex_state = 4}, [666] = {.lex_state = 83, .external_lex_state = 4}, @@ -5387,79 +5382,79 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [673] = {.lex_state = 85, .external_lex_state = 4}, [674] = {.lex_state = 85, .external_lex_state = 4}, [675] = {.lex_state = 85, .external_lex_state = 4}, - [676] = {.lex_state = 1, .external_lex_state = 7}, - [677] = {.lex_state = 85, .external_lex_state = 4}, + [676] = {.lex_state = 85, .external_lex_state = 4}, + [677] = {.lex_state = 1, .external_lex_state = 7}, [678] = {.lex_state = 85, .external_lex_state = 4}, [679] = {.lex_state = 85, .external_lex_state = 4}, [680] = {.lex_state = 1, .external_lex_state = 7}, [681] = {.lex_state = 85, .external_lex_state = 4}, - [682] = {.lex_state = 85, .external_lex_state = 4}, - [683] = {.lex_state = 1, .external_lex_state = 7}, + [682] = {.lex_state = 1, .external_lex_state = 7}, + [683] = {.lex_state = 85, .external_lex_state = 4}, [684] = {.lex_state = 85, .external_lex_state = 4}, - [685] = {.lex_state = 85, .external_lex_state = 4}, - [686] = {.lex_state = 1, .external_lex_state = 7}, + [685] = {.lex_state = 1, .external_lex_state = 7}, + [686] = {.lex_state = 85, .external_lex_state = 4}, [687] = {.lex_state = 1, .external_lex_state = 7}, [688] = {.lex_state = 1, .external_lex_state = 7}, - [689] = {.lex_state = 85, .external_lex_state = 4}, - [690] = {.lex_state = 1, .external_lex_state = 7}, - [691] = {.lex_state = 4, .external_lex_state = 4}, - [692] = {.lex_state = 1, .external_lex_state = 7}, - [693] = {.lex_state = 85, .external_lex_state = 4}, - [694] = {.lex_state = 1, .external_lex_state = 7}, - [695] = {.lex_state = 1, .external_lex_state = 7}, - [696] = {.lex_state = 85, .external_lex_state = 4}, + [689] = {.lex_state = 1, .external_lex_state = 7}, + [690] = {.lex_state = 85, .external_lex_state = 4}, + [691] = {.lex_state = 85, .external_lex_state = 4}, + [692] = {.lex_state = 4, .external_lex_state = 4}, + [693] = {.lex_state = 1, .external_lex_state = 7}, + [694] = {.lex_state = 85, .external_lex_state = 4}, + [695] = {.lex_state = 85, .external_lex_state = 4}, + [696] = {.lex_state = 1, .external_lex_state = 7}, [697] = {.lex_state = 85, .external_lex_state = 4}, - [698] = {.lex_state = 85, .external_lex_state = 4}, + [698] = {.lex_state = 1, .external_lex_state = 7}, [699] = {.lex_state = 1, .external_lex_state = 7}, [700] = {.lex_state = 1, .external_lex_state = 7}, [701] = {.lex_state = 1, .external_lex_state = 7}, [702] = {.lex_state = 85, .external_lex_state = 4}, [703] = {.lex_state = 1, .external_lex_state = 7}, - [704] = {.lex_state = 1, .external_lex_state = 7}, - [705] = {.lex_state = 85, .external_lex_state = 4}, + [704] = {.lex_state = 85, .external_lex_state = 4}, + [705] = {.lex_state = 1, .external_lex_state = 7}, [706] = {.lex_state = 85, .external_lex_state = 4}, [707] = {.lex_state = 2, .external_lex_state = 8}, [708] = {.lex_state = 2, .external_lex_state = 8}, [709] = {.lex_state = 2, .external_lex_state = 8}, [710] = {.lex_state = 2, .external_lex_state = 8}, - [711] = {.lex_state = 2, .external_lex_state = 8}, + [711] = {.lex_state = 85, .external_lex_state = 4}, [712] = {.lex_state = 85, .external_lex_state = 4}, - [713] = {.lex_state = 2, .external_lex_state = 8}, + [713] = {.lex_state = 85, .external_lex_state = 4}, [714] = {.lex_state = 2, .external_lex_state = 8}, [715] = {.lex_state = 85, .external_lex_state = 4}, - [716] = {.lex_state = 2, .external_lex_state = 8}, + [716] = {.lex_state = 4, .external_lex_state = 4}, [717] = {.lex_state = 2, .external_lex_state = 8}, - [718] = {.lex_state = 2, .external_lex_state = 8}, + [718] = {.lex_state = 85, .external_lex_state = 4}, [719] = {.lex_state = 85, .external_lex_state = 4}, [720] = {.lex_state = 2, .external_lex_state = 8}, [721] = {.lex_state = 2, .external_lex_state = 8}, [722] = {.lex_state = 2, .external_lex_state = 8}, - [723] = {.lex_state = 85, .external_lex_state = 4}, - [724] = {.lex_state = 85, .external_lex_state = 4}, + [723] = {.lex_state = 2, .external_lex_state = 8}, + [724] = {.lex_state = 2, .external_lex_state = 8}, [725] = {.lex_state = 2, .external_lex_state = 8}, - [726] = {.lex_state = 85, .external_lex_state = 4}, + [726] = {.lex_state = 2, .external_lex_state = 8}, [727] = {.lex_state = 2, .external_lex_state = 8}, - [728] = {.lex_state = 4, .external_lex_state = 4}, - [729] = {.lex_state = 8, .external_lex_state = 4}, + [728] = {.lex_state = 85, .external_lex_state = 4}, + [729] = {.lex_state = 2, .external_lex_state = 8}, [730] = {.lex_state = 1, .external_lex_state = 9}, [731] = {.lex_state = 8, .external_lex_state = 4}, [732] = {.lex_state = 1, .external_lex_state = 9}, [733] = {.lex_state = 1, .external_lex_state = 9}, [734] = {.lex_state = 85, .external_lex_state = 4}, - [735] = {.lex_state = 1, .external_lex_state = 9}, + [735] = {.lex_state = 8, .external_lex_state = 4}, [736] = {.lex_state = 1, .external_lex_state = 9}, [737] = {.lex_state = 1, .external_lex_state = 9}, - [738] = {.lex_state = 85, .external_lex_state = 4}, - [739] = {.lex_state = 85, .external_lex_state = 4}, - [740] = {.lex_state = 1, .external_lex_state = 9}, + [738] = {.lex_state = 1, .external_lex_state = 9}, + [739] = {.lex_state = 8, .external_lex_state = 4}, + [740] = {.lex_state = 8, .external_lex_state = 4}, [741] = {.lex_state = 1, .external_lex_state = 9}, [742] = {.lex_state = 1, .external_lex_state = 9}, - [743] = {.lex_state = 8, .external_lex_state = 4}, + [743] = {.lex_state = 1, .external_lex_state = 9}, [744] = {.lex_state = 1, .external_lex_state = 9}, [745] = {.lex_state = 1, .external_lex_state = 9}, - [746] = {.lex_state = 1, .external_lex_state = 9}, - [747] = {.lex_state = 1, .external_lex_state = 9}, - [748] = {.lex_state = 8, .external_lex_state = 4}, + [746] = {.lex_state = 85, .external_lex_state = 4}, + [747] = {.lex_state = 85, .external_lex_state = 4}, + [748] = {.lex_state = 1, .external_lex_state = 9}, [749] = {.lex_state = 1, .external_lex_state = 9}, [750] = {.lex_state = 1, .external_lex_state = 9}, [751] = {.lex_state = 1, .external_lex_state = 9}, @@ -5467,13 +5462,13 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [753] = {.lex_state = 85, .external_lex_state = 4}, [754] = {.lex_state = 1, .external_lex_state = 9}, [755] = {.lex_state = 1, .external_lex_state = 9}, - [756] = {.lex_state = 2, .external_lex_state = 10}, - [757] = {.lex_state = 2, .external_lex_state = 10}, + [756] = {.lex_state = 1, .external_lex_state = 9}, + [757] = {.lex_state = 8, .external_lex_state = 4}, [758] = {.lex_state = 2, .external_lex_state = 10}, [759] = {.lex_state = 2, .external_lex_state = 10}, [760] = {.lex_state = 2, .external_lex_state = 10}, [761] = {.lex_state = 2, .external_lex_state = 10}, - [762] = {.lex_state = 2, .external_lex_state = 10}, + [762] = {.lex_state = 8, .external_lex_state = 4}, [763] = {.lex_state = 2, .external_lex_state = 10}, [764] = {.lex_state = 2, .external_lex_state = 10}, [765] = {.lex_state = 2, .external_lex_state = 10}, @@ -5481,384 +5476,385 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [767] = {.lex_state = 2, .external_lex_state = 10}, [768] = {.lex_state = 2, .external_lex_state = 10}, [769] = {.lex_state = 2, .external_lex_state = 10}, - [770] = {.lex_state = 2, .external_lex_state = 10}, + [770] = {.lex_state = 8, .external_lex_state = 4}, [771] = {.lex_state = 2, .external_lex_state = 10}, [772] = {.lex_state = 2, .external_lex_state = 10}, - [773] = {.lex_state = 8, .external_lex_state = 4}, - [774] = {.lex_state = 2, .external_lex_state = 10}, + [773] = {.lex_state = 2, .external_lex_state = 10}, + [774] = {.lex_state = 7, .external_lex_state = 6}, [775] = {.lex_state = 2, .external_lex_state = 10}, - [776] = {.lex_state = 2, .external_lex_state = 10}, + [776] = {.lex_state = 8, .external_lex_state = 4}, [777] = {.lex_state = 2, .external_lex_state = 10}, - [778] = {.lex_state = 8, .external_lex_state = 4}, + [778] = {.lex_state = 2, .external_lex_state = 10}, [779] = {.lex_state = 2, .external_lex_state = 10}, [780] = {.lex_state = 2, .external_lex_state = 10}, - [781] = {.lex_state = 8, .external_lex_state = 4}, + [781] = {.lex_state = 2, .external_lex_state = 10}, [782] = {.lex_state = 2, .external_lex_state = 10}, [783] = {.lex_state = 2, .external_lex_state = 10}, - [784] = {.lex_state = 8, .external_lex_state = 4}, + [784] = {.lex_state = 2, .external_lex_state = 10}, [785] = {.lex_state = 2, .external_lex_state = 10}, [786] = {.lex_state = 2, .external_lex_state = 10}, - [787] = {.lex_state = 8, .external_lex_state = 4}, + [787] = {.lex_state = 2, .external_lex_state = 10}, [788] = {.lex_state = 2, .external_lex_state = 10}, - [789] = {.lex_state = 2, .external_lex_state = 10}, + [789] = {.lex_state = 8, .external_lex_state = 4}, [790] = {.lex_state = 2, .external_lex_state = 10}, [791] = {.lex_state = 2, .external_lex_state = 10}, - [792] = {.lex_state = 8, .external_lex_state = 4}, - [793] = {.lex_state = 8, .external_lex_state = 4}, + [792] = {.lex_state = 2, .external_lex_state = 10}, + [793] = {.lex_state = 2, .external_lex_state = 10}, [794] = {.lex_state = 2, .external_lex_state = 10}, [795] = {.lex_state = 2, .external_lex_state = 10}, - [796] = {.lex_state = 2, .external_lex_state = 10}, - [797] = {.lex_state = 2, .external_lex_state = 10}, + [796] = {.lex_state = 8, .external_lex_state = 4}, + [797] = {.lex_state = 8, .external_lex_state = 4}, [798] = {.lex_state = 2, .external_lex_state = 10}, [799] = {.lex_state = 2, .external_lex_state = 10}, [800] = {.lex_state = 2, .external_lex_state = 10}, - [801] = {.lex_state = 7, .external_lex_state = 6}, + [801] = {.lex_state = 2, .external_lex_state = 10}, [802] = {.lex_state = 2, .external_lex_state = 10}, - [803] = {.lex_state = 7, .external_lex_state = 4}, - [804] = {.lex_state = 3, .external_lex_state = 11}, - [805] = {.lex_state = 1, .external_lex_state = 7}, - [806] = {.lex_state = 3, .external_lex_state = 11}, - [807] = {.lex_state = 3, .external_lex_state = 11}, + [803] = {.lex_state = 2, .external_lex_state = 10}, + [804] = {.lex_state = 1, .external_lex_state = 7}, + [805] = {.lex_state = 3, .external_lex_state = 11}, + [806] = {.lex_state = 4, .external_lex_state = 4}, + [807] = {.lex_state = 7, .external_lex_state = 4}, [808] = {.lex_state = 3, .external_lex_state = 11}, - [809] = {.lex_state = 7, .external_lex_state = 4}, - [810] = {.lex_state = 7, .external_lex_state = 6}, - [811] = {.lex_state = 7, .external_lex_state = 6}, - [812] = {.lex_state = 1, .external_lex_state = 7}, - [813] = {.lex_state = 7, .external_lex_state = 6}, - [814] = {.lex_state = 7, .external_lex_state = 6}, - [815] = {.lex_state = 4, .external_lex_state = 4}, + [809] = {.lex_state = 3, .external_lex_state = 11}, + [810] = {.lex_state = 1, .external_lex_state = 7}, + [811] = {.lex_state = 7, .external_lex_state = 4}, + [812] = {.lex_state = 3, .external_lex_state = 11}, + [813] = {.lex_state = 3, .external_lex_state = 11}, + [814] = {.lex_state = 7, .external_lex_state = 4}, + [815] = {.lex_state = 7, .external_lex_state = 6}, [816] = {.lex_state = 7, .external_lex_state = 6}, [817] = {.lex_state = 7, .external_lex_state = 6}, - [818] = {.lex_state = 7, .external_lex_state = 6}, - [819] = {.lex_state = 7, .external_lex_state = 4}, - [820] = {.lex_state = 1, .external_lex_state = 7}, - [821] = {.lex_state = 3, .external_lex_state = 11}, - [822] = {.lex_state = 7, .external_lex_state = 4}, - [823] = {.lex_state = 3, .external_lex_state = 11}, - [824] = {.lex_state = 4, .external_lex_state = 4}, - [825] = {.lex_state = 85, .external_lex_state = 4}, - [826] = {.lex_state = 83, .external_lex_state = 5}, - [827] = {.lex_state = 2, .external_lex_state = 8}, - [828] = {.lex_state = 2, .external_lex_state = 8}, + [818] = {.lex_state = 1, .external_lex_state = 7}, + [819] = {.lex_state = 7, .external_lex_state = 6}, + [820] = {.lex_state = 7, .external_lex_state = 6}, + [821] = {.lex_state = 7, .external_lex_state = 4}, + [822] = {.lex_state = 4, .external_lex_state = 4}, + [823] = {.lex_state = 7, .external_lex_state = 6}, + [824] = {.lex_state = 3, .external_lex_state = 11}, + [825] = {.lex_state = 7, .external_lex_state = 6}, + [826] = {.lex_state = 4, .external_lex_state = 4}, + [827] = {.lex_state = 83, .external_lex_state = 4}, + [828] = {.lex_state = 85, .external_lex_state = 4}, [829] = {.lex_state = 2, .external_lex_state = 8}, - [830] = {.lex_state = 83, .external_lex_state = 4}, - [831] = {.lex_state = 85, .external_lex_state = 4}, + [830] = {.lex_state = 2, .external_lex_state = 8}, + [831] = {.lex_state = 83, .external_lex_state = 4}, [832] = {.lex_state = 1, .external_lex_state = 9}, - [833] = {.lex_state = 85, .external_lex_state = 4}, - [834] = {.lex_state = 1, .external_lex_state = 9}, - [835] = {.lex_state = 83, .external_lex_state = 5}, - [836] = {.lex_state = 4, .external_lex_state = 4}, - [837] = {.lex_state = 85, .external_lex_state = 4}, + [833] = {.lex_state = 7, .external_lex_state = 4}, + [834] = {.lex_state = 85, .external_lex_state = 4}, + [835] = {.lex_state = 85, .external_lex_state = 4}, + [836] = {.lex_state = 85, .external_lex_state = 4}, + [837] = {.lex_state = 1, .external_lex_state = 9}, [838] = {.lex_state = 85, .external_lex_state = 4}, - [839] = {.lex_state = 85, .external_lex_state = 4}, - [840] = {.lex_state = 83, .external_lex_state = 4}, - [841] = {.lex_state = 7, .external_lex_state = 4}, - [842] = {.lex_state = 3, .external_lex_state = 4}, - [843] = {.lex_state = 3, .external_lex_state = 4}, + [839] = {.lex_state = 83, .external_lex_state = 5}, + [840] = {.lex_state = 2, .external_lex_state = 8}, + [841] = {.lex_state = 83, .external_lex_state = 5}, + [842] = {.lex_state = 85, .external_lex_state = 4}, + [843] = {.lex_state = 4, .external_lex_state = 4}, [844] = {.lex_state = 3, .external_lex_state = 4}, [845] = {.lex_state = 3, .external_lex_state = 4}, [846] = {.lex_state = 3, .external_lex_state = 4}, [847] = {.lex_state = 3, .external_lex_state = 4}, [848] = {.lex_state = 3, .external_lex_state = 4}, - [849] = {.lex_state = 4, .external_lex_state = 4}, - [850] = {.lex_state = 2, .external_lex_state = 10}, + [849] = {.lex_state = 3, .external_lex_state = 4}, + [850] = {.lex_state = 3, .external_lex_state = 4}, [851] = {.lex_state = 3, .external_lex_state = 4}, [852] = {.lex_state = 3, .external_lex_state = 4}, - [853] = {.lex_state = 3, .external_lex_state = 4}, - [854] = {.lex_state = 3, .external_lex_state = 4}, + [853] = {.lex_state = 0, .external_lex_state = 11}, + [854] = {.lex_state = 2, .external_lex_state = 10}, [855] = {.lex_state = 2, .external_lex_state = 10}, [856] = {.lex_state = 3, .external_lex_state = 4}, - [857] = {.lex_state = 0, .external_lex_state = 11}, + [857] = {.lex_state = 3, .external_lex_state = 4}, [858] = {.lex_state = 3, .external_lex_state = 4}, [859] = {.lex_state = 14, .external_lex_state = 4}, - [860] = {.lex_state = 0, .external_lex_state = 6}, - [861] = {.lex_state = 0, .external_lex_state = 4}, + [860] = {.lex_state = 3, .external_lex_state = 4}, + [861] = {.lex_state = 83, .external_lex_state = 5}, [862] = {.lex_state = 16, .external_lex_state = 4}, - [863] = {.lex_state = 16, .external_lex_state = 4}, - [864] = {.lex_state = 0, .external_lex_state = 4}, - [865] = {.lex_state = 16, .external_lex_state = 4}, - [866] = {.lex_state = 0, .external_lex_state = 4}, - [867] = {.lex_state = 4, .external_lex_state = 4}, - [868] = {.lex_state = 16, .external_lex_state = 4}, + [863] = {.lex_state = 0, .external_lex_state = 4}, + [864] = {.lex_state = 0, .external_lex_state = 6}, + [865] = {.lex_state = 0, .external_lex_state = 4}, + [866] = {.lex_state = 14, .external_lex_state = 4}, + [867] = {.lex_state = 0, .external_lex_state = 4}, + [868] = {.lex_state = 0, .external_lex_state = 4}, [869] = {.lex_state = 0, .external_lex_state = 4}, - [870] = {.lex_state = 0, .external_lex_state = 4}, - [871] = {.lex_state = 14, .external_lex_state = 4}, - [872] = {.lex_state = 83, .external_lex_state = 5}, - [873] = {.lex_state = 0, .external_lex_state = 4}, - [874] = {.lex_state = 11, .external_lex_state = 4}, + [870] = {.lex_state = 11, .external_lex_state = 4}, + [871] = {.lex_state = 0, .external_lex_state = 4}, + [872] = {.lex_state = 11, .external_lex_state = 4}, + [873] = {.lex_state = 0, .external_lex_state = 6}, + [874] = {.lex_state = 83, .external_lex_state = 5}, [875] = {.lex_state = 83, .external_lex_state = 5}, [876] = {.lex_state = 83, .external_lex_state = 5}, - [877] = {.lex_state = 16, .external_lex_state = 4}, - [878] = {.lex_state = 0, .external_lex_state = 4}, - [879] = {.lex_state = 4, .external_lex_state = 4}, + [877] = {.lex_state = 0, .external_lex_state = 4}, + [878] = {.lex_state = 83, .external_lex_state = 5}, + [879] = {.lex_state = 16, .external_lex_state = 4}, [880] = {.lex_state = 16, .external_lex_state = 4}, - [881] = {.lex_state = 11, .external_lex_state = 4}, - [882] = {.lex_state = 16, .external_lex_state = 4}, - [883] = {.lex_state = 83, .external_lex_state = 5}, - [884] = {.lex_state = 83, .external_lex_state = 5}, - [885] = {.lex_state = 0, .external_lex_state = 6}, - [886] = {.lex_state = 7, .external_lex_state = 4}, + [881] = {.lex_state = 16, .external_lex_state = 4}, + [882] = {.lex_state = 7, .external_lex_state = 4}, + [883] = {.lex_state = 16, .external_lex_state = 4}, + [884] = {.lex_state = 4, .external_lex_state = 4}, + [885] = {.lex_state = 0, .external_lex_state = 4}, + [886] = {.lex_state = 0, .external_lex_state = 6}, [887] = {.lex_state = 0, .external_lex_state = 4}, [888] = {.lex_state = 16, .external_lex_state = 4}, - [889] = {.lex_state = 0, .external_lex_state = 4}, - [890] = {.lex_state = 11, .external_lex_state = 4}, - [891] = {.lex_state = 0, .external_lex_state = 6}, - [892] = {.lex_state = 16, .external_lex_state = 4}, - [893] = {.lex_state = 0, .external_lex_state = 4}, - [894] = {.lex_state = 0, .external_lex_state = 4}, - [895] = {.lex_state = 0, .external_lex_state = 6}, - [896] = {.lex_state = 0, .external_lex_state = 4}, - [897] = {.lex_state = 16, .external_lex_state = 4}, - [898] = {.lex_state = 11, .external_lex_state = 4}, - [899] = {.lex_state = 16, .external_lex_state = 4}, + [889] = {.lex_state = 0, .external_lex_state = 6}, + [890] = {.lex_state = 0, .external_lex_state = 4}, + [891] = {.lex_state = 83, .external_lex_state = 5}, + [892] = {.lex_state = 0, .external_lex_state = 4}, + [893] = {.lex_state = 16, .external_lex_state = 4}, + [894] = {.lex_state = 16, .external_lex_state = 4}, + [895] = {.lex_state = 16, .external_lex_state = 4}, + [896] = {.lex_state = 3, .external_lex_state = 4}, + [897] = {.lex_state = 11, .external_lex_state = 4}, + [898] = {.lex_state = 16, .external_lex_state = 4}, + [899] = {.lex_state = 11, .external_lex_state = 4}, [900] = {.lex_state = 0, .external_lex_state = 4}, - [901] = {.lex_state = 0, .external_lex_state = 4}, + [901] = {.lex_state = 83, .external_lex_state = 5}, [902] = {.lex_state = 0, .external_lex_state = 4}, - [903] = {.lex_state = 83, .external_lex_state = 5}, - [904] = {.lex_state = 16, .external_lex_state = 4}, - [905] = {.lex_state = 83, .external_lex_state = 5}, - [906] = {.lex_state = 16, .external_lex_state = 4}, - [907] = {.lex_state = 16, .external_lex_state = 4}, - [908] = {.lex_state = 16, .external_lex_state = 4}, - [909] = {.lex_state = 11, .external_lex_state = 4}, - [910] = {.lex_state = 0, .external_lex_state = 4}, - [911] = {.lex_state = 0, .external_lex_state = 6}, - [912] = {.lex_state = 0, .external_lex_state = 4}, - [913] = {.lex_state = 0, .external_lex_state = 4}, - [914] = {.lex_state = 0, .external_lex_state = 4}, - [915] = {.lex_state = 16, .external_lex_state = 4}, + [903] = {.lex_state = 16, .external_lex_state = 4}, + [904] = {.lex_state = 0, .external_lex_state = 4}, + [905] = {.lex_state = 0, .external_lex_state = 4}, + [906] = {.lex_state = 0, .external_lex_state = 4}, + [907] = {.lex_state = 11, .external_lex_state = 4}, + [908] = {.lex_state = 0, .external_lex_state = 6}, + [909] = {.lex_state = 0, .external_lex_state = 4}, + [910] = {.lex_state = 0, .external_lex_state = 6}, + [911] = {.lex_state = 0, .external_lex_state = 4}, + [912] = {.lex_state = 16, .external_lex_state = 4}, + [913] = {.lex_state = 83, .external_lex_state = 5}, + [914] = {.lex_state = 16, .external_lex_state = 4}, + [915] = {.lex_state = 0, .external_lex_state = 4}, [916] = {.lex_state = 0, .external_lex_state = 4}, - [917] = {.lex_state = 16, .external_lex_state = 4}, + [917] = {.lex_state = 83, .external_lex_state = 5}, [918] = {.lex_state = 16, .external_lex_state = 4}, [919] = {.lex_state = 16, .external_lex_state = 4}, - [920] = {.lex_state = 3, .external_lex_state = 4}, - [921] = {.lex_state = 11, .external_lex_state = 4}, - [922] = {.lex_state = 11, .external_lex_state = 4}, - [923] = {.lex_state = 16, .external_lex_state = 4}, + [920] = {.lex_state = 4, .external_lex_state = 4}, + [921] = {.lex_state = 4, .external_lex_state = 4}, + [922] = {.lex_state = 0, .external_lex_state = 4}, + [923] = {.lex_state = 0, .external_lex_state = 4}, [924] = {.lex_state = 0, .external_lex_state = 4}, - [925] = {.lex_state = 0, .external_lex_state = 4}, + [925] = {.lex_state = 16, .external_lex_state = 4}, [926] = {.lex_state = 0, .external_lex_state = 4}, - [927] = {.lex_state = 16, .external_lex_state = 4}, - [928] = {.lex_state = 83, .external_lex_state = 5}, - [929] = {.lex_state = 0, .external_lex_state = 4}, - [930] = {.lex_state = 4, .external_lex_state = 4}, + [927] = {.lex_state = 0, .external_lex_state = 4}, + [928] = {.lex_state = 16, .external_lex_state = 4}, + [929] = {.lex_state = 11, .external_lex_state = 4}, + [930] = {.lex_state = 16, .external_lex_state = 4}, [931] = {.lex_state = 0, .external_lex_state = 4}, [932] = {.lex_state = 16, .external_lex_state = 4}, - [933] = {.lex_state = 0, .external_lex_state = 4}, + [933] = {.lex_state = 0, .external_lex_state = 6}, [934] = {.lex_state = 16, .external_lex_state = 4}, - [935] = {.lex_state = 0, .external_lex_state = 4}, - [936] = {.lex_state = 0, .external_lex_state = 4}, - [937] = {.lex_state = 0, .external_lex_state = 6}, + [935] = {.lex_state = 0, .external_lex_state = 6}, + [936] = {.lex_state = 16, .external_lex_state = 4}, + [937] = {.lex_state = 16, .external_lex_state = 4}, [938] = {.lex_state = 16, .external_lex_state = 4}, - [939] = {.lex_state = 0, .external_lex_state = 4}, - [940] = {.lex_state = 83, .external_lex_state = 5}, - [941] = {.lex_state = 0, .external_lex_state = 6}, - [942] = {.lex_state = 0, .external_lex_state = 6}, - [943] = {.lex_state = 7, .external_lex_state = 4}, - [944] = {.lex_state = 7, .external_lex_state = 4}, - [945] = {.lex_state = 85, .external_lex_state = 4}, - [946] = {.lex_state = 0, .external_lex_state = 4}, + [939] = {.lex_state = 16, .external_lex_state = 4}, + [940] = {.lex_state = 0, .external_lex_state = 4}, + [941] = {.lex_state = 11, .external_lex_state = 4}, + [942] = {.lex_state = 0, .external_lex_state = 4}, + [943] = {.lex_state = 0, .external_lex_state = 4}, + [944] = {.lex_state = 0, .external_lex_state = 4}, + [945] = {.lex_state = 0, .external_lex_state = 4}, + [946] = {.lex_state = 7, .external_lex_state = 4}, [947] = {.lex_state = 7, .external_lex_state = 4}, [948] = {.lex_state = 0, .external_lex_state = 4}, - [949] = {.lex_state = 0, .external_lex_state = 4}, - [950] = {.lex_state = 0, .external_lex_state = 4}, + [949] = {.lex_state = 7, .external_lex_state = 4}, + [950] = {.lex_state = 7, .external_lex_state = 4}, [951] = {.lex_state = 0, .external_lex_state = 4}, [952] = {.lex_state = 0, .external_lex_state = 4}, [953] = {.lex_state = 83, .external_lex_state = 4}, - [954] = {.lex_state = 7, .external_lex_state = 4}, + [954] = {.lex_state = 0, .external_lex_state = 4}, [955] = {.lex_state = 0, .external_lex_state = 4}, - [956] = {.lex_state = 83, .external_lex_state = 4}, - [957] = {.lex_state = 7, .external_lex_state = 4}, + [956] = {.lex_state = 0, .external_lex_state = 4}, + [957] = {.lex_state = 0, .external_lex_state = 4}, [958] = {.lex_state = 0, .external_lex_state = 4}, - [959] = {.lex_state = 83, .external_lex_state = 4}, + [959] = {.lex_state = 0, .external_lex_state = 4}, [960] = {.lex_state = 0, .external_lex_state = 4}, - [961] = {.lex_state = 7, .external_lex_state = 4}, - [962] = {.lex_state = 83, .external_lex_state = 4}, + [961] = {.lex_state = 0, .external_lex_state = 4}, + [962] = {.lex_state = 0, .external_lex_state = 4}, [963] = {.lex_state = 0, .external_lex_state = 4}, - [964] = {.lex_state = 83, .external_lex_state = 4}, + [964] = {.lex_state = 7, .external_lex_state = 4}, [965] = {.lex_state = 0, .external_lex_state = 4}, - [966] = {.lex_state = 0, .external_lex_state = 4}, - [967] = {.lex_state = 83, .external_lex_state = 4}, - [968] = {.lex_state = 7, .external_lex_state = 4}, + [966] = {.lex_state = 7, .external_lex_state = 4}, + [967] = {.lex_state = 7, .external_lex_state = 4}, + [968] = {.lex_state = 0, .external_lex_state = 4}, [969] = {.lex_state = 0, .external_lex_state = 4}, - [970] = {.lex_state = 0, .external_lex_state = 4}, - [971] = {.lex_state = 0, .external_lex_state = 4}, - [972] = {.lex_state = 0, .external_lex_state = 4}, - [973] = {.lex_state = 0, .external_lex_state = 4}, - [974] = {.lex_state = 0, .external_lex_state = 4}, + [970] = {.lex_state = 83, .external_lex_state = 4}, + [971] = {.lex_state = 83, .external_lex_state = 4}, + [972] = {.lex_state = 85, .external_lex_state = 4}, + [973] = {.lex_state = 7, .external_lex_state = 4}, + [974] = {.lex_state = 83, .external_lex_state = 4}, [975] = {.lex_state = 0, .external_lex_state = 4}, - [976] = {.lex_state = 0, .external_lex_state = 4}, - [977] = {.lex_state = 0, .external_lex_state = 4}, - [978] = {.lex_state = 0, .external_lex_state = 4}, - [979] = {.lex_state = 7, .external_lex_state = 4}, - [980] = {.lex_state = 0, .external_lex_state = 4}, - [981] = {.lex_state = 7, .external_lex_state = 4}, - [982] = {.lex_state = 85, .external_lex_state = 4}, + [976] = {.lex_state = 83, .external_lex_state = 4}, + [977] = {.lex_state = 83, .external_lex_state = 4}, + [978] = {.lex_state = 85, .external_lex_state = 4}, + [979] = {.lex_state = 0, .external_lex_state = 4}, + [980] = {.lex_state = 7, .external_lex_state = 4}, + [981] = {.lex_state = 0, .external_lex_state = 4}, + [982] = {.lex_state = 0, .external_lex_state = 4}, [983] = {.lex_state = 0, .external_lex_state = 4}, - [984] = {.lex_state = 3, .external_lex_state = 4}, + [984] = {.lex_state = 0, .external_lex_state = 4}, [985] = {.lex_state = 0, .external_lex_state = 4}, [986] = {.lex_state = 0, .external_lex_state = 4}, - [987] = {.lex_state = 0, .external_lex_state = 4}, - [988] = {.lex_state = 3, .external_lex_state = 4}, - [989] = {.lex_state = 0, .external_lex_state = 4}, - [990] = {.lex_state = 0, .external_lex_state = 4}, + [987] = {.lex_state = 85, .external_lex_state = 4}, + [988] = {.lex_state = 0, .external_lex_state = 4}, + [989] = {.lex_state = 3, .external_lex_state = 4}, + [990] = {.lex_state = 0, .external_lex_state = 5}, [991] = {.lex_state = 0, .external_lex_state = 4}, - [992] = {.lex_state = 0, .external_lex_state = 4}, + [992] = {.lex_state = 3, .external_lex_state = 4}, [993] = {.lex_state = 0, .external_lex_state = 4}, [994] = {.lex_state = 85, .external_lex_state = 4}, [995] = {.lex_state = 0, .external_lex_state = 4}, - [996] = {.lex_state = 0, .external_lex_state = 4}, - [997] = {.lex_state = 0, .external_lex_state = 4}, - [998] = {.lex_state = 3, .external_lex_state = 4}, - [999] = {.lex_state = 0, .external_lex_state = 5}, - [1000] = {.lex_state = 0, .external_lex_state = 5}, - [1001] = {.lex_state = 0, .external_lex_state = 4}, - [1002] = {.lex_state = 0, .external_lex_state = 4}, + [996] = {.lex_state = 0, .external_lex_state = 5}, + [997] = {.lex_state = 3, .external_lex_state = 4}, + [998] = {.lex_state = 0, .external_lex_state = 4}, + [999] = {.lex_state = 0, .external_lex_state = 4}, + [1000] = {.lex_state = 3, .external_lex_state = 4}, + [1001] = {.lex_state = 3, .external_lex_state = 4}, + [1002] = {.lex_state = 85, .external_lex_state = 4}, [1003] = {.lex_state = 0, .external_lex_state = 4}, - [1004] = {.lex_state = 85, .external_lex_state = 4}, - [1005] = {.lex_state = 4, .external_lex_state = 4}, - [1006] = {.lex_state = 3, .external_lex_state = 4}, + [1004] = {.lex_state = 0, .external_lex_state = 4}, + [1005] = {.lex_state = 3, .external_lex_state = 4}, + [1006] = {.lex_state = 0, .external_lex_state = 4}, [1007] = {.lex_state = 0, .external_lex_state = 4}, - [1008] = {.lex_state = 3, .external_lex_state = 4}, + [1008] = {.lex_state = 0, .external_lex_state = 4}, [1009] = {.lex_state = 0, .external_lex_state = 4}, [1010] = {.lex_state = 0, .external_lex_state = 4}, [1011] = {.lex_state = 0, .external_lex_state = 4}, - [1012] = {.lex_state = 0, .external_lex_state = 4}, + [1012] = {.lex_state = 3, .external_lex_state = 4}, [1013] = {.lex_state = 0, .external_lex_state = 4}, - [1014] = {.lex_state = 0, .external_lex_state = 4}, + [1014] = {.lex_state = 85, .external_lex_state = 4}, [1015] = {.lex_state = 0, .external_lex_state = 4}, - [1016] = {.lex_state = 0, .external_lex_state = 5}, + [1016] = {.lex_state = 3, .external_lex_state = 4}, [1017] = {.lex_state = 0, .external_lex_state = 4}, [1018] = {.lex_state = 0, .external_lex_state = 4}, - [1019] = {.lex_state = 0, .external_lex_state = 4}, + [1019] = {.lex_state = 85, .external_lex_state = 4}, [1020] = {.lex_state = 0, .external_lex_state = 4}, - [1021] = {.lex_state = 3, .external_lex_state = 4}, - [1022] = {.lex_state = 85, .external_lex_state = 4}, - [1023] = {.lex_state = 3, .external_lex_state = 4}, - [1024] = {.lex_state = 0, .external_lex_state = 4}, - [1025] = {.lex_state = 0, .external_lex_state = 4}, + [1021] = {.lex_state = 0, .external_lex_state = 4}, + [1022] = {.lex_state = 0, .external_lex_state = 4}, + [1023] = {.lex_state = 0, .external_lex_state = 4}, + [1024] = {.lex_state = 3, .external_lex_state = 4}, + [1025] = {.lex_state = 7, .external_lex_state = 4}, [1026] = {.lex_state = 0, .external_lex_state = 4}, [1027] = {.lex_state = 0, .external_lex_state = 4}, [1028] = {.lex_state = 0, .external_lex_state = 4}, [1029] = {.lex_state = 0, .external_lex_state = 4}, - [1030] = {.lex_state = 85, .external_lex_state = 4}, - [1031] = {.lex_state = 3, .external_lex_state = 4}, - [1032] = {.lex_state = 3, .external_lex_state = 4}, - [1033] = {.lex_state = 85, .external_lex_state = 4}, + [1030] = {.lex_state = 0, .external_lex_state = 4}, + [1031] = {.lex_state = 85, .external_lex_state = 4}, + [1032] = {.lex_state = 0, .external_lex_state = 4}, + [1033] = {.lex_state = 3, .external_lex_state = 4}, [1034] = {.lex_state = 0, .external_lex_state = 4}, - [1035] = {.lex_state = 3, .external_lex_state = 4}, - [1036] = {.lex_state = 0, .external_lex_state = 4}, - [1037] = {.lex_state = 85, .external_lex_state = 4}, - [1038] = {.lex_state = 3, .external_lex_state = 4}, - [1039] = {.lex_state = 0, .external_lex_state = 5}, - [1040] = {.lex_state = 0, .external_lex_state = 4}, + [1035] = {.lex_state = 0, .external_lex_state = 4}, + [1036] = {.lex_state = 3, .external_lex_state = 4}, + [1037] = {.lex_state = 3, .external_lex_state = 4}, + [1038] = {.lex_state = 85, .external_lex_state = 4}, + [1039] = {.lex_state = 85, .external_lex_state = 4}, + [1040] = {.lex_state = 3, .external_lex_state = 4}, [1041] = {.lex_state = 0, .external_lex_state = 4}, [1042] = {.lex_state = 0, .external_lex_state = 4}, - [1043] = {.lex_state = 0, .external_lex_state = 4}, - [1044] = {.lex_state = 3, .external_lex_state = 4}, + [1043] = {.lex_state = 3, .external_lex_state = 4}, + [1044] = {.lex_state = 85, .external_lex_state = 4}, [1045] = {.lex_state = 0, .external_lex_state = 4}, [1046] = {.lex_state = 0, .external_lex_state = 4}, [1047] = {.lex_state = 0, .external_lex_state = 4}, [1048] = {.lex_state = 0, .external_lex_state = 4}, [1049] = {.lex_state = 0, .external_lex_state = 4}, - [1050] = {.lex_state = 7, .external_lex_state = 4}, - [1051] = {.lex_state = 0, .external_lex_state = 4}, + [1050] = {.lex_state = 3, .external_lex_state = 4}, + [1051] = {.lex_state = 3, .external_lex_state = 4}, [1052] = {.lex_state = 0, .external_lex_state = 4}, [1053] = {.lex_state = 0, .external_lex_state = 4}, [1054] = {.lex_state = 0, .external_lex_state = 4}, - [1055] = {.lex_state = 85, .external_lex_state = 4}, - [1056] = {.lex_state = 3, .external_lex_state = 4}, - [1057] = {.lex_state = 3, .external_lex_state = 4}, - [1058] = {.lex_state = 0, .external_lex_state = 4}, - [1059] = {.lex_state = 3, .external_lex_state = 4}, + [1055] = {.lex_state = 0, .external_lex_state = 4}, + [1056] = {.lex_state = 0, .external_lex_state = 4}, + [1057] = {.lex_state = 0, .external_lex_state = 5}, + [1058] = {.lex_state = 85, .external_lex_state = 4}, + [1059] = {.lex_state = 0, .external_lex_state = 4}, [1060] = {.lex_state = 0, .external_lex_state = 4}, - [1061] = {.lex_state = 0, .external_lex_state = 4}, - [1062] = {.lex_state = 85, .external_lex_state = 4}, + [1061] = {.lex_state = 3, .external_lex_state = 4}, + [1062] = {.lex_state = 0, .external_lex_state = 4}, [1063] = {.lex_state = 0, .external_lex_state = 4}, - [1064] = {.lex_state = 7, .external_lex_state = 4}, - [1065] = {.lex_state = 0, .external_lex_state = 4}, - [1066] = {.lex_state = 0, .external_lex_state = 4}, + [1064] = {.lex_state = 3, .external_lex_state = 4}, + [1065] = {.lex_state = 7, .external_lex_state = 4}, + [1066] = {.lex_state = 85, .external_lex_state = 4}, [1067] = {.lex_state = 0, .external_lex_state = 4}, [1068] = {.lex_state = 0, .external_lex_state = 4}, - [1069] = {.lex_state = 7, .external_lex_state = 4}, - [1070] = {.lex_state = 0, .external_lex_state = 4}, + [1069] = {.lex_state = 0, .external_lex_state = 4}, + [1070] = {.lex_state = 7, .external_lex_state = 4}, [1071] = {.lex_state = 0, .external_lex_state = 4}, [1072] = {.lex_state = 0, .external_lex_state = 4}, [1073] = {.lex_state = 0, .external_lex_state = 4}, - [1074] = {.lex_state = 7, .external_lex_state = 4}, - [1075] = {.lex_state = 0, .external_lex_state = 4}, - [1076] = {.lex_state = 7, .external_lex_state = 4}, - [1077] = {.lex_state = 0, .external_lex_state = 5}, - [1078] = {.lex_state = 0, .external_lex_state = 4}, - [1079] = {.lex_state = 3, .external_lex_state = 4}, + [1074] = {.lex_state = 0, .external_lex_state = 4}, + [1075] = {.lex_state = 7, .external_lex_state = 4}, + [1076] = {.lex_state = 3, .external_lex_state = 4}, + [1077] = {.lex_state = 7, .external_lex_state = 4}, + [1078] = {.lex_state = 3, .external_lex_state = 4}, + [1079] = {.lex_state = 0, .external_lex_state = 4}, [1080] = {.lex_state = 0, .external_lex_state = 4}, - [1081] = {.lex_state = 7, .external_lex_state = 4}, - [1082] = {.lex_state = 0, .external_lex_state = 4}, - [1083] = {.lex_state = 7, .external_lex_state = 4}, - [1084] = {.lex_state = 0, .external_lex_state = 4}, + [1081] = {.lex_state = 0, .external_lex_state = 4}, + [1082] = {.lex_state = 7, .external_lex_state = 4}, + [1083] = {.lex_state = 0, .external_lex_state = 4}, + [1084] = {.lex_state = 7, .external_lex_state = 4}, [1085] = {.lex_state = 0, .external_lex_state = 4}, [1086] = {.lex_state = 0, .external_lex_state = 4}, - [1087] = {.lex_state = 85, .external_lex_state = 4}, - [1088] = {.lex_state = 7, .external_lex_state = 4}, - [1089] = {.lex_state = 3, .external_lex_state = 4}, - [1090] = {.lex_state = 7, .external_lex_state = 4}, - [1091] = {.lex_state = 4, .external_lex_state = 4}, + [1087] = {.lex_state = 0, .external_lex_state = 4}, + [1088] = {.lex_state = 4, .external_lex_state = 4}, + [1089] = {.lex_state = 7, .external_lex_state = 4}, + [1090] = {.lex_state = 0, .external_lex_state = 5}, + [1091] = {.lex_state = 7, .external_lex_state = 4}, [1092] = {.lex_state = 0, .external_lex_state = 4}, - [1093] = {.lex_state = 85, .external_lex_state = 4}, - [1094] = {.lex_state = 3, .external_lex_state = 4}, - [1095] = {.lex_state = 7, .external_lex_state = 4}, - [1096] = {.lex_state = 0, .external_lex_state = 4}, - [1097] = {.lex_state = 7, .external_lex_state = 4}, - [1098] = {.lex_state = 0, .external_lex_state = 4}, - [1099] = {.lex_state = 3, .external_lex_state = 4}, - [1100] = {.lex_state = 85, .external_lex_state = 4}, - [1101] = {.lex_state = 0, .external_lex_state = 4}, - [1102] = {.lex_state = 7, .external_lex_state = 4}, - [1103] = {.lex_state = 0, .external_lex_state = 4}, - [1104] = {.lex_state = 7, .external_lex_state = 4}, - [1105] = {.lex_state = 0, .external_lex_state = 5}, + [1093] = {.lex_state = 0, .external_lex_state = 4}, + [1094] = {.lex_state = 0, .external_lex_state = 4}, + [1095] = {.lex_state = 0, .external_lex_state = 4}, + [1096] = {.lex_state = 7, .external_lex_state = 4}, + [1097] = {.lex_state = 0, .external_lex_state = 5}, + [1098] = {.lex_state = 7, .external_lex_state = 4}, + [1099] = {.lex_state = 0, .external_lex_state = 4}, + [1100] = {.lex_state = 0, .external_lex_state = 4}, + [1101] = {.lex_state = 85, .external_lex_state = 4}, + [1102] = {.lex_state = 0, .external_lex_state = 4}, + [1103] = {.lex_state = 7, .external_lex_state = 4}, + [1104] = {.lex_state = 0, .external_lex_state = 4}, + [1105] = {.lex_state = 7, .external_lex_state = 4}, [1106] = {.lex_state = 0, .external_lex_state = 4}, [1107] = {.lex_state = 0, .external_lex_state = 4}, - [1108] = {.lex_state = 0, .external_lex_state = 5}, - [1109] = {.lex_state = 7, .external_lex_state = 4}, - [1110] = {.lex_state = 0, .external_lex_state = 4}, - [1111] = {.lex_state = 7, .external_lex_state = 4}, + [1108] = {.lex_state = 0, .external_lex_state = 4}, + [1109] = {.lex_state = 0, .external_lex_state = 5}, + [1110] = {.lex_state = 7, .external_lex_state = 4}, + [1111] = {.lex_state = 0, .external_lex_state = 4}, [1112] = {.lex_state = 7, .external_lex_state = 4}, - [1113] = {.lex_state = 0, .external_lex_state = 4}, - [1114] = {.lex_state = 7, .external_lex_state = 4}, - [1115] = {.lex_state = 3, .external_lex_state = 4}, - [1116] = {.lex_state = 7, .external_lex_state = 4}, - [1117] = {.lex_state = 85, .external_lex_state = 4}, - [1118] = {.lex_state = 7, .external_lex_state = 4}, - [1119] = {.lex_state = 0, .external_lex_state = 4}, + [1113] = {.lex_state = 7, .external_lex_state = 4}, + [1114] = {.lex_state = 0, .external_lex_state = 4}, + [1115] = {.lex_state = 0, .external_lex_state = 4}, + [1116] = {.lex_state = 0, .external_lex_state = 5}, + [1117] = {.lex_state = 7, .external_lex_state = 4}, + [1118] = {.lex_state = 0, .external_lex_state = 4}, + [1119] = {.lex_state = 7, .external_lex_state = 4}, [1120] = {.lex_state = 0, .external_lex_state = 4}, - [1121] = {.lex_state = 3, .external_lex_state = 4}, - [1122] = {.lex_state = 3, .external_lex_state = 4}, - [1123] = {.lex_state = 7, .external_lex_state = 4}, - [1124] = {.lex_state = 0, .external_lex_state = 4}, - [1125] = {.lex_state = 7, .external_lex_state = 4}, - [1126] = {.lex_state = 0, .external_lex_state = 4}, + [1121] = {.lex_state = 0, .external_lex_state = 4}, + [1122] = {.lex_state = 0, .external_lex_state = 4}, + [1123] = {.lex_state = 0, .external_lex_state = 4}, + [1124] = {.lex_state = 7, .external_lex_state = 4}, + [1125] = {.lex_state = 0, .external_lex_state = 4}, + [1126] = {.lex_state = 7, .external_lex_state = 4}, [1127] = {.lex_state = 0, .external_lex_state = 4}, [1128] = {.lex_state = 0, .external_lex_state = 4}, [1129] = {.lex_state = 0, .external_lex_state = 4}, [1130] = {.lex_state = 7, .external_lex_state = 4}, - [1131] = {.lex_state = 0, .external_lex_state = 4}, - [1132] = {.lex_state = 7, .external_lex_state = 4}, - [1133] = {.lex_state = 0, .external_lex_state = 4}, - [1134] = {.lex_state = 85, .external_lex_state = 4}, - [1135] = {.lex_state = 0, .external_lex_state = 4}, - [1136] = {.lex_state = 85, .external_lex_state = 4}, - [1137] = {.lex_state = 0, .external_lex_state = 4}, - [1138] = {.lex_state = 85, .external_lex_state = 4}, - [1139] = {.lex_state = 0, .external_lex_state = 5}, - [1140] = {.lex_state = 85, .external_lex_state = 4}, - [1141] = {.lex_state = 0, .external_lex_state = 4}, - [1142] = {.lex_state = 85, .external_lex_state = 4}, - [1143] = {.lex_state = 0, .external_lex_state = 4}, + [1131] = {.lex_state = 7, .external_lex_state = 4}, + [1132] = {.lex_state = 0, .external_lex_state = 5}, + [1133] = {.lex_state = 7, .external_lex_state = 4}, + [1134] = {.lex_state = 0, .external_lex_state = 4}, + [1135] = {.lex_state = 85, .external_lex_state = 4}, + [1136] = {.lex_state = 0, .external_lex_state = 4}, + [1137] = {.lex_state = 85, .external_lex_state = 4}, + [1138] = {.lex_state = 0, .external_lex_state = 4}, + [1139] = {.lex_state = 85, .external_lex_state = 4}, + [1140] = {.lex_state = 0, .external_lex_state = 4}, + [1141] = {.lex_state = 85, .external_lex_state = 4}, + [1142] = {.lex_state = 3, .external_lex_state = 4}, + [1143] = {.lex_state = 85, .external_lex_state = 4}, [1144] = {.lex_state = 0, .external_lex_state = 4}, - [1145] = {.lex_state = 0, .external_lex_state = 4}, + [1145] = {.lex_state = 4, .external_lex_state = 4}, [1146] = {.lex_state = 7, .external_lex_state = 4}, [1147] = {.lex_state = 0, .external_lex_state = 4}, + [1148] = {.lex_state = 3, .external_lex_state = 4}, }; enum { @@ -6023,30 +6019,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [1] = { - [sym_term] = STATE(1098), - [sym_uni_term] = STATE(674), - [sym_let_expr] = STATE(672), - [sym_let_in_block] = STATE(54), - [sym_fun_expr] = STATE(672), + [sym_term] = STATE(1099), + [sym_uni_term] = STATE(669), + [sym_let_expr] = STATE(670), + [sym_let_in_block] = STATE(69), + [sym_fun_expr] = STATE(670), [sym_match_expr] = STATE(456), - [sym_ite_expr] = STATE(672), - [sym_annotated_infix_expr] = STATE(672), - [sym_forall] = STATE(672), - [sym_applicative] = STATE(86), + [sym_ite_expr] = STATE(670), + [sym_annotated_infix_expr] = STATE(670), + [sym_forall] = STATE(670), + [sym_applicative] = STATE(84), [sym_type_array] = STATE(456), - [sym_record_operand] = STATE(252), + [sym_record_operand] = STATE(251), [sym_record_operation_chain] = STATE(256), [sym_uni_record] = STATE(366), [sym_atom] = STATE(256), [sym_bool] = STATE(366), [sym_str_chunks] = STATE(366), - [sym_str_chunks_single] = STATE(264), - [sym_str_chunks_multi] = STATE(264), + [sym_str_chunks_single] = STATE(266), + [sym_str_chunks_multi] = STATE(266), [sym_quoted_enum_tag] = STATE(225), - [sym_enum_tag] = STATE(80), + [sym_enum_tag] = STATE(81), [sym_enum_variant] = STATE(456), [sym_builtin] = STATE(366), - [sym_infix_u_op_5] = STATE(185), + [sym_infix_u_op_5] = STATE(186), [sym_infix_expr] = STATE(488), [sym_type_builtin] = STATE(240), [sym_type_atom] = STATE(366), @@ -6081,44 +6077,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [2] = { - [sym_uni_term] = STATE(1013), - [sym_let_expr] = STATE(672), - [sym_let_in_block] = STATE(70), - [sym_fun_expr] = STATE(672), - [sym_match_expr] = STATE(149), - [sym_ite_expr] = STATE(672), - [sym_annotated_infix_expr] = STATE(672), - [sym_forall] = STATE(672), + [sym_uni_term] = STATE(1010), + [sym_let_expr] = STATE(670), + [sym_let_in_block] = STATE(55), + [sym_fun_expr] = STATE(670), + [sym_match_expr] = STATE(150), + [sym_ite_expr] = STATE(670), + [sym_annotated_infix_expr] = STATE(670), + [sym_forall] = STATE(670), [sym_applicative] = STATE(9), - [sym_type_array] = STATE(149), - [sym_record_operand] = STATE(95), + [sym_type_array] = STATE(150), + [sym_record_operand] = STATE(87), [sym_record_operation_chain] = STATE(94), - [sym_uni_record] = STATE(102), + [sym_uni_record] = STATE(88), [sym_atom] = STATE(94), - [sym_bool] = STATE(102), - [sym_str_chunks] = STATE(102), - [sym_str_chunks_single] = STATE(98), - [sym_str_chunks_multi] = STATE(98), - [sym_quoted_enum_tag] = STATE(123), + [sym_bool] = STATE(88), + [sym_str_chunks] = STATE(88), + [sym_str_chunks_single] = STATE(96), + [sym_str_chunks_multi] = STATE(96), + [sym_quoted_enum_tag] = STATE(97), [sym_enum_tag] = STATE(8), - [sym_enum_variant] = STATE(149), - [sym_builtin] = STATE(102), - [sym_infix_b_op_2] = STATE(1053), - [sym_infix_b_op_3] = STATE(1053), - [sym_infix_b_op_4] = STATE(1053), - [sym_infix_u_op_5] = STATE(153), - [sym_infix_b_op_6] = STATE(1053), - [sym_infix_b_op_7] = STATE(1053), - [sym_infix_b_op_8] = STATE(1053), - [sym_infix_lazy_b_op_9] = STATE(1051), - [sym_infix_lazy_b_op_10] = STATE(1051), - [sym_infix_b_op] = STATE(1049), - [sym_infix_u_op_or_lazy_b_op] = STATE(1049), - [sym_infix_op] = STATE(983), - [sym_curried_op] = STATE(1013), + [sym_enum_variant] = STATE(150), + [sym_builtin] = STATE(88), + [sym_infix_b_op_2] = STATE(1123), + [sym_infix_b_op_3] = STATE(1123), + [sym_infix_b_op_4] = STATE(1123), + [sym_infix_u_op_5] = STATE(154), + [sym_infix_b_op_6] = STATE(1123), + [sym_infix_b_op_7] = STATE(1123), + [sym_infix_b_op_8] = STATE(1123), + [sym_infix_lazy_b_op_9] = STATE(1125), + [sym_infix_lazy_b_op_10] = STATE(1125), + [sym_infix_b_op] = STATE(1127), + [sym_infix_u_op_or_lazy_b_op] = STATE(1127), + [sym_infix_op] = STATE(1102), + [sym_curried_op] = STATE(1010), [sym_infix_expr] = STATE(461), - [sym_type_builtin] = STATE(99), - [sym_type_atom] = STATE(102), + [sym_type_builtin] = STATE(98), + [sym_type_atom] = STATE(88), [sym_num_literal] = ACTIONS(51), [sym_ident] = ACTIONS(53), [sym_raw_enum_tag] = ACTIONS(55), @@ -6166,44 +6162,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [3] = { - [sym_uni_term] = STATE(1145), - [sym_let_expr] = STATE(672), - [sym_let_in_block] = STATE(70), - [sym_fun_expr] = STATE(672), - [sym_match_expr] = STATE(149), - [sym_ite_expr] = STATE(672), - [sym_annotated_infix_expr] = STATE(672), - [sym_forall] = STATE(672), + [sym_uni_term] = STATE(1056), + [sym_let_expr] = STATE(670), + [sym_let_in_block] = STATE(55), + [sym_fun_expr] = STATE(670), + [sym_match_expr] = STATE(150), + [sym_ite_expr] = STATE(670), + [sym_annotated_infix_expr] = STATE(670), + [sym_forall] = STATE(670), [sym_applicative] = STATE(9), - [sym_type_array] = STATE(149), - [sym_record_operand] = STATE(95), + [sym_type_array] = STATE(150), + [sym_record_operand] = STATE(87), [sym_record_operation_chain] = STATE(94), - [sym_uni_record] = STATE(102), + [sym_uni_record] = STATE(88), [sym_atom] = STATE(94), - [sym_bool] = STATE(102), - [sym_str_chunks] = STATE(102), - [sym_str_chunks_single] = STATE(98), - [sym_str_chunks_multi] = STATE(98), - [sym_quoted_enum_tag] = STATE(123), + [sym_bool] = STATE(88), + [sym_str_chunks] = STATE(88), + [sym_str_chunks_single] = STATE(96), + [sym_str_chunks_multi] = STATE(96), + [sym_quoted_enum_tag] = STATE(97), [sym_enum_tag] = STATE(8), - [sym_enum_variant] = STATE(149), - [sym_builtin] = STATE(102), - [sym_infix_b_op_2] = STATE(1053), - [sym_infix_b_op_3] = STATE(1053), - [sym_infix_b_op_4] = STATE(1053), - [sym_infix_u_op_5] = STATE(153), - [sym_infix_b_op_6] = STATE(1053), - [sym_infix_b_op_7] = STATE(1053), - [sym_infix_b_op_8] = STATE(1053), - [sym_infix_lazy_b_op_9] = STATE(1051), - [sym_infix_lazy_b_op_10] = STATE(1051), - [sym_infix_b_op] = STATE(1049), - [sym_infix_u_op_or_lazy_b_op] = STATE(1049), - [sym_infix_op] = STATE(983), - [sym_curried_op] = STATE(1145), + [sym_enum_variant] = STATE(150), + [sym_builtin] = STATE(88), + [sym_infix_b_op_2] = STATE(1123), + [sym_infix_b_op_3] = STATE(1123), + [sym_infix_b_op_4] = STATE(1123), + [sym_infix_u_op_5] = STATE(154), + [sym_infix_b_op_6] = STATE(1123), + [sym_infix_b_op_7] = STATE(1123), + [sym_infix_b_op_8] = STATE(1123), + [sym_infix_lazy_b_op_9] = STATE(1125), + [sym_infix_lazy_b_op_10] = STATE(1125), + [sym_infix_b_op] = STATE(1127), + [sym_infix_u_op_or_lazy_b_op] = STATE(1127), + [sym_infix_op] = STATE(1102), + [sym_curried_op] = STATE(1056), [sym_infix_expr] = STATE(461), - [sym_type_builtin] = STATE(99), - [sym_type_atom] = STATE(102), + [sym_type_builtin] = STATE(98), + [sym_type_atom] = STATE(88), [sym_num_literal] = ACTIONS(51), [sym_ident] = ACTIONS(53), [sym_raw_enum_tag] = ACTIONS(55), @@ -6251,44 +6247,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [4] = { - [sym_uni_term] = STATE(1046), - [sym_let_expr] = STATE(672), - [sym_let_in_block] = STATE(70), - [sym_fun_expr] = STATE(672), - [sym_match_expr] = STATE(149), - [sym_ite_expr] = STATE(672), - [sym_annotated_infix_expr] = STATE(672), - [sym_forall] = STATE(672), + [sym_uni_term] = STATE(1095), + [sym_let_expr] = STATE(670), + [sym_let_in_block] = STATE(55), + [sym_fun_expr] = STATE(670), + [sym_match_expr] = STATE(150), + [sym_ite_expr] = STATE(670), + [sym_annotated_infix_expr] = STATE(670), + [sym_forall] = STATE(670), [sym_applicative] = STATE(9), - [sym_type_array] = STATE(149), - [sym_record_operand] = STATE(95), + [sym_type_array] = STATE(150), + [sym_record_operand] = STATE(87), [sym_record_operation_chain] = STATE(94), - [sym_uni_record] = STATE(102), + [sym_uni_record] = STATE(88), [sym_atom] = STATE(94), - [sym_bool] = STATE(102), - [sym_str_chunks] = STATE(102), - [sym_str_chunks_single] = STATE(98), - [sym_str_chunks_multi] = STATE(98), - [sym_quoted_enum_tag] = STATE(123), + [sym_bool] = STATE(88), + [sym_str_chunks] = STATE(88), + [sym_str_chunks_single] = STATE(96), + [sym_str_chunks_multi] = STATE(96), + [sym_quoted_enum_tag] = STATE(97), [sym_enum_tag] = STATE(8), - [sym_enum_variant] = STATE(149), - [sym_builtin] = STATE(102), - [sym_infix_b_op_2] = STATE(1053), - [sym_infix_b_op_3] = STATE(1053), - [sym_infix_b_op_4] = STATE(1053), - [sym_infix_u_op_5] = STATE(153), - [sym_infix_b_op_6] = STATE(1053), - [sym_infix_b_op_7] = STATE(1053), - [sym_infix_b_op_8] = STATE(1053), - [sym_infix_lazy_b_op_9] = STATE(1051), - [sym_infix_lazy_b_op_10] = STATE(1051), - [sym_infix_b_op] = STATE(1049), - [sym_infix_u_op_or_lazy_b_op] = STATE(1049), - [sym_infix_op] = STATE(983), - [sym_curried_op] = STATE(1046), + [sym_enum_variant] = STATE(150), + [sym_builtin] = STATE(88), + [sym_infix_b_op_2] = STATE(1123), + [sym_infix_b_op_3] = STATE(1123), + [sym_infix_b_op_4] = STATE(1123), + [sym_infix_u_op_5] = STATE(154), + [sym_infix_b_op_6] = STATE(1123), + [sym_infix_b_op_7] = STATE(1123), + [sym_infix_b_op_8] = STATE(1123), + [sym_infix_lazy_b_op_9] = STATE(1125), + [sym_infix_lazy_b_op_10] = STATE(1125), + [sym_infix_b_op] = STATE(1127), + [sym_infix_u_op_or_lazy_b_op] = STATE(1127), + [sym_infix_op] = STATE(1102), + [sym_curried_op] = STATE(1095), [sym_infix_expr] = STATE(461), - [sym_type_builtin] = STATE(99), - [sym_type_atom] = STATE(102), + [sym_type_builtin] = STATE(98), + [sym_type_atom] = STATE(88), [sym_num_literal] = ACTIONS(51), [sym_ident] = ACTIONS(53), [sym_raw_enum_tag] = ACTIONS(55), @@ -6336,44 +6332,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [5] = { - [sym_uni_term] = STATE(1086), - [sym_let_expr] = STATE(672), - [sym_let_in_block] = STATE(70), - [sym_fun_expr] = STATE(672), - [sym_match_expr] = STATE(149), - [sym_ite_expr] = STATE(672), - [sym_annotated_infix_expr] = STATE(672), - [sym_forall] = STATE(672), + [sym_uni_term] = STATE(1032), + [sym_let_expr] = STATE(670), + [sym_let_in_block] = STATE(55), + [sym_fun_expr] = STATE(670), + [sym_match_expr] = STATE(150), + [sym_ite_expr] = STATE(670), + [sym_annotated_infix_expr] = STATE(670), + [sym_forall] = STATE(670), [sym_applicative] = STATE(9), - [sym_type_array] = STATE(149), - [sym_record_operand] = STATE(95), + [sym_type_array] = STATE(150), + [sym_record_operand] = STATE(87), [sym_record_operation_chain] = STATE(94), - [sym_uni_record] = STATE(102), + [sym_uni_record] = STATE(88), [sym_atom] = STATE(94), - [sym_bool] = STATE(102), - [sym_str_chunks] = STATE(102), - [sym_str_chunks_single] = STATE(98), - [sym_str_chunks_multi] = STATE(98), - [sym_quoted_enum_tag] = STATE(123), + [sym_bool] = STATE(88), + [sym_str_chunks] = STATE(88), + [sym_str_chunks_single] = STATE(96), + [sym_str_chunks_multi] = STATE(96), + [sym_quoted_enum_tag] = STATE(97), [sym_enum_tag] = STATE(8), - [sym_enum_variant] = STATE(149), - [sym_builtin] = STATE(102), - [sym_infix_b_op_2] = STATE(1053), - [sym_infix_b_op_3] = STATE(1053), - [sym_infix_b_op_4] = STATE(1053), - [sym_infix_u_op_5] = STATE(153), - [sym_infix_b_op_6] = STATE(1053), - [sym_infix_b_op_7] = STATE(1053), - [sym_infix_b_op_8] = STATE(1053), - [sym_infix_lazy_b_op_9] = STATE(1051), - [sym_infix_lazy_b_op_10] = STATE(1051), - [sym_infix_b_op] = STATE(1049), - [sym_infix_u_op_or_lazy_b_op] = STATE(1049), - [sym_infix_op] = STATE(983), - [sym_curried_op] = STATE(1086), + [sym_enum_variant] = STATE(150), + [sym_builtin] = STATE(88), + [sym_infix_b_op_2] = STATE(1123), + [sym_infix_b_op_3] = STATE(1123), + [sym_infix_b_op_4] = STATE(1123), + [sym_infix_u_op_5] = STATE(154), + [sym_infix_b_op_6] = STATE(1123), + [sym_infix_b_op_7] = STATE(1123), + [sym_infix_b_op_8] = STATE(1123), + [sym_infix_lazy_b_op_9] = STATE(1125), + [sym_infix_lazy_b_op_10] = STATE(1125), + [sym_infix_b_op] = STATE(1127), + [sym_infix_u_op_or_lazy_b_op] = STATE(1127), + [sym_infix_op] = STATE(1102), + [sym_curried_op] = STATE(1032), [sym_infix_expr] = STATE(461), - [sym_type_builtin] = STATE(99), - [sym_type_atom] = STATE(102), + [sym_type_builtin] = STATE(98), + [sym_type_atom] = STATE(88), [sym_num_literal] = ACTIONS(51), [sym_ident] = ACTIONS(53), [sym_raw_enum_tag] = ACTIONS(55), @@ -6421,44 +6417,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [6] = { - [sym_uni_term] = STATE(991), - [sym_let_expr] = STATE(672), - [sym_let_in_block] = STATE(70), - [sym_fun_expr] = STATE(672), - [sym_match_expr] = STATE(149), - [sym_ite_expr] = STATE(672), - [sym_annotated_infix_expr] = STATE(672), - [sym_forall] = STATE(672), + [sym_uni_term] = STATE(1003), + [sym_let_expr] = STATE(670), + [sym_let_in_block] = STATE(55), + [sym_fun_expr] = STATE(670), + [sym_match_expr] = STATE(150), + [sym_ite_expr] = STATE(670), + [sym_annotated_infix_expr] = STATE(670), + [sym_forall] = STATE(670), [sym_applicative] = STATE(9), - [sym_type_array] = STATE(149), - [sym_record_operand] = STATE(95), + [sym_type_array] = STATE(150), + [sym_record_operand] = STATE(87), [sym_record_operation_chain] = STATE(94), - [sym_uni_record] = STATE(102), + [sym_uni_record] = STATE(88), [sym_atom] = STATE(94), - [sym_bool] = STATE(102), - [sym_str_chunks] = STATE(102), - [sym_str_chunks_single] = STATE(98), - [sym_str_chunks_multi] = STATE(98), - [sym_quoted_enum_tag] = STATE(123), + [sym_bool] = STATE(88), + [sym_str_chunks] = STATE(88), + [sym_str_chunks_single] = STATE(96), + [sym_str_chunks_multi] = STATE(96), + [sym_quoted_enum_tag] = STATE(97), [sym_enum_tag] = STATE(8), - [sym_enum_variant] = STATE(149), - [sym_builtin] = STATE(102), - [sym_infix_b_op_2] = STATE(1053), - [sym_infix_b_op_3] = STATE(1053), - [sym_infix_b_op_4] = STATE(1053), - [sym_infix_u_op_5] = STATE(153), - [sym_infix_b_op_6] = STATE(1053), - [sym_infix_b_op_7] = STATE(1053), - [sym_infix_b_op_8] = STATE(1053), - [sym_infix_lazy_b_op_9] = STATE(1051), - [sym_infix_lazy_b_op_10] = STATE(1051), - [sym_infix_b_op] = STATE(1049), - [sym_infix_u_op_or_lazy_b_op] = STATE(1049), - [sym_infix_op] = STATE(983), - [sym_curried_op] = STATE(991), + [sym_enum_variant] = STATE(150), + [sym_builtin] = STATE(88), + [sym_infix_b_op_2] = STATE(1123), + [sym_infix_b_op_3] = STATE(1123), + [sym_infix_b_op_4] = STATE(1123), + [sym_infix_u_op_5] = STATE(154), + [sym_infix_b_op_6] = STATE(1123), + [sym_infix_b_op_7] = STATE(1123), + [sym_infix_b_op_8] = STATE(1123), + [sym_infix_lazy_b_op_9] = STATE(1125), + [sym_infix_lazy_b_op_10] = STATE(1125), + [sym_infix_b_op] = STATE(1127), + [sym_infix_u_op_or_lazy_b_op] = STATE(1127), + [sym_infix_op] = STATE(1102), + [sym_curried_op] = STATE(1003), [sym_infix_expr] = STATE(461), - [sym_type_builtin] = STATE(99), - [sym_type_atom] = STATE(102), + [sym_type_builtin] = STATE(98), + [sym_type_atom] = STATE(88), [sym_num_literal] = ACTIONS(51), [sym_ident] = ACTIONS(53), [sym_raw_enum_tag] = ACTIONS(55), @@ -6506,44 +6502,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [7] = { - [sym_uni_term] = STATE(1054), - [sym_let_expr] = STATE(672), - [sym_let_in_block] = STATE(70), - [sym_fun_expr] = STATE(672), - [sym_match_expr] = STATE(149), - [sym_ite_expr] = STATE(672), - [sym_annotated_infix_expr] = STATE(672), - [sym_forall] = STATE(672), + [sym_uni_term] = STATE(1122), + [sym_let_expr] = STATE(670), + [sym_let_in_block] = STATE(55), + [sym_fun_expr] = STATE(670), + [sym_match_expr] = STATE(150), + [sym_ite_expr] = STATE(670), + [sym_annotated_infix_expr] = STATE(670), + [sym_forall] = STATE(670), [sym_applicative] = STATE(9), - [sym_type_array] = STATE(149), - [sym_record_operand] = STATE(95), + [sym_type_array] = STATE(150), + [sym_record_operand] = STATE(87), [sym_record_operation_chain] = STATE(94), - [sym_uni_record] = STATE(102), + [sym_uni_record] = STATE(88), [sym_atom] = STATE(94), - [sym_bool] = STATE(102), - [sym_str_chunks] = STATE(102), - [sym_str_chunks_single] = STATE(98), - [sym_str_chunks_multi] = STATE(98), - [sym_quoted_enum_tag] = STATE(123), + [sym_bool] = STATE(88), + [sym_str_chunks] = STATE(88), + [sym_str_chunks_single] = STATE(96), + [sym_str_chunks_multi] = STATE(96), + [sym_quoted_enum_tag] = STATE(97), [sym_enum_tag] = STATE(8), - [sym_enum_variant] = STATE(149), - [sym_builtin] = STATE(102), - [sym_infix_b_op_2] = STATE(1053), - [sym_infix_b_op_3] = STATE(1053), - [sym_infix_b_op_4] = STATE(1053), - [sym_infix_u_op_5] = STATE(153), - [sym_infix_b_op_6] = STATE(1053), - [sym_infix_b_op_7] = STATE(1053), - [sym_infix_b_op_8] = STATE(1053), - [sym_infix_lazy_b_op_9] = STATE(1051), - [sym_infix_lazy_b_op_10] = STATE(1051), - [sym_infix_b_op] = STATE(1049), - [sym_infix_u_op_or_lazy_b_op] = STATE(1049), - [sym_infix_op] = STATE(983), - [sym_curried_op] = STATE(1054), + [sym_enum_variant] = STATE(150), + [sym_builtin] = STATE(88), + [sym_infix_b_op_2] = STATE(1123), + [sym_infix_b_op_3] = STATE(1123), + [sym_infix_b_op_4] = STATE(1123), + [sym_infix_u_op_5] = STATE(154), + [sym_infix_b_op_6] = STATE(1123), + [sym_infix_b_op_7] = STATE(1123), + [sym_infix_b_op_8] = STATE(1123), + [sym_infix_lazy_b_op_9] = STATE(1125), + [sym_infix_lazy_b_op_10] = STATE(1125), + [sym_infix_b_op] = STATE(1127), + [sym_infix_u_op_or_lazy_b_op] = STATE(1127), + [sym_infix_op] = STATE(1102), + [sym_curried_op] = STATE(1122), [sym_infix_expr] = STATE(461), - [sym_type_builtin] = STATE(99), - [sym_type_atom] = STATE(102), + [sym_type_builtin] = STATE(98), + [sym_type_atom] = STATE(88), [sym_num_literal] = ACTIONS(51), [sym_ident] = ACTIONS(53), [sym_raw_enum_tag] = ACTIONS(55), @@ -6619,11 +6615,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(121), 1, anon_sym_PERCENT, STATE(97), 1, - sym_record_operand, - STATE(99), 1, - sym_type_builtin, - STATE(123), 1, sym_quoted_enum_tag, + STATE(98), 1, + sym_type_builtin, + STATE(124), 1, + sym_record_operand, ACTIONS(53), 2, sym_ident, anon_sym_null, @@ -6633,7 +6629,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(94), 2, sym_record_operation_chain, sym_atom, - STATE(98), 2, + STATE(96), 2, sym_str_chunks_single, sym_str_chunks_multi, ACTIONS(73), 4, @@ -6641,7 +6637,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - STATE(102), 6, + STATE(88), 6, sym_uni_record, sym_bool, sym_str_chunks, @@ -6701,12 +6697,12 @@ static const uint16_t ts_small_parse_table[] = { sym__str_start, ACTIONS(115), 1, sym_quoted_enum_tag_start, - STATE(99), 1, + STATE(97), 1, + sym_quoted_enum_tag, + STATE(98), 1, sym_type_builtin, - STATE(101), 1, + STATE(105), 1, sym_record_operand, - STATE(123), 1, - sym_quoted_enum_tag, ACTIONS(53), 2, sym_ident, anon_sym_null, @@ -6716,7 +6712,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(94), 2, sym_record_operation_chain, sym_atom, - STATE(98), 2, + STATE(96), 2, sym_str_chunks_single, sym_str_chunks_multi, ACTIONS(73), 4, @@ -6724,7 +6720,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - STATE(102), 6, + STATE(88), 6, sym_uni_record, sym_bool, sym_str_chunks, @@ -6812,21 +6808,21 @@ static const uint16_t ts_small_parse_table[] = { sym_enum_tag, STATE(9), 1, sym_applicative, - STATE(70), 1, + STATE(55), 1, sym_let_in_block, - STATE(95), 1, + STATE(87), 1, sym_record_operand, - STATE(99), 1, - sym_type_builtin, - STATE(123), 1, + STATE(97), 1, sym_quoted_enum_tag, + STATE(98), 1, + sym_type_builtin, STATE(158), 1, sym_infix_u_op_5, STATE(461), 1, sym_infix_expr, - STATE(674), 1, + STATE(669), 1, sym_uni_term, - STATE(935), 1, + STATE(871), 1, sym_term, ACTIONS(53), 2, sym_ident, @@ -6837,10 +6833,10 @@ static const uint16_t ts_small_parse_table[] = { STATE(94), 2, sym_record_operation_chain, sym_atom, - STATE(98), 2, + STATE(96), 2, sym_str_chunks_single, sym_str_chunks_multi, - STATE(149), 3, + STATE(150), 3, sym_match_expr, sym_type_array, sym_enum_variant, @@ -6849,13 +6845,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - STATE(102), 5, + STATE(88), 5, sym_uni_record, sym_bool, sym_str_chunks, sym_builtin, sym_type_atom, - STATE(672), 5, + STATE(670), 5, sym_let_expr, sym_fun_expr, sym_ite_expr, @@ -6912,21 +6908,21 @@ static const uint16_t ts_small_parse_table[] = { sym_enum_tag, STATE(9), 1, sym_applicative, - STATE(70), 1, + STATE(55), 1, sym_let_in_block, - STATE(95), 1, + STATE(87), 1, sym_record_operand, - STATE(99), 1, - sym_type_builtin, - STATE(123), 1, + STATE(97), 1, sym_quoted_enum_tag, + STATE(98), 1, + sym_type_builtin, STATE(158), 1, sym_infix_u_op_5, STATE(461), 1, sym_infix_expr, - STATE(674), 1, + STATE(669), 1, sym_uni_term, - STATE(901), 1, + STATE(902), 1, sym_term, ACTIONS(53), 2, sym_ident, @@ -6937,10 +6933,10 @@ static const uint16_t ts_small_parse_table[] = { STATE(94), 2, sym_record_operation_chain, sym_atom, - STATE(98), 2, + STATE(96), 2, sym_str_chunks_single, sym_str_chunks_multi, - STATE(149), 3, + STATE(150), 3, sym_match_expr, sym_type_array, sym_enum_variant, @@ -6949,13 +6945,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - STATE(102), 5, + STATE(88), 5, sym_uni_record, sym_bool, sym_str_chunks, sym_builtin, sym_type_atom, - STATE(672), 5, + STATE(670), 5, sym_let_expr, sym_fun_expr, sym_ite_expr, @@ -7012,21 +7008,21 @@ static const uint16_t ts_small_parse_table[] = { sym_enum_tag, STATE(9), 1, sym_applicative, - STATE(70), 1, + STATE(55), 1, sym_let_in_block, - STATE(95), 1, + STATE(87), 1, sym_record_operand, - STATE(99), 1, - sym_type_builtin, - STATE(123), 1, + STATE(97), 1, sym_quoted_enum_tag, + STATE(98), 1, + sym_type_builtin, STATE(158), 1, sym_infix_u_op_5, STATE(461), 1, sym_infix_expr, - STATE(674), 1, + STATE(669), 1, sym_uni_term, - STATE(916), 1, + STATE(940), 1, sym_term, ACTIONS(53), 2, sym_ident, @@ -7037,10 +7033,10 @@ static const uint16_t ts_small_parse_table[] = { STATE(94), 2, sym_record_operation_chain, sym_atom, - STATE(98), 2, + STATE(96), 2, sym_str_chunks_single, sym_str_chunks_multi, - STATE(149), 3, + STATE(150), 3, sym_match_expr, sym_type_array, sym_enum_variant, @@ -7049,13 +7045,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - STATE(102), 5, + STATE(88), 5, sym_uni_record, sym_bool, sym_str_chunks, sym_builtin, sym_type_atom, - STATE(672), 5, + STATE(670), 5, sym_let_expr, sym_fun_expr, sym_ite_expr, @@ -7112,21 +7108,21 @@ static const uint16_t ts_small_parse_table[] = { sym_enum_tag, STATE(9), 1, sym_applicative, - STATE(70), 1, + STATE(55), 1, sym_let_in_block, - STATE(95), 1, + STATE(87), 1, sym_record_operand, - STATE(99), 1, - sym_type_builtin, - STATE(123), 1, + STATE(97), 1, sym_quoted_enum_tag, + STATE(98), 1, + sym_type_builtin, STATE(158), 1, sym_infix_u_op_5, STATE(461), 1, sym_infix_expr, - STATE(674), 1, + STATE(669), 1, sym_uni_term, - STATE(900), 1, + STATE(905), 1, sym_term, ACTIONS(53), 2, sym_ident, @@ -7137,10 +7133,10 @@ static const uint16_t ts_small_parse_table[] = { STATE(94), 2, sym_record_operation_chain, sym_atom, - STATE(98), 2, + STATE(96), 2, sym_str_chunks_single, sym_str_chunks_multi, - STATE(149), 3, + STATE(150), 3, sym_match_expr, sym_type_array, sym_enum_variant, @@ -7149,13 +7145,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - STATE(102), 5, + STATE(88), 5, sym_uni_record, sym_bool, sym_str_chunks, sym_builtin, sym_type_atom, - STATE(672), 5, + STATE(670), 5, sym_let_expr, sym_fun_expr, sym_ite_expr, @@ -7212,21 +7208,21 @@ static const uint16_t ts_small_parse_table[] = { sym_enum_tag, STATE(9), 1, sym_applicative, - STATE(70), 1, + STATE(55), 1, sym_let_in_block, - STATE(95), 1, + STATE(87), 1, sym_record_operand, - STATE(99), 1, - sym_type_builtin, - STATE(123), 1, + STATE(97), 1, sym_quoted_enum_tag, + STATE(98), 1, + sym_type_builtin, STATE(158), 1, sym_infix_u_op_5, STATE(461), 1, sym_infix_expr, - STATE(674), 1, + STATE(669), 1, sym_uni_term, - STATE(889), 1, + STATE(931), 1, sym_term, ACTIONS(53), 2, sym_ident, @@ -7237,10 +7233,10 @@ static const uint16_t ts_small_parse_table[] = { STATE(94), 2, sym_record_operation_chain, sym_atom, - STATE(98), 2, + STATE(96), 2, sym_str_chunks_single, sym_str_chunks_multi, - STATE(149), 3, + STATE(150), 3, sym_match_expr, sym_type_array, sym_enum_variant, @@ -7249,13 +7245,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - STATE(102), 5, + STATE(88), 5, sym_uni_record, sym_bool, sym_str_chunks, sym_builtin, sym_type_atom, - STATE(672), 5, + STATE(670), 5, sym_let_expr, sym_fun_expr, sym_ite_expr, @@ -7312,21 +7308,21 @@ static const uint16_t ts_small_parse_table[] = { sym_enum_tag, STATE(9), 1, sym_applicative, - STATE(70), 1, + STATE(55), 1, sym_let_in_block, - STATE(95), 1, + STATE(87), 1, sym_record_operand, - STATE(99), 1, - sym_type_builtin, - STATE(123), 1, + STATE(97), 1, sym_quoted_enum_tag, + STATE(98), 1, + sym_type_builtin, STATE(158), 1, sym_infix_u_op_5, STATE(461), 1, sym_infix_expr, - STATE(674), 1, + STATE(669), 1, sym_uni_term, - STATE(878), 1, + STATE(869), 1, sym_term, ACTIONS(53), 2, sym_ident, @@ -7337,10 +7333,10 @@ static const uint16_t ts_small_parse_table[] = { STATE(94), 2, sym_record_operation_chain, sym_atom, - STATE(98), 2, + STATE(96), 2, sym_str_chunks_single, sym_str_chunks_multi, - STATE(149), 3, + STATE(150), 3, sym_match_expr, sym_type_array, sym_enum_variant, @@ -7349,13 +7345,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - STATE(102), 5, + STATE(88), 5, sym_uni_record, sym_bool, sym_str_chunks, sym_builtin, sym_type_atom, - STATE(672), 5, + STATE(670), 5, sym_let_expr, sym_fun_expr, sym_ite_expr, @@ -7410,21 +7406,21 @@ static const uint16_t ts_small_parse_table[] = { sym_enum_tag, STATE(9), 1, sym_applicative, - STATE(70), 1, + STATE(55), 1, sym_let_in_block, - STATE(95), 1, + STATE(87), 1, sym_record_operand, - STATE(99), 1, - sym_type_builtin, - STATE(123), 1, + STATE(97), 1, sym_quoted_enum_tag, + STATE(98), 1, + sym_type_builtin, STATE(158), 1, sym_infix_u_op_5, STATE(461), 1, sym_infix_expr, - STATE(674), 1, + STATE(669), 1, sym_uni_term, - STATE(949), 1, + STATE(969), 1, sym_term, ACTIONS(53), 2, sym_ident, @@ -7435,10 +7431,10 @@ static const uint16_t ts_small_parse_table[] = { STATE(94), 2, sym_record_operation_chain, sym_atom, - STATE(98), 2, + STATE(96), 2, sym_str_chunks_single, sym_str_chunks_multi, - STATE(149), 3, + STATE(150), 3, sym_match_expr, sym_type_array, sym_enum_variant, @@ -7447,13 +7443,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - STATE(102), 5, + STATE(88), 5, sym_uni_record, sym_bool, sym_str_chunks, sym_builtin, sym_type_atom, - STATE(672), 5, + STATE(670), 5, sym_let_expr, sym_fun_expr, sym_ite_expr, @@ -7508,21 +7504,21 @@ static const uint16_t ts_small_parse_table[] = { sym_enum_tag, STATE(9), 1, sym_applicative, - STATE(70), 1, + STATE(55), 1, sym_let_in_block, - STATE(95), 1, + STATE(87), 1, sym_record_operand, - STATE(99), 1, - sym_type_builtin, - STATE(123), 1, + STATE(97), 1, sym_quoted_enum_tag, + STATE(98), 1, + sym_type_builtin, STATE(158), 1, sym_infix_u_op_5, STATE(461), 1, sym_infix_expr, - STATE(674), 1, + STATE(669), 1, sym_uni_term, - STATE(949), 1, + STATE(969), 1, sym_term, ACTIONS(53), 2, sym_ident, @@ -7533,10 +7529,10 @@ static const uint16_t ts_small_parse_table[] = { STATE(94), 2, sym_record_operation_chain, sym_atom, - STATE(98), 2, + STATE(96), 2, sym_str_chunks_single, sym_str_chunks_multi, - STATE(149), 3, + STATE(150), 3, sym_match_expr, sym_type_array, sym_enum_variant, @@ -7545,13 +7541,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - STATE(102), 5, + STATE(88), 5, sym_uni_record, sym_bool, sym_str_chunks, sym_builtin, sym_type_atom, - STATE(672), 5, + STATE(670), 5, sym_let_expr, sym_fun_expr, sym_ite_expr, @@ -7606,21 +7602,21 @@ static const uint16_t ts_small_parse_table[] = { sym_enum_tag, STATE(9), 1, sym_applicative, - STATE(70), 1, + STATE(55), 1, sym_let_in_block, - STATE(95), 1, + STATE(87), 1, sym_record_operand, - STATE(99), 1, - sym_type_builtin, - STATE(123), 1, + STATE(97), 1, sym_quoted_enum_tag, + STATE(98), 1, + sym_type_builtin, STATE(158), 1, sym_infix_u_op_5, STATE(461), 1, sym_infix_expr, - STATE(674), 1, + STATE(669), 1, sym_uni_term, - STATE(949), 1, + STATE(969), 1, sym_term, ACTIONS(53), 2, sym_ident, @@ -7631,10 +7627,10 @@ static const uint16_t ts_small_parse_table[] = { STATE(94), 2, sym_record_operation_chain, sym_atom, - STATE(98), 2, + STATE(96), 2, sym_str_chunks_single, sym_str_chunks_multi, - STATE(149), 3, + STATE(150), 3, sym_match_expr, sym_type_array, sym_enum_variant, @@ -7643,13 +7639,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - STATE(102), 5, + STATE(88), 5, sym_uni_record, sym_bool, sym_str_chunks, sym_builtin, sym_type_atom, - STATE(672), 5, + STATE(670), 5, sym_let_expr, sym_fun_expr, sym_ite_expr, @@ -7704,21 +7700,21 @@ static const uint16_t ts_small_parse_table[] = { sym_enum_tag, STATE(9), 1, sym_applicative, - STATE(70), 1, + STATE(55), 1, sym_let_in_block, - STATE(95), 1, + STATE(87), 1, sym_record_operand, - STATE(99), 1, - sym_type_builtin, - STATE(123), 1, + STATE(97), 1, sym_quoted_enum_tag, + STATE(98), 1, + sym_type_builtin, STATE(158), 1, sym_infix_u_op_5, STATE(461), 1, sym_infix_expr, - STATE(674), 1, + STATE(669), 1, sym_uni_term, - STATE(949), 1, + STATE(969), 1, sym_term, ACTIONS(53), 2, sym_ident, @@ -7729,10 +7725,10 @@ static const uint16_t ts_small_parse_table[] = { STATE(94), 2, sym_record_operation_chain, sym_atom, - STATE(98), 2, + STATE(96), 2, sym_str_chunks_single, sym_str_chunks_multi, - STATE(149), 3, + STATE(150), 3, sym_match_expr, sym_type_array, sym_enum_variant, @@ -7741,13 +7737,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - STATE(102), 5, + STATE(88), 5, sym_uni_record, sym_bool, sym_str_chunks, sym_builtin, sym_type_atom, - STATE(672), 5, + STATE(670), 5, sym_let_expr, sym_fun_expr, sym_ite_expr, @@ -7802,21 +7798,21 @@ static const uint16_t ts_small_parse_table[] = { sym_enum_tag, STATE(9), 1, sym_applicative, - STATE(70), 1, + STATE(55), 1, sym_let_in_block, - STATE(95), 1, + STATE(87), 1, sym_record_operand, - STATE(99), 1, - sym_type_builtin, - STATE(123), 1, + STATE(97), 1, sym_quoted_enum_tag, + STATE(98), 1, + sym_type_builtin, STATE(158), 1, sym_infix_u_op_5, STATE(461), 1, sym_infix_expr, - STATE(674), 1, + STATE(669), 1, sym_uni_term, - STATE(949), 1, + STATE(969), 1, sym_term, ACTIONS(53), 2, sym_ident, @@ -7827,10 +7823,10 @@ static const uint16_t ts_small_parse_table[] = { STATE(94), 2, sym_record_operation_chain, sym_atom, - STATE(98), 2, + STATE(96), 2, sym_str_chunks_single, sym_str_chunks_multi, - STATE(149), 3, + STATE(150), 3, sym_match_expr, sym_type_array, sym_enum_variant, @@ -7839,13 +7835,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - STATE(102), 5, + STATE(88), 5, sym_uni_record, sym_bool, sym_str_chunks, sym_builtin, sym_type_atom, - STATE(672), 5, + STATE(670), 5, sym_let_expr, sym_fun_expr, sym_ite_expr, @@ -7900,21 +7896,21 @@ static const uint16_t ts_small_parse_table[] = { sym_enum_tag, STATE(9), 1, sym_applicative, - STATE(70), 1, + STATE(55), 1, sym_let_in_block, - STATE(95), 1, + STATE(87), 1, sym_record_operand, - STATE(99), 1, - sym_type_builtin, - STATE(123), 1, + STATE(97), 1, sym_quoted_enum_tag, + STATE(98), 1, + sym_type_builtin, STATE(158), 1, sym_infix_u_op_5, STATE(461), 1, sym_infix_expr, - STATE(674), 1, + STATE(669), 1, sym_uni_term, - STATE(949), 1, + STATE(969), 1, sym_term, ACTIONS(53), 2, sym_ident, @@ -7925,10 +7921,10 @@ static const uint16_t ts_small_parse_table[] = { STATE(94), 2, sym_record_operation_chain, sym_atom, - STATE(98), 2, + STATE(96), 2, sym_str_chunks_single, sym_str_chunks_multi, - STATE(149), 3, + STATE(150), 3, sym_match_expr, sym_type_array, sym_enum_variant, @@ -7937,13 +7933,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - STATE(102), 5, + STATE(88), 5, sym_uni_record, sym_bool, sym_str_chunks, sym_builtin, sym_type_atom, - STATE(672), 5, + STATE(670), 5, sym_let_expr, sym_fun_expr, sym_ite_expr, @@ -7998,21 +7994,21 @@ static const uint16_t ts_small_parse_table[] = { sym_enum_tag, STATE(9), 1, sym_applicative, - STATE(70), 1, + STATE(55), 1, sym_let_in_block, - STATE(95), 1, + STATE(87), 1, sym_record_operand, - STATE(99), 1, - sym_type_builtin, - STATE(123), 1, + STATE(97), 1, sym_quoted_enum_tag, + STATE(98), 1, + sym_type_builtin, STATE(158), 1, sym_infix_u_op_5, STATE(461), 1, sym_infix_expr, - STATE(674), 1, + STATE(669), 1, sym_uni_term, - STATE(949), 1, + STATE(969), 1, sym_term, ACTIONS(53), 2, sym_ident, @@ -8023,10 +8019,10 @@ static const uint16_t ts_small_parse_table[] = { STATE(94), 2, sym_record_operation_chain, sym_atom, - STATE(98), 2, + STATE(96), 2, sym_str_chunks_single, sym_str_chunks_multi, - STATE(149), 3, + STATE(150), 3, sym_match_expr, sym_type_array, sym_enum_variant, @@ -8035,13 +8031,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - STATE(102), 5, + STATE(88), 5, sym_uni_record, sym_bool, sym_str_chunks, sym_builtin, sym_type_atom, - STATE(672), 5, + STATE(670), 5, sym_let_expr, sym_fun_expr, sym_ite_expr, @@ -8096,21 +8092,21 @@ static const uint16_t ts_small_parse_table[] = { sym_enum_tag, STATE(9), 1, sym_applicative, - STATE(70), 1, + STATE(55), 1, sym_let_in_block, - STATE(95), 1, + STATE(87), 1, sym_record_operand, - STATE(99), 1, - sym_type_builtin, - STATE(123), 1, + STATE(97), 1, sym_quoted_enum_tag, + STATE(98), 1, + sym_type_builtin, STATE(158), 1, sym_infix_u_op_5, STATE(461), 1, sym_infix_expr, - STATE(674), 1, + STATE(669), 1, sym_uni_term, - STATE(949), 1, + STATE(969), 1, sym_term, ACTIONS(53), 2, sym_ident, @@ -8121,10 +8117,10 @@ static const uint16_t ts_small_parse_table[] = { STATE(94), 2, sym_record_operation_chain, sym_atom, - STATE(98), 2, + STATE(96), 2, sym_str_chunks_single, sym_str_chunks_multi, - STATE(149), 3, + STATE(150), 3, sym_match_expr, sym_type_array, sym_enum_variant, @@ -8133,13 +8129,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - STATE(102), 5, + STATE(88), 5, sym_uni_record, sym_bool, sym_str_chunks, sym_builtin, sym_type_atom, - STATE(672), 5, + STATE(670), 5, sym_let_expr, sym_fun_expr, sym_ite_expr, @@ -8194,21 +8190,21 @@ static const uint16_t ts_small_parse_table[] = { sym_enum_tag, STATE(9), 1, sym_applicative, - STATE(70), 1, + STATE(55), 1, sym_let_in_block, - STATE(95), 1, + STATE(87), 1, sym_record_operand, - STATE(99), 1, - sym_type_builtin, - STATE(123), 1, + STATE(97), 1, sym_quoted_enum_tag, + STATE(98), 1, + sym_type_builtin, STATE(158), 1, sym_infix_u_op_5, STATE(461), 1, sym_infix_expr, - STATE(674), 1, + STATE(669), 1, sym_uni_term, - STATE(949), 1, + STATE(969), 1, sym_term, ACTIONS(53), 2, sym_ident, @@ -8219,10 +8215,10 @@ static const uint16_t ts_small_parse_table[] = { STATE(94), 2, sym_record_operation_chain, sym_atom, - STATE(98), 2, + STATE(96), 2, sym_str_chunks_single, sym_str_chunks_multi, - STATE(149), 3, + STATE(150), 3, sym_match_expr, sym_type_array, sym_enum_variant, @@ -8231,13 +8227,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - STATE(102), 5, + STATE(88), 5, sym_uni_record, sym_bool, sym_str_chunks, sym_builtin, sym_type_atom, - STATE(672), 5, + STATE(670), 5, sym_let_expr, sym_fun_expr, sym_ite_expr, @@ -8292,21 +8288,21 @@ static const uint16_t ts_small_parse_table[] = { sym_enum_tag, STATE(9), 1, sym_applicative, - STATE(70), 1, + STATE(55), 1, sym_let_in_block, - STATE(95), 1, + STATE(87), 1, sym_record_operand, - STATE(99), 1, - sym_type_builtin, - STATE(123), 1, + STATE(97), 1, sym_quoted_enum_tag, + STATE(98), 1, + sym_type_builtin, STATE(158), 1, sym_infix_u_op_5, STATE(461), 1, sym_infix_expr, - STATE(674), 1, + STATE(669), 1, sym_uni_term, - STATE(949), 1, + STATE(969), 1, sym_term, ACTIONS(53), 2, sym_ident, @@ -8317,10 +8313,10 @@ static const uint16_t ts_small_parse_table[] = { STATE(94), 2, sym_record_operation_chain, sym_atom, - STATE(98), 2, + STATE(96), 2, sym_str_chunks_single, sym_str_chunks_multi, - STATE(149), 3, + STATE(150), 3, sym_match_expr, sym_type_array, sym_enum_variant, @@ -8329,13 +8325,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - STATE(102), 5, + STATE(88), 5, sym_uni_record, sym_bool, sym_str_chunks, sym_builtin, sym_type_atom, - STATE(672), 5, + STATE(670), 5, sym_let_expr, sym_fun_expr, sym_ite_expr, @@ -8390,21 +8386,21 @@ static const uint16_t ts_small_parse_table[] = { sym_enum_tag, STATE(9), 1, sym_applicative, - STATE(70), 1, + STATE(55), 1, sym_let_in_block, - STATE(95), 1, + STATE(87), 1, sym_record_operand, - STATE(99), 1, - sym_type_builtin, - STATE(123), 1, + STATE(97), 1, sym_quoted_enum_tag, + STATE(98), 1, + sym_type_builtin, STATE(158), 1, sym_infix_u_op_5, STATE(461), 1, sym_infix_expr, - STATE(674), 1, + STATE(669), 1, sym_uni_term, - STATE(949), 1, + STATE(969), 1, sym_term, ACTIONS(53), 2, sym_ident, @@ -8415,10 +8411,10 @@ static const uint16_t ts_small_parse_table[] = { STATE(94), 2, sym_record_operation_chain, sym_atom, - STATE(98), 2, + STATE(96), 2, sym_str_chunks_single, sym_str_chunks_multi, - STATE(149), 3, + STATE(150), 3, sym_match_expr, sym_type_array, sym_enum_variant, @@ -8427,13 +8423,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - STATE(102), 5, + STATE(88), 5, sym_uni_record, sym_bool, sym_str_chunks, sym_builtin, sym_type_atom, - STATE(672), 5, + STATE(670), 5, sym_let_expr, sym_fun_expr, sym_ite_expr, @@ -8488,21 +8484,21 @@ static const uint16_t ts_small_parse_table[] = { sym_enum_tag, STATE(9), 1, sym_applicative, - STATE(70), 1, + STATE(55), 1, sym_let_in_block, - STATE(95), 1, + STATE(87), 1, sym_record_operand, - STATE(99), 1, - sym_type_builtin, - STATE(123), 1, + STATE(97), 1, sym_quoted_enum_tag, + STATE(98), 1, + sym_type_builtin, STATE(158), 1, sym_infix_u_op_5, STATE(461), 1, sym_infix_expr, - STATE(674), 1, + STATE(669), 1, sym_uni_term, - STATE(949), 1, + STATE(969), 1, sym_term, ACTIONS(53), 2, sym_ident, @@ -8513,10 +8509,10 @@ static const uint16_t ts_small_parse_table[] = { STATE(94), 2, sym_record_operation_chain, sym_atom, - STATE(98), 2, + STATE(96), 2, sym_str_chunks_single, sym_str_chunks_multi, - STATE(149), 3, + STATE(150), 3, sym_match_expr, sym_type_array, sym_enum_variant, @@ -8525,13 +8521,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - STATE(102), 5, + STATE(88), 5, sym_uni_record, sym_bool, sym_str_chunks, sym_builtin, sym_type_atom, - STATE(672), 5, + STATE(670), 5, sym_let_expr, sym_fun_expr, sym_ite_expr, @@ -8580,11 +8576,11 @@ static const uint16_t ts_small_parse_table[] = { sym__str_start, ACTIONS(217), 1, sym_quoted_enum_tag_start, - STATE(66), 1, + STATE(70), 1, sym_let_in_block, - STATE(78), 1, + STATE(71), 1, sym_enum_tag, - STATE(85), 1, + STATE(83), 1, sym_applicative, STATE(162), 1, sym_infix_u_op_5, @@ -8594,11 +8590,11 @@ static const uint16_t ts_small_parse_table[] = { sym_type_builtin, STATE(420), 1, sym_quoted_enum_tag, - STATE(479), 1, + STATE(484), 1, sym_infix_expr, - STATE(999), 1, + STATE(990), 1, sym_uni_term, - STATE(1139), 1, + STATE(1090), 1, sym_term, ACTIONS(179), 2, sym_ident, @@ -8606,13 +8602,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(205), 2, anon_sym_true, anon_sym_false, - STATE(251), 2, + STATE(252), 2, sym_str_chunks_single, sym_str_chunks_multi, STATE(344), 2, sym_record_operation_chain, sym_atom, - STATE(433), 3, + STATE(432), 3, sym_match_expr, sym_type_array, sym_enum_variant, @@ -8627,109 +8623,13 @@ static const uint16_t ts_small_parse_table[] = { sym_str_chunks, sym_builtin, sym_type_atom, - STATE(1000), 5, + STATE(996), 5, sym_let_expr, sym_fun_expr, sym_ite_expr, sym_annotated_infix_expr, sym_forall, [2850] = 39, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_let, - ACTIONS(41), 1, - anon_sym_BANG, - ACTIONS(51), 1, - sym_num_literal, - ACTIONS(55), 1, - sym_raw_enum_tag, - ACTIONS(57), 1, - anon_sym_fun, - ACTIONS(59), 1, - anon_sym_match, - ACTIONS(61), 1, - anon_sym_LBRACE, - ACTIONS(63), 1, - anon_sym_if, - ACTIONS(65), 1, - anon_sym_forall, - ACTIONS(69), 1, - anon_sym_import, - ACTIONS(71), 1, - anon_sym_Array, - ACTIONS(75), 1, - anon_sym_LPAREN, - ACTIONS(77), 1, - anon_sym_LBRACK, - ACTIONS(81), 1, - anon_sym__, - ACTIONS(109), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(111), 1, - sym_multstr_start, - ACTIONS(113), 1, - sym__str_start, - ACTIONS(115), 1, - sym_quoted_enum_tag_start, - ACTIONS(121), 1, - anon_sym_PERCENT, - ACTIONS(131), 1, - anon_sym_DASH, - STATE(8), 1, - sym_enum_tag, - STATE(9), 1, - sym_applicative, - STATE(70), 1, - sym_let_in_block, - STATE(95), 1, - sym_record_operand, - STATE(99), 1, - sym_type_builtin, - STATE(123), 1, - sym_quoted_enum_tag, - STATE(158), 1, - sym_infix_u_op_5, - STATE(461), 1, - sym_infix_expr, - STATE(674), 1, - sym_uni_term, - STATE(1031), 1, - sym_term, - ACTIONS(53), 2, - sym_ident, - anon_sym_null, - ACTIONS(83), 2, - anon_sym_true, - anon_sym_false, - STATE(94), 2, - sym_record_operation_chain, - sym_atom, - STATE(98), 2, - sym_str_chunks_single, - sym_str_chunks_multi, - STATE(149), 3, - sym_match_expr, - sym_type_array, - sym_enum_variant, - ACTIONS(73), 4, - anon_sym_Dyn, - anon_sym_Number, - anon_sym_Bool, - anon_sym_String, - STATE(102), 5, - sym_uni_record, - sym_bool, - sym_str_chunks, - sym_builtin, - sym_type_atom, - STATE(672), 5, - sym_let_expr, - sym_fun_expr, - sym_ite_expr, - sym_annotated_infix_expr, - sym_forall, - [2985] = 39, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, @@ -8772,25 +8672,25 @@ static const uint16_t ts_small_parse_table[] = { sym__str_start, ACTIONS(259), 1, sym_quoted_enum_tag_start, - STATE(47), 1, + STATE(51), 1, sym_let_in_block, - STATE(76), 1, + STATE(80), 1, sym_enum_tag, - STATE(83), 1, + STATE(85), 1, sym_applicative, - STATE(217), 1, + STATE(218), 1, sym_infix_u_op_5, - STATE(254), 1, + STATE(255), 1, sym_record_operand, - STATE(257), 1, + STATE(258), 1, sym_type_builtin, - STATE(331), 1, + STATE(336), 1, sym_quoted_enum_tag, STATE(493), 1, sym_infix_expr, - STATE(674), 1, + STATE(669), 1, sym_uni_term, - STATE(994), 1, + STATE(1058), 1, sym_term, ACTIONS(221), 2, sym_ident, @@ -8801,7 +8701,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(253), 2, sym_record_operation_chain, sym_atom, - STATE(332), 2, + STATE(329), 2, sym_str_chunks_single, sym_str_chunks_multi, STATE(454), 3, @@ -8819,7 +8719,103 @@ static const uint16_t ts_small_parse_table[] = { sym_str_chunks, sym_builtin, sym_type_atom, - STATE(672), 5, + STATE(670), 5, + sym_let_expr, + sym_fun_expr, + sym_ite_expr, + sym_annotated_infix_expr, + sym_forall, + [2985] = 39, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_let, + ACTIONS(41), 1, + anon_sym_BANG, + ACTIONS(177), 1, + sym_num_literal, + ACTIONS(181), 1, + sym_raw_enum_tag, + ACTIONS(183), 1, + anon_sym_fun, + ACTIONS(185), 1, + anon_sym_match, + ACTIONS(187), 1, + anon_sym_LBRACE, + ACTIONS(189), 1, + anon_sym_if, + ACTIONS(191), 1, + anon_sym_forall, + ACTIONS(193), 1, + anon_sym_import, + ACTIONS(195), 1, + anon_sym_Array, + ACTIONS(199), 1, + anon_sym_LPAREN, + ACTIONS(201), 1, + anon_sym_LBRACK, + ACTIONS(203), 1, + anon_sym__, + ACTIONS(207), 1, + anon_sym_PERCENT, + ACTIONS(209), 1, + anon_sym_DASH, + ACTIONS(211), 1, + anon_sym_LBRACK_PIPE, + ACTIONS(213), 1, + sym_multstr_start, + ACTIONS(215), 1, + sym__str_start, + ACTIONS(217), 1, + sym_quoted_enum_tag_start, + STATE(70), 1, + sym_let_in_block, + STATE(71), 1, + sym_enum_tag, + STATE(83), 1, + sym_applicative, + STATE(162), 1, + sym_infix_u_op_5, + STATE(345), 1, + sym_record_operand, + STATE(354), 1, + sym_type_builtin, + STATE(420), 1, + sym_quoted_enum_tag, + STATE(484), 1, + sym_infix_expr, + STATE(990), 1, + sym_uni_term, + STATE(1097), 1, + sym_term, + ACTIONS(179), 2, + sym_ident, + anon_sym_null, + ACTIONS(205), 2, + anon_sym_true, + anon_sym_false, + STATE(252), 2, + sym_str_chunks_single, + sym_str_chunks_multi, + STATE(344), 2, + sym_record_operation_chain, + sym_atom, + STATE(432), 3, + sym_match_expr, + sym_type_array, + sym_enum_variant, + ACTIONS(197), 4, + anon_sym_Dyn, + anon_sym_Number, + anon_sym_Bool, + anon_sym_String, + STATE(357), 5, + sym_uni_record, + sym_bool, + sym_str_chunks, + sym_builtin, + sym_type_atom, + STATE(996), 5, sym_let_expr, sym_fun_expr, sym_ite_expr, @@ -8868,26 +8864,26 @@ static const uint16_t ts_small_parse_table[] = { sym__str_start, ACTIONS(259), 1, sym_quoted_enum_tag_start, - STATE(47), 1, + STATE(51), 1, sym_let_in_block, - STATE(76), 1, + STATE(80), 1, sym_enum_tag, - STATE(83), 1, + STATE(85), 1, sym_applicative, - STATE(217), 1, + STATE(218), 1, sym_infix_u_op_5, - STATE(254), 1, + STATE(255), 1, sym_record_operand, - STATE(257), 1, + STATE(258), 1, sym_type_builtin, - STATE(331), 1, + STATE(336), 1, sym_quoted_enum_tag, STATE(493), 1, sym_infix_expr, STATE(669), 1, - sym_term, - STATE(674), 1, sym_uni_term, + STATE(1002), 1, + sym_term, ACTIONS(221), 2, sym_ident, anon_sym_null, @@ -8897,7 +8893,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(253), 2, sym_record_operation_chain, sym_atom, - STATE(332), 2, + STATE(329), 2, sym_str_chunks_single, sym_str_chunks_multi, STATE(454), 3, @@ -8915,13 +8911,109 @@ static const uint16_t ts_small_parse_table[] = { sym_str_chunks, sym_builtin, sym_type_atom, - STATE(672), 5, + STATE(670), 5, sym_let_expr, sym_fun_expr, sym_ite_expr, sym_annotated_infix_expr, sym_forall, [3255] = 39, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_let, + ACTIONS(41), 1, + anon_sym_BANG, + ACTIONS(219), 1, + sym_num_literal, + ACTIONS(223), 1, + sym_raw_enum_tag, + ACTIONS(225), 1, + anon_sym_fun, + ACTIONS(227), 1, + anon_sym_match, + ACTIONS(229), 1, + anon_sym_LBRACE, + ACTIONS(231), 1, + anon_sym_if, + ACTIONS(233), 1, + anon_sym_forall, + ACTIONS(235), 1, + anon_sym_import, + ACTIONS(237), 1, + anon_sym_Array, + ACTIONS(241), 1, + anon_sym_LPAREN, + ACTIONS(243), 1, + anon_sym_LBRACK, + ACTIONS(245), 1, + anon_sym__, + ACTIONS(249), 1, + anon_sym_PERCENT, + ACTIONS(251), 1, + anon_sym_DASH, + ACTIONS(253), 1, + anon_sym_LBRACK_PIPE, + ACTIONS(255), 1, + sym_multstr_start, + ACTIONS(257), 1, + sym__str_start, + ACTIONS(259), 1, + sym_quoted_enum_tag_start, + STATE(51), 1, + sym_let_in_block, + STATE(80), 1, + sym_enum_tag, + STATE(85), 1, + sym_applicative, + STATE(218), 1, + sym_infix_u_op_5, + STATE(255), 1, + sym_record_operand, + STATE(258), 1, + sym_type_builtin, + STATE(336), 1, + sym_quoted_enum_tag, + STATE(493), 1, + sym_infix_expr, + STATE(669), 1, + sym_uni_term, + STATE(674), 1, + sym_term, + ACTIONS(221), 2, + sym_ident, + anon_sym_null, + ACTIONS(247), 2, + anon_sym_true, + anon_sym_false, + STATE(253), 2, + sym_record_operation_chain, + sym_atom, + STATE(329), 2, + sym_str_chunks_single, + sym_str_chunks_multi, + STATE(454), 3, + sym_match_expr, + sym_type_array, + sym_enum_variant, + ACTIONS(239), 4, + anon_sym_Dyn, + anon_sym_Number, + anon_sym_Bool, + anon_sym_String, + STATE(260), 5, + sym_uni_record, + sym_bool, + sym_str_chunks, + sym_builtin, + sym_type_atom, + STATE(670), 5, + sym_let_expr, + sym_fun_expr, + sym_ite_expr, + sym_annotated_infix_expr, + sym_forall, + [3390] = 39, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, @@ -8968,21 +9060,21 @@ static const uint16_t ts_small_parse_table[] = { sym_enum_tag, STATE(9), 1, sym_applicative, - STATE(70), 1, + STATE(55), 1, sym_let_in_block, - STATE(95), 1, + STATE(87), 1, sym_record_operand, - STATE(99), 1, - sym_type_builtin, - STATE(123), 1, + STATE(97), 1, sym_quoted_enum_tag, + STATE(98), 1, + sym_type_builtin, STATE(158), 1, sym_infix_u_op_5, STATE(461), 1, sym_infix_expr, - STATE(674), 1, + STATE(669), 1, sym_uni_term, - STATE(975), 1, + STATE(960), 1, sym_term, ACTIONS(53), 2, sym_ident, @@ -8993,10 +9085,10 @@ static const uint16_t ts_small_parse_table[] = { STATE(94), 2, sym_record_operation_chain, sym_atom, - STATE(98), 2, + STATE(96), 2, sym_str_chunks_single, sym_str_chunks_multi, - STATE(149), 3, + STATE(150), 3, sym_match_expr, sym_type_array, sym_enum_variant, @@ -9005,19 +9097,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - STATE(102), 5, + STATE(88), 5, sym_uni_record, sym_bool, sym_str_chunks, sym_builtin, sym_type_atom, - STATE(672), 5, + STATE(670), 5, sym_let_expr, sym_fun_expr, sym_ite_expr, sym_annotated_infix_expr, sym_forall, - [3390] = 39, + [3525] = 39, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, @@ -9060,11 +9152,11 @@ static const uint16_t ts_small_parse_table[] = { sym__str_start, ACTIONS(217), 1, sym_quoted_enum_tag_start, - STATE(66), 1, + STATE(70), 1, sym_let_in_block, - STATE(78), 1, + STATE(71), 1, sym_enum_tag, - STATE(85), 1, + STATE(83), 1, sym_applicative, STATE(162), 1, sym_infix_u_op_5, @@ -9074,11 +9166,11 @@ static const uint16_t ts_small_parse_table[] = { sym_type_builtin, STATE(420), 1, sym_quoted_enum_tag, - STATE(479), 1, + STATE(484), 1, sym_infix_expr, - STATE(999), 1, + STATE(990), 1, sym_uni_term, - STATE(1077), 1, + STATE(1057), 1, sym_term, ACTIONS(179), 2, sym_ident, @@ -9086,13 +9178,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(205), 2, anon_sym_true, anon_sym_false, - STATE(251), 2, + STATE(252), 2, sym_str_chunks_single, sym_str_chunks_multi, STATE(344), 2, sym_record_operation_chain, sym_atom, - STATE(433), 3, + STATE(432), 3, sym_match_expr, sym_type_array, sym_enum_variant, @@ -9107,13 +9199,13 @@ static const uint16_t ts_small_parse_table[] = { sym_str_chunks, sym_builtin, sym_type_atom, - STATE(1000), 5, + STATE(996), 5, sym_let_expr, sym_fun_expr, sym_ite_expr, sym_annotated_infix_expr, sym_forall, - [3525] = 39, + [3660] = 39, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, @@ -9158,37 +9250,37 @@ static const uint16_t ts_small_parse_table[] = { sym_quoted_enum_tag_start, STATE(59), 1, sym_let_in_block, - STATE(75), 1, + STATE(72), 1, sym_enum_tag, - STATE(84), 1, + STATE(86), 1, sym_applicative, STATE(156), 1, sym_infix_u_op_5, - STATE(325), 1, + STATE(322), 1, sym_type_builtin, - STATE(333), 1, + STATE(330), 1, sym_record_operand, STATE(356), 1, sym_quoted_enum_tag, - STATE(484), 1, + STATE(491), 1, sym_infix_expr, - STATE(673), 1, - sym_term, - STATE(674), 1, + STATE(669), 1, sym_uni_term, + STATE(671), 1, + sym_term, ACTIONS(263), 2, sym_ident, anon_sym_null, ACTIONS(289), 2, anon_sym_true, anon_sym_false, - STATE(334), 2, + STATE(331), 2, sym_record_operation_chain, sym_atom, STATE(417), 2, sym_str_chunks_single, sym_str_chunks_multi, - STATE(439), 3, + STATE(440), 3, sym_match_expr, sym_type_array, sym_enum_variant, @@ -9197,19 +9289,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - STATE(321), 5, + STATE(318), 5, sym_uni_record, sym_bool, sym_str_chunks, sym_builtin, sym_type_atom, - STATE(672), 5, + STATE(670), 5, sym_let_expr, sym_fun_expr, sym_ite_expr, sym_annotated_infix_expr, sym_forall, - [3660] = 39, + [3795] = 39, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -9252,26 +9344,26 @@ static const uint16_t ts_small_parse_table[] = { sym__str_start, ACTIONS(49), 1, sym_quoted_enum_tag_start, - STATE(54), 1, + STATE(69), 1, sym_let_in_block, - STATE(80), 1, + STATE(81), 1, sym_enum_tag, - STATE(86), 1, + STATE(84), 1, sym_applicative, - STATE(185), 1, + STATE(186), 1, sym_infix_u_op_5, STATE(225), 1, sym_quoted_enum_tag, STATE(240), 1, sym_type_builtin, - STATE(252), 1, + STATE(251), 1, sym_record_operand, STATE(488), 1, sym_infix_expr, STATE(669), 1, - sym_term, - STATE(674), 1, sym_uni_term, + STATE(674), 1, + sym_term, ACTIONS(7), 2, sym_ident, anon_sym_null, @@ -9281,7 +9373,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(256), 2, sym_record_operation_chain, sym_atom, - STATE(264), 2, + STATE(266), 2, sym_str_chunks_single, sym_str_chunks_multi, STATE(456), 3, @@ -9299,103 +9391,7 @@ static const uint16_t ts_small_parse_table[] = { sym_str_chunks, sym_builtin, sym_type_atom, - STATE(672), 5, - sym_let_expr, - sym_fun_expr, - sym_ite_expr, - sym_annotated_infix_expr, - sym_forall, - [3795] = 39, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_let, - ACTIONS(41), 1, - anon_sym_BANG, - ACTIONS(303), 1, - sym_num_literal, - ACTIONS(307), 1, - sym_raw_enum_tag, - ACTIONS(309), 1, - anon_sym_fun, - ACTIONS(311), 1, - anon_sym_match, - ACTIONS(313), 1, - anon_sym_LBRACE, - ACTIONS(315), 1, - anon_sym_if, - ACTIONS(317), 1, - anon_sym_forall, - ACTIONS(319), 1, - anon_sym_import, - ACTIONS(321), 1, - anon_sym_Array, - ACTIONS(325), 1, - anon_sym_LPAREN, - ACTIONS(327), 1, - anon_sym_LBRACK, - ACTIONS(329), 1, - anon_sym__, - ACTIONS(333), 1, - anon_sym_PERCENT, - ACTIONS(335), 1, - anon_sym_DASH, - ACTIONS(337), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(339), 1, - sym_multstr_start, - ACTIONS(341), 1, - sym__str_start, - ACTIONS(343), 1, - sym_quoted_enum_tag_start, - STATE(44), 1, - sym_let_in_block, - STATE(72), 1, - sym_enum_tag, - STATE(82), 1, - sym_applicative, - STATE(159), 1, - sym_infix_u_op_5, - STATE(312), 1, - sym_type_builtin, - STATE(314), 1, - sym_quoted_enum_tag, - STATE(319), 1, - sym_record_operand, - STATE(481), 1, - sym_infix_expr, - STATE(674), 1, - sym_uni_term, - STATE(1117), 1, - sym_term, - ACTIONS(305), 2, - sym_ident, - anon_sym_null, - ACTIONS(331), 2, - anon_sym_true, - anon_sym_false, - STATE(330), 2, - sym_record_operation_chain, - sym_atom, - STATE(406), 2, - sym_str_chunks_single, - sym_str_chunks_multi, - STATE(422), 3, - sym_match_expr, - sym_type_array, - sym_enum_variant, - ACTIONS(323), 4, - anon_sym_Dyn, - anon_sym_Number, - anon_sym_Bool, - anon_sym_String, - STATE(310), 5, - sym_uni_record, - sym_bool, - sym_str_chunks, - sym_builtin, - sym_type_atom, - STATE(672), 5, + STATE(670), 5, sym_let_expr, sym_fun_expr, sym_ite_expr, @@ -9444,11 +9440,11 @@ static const uint16_t ts_small_parse_table[] = { sym__str_start, ACTIONS(217), 1, sym_quoted_enum_tag_start, - STATE(66), 1, + STATE(70), 1, sym_let_in_block, - STATE(78), 1, + STATE(71), 1, sym_enum_tag, - STATE(85), 1, + STATE(83), 1, sym_applicative, STATE(162), 1, sym_infix_u_op_5, @@ -9458,11 +9454,11 @@ static const uint16_t ts_small_parse_table[] = { sym_type_builtin, STATE(420), 1, sym_quoted_enum_tag, - STATE(479), 1, + STATE(484), 1, sym_infix_expr, - STATE(999), 1, + STATE(990), 1, sym_uni_term, - STATE(1039), 1, + STATE(1132), 1, sym_term, ACTIONS(179), 2, sym_ident, @@ -9470,13 +9466,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(205), 2, anon_sym_true, anon_sym_false, - STATE(251), 2, + STATE(252), 2, sym_str_chunks_single, sym_str_chunks_multi, STATE(344), 2, sym_record_operation_chain, sym_atom, - STATE(433), 3, + STATE(432), 3, sym_match_expr, sym_type_array, sym_enum_variant, @@ -9491,7 +9487,7 @@ static const uint16_t ts_small_parse_table[] = { sym_str_chunks, sym_builtin, sym_type_atom, - STATE(1000), 5, + STATE(996), 5, sym_let_expr, sym_fun_expr, sym_ite_expr, @@ -9540,25 +9536,25 @@ static const uint16_t ts_small_parse_table[] = { sym__str_start, ACTIONS(343), 1, sym_quoted_enum_tag_start, - STATE(44), 1, + STATE(50), 1, sym_let_in_block, - STATE(72), 1, + STATE(76), 1, sym_enum_tag, STATE(82), 1, sym_applicative, STATE(159), 1, sym_infix_u_op_5, - STATE(312), 1, - sym_type_builtin, - STATE(314), 1, + STATE(311), 1, sym_quoted_enum_tag, - STATE(319), 1, + STATE(314), 1, + sym_type_builtin, + STATE(320), 1, sym_record_operand, - STATE(481), 1, + STATE(480), 1, sym_infix_expr, - STATE(674), 1, + STATE(669), 1, sym_uni_term, - STATE(1100), 1, + STATE(1066), 1, sym_term, ACTIONS(305), 2, sym_ident, @@ -9566,7 +9562,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(331), 2, anon_sym_true, anon_sym_false, - STATE(330), 2, + STATE(324), 2, sym_record_operation_chain, sym_atom, STATE(406), 2, @@ -9581,13 +9577,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - STATE(310), 5, + STATE(309), 5, sym_uni_record, sym_bool, sym_str_chunks, sym_builtin, sym_type_atom, - STATE(672), 5, + STATE(670), 5, sym_let_expr, sym_fun_expr, sym_ite_expr, @@ -9640,21 +9636,21 @@ static const uint16_t ts_small_parse_table[] = { sym_enum_tag, STATE(9), 1, sym_applicative, - STATE(70), 1, + STATE(55), 1, sym_let_in_block, - STATE(95), 1, + STATE(87), 1, sym_record_operand, - STATE(99), 1, - sym_type_builtin, - STATE(123), 1, + STATE(97), 1, sym_quoted_enum_tag, + STATE(98), 1, + sym_type_builtin, STATE(158), 1, sym_infix_u_op_5, STATE(461), 1, sym_infix_expr, - STATE(674), 1, + STATE(669), 1, sym_uni_term, - STATE(949), 1, + STATE(969), 1, sym_term, ACTIONS(53), 2, sym_ident, @@ -9665,10 +9661,10 @@ static const uint16_t ts_small_parse_table[] = { STATE(94), 2, sym_record_operation_chain, sym_atom, - STATE(98), 2, + STATE(96), 2, sym_str_chunks_single, sym_str_chunks_multi, - STATE(149), 3, + STATE(150), 3, sym_match_expr, sym_type_array, sym_enum_variant, @@ -9677,13 +9673,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - STATE(102), 5, + STATE(88), 5, sym_uni_record, sym_bool, sym_str_chunks, sym_builtin, sym_type_atom, - STATE(672), 5, + STATE(670), 5, sym_let_expr, sym_fun_expr, sym_ite_expr, @@ -9732,33 +9728,33 @@ static const uint16_t ts_small_parse_table[] = { sym__str_start, ACTIONS(343), 1, sym_quoted_enum_tag_start, - STATE(44), 1, + STATE(50), 1, sym_let_in_block, - STATE(72), 1, + STATE(76), 1, sym_enum_tag, STATE(82), 1, sym_applicative, STATE(159), 1, sym_infix_u_op_5, - STATE(312), 1, - sym_type_builtin, - STATE(314), 1, + STATE(311), 1, sym_quoted_enum_tag, - STATE(319), 1, + STATE(314), 1, + sym_type_builtin, + STATE(320), 1, sym_record_operand, - STATE(481), 1, + STATE(480), 1, sym_infix_expr, STATE(669), 1, - sym_term, - STATE(674), 1, sym_uni_term, + STATE(674), 1, + sym_term, ACTIONS(305), 2, sym_ident, anon_sym_null, ACTIONS(331), 2, anon_sym_true, anon_sym_false, - STATE(330), 2, + STATE(324), 2, sym_record_operation_chain, sym_atom, STATE(406), 2, @@ -9773,13 +9769,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - STATE(310), 5, + STATE(309), 5, sym_uni_record, sym_bool, sym_str_chunks, sym_builtin, sym_type_atom, - STATE(672), 5, + STATE(670), 5, sym_let_expr, sym_fun_expr, sym_ite_expr, @@ -9792,90 +9788,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_let, ACTIONS(41), 1, anon_sym_BANG, - ACTIONS(51), 1, + ACTIONS(303), 1, sym_num_literal, - ACTIONS(55), 1, + ACTIONS(307), 1, sym_raw_enum_tag, - ACTIONS(57), 1, + ACTIONS(309), 1, anon_sym_fun, - ACTIONS(59), 1, + ACTIONS(311), 1, anon_sym_match, - ACTIONS(61), 1, + ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(63), 1, + ACTIONS(315), 1, anon_sym_if, - ACTIONS(65), 1, + ACTIONS(317), 1, anon_sym_forall, - ACTIONS(69), 1, + ACTIONS(319), 1, anon_sym_import, - ACTIONS(71), 1, + ACTIONS(321), 1, anon_sym_Array, - ACTIONS(75), 1, + ACTIONS(325), 1, anon_sym_LPAREN, - ACTIONS(77), 1, + ACTIONS(327), 1, anon_sym_LBRACK, - ACTIONS(81), 1, + ACTIONS(329), 1, anon_sym__, - ACTIONS(109), 1, + ACTIONS(333), 1, + anon_sym_PERCENT, + ACTIONS(335), 1, + anon_sym_DASH, + ACTIONS(337), 1, anon_sym_LBRACK_PIPE, - ACTIONS(111), 1, + ACTIONS(339), 1, sym_multstr_start, - ACTIONS(113), 1, + ACTIONS(341), 1, sym__str_start, - ACTIONS(115), 1, + ACTIONS(343), 1, sym_quoted_enum_tag_start, - ACTIONS(121), 1, - anon_sym_PERCENT, - ACTIONS(131), 1, - anon_sym_DASH, - STATE(8), 1, + STATE(50), 1, + sym_let_in_block, + STATE(76), 1, sym_enum_tag, - STATE(9), 1, + STATE(82), 1, sym_applicative, - STATE(70), 1, - sym_let_in_block, - STATE(95), 1, - sym_record_operand, - STATE(99), 1, - sym_type_builtin, - STATE(123), 1, - sym_quoted_enum_tag, - STATE(158), 1, + STATE(159), 1, sym_infix_u_op_5, - STATE(461), 1, + STATE(311), 1, + sym_quoted_enum_tag, + STATE(314), 1, + sym_type_builtin, + STATE(320), 1, + sym_record_operand, + STATE(480), 1, sym_infix_expr, - STATE(674), 1, + STATE(669), 1, sym_uni_term, - STATE(912), 1, + STATE(1038), 1, sym_term, - ACTIONS(53), 2, + ACTIONS(305), 2, sym_ident, anon_sym_null, - ACTIONS(83), 2, + ACTIONS(331), 2, anon_sym_true, anon_sym_false, - STATE(94), 2, + STATE(324), 2, sym_record_operation_chain, sym_atom, - STATE(98), 2, + STATE(406), 2, sym_str_chunks_single, sym_str_chunks_multi, - STATE(149), 3, + STATE(422), 3, sym_match_expr, sym_type_array, sym_enum_variant, - ACTIONS(73), 4, + ACTIONS(323), 4, anon_sym_Dyn, anon_sym_Number, anon_sym_Bool, anon_sym_String, - STATE(102), 5, + STATE(309), 5, sym_uni_record, sym_bool, sym_str_chunks, sym_builtin, sym_type_atom, - STATE(672), 5, + STATE(670), 5, sym_let_expr, sym_fun_expr, sym_ite_expr, @@ -9926,23 +9922,23 @@ static const uint16_t ts_small_parse_table[] = { sym_quoted_enum_tag_start, STATE(59), 1, sym_let_in_block, - STATE(75), 1, + STATE(72), 1, sym_enum_tag, - STATE(84), 1, + STATE(86), 1, sym_applicative, STATE(156), 1, sym_infix_u_op_5, - STATE(325), 1, + STATE(322), 1, sym_type_builtin, - STATE(333), 1, + STATE(330), 1, sym_record_operand, STATE(356), 1, sym_quoted_enum_tag, - STATE(484), 1, + STATE(491), 1, sym_infix_expr, - STATE(674), 1, + STATE(669), 1, sym_uni_term, - STATE(1142), 1, + STATE(1143), 1, sym_term, ACTIONS(263), 2, sym_ident, @@ -9950,13 +9946,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(289), 2, anon_sym_true, anon_sym_false, - STATE(334), 2, + STATE(331), 2, sym_record_operation_chain, sym_atom, STATE(417), 2, sym_str_chunks_single, sym_str_chunks_multi, - STATE(439), 3, + STATE(440), 3, sym_match_expr, sym_type_array, sym_enum_variant, @@ -9965,13 +9961,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - STATE(321), 5, + STATE(318), 5, sym_uni_record, sym_bool, sym_str_chunks, sym_builtin, sym_type_atom, - STATE(672), 5, + STATE(670), 5, sym_let_expr, sym_fun_expr, sym_ite_expr, @@ -9984,90 +9980,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_let, ACTIONS(41), 1, anon_sym_BANG, - ACTIONS(177), 1, + ACTIONS(303), 1, sym_num_literal, - ACTIONS(181), 1, + ACTIONS(307), 1, sym_raw_enum_tag, - ACTIONS(183), 1, + ACTIONS(309), 1, anon_sym_fun, - ACTIONS(185), 1, + ACTIONS(311), 1, anon_sym_match, - ACTIONS(187), 1, + ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(189), 1, + ACTIONS(315), 1, anon_sym_if, - ACTIONS(191), 1, + ACTIONS(317), 1, anon_sym_forall, - ACTIONS(193), 1, + ACTIONS(319), 1, anon_sym_import, - ACTIONS(195), 1, + ACTIONS(321), 1, anon_sym_Array, - ACTIONS(199), 1, + ACTIONS(325), 1, anon_sym_LPAREN, - ACTIONS(201), 1, + ACTIONS(327), 1, anon_sym_LBRACK, - ACTIONS(203), 1, + ACTIONS(329), 1, anon_sym__, - ACTIONS(207), 1, + ACTIONS(333), 1, anon_sym_PERCENT, - ACTIONS(209), 1, + ACTIONS(335), 1, anon_sym_DASH, - ACTIONS(211), 1, + ACTIONS(337), 1, anon_sym_LBRACK_PIPE, - ACTIONS(213), 1, + ACTIONS(339), 1, sym_multstr_start, - ACTIONS(215), 1, + ACTIONS(341), 1, sym__str_start, - ACTIONS(217), 1, + ACTIONS(343), 1, sym_quoted_enum_tag_start, - STATE(66), 1, + STATE(50), 1, sym_let_in_block, - STATE(78), 1, + STATE(76), 1, sym_enum_tag, - STATE(85), 1, + STATE(82), 1, sym_applicative, - STATE(162), 1, + STATE(159), 1, sym_infix_u_op_5, - STATE(345), 1, - sym_record_operand, - STATE(354), 1, - sym_type_builtin, - STATE(420), 1, + STATE(311), 1, sym_quoted_enum_tag, - STATE(479), 1, + STATE(314), 1, + sym_type_builtin, + STATE(320), 1, + sym_record_operand, + STATE(480), 1, sym_infix_expr, - STATE(999), 1, + STATE(669), 1, sym_uni_term, - STATE(1016), 1, + STATE(1044), 1, sym_term, - ACTIONS(179), 2, + ACTIONS(305), 2, sym_ident, anon_sym_null, - ACTIONS(205), 2, + ACTIONS(331), 2, anon_sym_true, anon_sym_false, - STATE(251), 2, - sym_str_chunks_single, - sym_str_chunks_multi, - STATE(344), 2, + STATE(324), 2, sym_record_operation_chain, sym_atom, - STATE(433), 3, + STATE(406), 2, + sym_str_chunks_single, + sym_str_chunks_multi, + STATE(422), 3, sym_match_expr, sym_type_array, sym_enum_variant, - ACTIONS(197), 4, + ACTIONS(323), 4, anon_sym_Dyn, anon_sym_Number, anon_sym_Bool, anon_sym_String, - STATE(357), 5, + STATE(309), 5, sym_uni_record, sym_bool, sym_str_chunks, sym_builtin, sym_type_atom, - STATE(1000), 5, + STATE(670), 5, sym_let_expr, sym_fun_expr, sym_ite_expr, @@ -10080,90 +10076,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_let, ACTIONS(41), 1, anon_sym_BANG, - ACTIONS(303), 1, + ACTIONS(51), 1, sym_num_literal, - ACTIONS(307), 1, + ACTIONS(55), 1, sym_raw_enum_tag, - ACTIONS(309), 1, + ACTIONS(57), 1, anon_sym_fun, - ACTIONS(311), 1, + ACTIONS(59), 1, anon_sym_match, - ACTIONS(313), 1, + ACTIONS(61), 1, anon_sym_LBRACE, - ACTIONS(315), 1, + ACTIONS(63), 1, anon_sym_if, - ACTIONS(317), 1, + ACTIONS(65), 1, anon_sym_forall, - ACTIONS(319), 1, + ACTIONS(69), 1, anon_sym_import, - ACTIONS(321), 1, + ACTIONS(71), 1, anon_sym_Array, - ACTIONS(325), 1, + ACTIONS(75), 1, anon_sym_LPAREN, - ACTIONS(327), 1, + ACTIONS(77), 1, anon_sym_LBRACK, - ACTIONS(329), 1, + ACTIONS(81), 1, anon_sym__, - ACTIONS(333), 1, - anon_sym_PERCENT, - ACTIONS(335), 1, - anon_sym_DASH, - ACTIONS(337), 1, + ACTIONS(109), 1, anon_sym_LBRACK_PIPE, - ACTIONS(339), 1, + ACTIONS(111), 1, sym_multstr_start, - ACTIONS(341), 1, + ACTIONS(113), 1, sym__str_start, - ACTIONS(343), 1, + ACTIONS(115), 1, sym_quoted_enum_tag_start, - STATE(44), 1, - sym_let_in_block, - STATE(72), 1, + ACTIONS(121), 1, + anon_sym_PERCENT, + ACTIONS(131), 1, + anon_sym_DASH, + STATE(8), 1, sym_enum_tag, - STATE(82), 1, + STATE(9), 1, sym_applicative, - STATE(159), 1, - sym_infix_u_op_5, - STATE(312), 1, - sym_type_builtin, - STATE(314), 1, - sym_quoted_enum_tag, - STATE(319), 1, + STATE(55), 1, + sym_let_in_block, + STATE(87), 1, sym_record_operand, - STATE(481), 1, + STATE(97), 1, + sym_quoted_enum_tag, + STATE(98), 1, + sym_type_builtin, + STATE(158), 1, + sym_infix_u_op_5, + STATE(461), 1, sym_infix_expr, - STATE(670), 1, - sym_term, - STATE(674), 1, + STATE(669), 1, sym_uni_term, - ACTIONS(305), 2, + STATE(863), 1, + sym_term, + ACTIONS(53), 2, sym_ident, anon_sym_null, - ACTIONS(331), 2, + ACTIONS(83), 2, anon_sym_true, anon_sym_false, - STATE(330), 2, + STATE(94), 2, sym_record_operation_chain, sym_atom, - STATE(406), 2, + STATE(96), 2, sym_str_chunks_single, sym_str_chunks_multi, - STATE(422), 3, + STATE(150), 3, sym_match_expr, sym_type_array, sym_enum_variant, - ACTIONS(323), 4, + ACTIONS(73), 4, anon_sym_Dyn, anon_sym_Number, anon_sym_Bool, anon_sym_String, - STATE(310), 5, + STATE(88), 5, sym_uni_record, sym_bool, sym_str_chunks, sym_builtin, sym_type_atom, - STATE(672), 5, + STATE(670), 5, sym_let_expr, sym_fun_expr, sym_ite_expr, @@ -10176,90 +10172,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_let, ACTIONS(41), 1, anon_sym_BANG, - ACTIONS(303), 1, + ACTIONS(51), 1, sym_num_literal, - ACTIONS(307), 1, + ACTIONS(55), 1, sym_raw_enum_tag, - ACTIONS(309), 1, + ACTIONS(57), 1, anon_sym_fun, - ACTIONS(311), 1, + ACTIONS(59), 1, anon_sym_match, - ACTIONS(313), 1, + ACTIONS(61), 1, anon_sym_LBRACE, - ACTIONS(315), 1, + ACTIONS(63), 1, anon_sym_if, - ACTIONS(317), 1, + ACTIONS(65), 1, anon_sym_forall, - ACTIONS(319), 1, + ACTIONS(69), 1, anon_sym_import, - ACTIONS(321), 1, + ACTIONS(71), 1, anon_sym_Array, - ACTIONS(325), 1, + ACTIONS(75), 1, anon_sym_LPAREN, - ACTIONS(327), 1, + ACTIONS(77), 1, anon_sym_LBRACK, - ACTIONS(329), 1, + ACTIONS(81), 1, anon_sym__, - ACTIONS(333), 1, - anon_sym_PERCENT, - ACTIONS(335), 1, - anon_sym_DASH, - ACTIONS(337), 1, + ACTIONS(109), 1, anon_sym_LBRACK_PIPE, - ACTIONS(339), 1, + ACTIONS(111), 1, sym_multstr_start, - ACTIONS(341), 1, + ACTIONS(113), 1, sym__str_start, - ACTIONS(343), 1, + ACTIONS(115), 1, sym_quoted_enum_tag_start, - STATE(44), 1, - sym_let_in_block, - STATE(72), 1, + ACTIONS(121), 1, + anon_sym_PERCENT, + ACTIONS(131), 1, + anon_sym_DASH, + STATE(8), 1, sym_enum_tag, - STATE(82), 1, + STATE(9), 1, sym_applicative, - STATE(159), 1, - sym_infix_u_op_5, - STATE(312), 1, - sym_type_builtin, - STATE(314), 1, - sym_quoted_enum_tag, - STATE(319), 1, + STATE(55), 1, + sym_let_in_block, + STATE(87), 1, sym_record_operand, - STATE(481), 1, + STATE(97), 1, + sym_quoted_enum_tag, + STATE(98), 1, + sym_type_builtin, + STATE(158), 1, + sym_infix_u_op_5, + STATE(461), 1, sym_infix_expr, - STATE(674), 1, + STATE(669), 1, sym_uni_term, - STATE(1062), 1, + STATE(948), 1, sym_term, - ACTIONS(305), 2, + ACTIONS(53), 2, sym_ident, anon_sym_null, - ACTIONS(331), 2, + ACTIONS(83), 2, anon_sym_true, anon_sym_false, - STATE(330), 2, + STATE(94), 2, sym_record_operation_chain, sym_atom, - STATE(406), 2, + STATE(96), 2, sym_str_chunks_single, sym_str_chunks_multi, - STATE(422), 3, + STATE(150), 3, sym_match_expr, sym_type_array, sym_enum_variant, - ACTIONS(323), 4, + ACTIONS(73), 4, anon_sym_Dyn, anon_sym_Number, anon_sym_Bool, anon_sym_String, - STATE(310), 5, + STATE(88), 5, sym_uni_record, sym_bool, sym_str_chunks, sym_builtin, sym_type_atom, - STATE(672), 5, + STATE(670), 5, sym_let_expr, sym_fun_expr, sym_ite_expr, @@ -10308,25 +10304,25 @@ static const uint16_t ts_small_parse_table[] = { sym__str_start, ACTIONS(343), 1, sym_quoted_enum_tag_start, - STATE(44), 1, + STATE(50), 1, sym_let_in_block, - STATE(72), 1, + STATE(76), 1, sym_enum_tag, STATE(82), 1, sym_applicative, STATE(159), 1, sym_infix_u_op_5, - STATE(312), 1, - sym_type_builtin, - STATE(314), 1, + STATE(311), 1, sym_quoted_enum_tag, - STATE(319), 1, + STATE(314), 1, + sym_type_builtin, + STATE(320), 1, sym_record_operand, - STATE(481), 1, + STATE(480), 1, sym_infix_expr, - STATE(674), 1, + STATE(669), 1, sym_uni_term, - STATE(1022), 1, + STATE(1014), 1, sym_term, ACTIONS(305), 2, sym_ident, @@ -10334,7 +10330,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(331), 2, anon_sym_true, anon_sym_false, - STATE(330), 2, + STATE(324), 2, sym_record_operation_chain, sym_atom, STATE(406), 2, @@ -10349,13 +10345,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - STATE(310), 5, + STATE(309), 5, sym_uni_record, sym_bool, sym_str_chunks, sym_builtin, sym_type_atom, - STATE(672), 5, + STATE(670), 5, sym_let_expr, sym_fun_expr, sym_ite_expr, @@ -10368,90 +10364,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_let, ACTIONS(41), 1, anon_sym_BANG, - ACTIONS(219), 1, + ACTIONS(51), 1, sym_num_literal, - ACTIONS(223), 1, + ACTIONS(55), 1, sym_raw_enum_tag, - ACTIONS(225), 1, + ACTIONS(57), 1, anon_sym_fun, - ACTIONS(227), 1, + ACTIONS(59), 1, anon_sym_match, - ACTIONS(229), 1, + ACTIONS(61), 1, anon_sym_LBRACE, - ACTIONS(231), 1, + ACTIONS(63), 1, anon_sym_if, - ACTIONS(233), 1, + ACTIONS(65), 1, anon_sym_forall, - ACTIONS(235), 1, + ACTIONS(69), 1, anon_sym_import, - ACTIONS(237), 1, + ACTIONS(71), 1, anon_sym_Array, - ACTIONS(241), 1, + ACTIONS(75), 1, anon_sym_LPAREN, - ACTIONS(243), 1, + ACTIONS(77), 1, anon_sym_LBRACK, - ACTIONS(245), 1, + ACTIONS(81), 1, anon_sym__, - ACTIONS(249), 1, - anon_sym_PERCENT, - ACTIONS(251), 1, - anon_sym_DASH, - ACTIONS(253), 1, + ACTIONS(109), 1, anon_sym_LBRACK_PIPE, - ACTIONS(255), 1, + ACTIONS(111), 1, sym_multstr_start, - ACTIONS(257), 1, + ACTIONS(113), 1, sym__str_start, - ACTIONS(259), 1, + ACTIONS(115), 1, sym_quoted_enum_tag_start, - STATE(47), 1, - sym_let_in_block, - STATE(76), 1, + ACTIONS(121), 1, + anon_sym_PERCENT, + ACTIONS(131), 1, + anon_sym_DASH, + STATE(8), 1, sym_enum_tag, - STATE(83), 1, + STATE(9), 1, sym_applicative, - STATE(217), 1, - sym_infix_u_op_5, - STATE(254), 1, + STATE(55), 1, + sym_let_in_block, + STATE(87), 1, sym_record_operand, - STATE(257), 1, - sym_type_builtin, - STATE(331), 1, + STATE(97), 1, sym_quoted_enum_tag, - STATE(493), 1, + STATE(98), 1, + sym_type_builtin, + STATE(158), 1, + sym_infix_u_op_5, + STATE(461), 1, sym_infix_expr, - STATE(670), 1, - sym_term, - STATE(674), 1, + STATE(669), 1, sym_uni_term, - ACTIONS(221), 2, + STATE(1001), 1, + sym_term, + ACTIONS(53), 2, sym_ident, anon_sym_null, - ACTIONS(247), 2, + ACTIONS(83), 2, anon_sym_true, anon_sym_false, - STATE(253), 2, + STATE(94), 2, sym_record_operation_chain, sym_atom, - STATE(332), 2, + STATE(96), 2, sym_str_chunks_single, sym_str_chunks_multi, - STATE(454), 3, + STATE(150), 3, sym_match_expr, sym_type_array, sym_enum_variant, - ACTIONS(239), 4, + ACTIONS(73), 4, anon_sym_Dyn, anon_sym_Number, anon_sym_Bool, anon_sym_String, - STATE(260), 5, + STATE(88), 5, sym_uni_record, sym_bool, sym_str_chunks, sym_builtin, sym_type_atom, - STATE(672), 5, + STATE(670), 5, sym_let_expr, sym_fun_expr, sym_ite_expr, @@ -10504,21 +10500,21 @@ static const uint16_t ts_small_parse_table[] = { sym_enum_tag, STATE(9), 1, sym_applicative, - STATE(70), 1, + STATE(55), 1, sym_let_in_block, - STATE(95), 1, + STATE(87), 1, sym_record_operand, - STATE(99), 1, - sym_type_builtin, - STATE(123), 1, + STATE(97), 1, sym_quoted_enum_tag, + STATE(98), 1, + sym_type_builtin, STATE(158), 1, sym_infix_u_op_5, STATE(461), 1, sym_infix_expr, - STATE(674), 1, + STATE(669), 1, sym_uni_term, - STATE(955), 1, + STATE(674), 1, sym_term, ACTIONS(53), 2, sym_ident, @@ -10529,10 +10525,10 @@ static const uint16_t ts_small_parse_table[] = { STATE(94), 2, sym_record_operation_chain, sym_atom, - STATE(98), 2, + STATE(96), 2, sym_str_chunks_single, sym_str_chunks_multi, - STATE(149), 3, + STATE(150), 3, sym_match_expr, sym_type_array, sym_enum_variant, @@ -10541,13 +10537,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - STATE(102), 5, + STATE(88), 5, sym_uni_record, sym_bool, sym_str_chunks, sym_builtin, sym_type_atom, - STATE(672), 5, + STATE(670), 5, sym_let_expr, sym_fun_expr, sym_ite_expr, @@ -10560,90 +10556,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_let, ACTIONS(41), 1, anon_sym_BANG, - ACTIONS(261), 1, + ACTIONS(51), 1, sym_num_literal, - ACTIONS(265), 1, + ACTIONS(55), 1, sym_raw_enum_tag, - ACTIONS(267), 1, + ACTIONS(57), 1, anon_sym_fun, - ACTIONS(269), 1, + ACTIONS(59), 1, anon_sym_match, - ACTIONS(271), 1, + ACTIONS(61), 1, anon_sym_LBRACE, - ACTIONS(273), 1, + ACTIONS(63), 1, anon_sym_if, - ACTIONS(275), 1, + ACTIONS(65), 1, anon_sym_forall, - ACTIONS(277), 1, + ACTIONS(69), 1, anon_sym_import, - ACTIONS(279), 1, + ACTIONS(71), 1, anon_sym_Array, - ACTIONS(283), 1, + ACTIONS(75), 1, anon_sym_LPAREN, - ACTIONS(285), 1, + ACTIONS(77), 1, anon_sym_LBRACK, - ACTIONS(287), 1, + ACTIONS(81), 1, anon_sym__, - ACTIONS(291), 1, - anon_sym_PERCENT, - ACTIONS(293), 1, - anon_sym_DASH, - ACTIONS(295), 1, + ACTIONS(109), 1, anon_sym_LBRACK_PIPE, - ACTIONS(297), 1, + ACTIONS(111), 1, sym_multstr_start, - ACTIONS(299), 1, + ACTIONS(113), 1, sym__str_start, - ACTIONS(301), 1, + ACTIONS(115), 1, sym_quoted_enum_tag_start, - STATE(59), 1, - sym_let_in_block, - STATE(75), 1, + ACTIONS(121), 1, + anon_sym_PERCENT, + ACTIONS(131), 1, + anon_sym_DASH, + STATE(8), 1, sym_enum_tag, - STATE(84), 1, + STATE(9), 1, sym_applicative, - STATE(156), 1, - sym_infix_u_op_5, - STATE(325), 1, - sym_type_builtin, - STATE(333), 1, + STATE(55), 1, + sym_let_in_block, + STATE(87), 1, sym_record_operand, - STATE(356), 1, + STATE(97), 1, sym_quoted_enum_tag, - STATE(484), 1, + STATE(98), 1, + sym_type_builtin, + STATE(158), 1, + sym_infix_u_op_5, + STATE(461), 1, sym_infix_expr, - STATE(674), 1, + STATE(669), 1, sym_uni_term, - STATE(1140), 1, + STATE(943), 1, sym_term, - ACTIONS(263), 2, + ACTIONS(53), 2, sym_ident, anon_sym_null, - ACTIONS(289), 2, + ACTIONS(83), 2, anon_sym_true, anon_sym_false, - STATE(334), 2, + STATE(94), 2, sym_record_operation_chain, sym_atom, - STATE(417), 2, + STATE(96), 2, sym_str_chunks_single, sym_str_chunks_multi, - STATE(439), 3, + STATE(150), 3, sym_match_expr, sym_type_array, sym_enum_variant, - ACTIONS(281), 4, + ACTIONS(73), 4, anon_sym_Dyn, anon_sym_Number, anon_sym_Bool, anon_sym_String, - STATE(321), 5, + STATE(88), 5, sym_uni_record, sym_bool, sym_str_chunks, sym_builtin, sym_type_atom, - STATE(672), 5, + STATE(670), 5, sym_let_expr, sym_fun_expr, sym_ite_expr, @@ -10656,90 +10652,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_let, ACTIONS(41), 1, anon_sym_BANG, - ACTIONS(51), 1, + ACTIONS(303), 1, sym_num_literal, - ACTIONS(55), 1, + ACTIONS(307), 1, sym_raw_enum_tag, - ACTIONS(57), 1, + ACTIONS(309), 1, anon_sym_fun, - ACTIONS(59), 1, + ACTIONS(311), 1, anon_sym_match, - ACTIONS(61), 1, + ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(63), 1, + ACTIONS(315), 1, anon_sym_if, - ACTIONS(65), 1, + ACTIONS(317), 1, anon_sym_forall, - ACTIONS(69), 1, + ACTIONS(319), 1, anon_sym_import, - ACTIONS(71), 1, + ACTIONS(321), 1, anon_sym_Array, - ACTIONS(75), 1, + ACTIONS(325), 1, anon_sym_LPAREN, - ACTIONS(77), 1, + ACTIONS(327), 1, anon_sym_LBRACK, - ACTIONS(81), 1, + ACTIONS(329), 1, anon_sym__, - ACTIONS(109), 1, + ACTIONS(333), 1, + anon_sym_PERCENT, + ACTIONS(335), 1, + anon_sym_DASH, + ACTIONS(337), 1, anon_sym_LBRACK_PIPE, - ACTIONS(111), 1, + ACTIONS(339), 1, sym_multstr_start, - ACTIONS(113), 1, + ACTIONS(341), 1, sym__str_start, - ACTIONS(115), 1, + ACTIONS(343), 1, sym_quoted_enum_tag_start, - ACTIONS(121), 1, - anon_sym_PERCENT, - ACTIONS(131), 1, - anon_sym_DASH, - STATE(8), 1, + STATE(50), 1, + sym_let_in_block, + STATE(76), 1, sym_enum_tag, - STATE(9), 1, + STATE(82), 1, sym_applicative, - STATE(70), 1, - sym_let_in_block, - STATE(95), 1, - sym_record_operand, - STATE(99), 1, - sym_type_builtin, - STATE(123), 1, - sym_quoted_enum_tag, - STATE(158), 1, + STATE(159), 1, sym_infix_u_op_5, - STATE(461), 1, + STATE(311), 1, + sym_quoted_enum_tag, + STATE(314), 1, + sym_type_builtin, + STATE(320), 1, + sym_record_operand, + STATE(480), 1, sym_infix_expr, - STATE(674), 1, + STATE(669), 1, sym_uni_term, - STATE(879), 1, + STATE(672), 1, sym_term, - ACTIONS(53), 2, + ACTIONS(305), 2, sym_ident, anon_sym_null, - ACTIONS(83), 2, + ACTIONS(331), 2, anon_sym_true, anon_sym_false, - STATE(94), 2, + STATE(324), 2, sym_record_operation_chain, sym_atom, - STATE(98), 2, + STATE(406), 2, sym_str_chunks_single, sym_str_chunks_multi, - STATE(149), 3, + STATE(422), 3, sym_match_expr, sym_type_array, sym_enum_variant, - ACTIONS(73), 4, + ACTIONS(323), 4, anon_sym_Dyn, anon_sym_Number, anon_sym_Bool, anon_sym_String, - STATE(102), 5, + STATE(309), 5, sym_uni_record, sym_bool, sym_str_chunks, sym_builtin, sym_type_atom, - STATE(672), 5, + STATE(670), 5, sym_let_expr, sym_fun_expr, sym_ite_expr, @@ -10752,90 +10748,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_let, ACTIONS(41), 1, anon_sym_BANG, - ACTIONS(51), 1, + ACTIONS(219), 1, sym_num_literal, - ACTIONS(55), 1, + ACTIONS(223), 1, sym_raw_enum_tag, - ACTIONS(57), 1, + ACTIONS(225), 1, anon_sym_fun, - ACTIONS(59), 1, + ACTIONS(227), 1, anon_sym_match, - ACTIONS(61), 1, + ACTIONS(229), 1, anon_sym_LBRACE, - ACTIONS(63), 1, + ACTIONS(231), 1, anon_sym_if, - ACTIONS(65), 1, + ACTIONS(233), 1, anon_sym_forall, - ACTIONS(69), 1, + ACTIONS(235), 1, anon_sym_import, - ACTIONS(71), 1, + ACTIONS(237), 1, anon_sym_Array, - ACTIONS(75), 1, + ACTIONS(241), 1, anon_sym_LPAREN, - ACTIONS(77), 1, + ACTIONS(243), 1, anon_sym_LBRACK, - ACTIONS(81), 1, + ACTIONS(245), 1, anon_sym__, - ACTIONS(109), 1, + ACTIONS(249), 1, + anon_sym_PERCENT, + ACTIONS(251), 1, + anon_sym_DASH, + ACTIONS(253), 1, anon_sym_LBRACK_PIPE, - ACTIONS(111), 1, + ACTIONS(255), 1, sym_multstr_start, - ACTIONS(113), 1, + ACTIONS(257), 1, sym__str_start, - ACTIONS(115), 1, + ACTIONS(259), 1, sym_quoted_enum_tag_start, - ACTIONS(121), 1, - anon_sym_PERCENT, - ACTIONS(131), 1, - anon_sym_DASH, - STATE(8), 1, + STATE(51), 1, + sym_let_in_block, + STATE(80), 1, sym_enum_tag, - STATE(9), 1, + STATE(85), 1, sym_applicative, - STATE(70), 1, - sym_let_in_block, - STATE(95), 1, + STATE(218), 1, + sym_infix_u_op_5, + STATE(255), 1, sym_record_operand, - STATE(99), 1, + STATE(258), 1, sym_type_builtin, - STATE(123), 1, + STATE(336), 1, sym_quoted_enum_tag, - STATE(158), 1, - sym_infix_u_op_5, - STATE(461), 1, + STATE(493), 1, sym_infix_expr, - STATE(674), 1, + STATE(669), 1, sym_uni_term, - STATE(931), 1, + STATE(672), 1, sym_term, - ACTIONS(53), 2, + ACTIONS(221), 2, sym_ident, anon_sym_null, - ACTIONS(83), 2, + ACTIONS(247), 2, anon_sym_true, anon_sym_false, - STATE(94), 2, + STATE(253), 2, sym_record_operation_chain, sym_atom, - STATE(98), 2, + STATE(329), 2, sym_str_chunks_single, sym_str_chunks_multi, - STATE(149), 3, + STATE(454), 3, sym_match_expr, sym_type_array, sym_enum_variant, - ACTIONS(73), 4, + ACTIONS(239), 4, anon_sym_Dyn, anon_sym_Number, anon_sym_Bool, anon_sym_String, - STATE(102), 5, + STATE(260), 5, sym_uni_record, sym_bool, sym_str_chunks, sym_builtin, sym_type_atom, - STATE(672), 5, + STATE(670), 5, sym_let_expr, sym_fun_expr, sym_ite_expr, @@ -10884,25 +10880,25 @@ static const uint16_t ts_small_parse_table[] = { sym__str_start, ACTIONS(259), 1, sym_quoted_enum_tag_start, - STATE(47), 1, + STATE(51), 1, sym_let_in_block, - STATE(76), 1, + STATE(80), 1, sym_enum_tag, - STATE(83), 1, + STATE(85), 1, sym_applicative, - STATE(217), 1, + STATE(218), 1, sym_infix_u_op_5, - STATE(254), 1, + STATE(255), 1, sym_record_operand, - STATE(257), 1, + STATE(258), 1, sym_type_builtin, - STATE(331), 1, + STATE(336), 1, sym_quoted_enum_tag, STATE(493), 1, sym_infix_expr, - STATE(674), 1, + STATE(669), 1, sym_uni_term, - STATE(1033), 1, + STATE(994), 1, sym_term, ACTIONS(221), 2, sym_ident, @@ -10913,7 +10909,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(253), 2, sym_record_operation_chain, sym_atom, - STATE(332), 2, + STATE(329), 2, sym_str_chunks_single, sym_str_chunks_multi, STATE(454), 3, @@ -10931,7 +10927,7 @@ static const uint16_t ts_small_parse_table[] = { sym_str_chunks, sym_builtin, sym_type_atom, - STATE(672), 5, + STATE(670), 5, sym_let_expr, sym_fun_expr, sym_ite_expr, @@ -10980,25 +10976,25 @@ static const uint16_t ts_small_parse_table[] = { sym__str_start, ACTIONS(343), 1, sym_quoted_enum_tag_start, - STATE(44), 1, + STATE(50), 1, sym_let_in_block, - STATE(72), 1, + STATE(76), 1, sym_enum_tag, STATE(82), 1, sym_applicative, STATE(159), 1, sym_infix_u_op_5, - STATE(312), 1, - sym_type_builtin, - STATE(314), 1, + STATE(311), 1, sym_quoted_enum_tag, - STATE(319), 1, + STATE(314), 1, + sym_type_builtin, + STATE(320), 1, sym_record_operand, - STATE(481), 1, + STATE(480), 1, sym_infix_expr, - STATE(674), 1, + STATE(669), 1, sym_uni_term, - STATE(1004), 1, + STATE(987), 1, sym_term, ACTIONS(305), 2, sym_ident, @@ -11006,7 +11002,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(331), 2, anon_sym_true, anon_sym_false, - STATE(330), 2, + STATE(324), 2, sym_record_operation_chain, sym_atom, STATE(406), 2, @@ -11021,13 +11017,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - STATE(310), 5, + STATE(309), 5, sym_uni_record, sym_bool, sym_str_chunks, sym_builtin, sym_type_atom, - STATE(672), 5, + STATE(670), 5, sym_let_expr, sym_fun_expr, sym_ite_expr, @@ -11036,94 +11032,94 @@ static const uint16_t ts_small_parse_table[] = { [6225] = 39, ACTIONS(3), 1, sym_comment, - ACTIONS(5), 1, - sym_num_literal, - ACTIONS(9), 1, - sym_raw_enum_tag, ACTIONS(11), 1, anon_sym_let, - ACTIONS(13), 1, + ACTIONS(41), 1, + anon_sym_BANG, + ACTIONS(261), 1, + sym_num_literal, + ACTIONS(265), 1, + sym_raw_enum_tag, + ACTIONS(267), 1, anon_sym_fun, - ACTIONS(15), 1, + ACTIONS(269), 1, anon_sym_match, - ACTIONS(17), 1, + ACTIONS(271), 1, anon_sym_LBRACE, - ACTIONS(19), 1, + ACTIONS(273), 1, anon_sym_if, - ACTIONS(21), 1, + ACTIONS(275), 1, anon_sym_forall, - ACTIONS(23), 1, + ACTIONS(277), 1, anon_sym_import, - ACTIONS(25), 1, + ACTIONS(279), 1, anon_sym_Array, - ACTIONS(29), 1, + ACTIONS(283), 1, anon_sym_LPAREN, - ACTIONS(31), 1, + ACTIONS(285), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(287), 1, anon_sym__, - ACTIONS(37), 1, + ACTIONS(291), 1, anon_sym_PERCENT, - ACTIONS(39), 1, + ACTIONS(293), 1, anon_sym_DASH, - ACTIONS(41), 1, - anon_sym_BANG, - ACTIONS(43), 1, + ACTIONS(295), 1, anon_sym_LBRACK_PIPE, - ACTIONS(45), 1, + ACTIONS(297), 1, sym_multstr_start, - ACTIONS(47), 1, + ACTIONS(299), 1, sym__str_start, - ACTIONS(49), 1, + ACTIONS(301), 1, sym_quoted_enum_tag_start, - STATE(54), 1, + STATE(59), 1, sym_let_in_block, - STATE(80), 1, + STATE(72), 1, sym_enum_tag, STATE(86), 1, sym_applicative, - STATE(185), 1, + STATE(156), 1, sym_infix_u_op_5, - STATE(225), 1, - sym_quoted_enum_tag, - STATE(240), 1, + STATE(322), 1, sym_type_builtin, - STATE(252), 1, + STATE(330), 1, sym_record_operand, - STATE(488), 1, + STATE(356), 1, + sym_quoted_enum_tag, + STATE(491), 1, sym_infix_expr, - STATE(670), 1, - sym_term, - STATE(674), 1, + STATE(669), 1, sym_uni_term, - ACTIONS(7), 2, + STATE(1141), 1, + sym_term, + ACTIONS(263), 2, sym_ident, anon_sym_null, - ACTIONS(35), 2, + ACTIONS(289), 2, anon_sym_true, anon_sym_false, - STATE(256), 2, + STATE(331), 2, sym_record_operation_chain, sym_atom, - STATE(264), 2, + STATE(417), 2, sym_str_chunks_single, sym_str_chunks_multi, - STATE(456), 3, + STATE(440), 3, sym_match_expr, sym_type_array, sym_enum_variant, - ACTIONS(27), 4, + ACTIONS(281), 4, anon_sym_Dyn, anon_sym_Number, anon_sym_Bool, anon_sym_String, - STATE(366), 5, + STATE(318), 5, sym_uni_record, sym_bool, sym_str_chunks, sym_builtin, sym_type_atom, - STATE(672), 5, + STATE(670), 5, sym_let_expr, sym_fun_expr, sym_ite_expr, @@ -11176,22 +11172,22 @@ static const uint16_t ts_small_parse_table[] = { sym_enum_tag, STATE(9), 1, sym_applicative, - STATE(70), 1, + STATE(55), 1, sym_let_in_block, - STATE(95), 1, + STATE(87), 1, sym_record_operand, - STATE(99), 1, - sym_type_builtin, - STATE(123), 1, + STATE(97), 1, sym_quoted_enum_tag, + STATE(98), 1, + sym_type_builtin, STATE(158), 1, sym_infix_u_op_5, STATE(461), 1, sym_infix_expr, STATE(669), 1, - sym_term, - STATE(674), 1, sym_uni_term, + STATE(672), 1, + sym_term, ACTIONS(53), 2, sym_ident, anon_sym_null, @@ -11201,10 +11197,10 @@ static const uint16_t ts_small_parse_table[] = { STATE(94), 2, sym_record_operation_chain, sym_atom, - STATE(98), 2, + STATE(96), 2, sym_str_chunks_single, sym_str_chunks_multi, - STATE(149), 3, + STATE(150), 3, sym_match_expr, sym_type_array, sym_enum_variant, @@ -11213,13 +11209,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - STATE(102), 5, + STATE(88), 5, sym_uni_record, sym_bool, sym_str_chunks, sym_builtin, sym_type_atom, - STATE(672), 5, + STATE(670), 5, sym_let_expr, sym_fun_expr, sym_ite_expr, @@ -11270,23 +11266,23 @@ static const uint16_t ts_small_parse_table[] = { sym_quoted_enum_tag_start, STATE(59), 1, sym_let_in_block, - STATE(75), 1, + STATE(72), 1, sym_enum_tag, - STATE(84), 1, + STATE(86), 1, sym_applicative, STATE(156), 1, sym_infix_u_op_5, - STATE(325), 1, + STATE(322), 1, sym_type_builtin, - STATE(333), 1, + STATE(330), 1, sym_record_operand, STATE(356), 1, sym_quoted_enum_tag, - STATE(484), 1, + STATE(491), 1, sym_infix_expr, - STATE(674), 1, + STATE(669), 1, sym_uni_term, - STATE(1087), 1, + STATE(1101), 1, sym_term, ACTIONS(263), 2, sym_ident, @@ -11294,13 +11290,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(289), 2, anon_sym_true, anon_sym_false, - STATE(334), 2, + STATE(331), 2, sym_record_operation_chain, sym_atom, STATE(417), 2, sym_str_chunks_single, sym_str_chunks_multi, - STATE(439), 3, + STATE(440), 3, sym_match_expr, sym_type_array, sym_enum_variant, @@ -11309,13 +11305,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - STATE(321), 5, + STATE(318), 5, sym_uni_record, sym_bool, sym_str_chunks, sym_builtin, sym_type_atom, - STATE(672), 5, + STATE(670), 5, sym_let_expr, sym_fun_expr, sym_ite_expr, @@ -11364,26 +11360,26 @@ static const uint16_t ts_small_parse_table[] = { sym__str_start, ACTIONS(259), 1, sym_quoted_enum_tag_start, - STATE(47), 1, + STATE(51), 1, sym_let_in_block, - STATE(76), 1, + STATE(80), 1, sym_enum_tag, - STATE(83), 1, + STATE(85), 1, sym_applicative, - STATE(217), 1, + STATE(218), 1, sym_infix_u_op_5, - STATE(254), 1, + STATE(255), 1, sym_record_operand, - STATE(257), 1, + STATE(258), 1, sym_type_builtin, - STATE(331), 1, + STATE(336), 1, sym_quoted_enum_tag, STATE(493), 1, sym_infix_expr, - STATE(673), 1, - sym_term, - STATE(674), 1, + STATE(669), 1, sym_uni_term, + STATE(671), 1, + sym_term, ACTIONS(221), 2, sym_ident, anon_sym_null, @@ -11393,7 +11389,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(253), 2, sym_record_operation_chain, sym_atom, - STATE(332), 2, + STATE(329), 2, sym_str_chunks_single, sym_str_chunks_multi, STATE(454), 3, @@ -11411,7 +11407,7 @@ static const uint16_t ts_small_parse_table[] = { sym_str_chunks, sym_builtin, sym_type_atom, - STATE(672), 5, + STATE(670), 5, sym_let_expr, sym_fun_expr, sym_ite_expr, @@ -11460,25 +11456,25 @@ static const uint16_t ts_small_parse_table[] = { sym__str_start, ACTIONS(343), 1, sym_quoted_enum_tag_start, - STATE(44), 1, + STATE(50), 1, sym_let_in_block, - STATE(72), 1, + STATE(76), 1, sym_enum_tag, STATE(82), 1, sym_applicative, STATE(159), 1, sym_infix_u_op_5, - STATE(312), 1, - sym_type_builtin, - STATE(314), 1, + STATE(311), 1, sym_quoted_enum_tag, - STATE(319), 1, + STATE(314), 1, + sym_type_builtin, + STATE(320), 1, sym_record_operand, - STATE(481), 1, + STATE(480), 1, sym_infix_expr, - STATE(674), 1, + STATE(669), 1, sym_uni_term, - STATE(1030), 1, + STATE(1031), 1, sym_term, ACTIONS(305), 2, sym_ident, @@ -11486,7 +11482,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(331), 2, anon_sym_true, anon_sym_false, - STATE(330), 2, + STATE(324), 2, sym_record_operation_chain, sym_atom, STATE(406), 2, @@ -11501,13 +11497,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - STATE(310), 5, + STATE(309), 5, sym_uni_record, sym_bool, sym_str_chunks, sym_builtin, sym_type_atom, - STATE(672), 5, + STATE(670), 5, sym_let_expr, sym_fun_expr, sym_ite_expr, @@ -11558,37 +11554,37 @@ static const uint16_t ts_small_parse_table[] = { sym_quoted_enum_tag_start, STATE(59), 1, sym_let_in_block, - STATE(75), 1, + STATE(72), 1, sym_enum_tag, - STATE(84), 1, + STATE(86), 1, sym_applicative, STATE(156), 1, sym_infix_u_op_5, - STATE(325), 1, + STATE(322), 1, sym_type_builtin, - STATE(333), 1, + STATE(330), 1, sym_record_operand, STATE(356), 1, sym_quoted_enum_tag, - STATE(484), 1, + STATE(491), 1, sym_infix_expr, - STATE(670), 1, - sym_term, - STATE(674), 1, + STATE(669), 1, sym_uni_term, + STATE(672), 1, + sym_term, ACTIONS(263), 2, sym_ident, anon_sym_null, ACTIONS(289), 2, anon_sym_true, anon_sym_false, - STATE(334), 2, + STATE(331), 2, sym_record_operation_chain, sym_atom, STATE(417), 2, sym_str_chunks_single, sym_str_chunks_multi, - STATE(439), 3, + STATE(440), 3, sym_match_expr, sym_type_array, sym_enum_variant, @@ -11597,13 +11593,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - STATE(321), 5, + STATE(318), 5, sym_uni_record, sym_bool, sym_str_chunks, sym_builtin, sym_type_atom, - STATE(672), 5, + STATE(670), 5, sym_let_expr, sym_fun_expr, sym_ite_expr, @@ -11654,23 +11650,23 @@ static const uint16_t ts_small_parse_table[] = { sym_quoted_enum_tag_start, STATE(59), 1, sym_let_in_block, - STATE(75), 1, + STATE(72), 1, sym_enum_tag, - STATE(84), 1, + STATE(86), 1, sym_applicative, STATE(156), 1, sym_infix_u_op_5, - STATE(325), 1, + STATE(322), 1, sym_type_builtin, - STATE(333), 1, + STATE(330), 1, sym_record_operand, STATE(356), 1, sym_quoted_enum_tag, - STATE(484), 1, + STATE(491), 1, sym_infix_expr, - STATE(674), 1, + STATE(669), 1, sym_uni_term, - STATE(1134), 1, + STATE(1135), 1, sym_term, ACTIONS(263), 2, sym_ident, @@ -11678,13 +11674,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(289), 2, anon_sym_true, anon_sym_false, - STATE(334), 2, + STATE(331), 2, sym_record_operation_chain, sym_atom, STATE(417), 2, sym_str_chunks_single, sym_str_chunks_multi, - STATE(439), 3, + STATE(440), 3, sym_match_expr, sym_type_array, sym_enum_variant, @@ -11693,13 +11689,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - STATE(321), 5, + STATE(318), 5, sym_uni_record, sym_bool, sym_str_chunks, sym_builtin, sym_type_atom, - STATE(672), 5, + STATE(670), 5, sym_let_expr, sym_fun_expr, sym_ite_expr, @@ -11708,100 +11704,196 @@ static const uint16_t ts_small_parse_table[] = { [7170] = 39, ACTIONS(3), 1, sym_comment, - ACTIONS(5), 1, - sym_num_literal, - ACTIONS(9), 1, - sym_raw_enum_tag, ACTIONS(11), 1, anon_sym_let, - ACTIONS(13), 1, + ACTIONS(41), 1, + anon_sym_BANG, + ACTIONS(261), 1, + sym_num_literal, + ACTIONS(265), 1, + sym_raw_enum_tag, + ACTIONS(267), 1, anon_sym_fun, - ACTIONS(15), 1, + ACTIONS(269), 1, anon_sym_match, - ACTIONS(17), 1, + ACTIONS(271), 1, anon_sym_LBRACE, - ACTIONS(19), 1, + ACTIONS(273), 1, anon_sym_if, - ACTIONS(21), 1, + ACTIONS(275), 1, anon_sym_forall, - ACTIONS(23), 1, + ACTIONS(277), 1, anon_sym_import, - ACTIONS(25), 1, + ACTIONS(279), 1, anon_sym_Array, - ACTIONS(29), 1, + ACTIONS(283), 1, anon_sym_LPAREN, - ACTIONS(31), 1, + ACTIONS(285), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(287), 1, anon_sym__, - ACTIONS(37), 1, + ACTIONS(291), 1, anon_sym_PERCENT, - ACTIONS(39), 1, + ACTIONS(293), 1, anon_sym_DASH, + ACTIONS(295), 1, + anon_sym_LBRACK_PIPE, + ACTIONS(297), 1, + sym_multstr_start, + ACTIONS(299), 1, + sym__str_start, + ACTIONS(301), 1, + sym_quoted_enum_tag_start, + STATE(59), 1, + sym_let_in_block, + STATE(72), 1, + sym_enum_tag, + STATE(86), 1, + sym_applicative, + STATE(156), 1, + sym_infix_u_op_5, + STATE(322), 1, + sym_type_builtin, + STATE(330), 1, + sym_record_operand, + STATE(356), 1, + sym_quoted_enum_tag, + STATE(491), 1, + sym_infix_expr, + STATE(669), 1, + sym_uni_term, + STATE(674), 1, + sym_term, + ACTIONS(263), 2, + sym_ident, + anon_sym_null, + ACTIONS(289), 2, + anon_sym_true, + anon_sym_false, + STATE(331), 2, + sym_record_operation_chain, + sym_atom, + STATE(417), 2, + sym_str_chunks_single, + sym_str_chunks_multi, + STATE(440), 3, + sym_match_expr, + sym_type_array, + sym_enum_variant, + ACTIONS(281), 4, + anon_sym_Dyn, + anon_sym_Number, + anon_sym_Bool, + anon_sym_String, + STATE(318), 5, + sym_uni_record, + sym_bool, + sym_str_chunks, + sym_builtin, + sym_type_atom, + STATE(670), 5, + sym_let_expr, + sym_fun_expr, + sym_ite_expr, + sym_annotated_infix_expr, + sym_forall, + [7305] = 39, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_let, ACTIONS(41), 1, anon_sym_BANG, - ACTIONS(43), 1, + ACTIONS(261), 1, + sym_num_literal, + ACTIONS(265), 1, + sym_raw_enum_tag, + ACTIONS(267), 1, + anon_sym_fun, + ACTIONS(269), 1, + anon_sym_match, + ACTIONS(271), 1, + anon_sym_LBRACE, + ACTIONS(273), 1, + anon_sym_if, + ACTIONS(275), 1, + anon_sym_forall, + ACTIONS(277), 1, + anon_sym_import, + ACTIONS(279), 1, + anon_sym_Array, + ACTIONS(283), 1, + anon_sym_LPAREN, + ACTIONS(285), 1, + anon_sym_LBRACK, + ACTIONS(287), 1, + anon_sym__, + ACTIONS(291), 1, + anon_sym_PERCENT, + ACTIONS(293), 1, + anon_sym_DASH, + ACTIONS(295), 1, anon_sym_LBRACK_PIPE, - ACTIONS(45), 1, + ACTIONS(297), 1, sym_multstr_start, - ACTIONS(47), 1, + ACTIONS(299), 1, sym__str_start, - ACTIONS(49), 1, + ACTIONS(301), 1, sym_quoted_enum_tag_start, - STATE(54), 1, + STATE(59), 1, sym_let_in_block, - STATE(80), 1, + STATE(72), 1, sym_enum_tag, STATE(86), 1, sym_applicative, - STATE(185), 1, + STATE(156), 1, sym_infix_u_op_5, - STATE(225), 1, - sym_quoted_enum_tag, - STATE(240), 1, + STATE(322), 1, sym_type_builtin, - STATE(252), 1, + STATE(330), 1, sym_record_operand, - STATE(488), 1, + STATE(356), 1, + sym_quoted_enum_tag, + STATE(491), 1, sym_infix_expr, - STATE(673), 1, - sym_term, - STATE(674), 1, + STATE(669), 1, sym_uni_term, - ACTIONS(7), 2, + STATE(1139), 1, + sym_term, + ACTIONS(263), 2, sym_ident, anon_sym_null, - ACTIONS(35), 2, + ACTIONS(289), 2, anon_sym_true, anon_sym_false, - STATE(256), 2, + STATE(331), 2, sym_record_operation_chain, sym_atom, - STATE(264), 2, + STATE(417), 2, sym_str_chunks_single, sym_str_chunks_multi, - STATE(456), 3, + STATE(440), 3, sym_match_expr, sym_type_array, sym_enum_variant, - ACTIONS(27), 4, + ACTIONS(281), 4, anon_sym_Dyn, anon_sym_Number, anon_sym_Bool, anon_sym_String, - STATE(366), 5, + STATE(318), 5, sym_uni_record, sym_bool, sym_str_chunks, sym_builtin, sym_type_atom, - STATE(672), 5, + STATE(670), 5, sym_let_expr, sym_fun_expr, sym_ite_expr, sym_annotated_infix_expr, sym_forall, - [7305] = 39, + [7440] = 39, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, @@ -11846,23 +11938,23 @@ static const uint16_t ts_small_parse_table[] = { sym_quoted_enum_tag_start, STATE(59), 1, sym_let_in_block, - STATE(75), 1, + STATE(72), 1, sym_enum_tag, - STATE(84), 1, + STATE(86), 1, sym_applicative, STATE(156), 1, sym_infix_u_op_5, - STATE(325), 1, + STATE(322), 1, sym_type_builtin, - STATE(333), 1, + STATE(330), 1, sym_record_operand, STATE(356), 1, sym_quoted_enum_tag, - STATE(484), 1, + STATE(491), 1, sym_infix_expr, - STATE(674), 1, + STATE(669), 1, sym_uni_term, - STATE(1136), 1, + STATE(1137), 1, sym_term, ACTIONS(263), 2, sym_ident, @@ -11870,13 +11962,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(289), 2, anon_sym_true, anon_sym_false, - STATE(334), 2, + STATE(331), 2, sym_record_operation_chain, sym_atom, STATE(417), 2, sym_str_chunks_single, sym_str_chunks_multi, - STATE(439), 3, + STATE(440), 3, sym_match_expr, sym_type_array, sym_enum_variant, @@ -11885,19 +11977,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - STATE(321), 5, + STATE(318), 5, sym_uni_record, sym_bool, sym_str_chunks, sym_builtin, sym_type_atom, - STATE(672), 5, + STATE(670), 5, sym_let_expr, sym_fun_expr, sym_ite_expr, sym_annotated_infix_expr, sym_forall, - [7440] = 39, + [7575] = 39, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, @@ -11940,25 +12032,25 @@ static const uint16_t ts_small_parse_table[] = { sym__str_start, ACTIONS(259), 1, sym_quoted_enum_tag_start, - STATE(47), 1, + STATE(51), 1, sym_let_in_block, - STATE(76), 1, + STATE(80), 1, sym_enum_tag, - STATE(83), 1, + STATE(85), 1, sym_applicative, - STATE(217), 1, + STATE(218), 1, sym_infix_u_op_5, - STATE(254), 1, + STATE(255), 1, sym_record_operand, - STATE(257), 1, + STATE(258), 1, sym_type_builtin, - STATE(331), 1, + STATE(336), 1, sym_quoted_enum_tag, STATE(493), 1, sym_infix_expr, - STATE(674), 1, + STATE(669), 1, sym_uni_term, - STATE(1093), 1, + STATE(1019), 1, sym_term, ACTIONS(221), 2, sym_ident, @@ -11969,7 +12061,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(253), 2, sym_record_operation_chain, sym_atom, - STATE(332), 2, + STATE(329), 2, sym_str_chunks_single, sym_str_chunks_multi, STATE(454), 3, @@ -11987,13 +12079,13 @@ static const uint16_t ts_small_parse_table[] = { sym_str_chunks, sym_builtin, sym_type_atom, - STATE(672), 5, + STATE(670), 5, sym_let_expr, sym_fun_expr, sym_ite_expr, sym_annotated_infix_expr, sym_forall, - [7575] = 39, + [7710] = 39, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, @@ -12040,22 +12132,22 @@ static const uint16_t ts_small_parse_table[] = { sym_enum_tag, STATE(9), 1, sym_applicative, - STATE(70), 1, + STATE(55), 1, sym_let_in_block, - STATE(95), 1, + STATE(87), 1, sym_record_operand, - STATE(99), 1, - sym_type_builtin, - STATE(123), 1, + STATE(97), 1, sym_quoted_enum_tag, + STATE(98), 1, + sym_type_builtin, STATE(158), 1, sym_infix_u_op_5, STATE(461), 1, sym_infix_expr, - STATE(673), 1, - sym_term, - STATE(674), 1, + STATE(669), 1, sym_uni_term, + STATE(920), 1, + sym_term, ACTIONS(53), 2, sym_ident, anon_sym_null, @@ -12065,10 +12157,10 @@ static const uint16_t ts_small_parse_table[] = { STATE(94), 2, sym_record_operation_chain, sym_atom, - STATE(98), 2, + STATE(96), 2, sym_str_chunks_single, sym_str_chunks_multi, - STATE(149), 3, + STATE(150), 3, sym_match_expr, sym_type_array, sym_enum_variant, @@ -12077,211 +12169,211 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - STATE(102), 5, + STATE(88), 5, sym_uni_record, sym_bool, sym_str_chunks, sym_builtin, sym_type_atom, - STATE(672), 5, + STATE(670), 5, sym_let_expr, sym_fun_expr, sym_ite_expr, sym_annotated_infix_expr, sym_forall, - [7710] = 39, + [7845] = 39, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_let, ACTIONS(41), 1, anon_sym_BANG, - ACTIONS(219), 1, + ACTIONS(51), 1, sym_num_literal, - ACTIONS(223), 1, + ACTIONS(55), 1, sym_raw_enum_tag, - ACTIONS(225), 1, + ACTIONS(57), 1, anon_sym_fun, - ACTIONS(227), 1, + ACTIONS(59), 1, anon_sym_match, - ACTIONS(229), 1, + ACTIONS(61), 1, anon_sym_LBRACE, - ACTIONS(231), 1, + ACTIONS(63), 1, anon_sym_if, - ACTIONS(233), 1, + ACTIONS(65), 1, anon_sym_forall, - ACTIONS(235), 1, + ACTIONS(69), 1, anon_sym_import, - ACTIONS(237), 1, + ACTIONS(71), 1, anon_sym_Array, - ACTIONS(241), 1, + ACTIONS(75), 1, anon_sym_LPAREN, - ACTIONS(243), 1, + ACTIONS(77), 1, anon_sym_LBRACK, - ACTIONS(245), 1, + ACTIONS(81), 1, anon_sym__, - ACTIONS(249), 1, - anon_sym_PERCENT, - ACTIONS(251), 1, - anon_sym_DASH, - ACTIONS(253), 1, + ACTIONS(109), 1, anon_sym_LBRACK_PIPE, - ACTIONS(255), 1, + ACTIONS(111), 1, sym_multstr_start, - ACTIONS(257), 1, + ACTIONS(113), 1, sym__str_start, - ACTIONS(259), 1, + ACTIONS(115), 1, sym_quoted_enum_tag_start, - STATE(47), 1, - sym_let_in_block, - STATE(76), 1, + ACTIONS(121), 1, + anon_sym_PERCENT, + ACTIONS(131), 1, + anon_sym_DASH, + STATE(8), 1, sym_enum_tag, - STATE(83), 1, + STATE(9), 1, sym_applicative, - STATE(217), 1, - sym_infix_u_op_5, - STATE(254), 1, + STATE(55), 1, + sym_let_in_block, + STATE(87), 1, sym_record_operand, - STATE(257), 1, - sym_type_builtin, - STATE(331), 1, + STATE(97), 1, sym_quoted_enum_tag, - STATE(493), 1, + STATE(98), 1, + sym_type_builtin, + STATE(158), 1, + sym_infix_u_op_5, + STATE(461), 1, sym_infix_expr, - STATE(674), 1, + STATE(669), 1, sym_uni_term, - STATE(1037), 1, + STATE(671), 1, sym_term, - ACTIONS(221), 2, + ACTIONS(53), 2, sym_ident, anon_sym_null, - ACTIONS(247), 2, + ACTIONS(83), 2, anon_sym_true, anon_sym_false, - STATE(253), 2, + STATE(94), 2, sym_record_operation_chain, sym_atom, - STATE(332), 2, + STATE(96), 2, sym_str_chunks_single, sym_str_chunks_multi, - STATE(454), 3, + STATE(150), 3, sym_match_expr, sym_type_array, sym_enum_variant, - ACTIONS(239), 4, + ACTIONS(73), 4, anon_sym_Dyn, anon_sym_Number, anon_sym_Bool, anon_sym_String, - STATE(260), 5, + STATE(88), 5, sym_uni_record, sym_bool, sym_str_chunks, sym_builtin, sym_type_atom, - STATE(672), 5, + STATE(670), 5, sym_let_expr, sym_fun_expr, sym_ite_expr, sym_annotated_infix_expr, sym_forall, - [7845] = 39, + [7980] = 39, ACTIONS(3), 1, sym_comment, - ACTIONS(11), 1, - anon_sym_let, - ACTIONS(41), 1, - anon_sym_BANG, - ACTIONS(177), 1, + ACTIONS(5), 1, sym_num_literal, - ACTIONS(181), 1, + ACTIONS(9), 1, sym_raw_enum_tag, - ACTIONS(183), 1, + ACTIONS(11), 1, + anon_sym_let, + ACTIONS(13), 1, anon_sym_fun, - ACTIONS(185), 1, + ACTIONS(15), 1, anon_sym_match, - ACTIONS(187), 1, + ACTIONS(17), 1, anon_sym_LBRACE, - ACTIONS(189), 1, + ACTIONS(19), 1, anon_sym_if, - ACTIONS(191), 1, + ACTIONS(21), 1, anon_sym_forall, - ACTIONS(193), 1, + ACTIONS(23), 1, anon_sym_import, - ACTIONS(195), 1, + ACTIONS(25), 1, anon_sym_Array, - ACTIONS(199), 1, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(201), 1, + ACTIONS(31), 1, anon_sym_LBRACK, - ACTIONS(203), 1, + ACTIONS(33), 1, anon_sym__, - ACTIONS(207), 1, + ACTIONS(37), 1, anon_sym_PERCENT, - ACTIONS(209), 1, + ACTIONS(39), 1, anon_sym_DASH, - ACTIONS(211), 1, + ACTIONS(41), 1, + anon_sym_BANG, + ACTIONS(43), 1, anon_sym_LBRACK_PIPE, - ACTIONS(213), 1, + ACTIONS(45), 1, sym_multstr_start, - ACTIONS(215), 1, + ACTIONS(47), 1, sym__str_start, - ACTIONS(217), 1, + ACTIONS(49), 1, sym_quoted_enum_tag_start, - STATE(66), 1, + STATE(69), 1, sym_let_in_block, - STATE(78), 1, + STATE(81), 1, sym_enum_tag, - STATE(85), 1, + STATE(84), 1, sym_applicative, - STATE(162), 1, + STATE(186), 1, sym_infix_u_op_5, - STATE(345), 1, - sym_record_operand, - STATE(354), 1, - sym_type_builtin, - STATE(420), 1, + STATE(225), 1, sym_quoted_enum_tag, - STATE(479), 1, + STATE(240), 1, + sym_type_builtin, + STATE(251), 1, + sym_record_operand, + STATE(488), 1, sym_infix_expr, - STATE(999), 1, + STATE(669), 1, sym_uni_term, - STATE(1105), 1, + STATE(671), 1, sym_term, - ACTIONS(179), 2, + ACTIONS(7), 2, sym_ident, anon_sym_null, - ACTIONS(205), 2, + ACTIONS(35), 2, anon_sym_true, anon_sym_false, - STATE(251), 2, - sym_str_chunks_single, - sym_str_chunks_multi, - STATE(344), 2, + STATE(256), 2, sym_record_operation_chain, sym_atom, - STATE(433), 3, + STATE(266), 2, + sym_str_chunks_single, + sym_str_chunks_multi, + STATE(456), 3, sym_match_expr, sym_type_array, sym_enum_variant, - ACTIONS(197), 4, + ACTIONS(27), 4, anon_sym_Dyn, anon_sym_Number, anon_sym_Bool, anon_sym_String, - STATE(357), 5, + STATE(366), 5, sym_uni_record, sym_bool, sym_str_chunks, sym_builtin, sym_type_atom, - STATE(1000), 5, + STATE(670), 5, sym_let_expr, sym_fun_expr, sym_ite_expr, sym_annotated_infix_expr, sym_forall, - [7980] = 39, + [8115] = 39, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, @@ -12324,33 +12416,33 @@ static const uint16_t ts_small_parse_table[] = { sym__str_start, ACTIONS(343), 1, sym_quoted_enum_tag_start, - STATE(44), 1, + STATE(50), 1, sym_let_in_block, - STATE(72), 1, + STATE(76), 1, sym_enum_tag, STATE(82), 1, sym_applicative, STATE(159), 1, sym_infix_u_op_5, - STATE(312), 1, - sym_type_builtin, - STATE(314), 1, + STATE(311), 1, sym_quoted_enum_tag, - STATE(319), 1, + STATE(314), 1, + sym_type_builtin, + STATE(320), 1, sym_record_operand, - STATE(481), 1, + STATE(480), 1, sym_infix_expr, - STATE(673), 1, - sym_term, - STATE(674), 1, + STATE(669), 1, sym_uni_term, + STATE(671), 1, + sym_term, ACTIONS(305), 2, sym_ident, anon_sym_null, ACTIONS(331), 2, anon_sym_true, anon_sym_false, - STATE(330), 2, + STATE(324), 2, sym_record_operation_chain, sym_atom, STATE(406), 2, @@ -12365,325 +12457,219 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - STATE(310), 5, + STATE(309), 5, sym_uni_record, sym_bool, sym_str_chunks, sym_builtin, sym_type_atom, - STATE(672), 5, + STATE(670), 5, sym_let_expr, sym_fun_expr, sym_ite_expr, sym_annotated_infix_expr, sym_forall, - [8115] = 39, + [8250] = 39, ACTIONS(3), 1, sym_comment, - ACTIONS(11), 1, - anon_sym_let, - ACTIONS(41), 1, - anon_sym_BANG, - ACTIONS(261), 1, + ACTIONS(5), 1, sym_num_literal, - ACTIONS(265), 1, + ACTIONS(9), 1, sym_raw_enum_tag, - ACTIONS(267), 1, + ACTIONS(11), 1, + anon_sym_let, + ACTIONS(13), 1, anon_sym_fun, - ACTIONS(269), 1, + ACTIONS(15), 1, anon_sym_match, - ACTIONS(271), 1, + ACTIONS(17), 1, anon_sym_LBRACE, - ACTIONS(273), 1, + ACTIONS(19), 1, anon_sym_if, - ACTIONS(275), 1, + ACTIONS(21), 1, anon_sym_forall, - ACTIONS(277), 1, + ACTIONS(23), 1, anon_sym_import, - ACTIONS(279), 1, + ACTIONS(25), 1, anon_sym_Array, - ACTIONS(283), 1, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(285), 1, + ACTIONS(31), 1, anon_sym_LBRACK, - ACTIONS(287), 1, + ACTIONS(33), 1, anon_sym__, - ACTIONS(291), 1, + ACTIONS(37), 1, anon_sym_PERCENT, - ACTIONS(293), 1, + ACTIONS(39), 1, anon_sym_DASH, - ACTIONS(295), 1, + ACTIONS(41), 1, + anon_sym_BANG, + ACTIONS(43), 1, anon_sym_LBRACK_PIPE, - ACTIONS(297), 1, + ACTIONS(45), 1, sym_multstr_start, - ACTIONS(299), 1, + ACTIONS(47), 1, sym__str_start, - ACTIONS(301), 1, + ACTIONS(49), 1, sym_quoted_enum_tag_start, - STATE(59), 1, + STATE(69), 1, sym_let_in_block, - STATE(75), 1, + STATE(81), 1, sym_enum_tag, STATE(84), 1, sym_applicative, - STATE(156), 1, + STATE(186), 1, sym_infix_u_op_5, - STATE(325), 1, + STATE(225), 1, + sym_quoted_enum_tag, + STATE(240), 1, sym_type_builtin, - STATE(333), 1, + STATE(251), 1, sym_record_operand, - STATE(356), 1, - sym_quoted_enum_tag, - STATE(484), 1, + STATE(488), 1, sym_infix_expr, - STATE(674), 1, + STATE(669), 1, sym_uni_term, - STATE(1138), 1, + STATE(672), 1, sym_term, - ACTIONS(263), 2, + ACTIONS(7), 2, sym_ident, anon_sym_null, - ACTIONS(289), 2, + ACTIONS(35), 2, anon_sym_true, anon_sym_false, - STATE(334), 2, + STATE(256), 2, sym_record_operation_chain, sym_atom, - STATE(417), 2, + STATE(266), 2, sym_str_chunks_single, sym_str_chunks_multi, - STATE(439), 3, + STATE(456), 3, sym_match_expr, sym_type_array, sym_enum_variant, - ACTIONS(281), 4, + ACTIONS(27), 4, anon_sym_Dyn, anon_sym_Number, anon_sym_Bool, anon_sym_String, - STATE(321), 5, + STATE(366), 5, sym_uni_record, sym_bool, sym_str_chunks, sym_builtin, sym_type_atom, - STATE(672), 5, + STATE(670), 5, sym_let_expr, sym_fun_expr, sym_ite_expr, sym_annotated_infix_expr, sym_forall, - [8250] = 39, + [8385] = 39, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_let, ACTIONS(41), 1, anon_sym_BANG, - ACTIONS(261), 1, + ACTIONS(177), 1, sym_num_literal, - ACTIONS(265), 1, + ACTIONS(181), 1, sym_raw_enum_tag, - ACTIONS(267), 1, + ACTIONS(183), 1, anon_sym_fun, - ACTIONS(269), 1, + ACTIONS(185), 1, anon_sym_match, - ACTIONS(271), 1, + ACTIONS(187), 1, anon_sym_LBRACE, - ACTIONS(273), 1, + ACTIONS(189), 1, anon_sym_if, - ACTIONS(275), 1, + ACTIONS(191), 1, anon_sym_forall, - ACTIONS(277), 1, + ACTIONS(193), 1, anon_sym_import, - ACTIONS(279), 1, + ACTIONS(195), 1, anon_sym_Array, - ACTIONS(283), 1, + ACTIONS(199), 1, anon_sym_LPAREN, - ACTIONS(285), 1, + ACTIONS(201), 1, anon_sym_LBRACK, - ACTIONS(287), 1, + ACTIONS(203), 1, anon_sym__, - ACTIONS(291), 1, + ACTIONS(207), 1, anon_sym_PERCENT, - ACTIONS(293), 1, + ACTIONS(209), 1, anon_sym_DASH, - ACTIONS(295), 1, + ACTIONS(211), 1, anon_sym_LBRACK_PIPE, - ACTIONS(297), 1, + ACTIONS(213), 1, sym_multstr_start, - ACTIONS(299), 1, + ACTIONS(215), 1, sym__str_start, - ACTIONS(301), 1, + ACTIONS(217), 1, sym_quoted_enum_tag_start, - STATE(59), 1, + STATE(70), 1, sym_let_in_block, - STATE(75), 1, + STATE(71), 1, sym_enum_tag, - STATE(84), 1, + STATE(83), 1, sym_applicative, - STATE(156), 1, + STATE(162), 1, sym_infix_u_op_5, - STATE(325), 1, - sym_type_builtin, - STATE(333), 1, + STATE(345), 1, sym_record_operand, - STATE(356), 1, + STATE(354), 1, + sym_type_builtin, + STATE(420), 1, sym_quoted_enum_tag, STATE(484), 1, sym_infix_expr, - STATE(669), 1, - sym_term, - STATE(674), 1, + STATE(990), 1, sym_uni_term, - ACTIONS(263), 2, + STATE(1109), 1, + sym_term, + ACTIONS(179), 2, sym_ident, anon_sym_null, - ACTIONS(289), 2, + ACTIONS(205), 2, anon_sym_true, anon_sym_false, - STATE(334), 2, - sym_record_operation_chain, - sym_atom, - STATE(417), 2, + STATE(252), 2, sym_str_chunks_single, sym_str_chunks_multi, - STATE(439), 3, - sym_match_expr, - sym_type_array, - sym_enum_variant, - ACTIONS(281), 4, - anon_sym_Dyn, - anon_sym_Number, - anon_sym_Bool, - anon_sym_String, - STATE(321), 5, - sym_uni_record, - sym_bool, - sym_str_chunks, - sym_builtin, - sym_type_atom, - STATE(672), 5, - sym_let_expr, - sym_fun_expr, - sym_ite_expr, - sym_annotated_infix_expr, - sym_forall, - [8385] = 39, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_let, - ACTIONS(41), 1, - anon_sym_BANG, - ACTIONS(51), 1, - sym_num_literal, - ACTIONS(55), 1, - sym_raw_enum_tag, - ACTIONS(57), 1, - anon_sym_fun, - ACTIONS(59), 1, - anon_sym_match, - ACTIONS(61), 1, - anon_sym_LBRACE, - ACTIONS(63), 1, - anon_sym_if, - ACTIONS(65), 1, - anon_sym_forall, - ACTIONS(69), 1, - anon_sym_import, - ACTIONS(71), 1, - anon_sym_Array, - ACTIONS(75), 1, - anon_sym_LPAREN, - ACTIONS(77), 1, - anon_sym_LBRACK, - ACTIONS(81), 1, - anon_sym__, - ACTIONS(109), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(111), 1, - sym_multstr_start, - ACTIONS(113), 1, - sym__str_start, - ACTIONS(115), 1, - sym_quoted_enum_tag_start, - ACTIONS(121), 1, - anon_sym_PERCENT, - ACTIONS(131), 1, - anon_sym_DASH, - STATE(8), 1, - sym_enum_tag, - STATE(9), 1, - sym_applicative, - STATE(70), 1, - sym_let_in_block, - STATE(95), 1, - sym_record_operand, - STATE(99), 1, - sym_type_builtin, - STATE(123), 1, - sym_quoted_enum_tag, - STATE(158), 1, - sym_infix_u_op_5, - STATE(461), 1, - sym_infix_expr, - STATE(670), 1, - sym_term, - STATE(674), 1, - sym_uni_term, - ACTIONS(53), 2, - sym_ident, - anon_sym_null, - ACTIONS(83), 2, - anon_sym_true, - anon_sym_false, - STATE(94), 2, + STATE(344), 2, sym_record_operation_chain, sym_atom, - STATE(98), 2, - sym_str_chunks_single, - sym_str_chunks_multi, - STATE(149), 3, + STATE(432), 3, sym_match_expr, sym_type_array, sym_enum_variant, - ACTIONS(73), 4, + ACTIONS(197), 4, anon_sym_Dyn, anon_sym_Number, anon_sym_Bool, anon_sym_String, - STATE(102), 5, + STATE(357), 5, sym_uni_record, sym_bool, sym_str_chunks, sym_builtin, sym_type_atom, - STATE(672), 5, + STATE(996), 5, sym_let_expr, sym_fun_expr, sym_ite_expr, sym_annotated_infix_expr, sym_forall, - [8520] = 38, + [8520] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(41), 1, - anon_sym_BANG, ACTIONS(177), 1, sym_num_literal, ACTIONS(181), 1, sym_raw_enum_tag, - ACTIONS(185), 1, - anon_sym_match, ACTIONS(187), 1, anon_sym_LBRACE, - ACTIONS(191), 1, - anon_sym_forall, - ACTIONS(193), 1, - anon_sym_import, - ACTIONS(195), 1, - anon_sym_Array, ACTIONS(199), 1, anon_sym_LPAREN, ACTIONS(201), 1, @@ -12692,8 +12678,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__, ACTIONS(207), 1, anon_sym_PERCENT, - ACTIONS(209), 1, - anon_sym_DASH, ACTIONS(211), 1, anon_sym_LBRACK_PIPE, ACTIONS(213), 1, @@ -12702,111 +12686,108 @@ static const uint16_t ts_small_parse_table[] = { sym__str_start, ACTIONS(217), 1, sym_quoted_enum_tag_start, - ACTIONS(347), 1, - anon_sym_priority, - ACTIONS(349), 1, - anon_sym_doc, - ACTIONS(351), 1, - anon_sym_rec, - STATE(78), 1, - sym_enum_tag, - STATE(85), 1, - sym_applicative, - STATE(162), 1, - sym_infix_u_op_5, - STATE(345), 1, + STATE(323), 1, sym_record_operand, STATE(354), 1, sym_type_builtin, STATE(420), 1, sym_quoted_enum_tag, - STATE(568), 1, - sym_infix_expr, - STATE(876), 1, - sym_types, - STATE(884), 1, - sym_forall, ACTIONS(179), 2, sym_ident, anon_sym_null, ACTIONS(205), 2, anon_sym_true, anon_sym_false, - STATE(251), 2, + STATE(252), 2, sym_str_chunks_single, sym_str_chunks_multi, STATE(344), 2, sym_record_operation_chain, sym_atom, - STATE(433), 3, - sym_match_expr, - sym_type_array, - sym_enum_variant, ACTIONS(197), 4, anon_sym_Dyn, anon_sym_Number, anon_sym_Bool, anon_sym_String, - ACTIONS(345), 4, - anon_sym_default, - anon_sym_force, - anon_sym_optional, - anon_sym_not_exported, - STATE(357), 5, + STATE(357), 6, sym_uni_record, sym_bool, sym_str_chunks, + sym_enum_tag, sym_builtin, sym_type_atom, - [8651] = 23, + ACTIONS(117), 7, + anon_sym_PIPE, + anon_sym_DOT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + ACTIONS(119), 14, + sym_interpolation_end, + anon_sym_COLON, + anon_sym_AT, + anon_sym_PLUS_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PIPE_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_DASH_GT, + [8621] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(303), 1, + ACTIONS(261), 1, sym_num_literal, - ACTIONS(307), 1, + ACTIONS(265), 1, sym_raw_enum_tag, - ACTIONS(313), 1, + ACTIONS(271), 1, anon_sym_LBRACE, - ACTIONS(325), 1, + ACTIONS(283), 1, anon_sym_LPAREN, - ACTIONS(327), 1, + ACTIONS(285), 1, anon_sym_LBRACK, - ACTIONS(329), 1, + ACTIONS(287), 1, anon_sym__, - ACTIONS(333), 1, + ACTIONS(291), 1, anon_sym_PERCENT, - ACTIONS(337), 1, + ACTIONS(295), 1, anon_sym_LBRACK_PIPE, - ACTIONS(339), 1, + ACTIONS(297), 1, sym_multstr_start, - ACTIONS(341), 1, + ACTIONS(299), 1, sym__str_start, - ACTIONS(343), 1, + ACTIONS(301), 1, sym_quoted_enum_tag_start, - STATE(312), 1, + STATE(322), 1, sym_type_builtin, - STATE(314), 1, + STATE(356), 1, sym_quoted_enum_tag, - STATE(351), 1, + STATE(363), 1, sym_record_operand, - ACTIONS(305), 2, + ACTIONS(263), 2, sym_ident, anon_sym_null, - ACTIONS(331), 2, + ACTIONS(289), 2, anon_sym_true, anon_sym_false, - STATE(330), 2, + STATE(331), 2, sym_record_operation_chain, sym_atom, - STATE(406), 2, + STATE(417), 2, sym_str_chunks_single, sym_str_chunks_multi, - ACTIONS(323), 4, + ACTIONS(281), 4, anon_sym_Dyn, anon_sym_Number, anon_sym_Bool, anon_sym_String, - STATE(310), 6, + STATE(318), 6, sym_uni_record, sym_bool, sym_str_chunks, @@ -12815,7 +12796,7 @@ static const uint16_t ts_small_parse_table[] = { sym_type_atom, ACTIONS(117), 8, anon_sym_PIPE, - anon_sym_else, + anon_sym_then, anon_sym_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -12836,7 +12817,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_DASH_GT, - [8752] = 38, + [8722] = 38, ACTIONS(3), 1, sym_comment, ACTIONS(41), 1, @@ -12873,29 +12854,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, ACTIONS(131), 1, anon_sym_DASH, - ACTIONS(355), 1, + ACTIONS(347), 1, anon_sym_priority, - ACTIONS(357), 1, + ACTIONS(349), 1, anon_sym_doc, - ACTIONS(359), 1, + ACTIONS(351), 1, anon_sym_rec, STATE(8), 1, sym_enum_tag, STATE(9), 1, sym_applicative, - STATE(95), 1, + STATE(87), 1, sym_record_operand, - STATE(99), 1, - sym_type_builtin, - STATE(123), 1, + STATE(97), 1, sym_quoted_enum_tag, + STATE(98), 1, + sym_type_builtin, STATE(158), 1, sym_infix_u_op_5, - STATE(464), 1, + STATE(463), 1, sym_infix_expr, - STATE(640), 1, + STATE(642), 1, sym_forall, - STATE(641), 1, + STATE(643), 1, sym_types, ACTIONS(53), 2, sym_ident, @@ -12906,10 +12887,10 @@ static const uint16_t ts_small_parse_table[] = { STATE(94), 2, sym_record_operation_chain, sym_atom, - STATE(98), 2, + STATE(96), 2, sym_str_chunks_single, sym_str_chunks_multi, - STATE(149), 3, + STATE(150), 3, sym_match_expr, sym_type_array, sym_enum_variant, @@ -12918,18 +12899,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - ACTIONS(353), 4, + ACTIONS(345), 4, anon_sym_default, anon_sym_force, anon_sym_optional, anon_sym_not_exported, - STATE(102), 5, + STATE(88), 5, sym_uni_record, sym_bool, sym_str_chunks, sym_builtin, sym_type_atom, - [8883] = 38, + [8853] = 38, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -12966,29 +12947,29 @@ static const uint16_t ts_small_parse_table[] = { sym__str_start, ACTIONS(49), 1, sym_quoted_enum_tag_start, - ACTIONS(355), 1, + ACTIONS(347), 1, anon_sym_priority, - ACTIONS(357), 1, + ACTIONS(349), 1, anon_sym_doc, - ACTIONS(359), 1, + ACTIONS(351), 1, anon_sym_rec, - STATE(80), 1, + STATE(81), 1, sym_enum_tag, - STATE(86), 1, + STATE(84), 1, sym_applicative, - STATE(185), 1, + STATE(186), 1, sym_infix_u_op_5, STATE(225), 1, sym_quoted_enum_tag, STATE(240), 1, sym_type_builtin, - STATE(252), 1, + STATE(251), 1, sym_record_operand, STATE(519), 1, sym_infix_expr, - STATE(640), 1, + STATE(642), 1, sym_forall, - STATE(641), 1, + STATE(643), 1, sym_types, ACTIONS(7), 2, sym_ident, @@ -12999,7 +12980,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(256), 2, sym_record_operation_chain, sym_atom, - STATE(264), 2, + STATE(266), 2, sym_str_chunks_single, sym_str_chunks_multi, STATE(456), 3, @@ -13011,7 +12992,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - ACTIONS(353), 4, + ACTIONS(345), 4, anon_sym_default, anon_sym_force, anon_sym_optional, @@ -13022,133 +13003,148 @@ static const uint16_t ts_small_parse_table[] = { sym_str_chunks, sym_builtin, sym_type_atom, - [9014] = 23, + [8984] = 38, ACTIONS(3), 1, sym_comment, - ACTIONS(261), 1, + ACTIONS(41), 1, + anon_sym_BANG, + ACTIONS(219), 1, sym_num_literal, - ACTIONS(265), 1, + ACTIONS(223), 1, sym_raw_enum_tag, - ACTIONS(271), 1, + ACTIONS(227), 1, + anon_sym_match, + ACTIONS(229), 1, anon_sym_LBRACE, - ACTIONS(283), 1, + ACTIONS(233), 1, + anon_sym_forall, + ACTIONS(235), 1, + anon_sym_import, + ACTIONS(237), 1, + anon_sym_Array, + ACTIONS(241), 1, anon_sym_LPAREN, - ACTIONS(285), 1, + ACTIONS(243), 1, anon_sym_LBRACK, - ACTIONS(287), 1, + ACTIONS(245), 1, anon_sym__, - ACTIONS(291), 1, + ACTIONS(249), 1, anon_sym_PERCENT, - ACTIONS(295), 1, + ACTIONS(251), 1, + anon_sym_DASH, + ACTIONS(253), 1, anon_sym_LBRACK_PIPE, - ACTIONS(297), 1, + ACTIONS(255), 1, sym_multstr_start, - ACTIONS(299), 1, + ACTIONS(257), 1, sym__str_start, - ACTIONS(301), 1, + ACTIONS(259), 1, sym_quoted_enum_tag_start, - STATE(325), 1, + ACTIONS(347), 1, + anon_sym_priority, + ACTIONS(349), 1, + anon_sym_doc, + ACTIONS(351), 1, + anon_sym_rec, + STATE(80), 1, + sym_enum_tag, + STATE(85), 1, + sym_applicative, + STATE(218), 1, + sym_infix_u_op_5, + STATE(255), 1, + sym_record_operand, + STATE(258), 1, sym_type_builtin, - STATE(356), 1, + STATE(336), 1, sym_quoted_enum_tag, - STATE(364), 1, - sym_record_operand, - ACTIONS(263), 2, + STATE(537), 1, + sym_infix_expr, + STATE(642), 1, + sym_forall, + STATE(643), 1, + sym_types, + ACTIONS(221), 2, sym_ident, anon_sym_null, - ACTIONS(289), 2, + ACTIONS(247), 2, anon_sym_true, anon_sym_false, - STATE(334), 2, + STATE(253), 2, sym_record_operation_chain, sym_atom, - STATE(417), 2, + STATE(329), 2, sym_str_chunks_single, sym_str_chunks_multi, - ACTIONS(281), 4, + STATE(454), 3, + sym_match_expr, + sym_type_array, + sym_enum_variant, + ACTIONS(239), 4, anon_sym_Dyn, anon_sym_Number, anon_sym_Bool, anon_sym_String, - STATE(321), 6, + ACTIONS(345), 4, + anon_sym_default, + anon_sym_force, + anon_sym_optional, + anon_sym_not_exported, + STATE(260), 5, sym_uni_record, sym_bool, sym_str_chunks, - sym_enum_tag, sym_builtin, sym_type_atom, - ACTIONS(117), 8, - anon_sym_PIPE, - anon_sym_then, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - ACTIONS(119), 13, - anon_sym_COLON, - anon_sym_AT, - anon_sym_PLUS_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PIPE_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_DASH_GT, [9115] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(219), 1, + ACTIONS(303), 1, sym_num_literal, - ACTIONS(223), 1, + ACTIONS(307), 1, sym_raw_enum_tag, - ACTIONS(229), 1, + ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(241), 1, + ACTIONS(325), 1, anon_sym_LPAREN, - ACTIONS(243), 1, + ACTIONS(327), 1, anon_sym_LBRACK, - ACTIONS(245), 1, + ACTIONS(329), 1, anon_sym__, - ACTIONS(249), 1, + ACTIONS(333), 1, anon_sym_PERCENT, - ACTIONS(253), 1, + ACTIONS(337), 1, anon_sym_LBRACK_PIPE, - ACTIONS(255), 1, + ACTIONS(339), 1, sym_multstr_start, - ACTIONS(257), 1, + ACTIONS(341), 1, sym__str_start, - ACTIONS(259), 1, + ACTIONS(343), 1, sym_quoted_enum_tag_start, - STATE(221), 1, - sym_record_operand, - STATE(257), 1, - sym_type_builtin, - STATE(331), 1, + STATE(311), 1, sym_quoted_enum_tag, - ACTIONS(221), 2, + STATE(314), 1, + sym_type_builtin, + STATE(351), 1, + sym_record_operand, + ACTIONS(305), 2, sym_ident, anon_sym_null, - ACTIONS(247), 2, + ACTIONS(331), 2, anon_sym_true, anon_sym_false, - STATE(253), 2, + STATE(324), 2, sym_record_operation_chain, sym_atom, - STATE(332), 2, + STATE(406), 2, sym_str_chunks_single, sym_str_chunks_multi, - ACTIONS(239), 4, + ACTIONS(323), 4, anon_sym_Dyn, anon_sym_Number, anon_sym_Bool, anon_sym_String, - STATE(260), 6, + STATE(309), 6, sym_uni_record, sym_bool, sym_str_chunks, @@ -13157,7 +13153,7 @@ static const uint16_t ts_small_parse_table[] = { sym_type_atom, ACTIONS(117), 8, anon_sym_PIPE, - anon_sym_in, + anon_sym_else, anon_sym_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -13215,29 +13211,29 @@ static const uint16_t ts_small_parse_table[] = { sym__str_start, ACTIONS(301), 1, sym_quoted_enum_tag_start, - ACTIONS(355), 1, + ACTIONS(347), 1, anon_sym_priority, - ACTIONS(357), 1, + ACTIONS(349), 1, anon_sym_doc, - ACTIONS(359), 1, + ACTIONS(351), 1, anon_sym_rec, - STATE(75), 1, + STATE(72), 1, sym_enum_tag, - STATE(84), 1, + STATE(86), 1, sym_applicative, STATE(156), 1, sym_infix_u_op_5, - STATE(325), 1, + STATE(322), 1, sym_type_builtin, - STATE(333), 1, + STATE(330), 1, sym_record_operand, STATE(356), 1, sym_quoted_enum_tag, - STATE(532), 1, + STATE(536), 1, sym_infix_expr, - STATE(640), 1, + STATE(642), 1, sym_forall, - STATE(641), 1, + STATE(643), 1, sym_types, ACTIONS(263), 2, sym_ident, @@ -13245,13 +13241,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(289), 2, anon_sym_true, anon_sym_false, - STATE(334), 2, + STATE(331), 2, sym_record_operation_chain, sym_atom, STATE(417), 2, sym_str_chunks_single, sym_str_chunks_multi, - STATE(439), 3, + STATE(440), 3, sym_match_expr, sym_type_array, sym_enum_variant, @@ -13260,26 +13256,129 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - ACTIONS(353), 4, + ACTIONS(345), 4, + anon_sym_default, + anon_sym_force, + anon_sym_optional, + anon_sym_not_exported, + STATE(318), 5, + sym_uni_record, + sym_bool, + sym_str_chunks, + sym_builtin, + sym_type_atom, + [9347] = 38, + ACTIONS(3), 1, + sym_comment, + ACTIONS(41), 1, + anon_sym_BANG, + ACTIONS(303), 1, + sym_num_literal, + ACTIONS(307), 1, + sym_raw_enum_tag, + ACTIONS(311), 1, + anon_sym_match, + ACTIONS(313), 1, + anon_sym_LBRACE, + ACTIONS(317), 1, + anon_sym_forall, + ACTIONS(319), 1, + anon_sym_import, + ACTIONS(321), 1, + anon_sym_Array, + ACTIONS(325), 1, + anon_sym_LPAREN, + ACTIONS(327), 1, + anon_sym_LBRACK, + ACTIONS(329), 1, + anon_sym__, + ACTIONS(333), 1, + anon_sym_PERCENT, + ACTIONS(335), 1, + anon_sym_DASH, + ACTIONS(337), 1, + anon_sym_LBRACK_PIPE, + ACTIONS(339), 1, + sym_multstr_start, + ACTIONS(341), 1, + sym__str_start, + ACTIONS(343), 1, + sym_quoted_enum_tag_start, + ACTIONS(347), 1, + anon_sym_priority, + ACTIONS(349), 1, + anon_sym_doc, + ACTIONS(351), 1, + anon_sym_rec, + STATE(76), 1, + sym_enum_tag, + STATE(82), 1, + sym_applicative, + STATE(159), 1, + sym_infix_u_op_5, + STATE(311), 1, + sym_quoted_enum_tag, + STATE(314), 1, + sym_type_builtin, + STATE(320), 1, + sym_record_operand, + STATE(516), 1, + sym_infix_expr, + STATE(642), 1, + sym_forall, + STATE(643), 1, + sym_types, + ACTIONS(305), 2, + sym_ident, + anon_sym_null, + ACTIONS(331), 2, + anon_sym_true, + anon_sym_false, + STATE(324), 2, + sym_record_operation_chain, + sym_atom, + STATE(406), 2, + sym_str_chunks_single, + sym_str_chunks_multi, + STATE(422), 3, + sym_match_expr, + sym_type_array, + sym_enum_variant, + ACTIONS(323), 4, + anon_sym_Dyn, + anon_sym_Number, + anon_sym_Bool, + anon_sym_String, + ACTIONS(345), 4, anon_sym_default, anon_sym_force, anon_sym_optional, anon_sym_not_exported, - STATE(321), 5, + STATE(309), 5, sym_uni_record, sym_bool, sym_str_chunks, sym_builtin, sym_type_atom, - [9347] = 23, + [9478] = 38, ACTIONS(3), 1, sym_comment, + ACTIONS(41), 1, + anon_sym_BANG, ACTIONS(177), 1, sym_num_literal, ACTIONS(181), 1, sym_raw_enum_tag, + ACTIONS(185), 1, + anon_sym_match, ACTIONS(187), 1, anon_sym_LBRACE, + ACTIONS(191), 1, + anon_sym_forall, + ACTIONS(193), 1, + anon_sym_import, + ACTIONS(195), 1, + anon_sym_Array, ACTIONS(199), 1, anon_sym_LPAREN, ACTIONS(201), 1, @@ -13288,6 +13387,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__, ACTIONS(207), 1, anon_sym_PERCENT, + ACTIONS(209), 1, + anon_sym_DASH, ACTIONS(211), 1, anon_sym_LBRACK_PIPE, ACTIONS(213), 1, @@ -13296,78 +13397,71 @@ static const uint16_t ts_small_parse_table[] = { sym__str_start, ACTIONS(217), 1, sym_quoted_enum_tag_start, - STATE(320), 1, + ACTIONS(355), 1, + anon_sym_priority, + ACTIONS(357), 1, + anon_sym_doc, + ACTIONS(359), 1, + anon_sym_rec, + STATE(71), 1, + sym_enum_tag, + STATE(83), 1, + sym_applicative, + STATE(162), 1, + sym_infix_u_op_5, + STATE(345), 1, sym_record_operand, STATE(354), 1, sym_type_builtin, STATE(420), 1, sym_quoted_enum_tag, + STATE(569), 1, + sym_infix_expr, + STATE(875), 1, + sym_types, + STATE(878), 1, + sym_forall, ACTIONS(179), 2, sym_ident, anon_sym_null, ACTIONS(205), 2, anon_sym_true, anon_sym_false, - STATE(251), 2, + STATE(252), 2, sym_str_chunks_single, sym_str_chunks_multi, STATE(344), 2, sym_record_operation_chain, sym_atom, + STATE(432), 3, + sym_match_expr, + sym_type_array, + sym_enum_variant, ACTIONS(197), 4, anon_sym_Dyn, anon_sym_Number, anon_sym_Bool, anon_sym_String, - STATE(357), 6, + ACTIONS(353), 4, + anon_sym_default, + anon_sym_force, + anon_sym_optional, + anon_sym_not_exported, + STATE(357), 5, sym_uni_record, sym_bool, sym_str_chunks, - sym_enum_tag, sym_builtin, sym_type_atom, - ACTIONS(117), 7, - anon_sym_PIPE, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - ACTIONS(119), 14, - sym_interpolation_end, - anon_sym_COLON, - anon_sym_AT, - anon_sym_PLUS_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PIPE_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_DASH_GT, - [9448] = 38, + [9609] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(41), 1, - anon_sym_BANG, ACTIONS(219), 1, sym_num_literal, ACTIONS(223), 1, sym_raw_enum_tag, - ACTIONS(227), 1, - anon_sym_match, ACTIONS(229), 1, anon_sym_LBRACE, - ACTIONS(233), 1, - anon_sym_forall, - ACTIONS(235), 1, - anon_sym_import, - ACTIONS(237), 1, - anon_sym_Array, ACTIONS(241), 1, anon_sym_LPAREN, ACTIONS(243), 1, @@ -13376,8 +13470,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__, ACTIONS(249), 1, anon_sym_PERCENT, - ACTIONS(251), 1, - anon_sym_DASH, ACTIONS(253), 1, anon_sym_LBRACK_PIPE, ACTIONS(255), 1, @@ -13386,30 +13478,12 @@ static const uint16_t ts_small_parse_table[] = { sym__str_start, ACTIONS(259), 1, sym_quoted_enum_tag_start, - ACTIONS(355), 1, - anon_sym_priority, - ACTIONS(357), 1, - anon_sym_doc, - ACTIONS(359), 1, - anon_sym_rec, - STATE(76), 1, - sym_enum_tag, - STATE(83), 1, - sym_applicative, - STATE(217), 1, - sym_infix_u_op_5, - STATE(254), 1, + STATE(221), 1, sym_record_operand, - STATE(257), 1, + STATE(258), 1, sym_type_builtin, - STATE(331), 1, + STATE(336), 1, sym_quoted_enum_tag, - STATE(571), 1, - sym_infix_expr, - STATE(640), 1, - sym_forall, - STATE(641), 1, - sym_types, ACTIONS(221), 2, sym_ident, anon_sym_null, @@ -13419,30 +13493,45 @@ static const uint16_t ts_small_parse_table[] = { STATE(253), 2, sym_record_operation_chain, sym_atom, - STATE(332), 2, + STATE(329), 2, sym_str_chunks_single, sym_str_chunks_multi, - STATE(454), 3, - sym_match_expr, - sym_type_array, - sym_enum_variant, ACTIONS(239), 4, anon_sym_Dyn, anon_sym_Number, anon_sym_Bool, anon_sym_String, - ACTIONS(353), 4, - anon_sym_default, - anon_sym_force, - anon_sym_optional, - anon_sym_not_exported, - STATE(260), 5, + STATE(260), 6, sym_uni_record, sym_bool, sym_str_chunks, + sym_enum_tag, sym_builtin, sym_type_atom, - [9579] = 23, + ACTIONS(117), 8, + anon_sym_PIPE, + anon_sym_in, + anon_sym_DOT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + ACTIONS(119), 13, + anon_sym_COLON, + anon_sym_AT, + anon_sym_PLUS_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PIPE_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_DASH_GT, + [9710] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -13482,7 +13571,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(256), 2, sym_record_operation_chain, sym_atom, - STATE(264), 2, + STATE(266), 2, sym_str_chunks_single, sym_str_chunks_multi, ACTIONS(27), 4, @@ -13520,99 +13609,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_DASH_GT, - [9680] = 38, - ACTIONS(3), 1, - sym_comment, - ACTIONS(41), 1, - anon_sym_BANG, - ACTIONS(303), 1, - sym_num_literal, - ACTIONS(307), 1, - sym_raw_enum_tag, - ACTIONS(311), 1, - anon_sym_match, - ACTIONS(313), 1, - anon_sym_LBRACE, - ACTIONS(317), 1, - anon_sym_forall, - ACTIONS(319), 1, - anon_sym_import, - ACTIONS(321), 1, - anon_sym_Array, - ACTIONS(325), 1, - anon_sym_LPAREN, - ACTIONS(327), 1, - anon_sym_LBRACK, - ACTIONS(329), 1, - anon_sym__, - ACTIONS(333), 1, - anon_sym_PERCENT, - ACTIONS(335), 1, - anon_sym_DASH, - ACTIONS(337), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(339), 1, - sym_multstr_start, - ACTIONS(341), 1, - sym__str_start, - ACTIONS(343), 1, - sym_quoted_enum_tag_start, - ACTIONS(355), 1, - anon_sym_priority, - ACTIONS(357), 1, - anon_sym_doc, - ACTIONS(359), 1, - anon_sym_rec, - STATE(72), 1, - sym_enum_tag, - STATE(82), 1, - sym_applicative, - STATE(159), 1, - sym_infix_u_op_5, - STATE(312), 1, - sym_type_builtin, - STATE(314), 1, - sym_quoted_enum_tag, - STATE(319), 1, - sym_record_operand, - STATE(573), 1, - sym_infix_expr, - STATE(640), 1, - sym_forall, - STATE(641), 1, - sym_types, - ACTIONS(305), 2, - sym_ident, - anon_sym_null, - ACTIONS(331), 2, - anon_sym_true, - anon_sym_false, - STATE(330), 2, - sym_record_operation_chain, - sym_atom, - STATE(406), 2, - sym_str_chunks_single, - sym_str_chunks_multi, - STATE(422), 3, - sym_match_expr, - sym_type_array, - sym_enum_variant, - ACTIONS(323), 4, - anon_sym_Dyn, - anon_sym_Number, - anon_sym_Bool, - anon_sym_String, - ACTIONS(353), 4, - anon_sym_default, - anon_sym_force, - anon_sym_optional, - anon_sym_not_exported, - STATE(310), 5, - sym_uni_record, - sym_bool, - sym_str_chunks, - sym_builtin, - sym_type_atom, [9811] = 22, ACTIONS(3), 1, sym_comment, @@ -13636,10 +13632,10 @@ static const uint16_t ts_small_parse_table[] = { sym__str_start, ACTIONS(343), 1, sym_quoted_enum_tag_start, - STATE(312), 1, - sym_type_builtin, - STATE(314), 1, + STATE(311), 1, sym_quoted_enum_tag, + STATE(314), 1, + sym_type_builtin, STATE(346), 1, sym_record_operand, ACTIONS(305), 2, @@ -13648,7 +13644,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(331), 2, anon_sym_true, anon_sym_false, - STATE(330), 2, + STATE(324), 2, sym_record_operation_chain, sym_atom, STATE(406), 2, @@ -13659,7 +13655,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - STATE(310), 6, + STATE(309), 6, sym_uni_record, sym_bool, sym_str_chunks, @@ -13692,65 +13688,65 @@ static const uint16_t ts_small_parse_table[] = { [9909] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(219), 1, + ACTIONS(177), 1, sym_num_literal, - ACTIONS(223), 1, + ACTIONS(181), 1, sym_raw_enum_tag, - ACTIONS(229), 1, + ACTIONS(187), 1, anon_sym_LBRACE, - ACTIONS(241), 1, + ACTIONS(199), 1, anon_sym_LPAREN, - ACTIONS(243), 1, + ACTIONS(201), 1, anon_sym_LBRACK, - ACTIONS(245), 1, + ACTIONS(203), 1, anon_sym__, - ACTIONS(253), 1, + ACTIONS(211), 1, anon_sym_LBRACK_PIPE, - ACTIONS(255), 1, + ACTIONS(213), 1, sym_multstr_start, - ACTIONS(257), 1, + ACTIONS(215), 1, sym__str_start, - ACTIONS(259), 1, + ACTIONS(217), 1, sym_quoted_enum_tag_start, - STATE(243), 1, + STATE(325), 1, sym_record_operand, - STATE(257), 1, + STATE(354), 1, sym_type_builtin, - STATE(331), 1, + STATE(420), 1, sym_quoted_enum_tag, - ACTIONS(221), 2, + ACTIONS(179), 2, sym_ident, anon_sym_null, - ACTIONS(247), 2, + ACTIONS(205), 2, anon_sym_true, anon_sym_false, - STATE(253), 2, - sym_record_operation_chain, - sym_atom, - STATE(332), 2, + STATE(252), 2, sym_str_chunks_single, sym_str_chunks_multi, - ACTIONS(239), 4, + STATE(344), 2, + sym_record_operation_chain, + sym_atom, + ACTIONS(197), 4, anon_sym_Dyn, anon_sym_Number, anon_sym_Bool, anon_sym_String, - STATE(260), 6, - sym_uni_record, - sym_bool, - sym_str_chunks, - sym_enum_tag, - sym_builtin, - sym_type_atom, - ACTIONS(123), 7, + ACTIONS(123), 6, anon_sym_PIPE, - anon_sym_in, anon_sym_PLUS, anon_sym_DASH, anon_sym_AMP, anon_sym_LT, anon_sym_GT, - ACTIONS(125), 14, + STATE(357), 6, + sym_uni_record, + sym_bool, + sym_str_chunks, + sym_enum_tag, + sym_builtin, + sym_type_atom, + ACTIONS(125), 15, + sym_interpolation_end, anon_sym_COLON, anon_sym_AT, anon_sym_PERCENT, @@ -13768,65 +13764,65 @@ static const uint16_t ts_small_parse_table[] = { [10007] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(261), 1, + ACTIONS(5), 1, sym_num_literal, - ACTIONS(265), 1, + ACTIONS(9), 1, sym_raw_enum_tag, - ACTIONS(271), 1, + ACTIONS(17), 1, anon_sym_LBRACE, - ACTIONS(283), 1, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(285), 1, + ACTIONS(31), 1, anon_sym_LBRACK, - ACTIONS(287), 1, + ACTIONS(33), 1, anon_sym__, - ACTIONS(295), 1, + ACTIONS(43), 1, anon_sym_LBRACK_PIPE, - ACTIONS(297), 1, + ACTIONS(45), 1, sym_multstr_start, - ACTIONS(299), 1, + ACTIONS(47), 1, sym__str_start, - ACTIONS(301), 1, + ACTIONS(49), 1, sym_quoted_enum_tag_start, - STATE(325), 1, - sym_type_builtin, - STATE(356), 1, + STATE(225), 1, sym_quoted_enum_tag, - STATE(363), 1, + STATE(240), 1, + sym_type_builtin, + STATE(378), 1, sym_record_operand, - ACTIONS(263), 2, + ACTIONS(7), 2, sym_ident, anon_sym_null, - ACTIONS(289), 2, + ACTIONS(35), 2, anon_sym_true, anon_sym_false, - STATE(334), 2, + STATE(256), 2, sym_record_operation_chain, sym_atom, - STATE(417), 2, + STATE(266), 2, sym_str_chunks_single, sym_str_chunks_multi, - ACTIONS(281), 4, + ACTIONS(27), 4, anon_sym_Dyn, anon_sym_Number, anon_sym_Bool, anon_sym_String, - STATE(321), 6, - sym_uni_record, - sym_bool, - sym_str_chunks, - sym_enum_tag, - sym_builtin, - sym_type_atom, - ACTIONS(123), 7, + ACTIONS(123), 6, anon_sym_PIPE, - anon_sym_then, anon_sym_PLUS, anon_sym_DASH, anon_sym_AMP, anon_sym_LT, anon_sym_GT, - ACTIONS(125), 14, + STATE(366), 6, + sym_uni_record, + sym_bool, + sym_str_chunks, + sym_enum_tag, + sym_builtin, + sym_type_atom, + ACTIONS(125), 15, + ts_builtin_sym_end, anon_sym_COLON, anon_sym_AT, anon_sym_PERCENT, @@ -13844,65 +13840,65 @@ static const uint16_t ts_small_parse_table[] = { [10105] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(177), 1, + ACTIONS(219), 1, sym_num_literal, - ACTIONS(181), 1, + ACTIONS(223), 1, sym_raw_enum_tag, - ACTIONS(187), 1, + ACTIONS(229), 1, anon_sym_LBRACE, - ACTIONS(199), 1, + ACTIONS(241), 1, anon_sym_LPAREN, - ACTIONS(201), 1, + ACTIONS(243), 1, anon_sym_LBRACK, - ACTIONS(203), 1, + ACTIONS(245), 1, anon_sym__, - ACTIONS(211), 1, + ACTIONS(253), 1, anon_sym_LBRACK_PIPE, - ACTIONS(213), 1, + ACTIONS(255), 1, sym_multstr_start, - ACTIONS(215), 1, + ACTIONS(257), 1, sym__str_start, - ACTIONS(217), 1, + ACTIONS(259), 1, sym_quoted_enum_tag_start, - STATE(322), 1, + STATE(243), 1, sym_record_operand, - STATE(354), 1, + STATE(258), 1, sym_type_builtin, - STATE(420), 1, + STATE(336), 1, sym_quoted_enum_tag, - ACTIONS(179), 2, + ACTIONS(221), 2, sym_ident, anon_sym_null, - ACTIONS(205), 2, + ACTIONS(247), 2, anon_sym_true, anon_sym_false, - STATE(251), 2, - sym_str_chunks_single, - sym_str_chunks_multi, - STATE(344), 2, + STATE(253), 2, sym_record_operation_chain, sym_atom, - ACTIONS(197), 4, + STATE(329), 2, + sym_str_chunks_single, + sym_str_chunks_multi, + ACTIONS(239), 4, anon_sym_Dyn, anon_sym_Number, anon_sym_Bool, anon_sym_String, - ACTIONS(123), 6, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - STATE(357), 6, + STATE(260), 6, sym_uni_record, sym_bool, sym_str_chunks, sym_enum_tag, sym_builtin, sym_type_atom, - ACTIONS(125), 15, - sym_interpolation_end, + ACTIONS(123), 7, + anon_sym_PIPE, + anon_sym_in, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + ACTIONS(125), 14, anon_sym_COLON, anon_sym_AT, anon_sym_PERCENT, @@ -13920,65 +13916,65 @@ static const uint16_t ts_small_parse_table[] = { [10203] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(5), 1, + ACTIONS(261), 1, sym_num_literal, - ACTIONS(9), 1, + ACTIONS(265), 1, sym_raw_enum_tag, - ACTIONS(17), 1, + ACTIONS(271), 1, anon_sym_LBRACE, - ACTIONS(29), 1, + ACTIONS(283), 1, anon_sym_LPAREN, - ACTIONS(31), 1, + ACTIONS(285), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(287), 1, anon_sym__, - ACTIONS(43), 1, + ACTIONS(295), 1, anon_sym_LBRACK_PIPE, - ACTIONS(45), 1, + ACTIONS(297), 1, sym_multstr_start, - ACTIONS(47), 1, + ACTIONS(299), 1, sym__str_start, - ACTIONS(49), 1, + ACTIONS(301), 1, sym_quoted_enum_tag_start, - STATE(225), 1, - sym_quoted_enum_tag, - STATE(240), 1, + STATE(322), 1, sym_type_builtin, - STATE(378), 1, + STATE(356), 1, + sym_quoted_enum_tag, + STATE(362), 1, sym_record_operand, - ACTIONS(7), 2, + ACTIONS(263), 2, sym_ident, anon_sym_null, - ACTIONS(35), 2, + ACTIONS(289), 2, anon_sym_true, anon_sym_false, - STATE(256), 2, + STATE(331), 2, sym_record_operation_chain, sym_atom, - STATE(264), 2, + STATE(417), 2, sym_str_chunks_single, sym_str_chunks_multi, - ACTIONS(27), 4, + ACTIONS(281), 4, anon_sym_Dyn, anon_sym_Number, anon_sym_Bool, anon_sym_String, - ACTIONS(123), 6, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - STATE(366), 6, + STATE(318), 6, sym_uni_record, sym_bool, sym_str_chunks, sym_enum_tag, sym_builtin, sym_type_atom, - ACTIONS(125), 15, - ts_builtin_sym_end, + ACTIONS(123), 7, + anon_sym_PIPE, + anon_sym_then, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + ACTIONS(125), 14, anon_sym_COLON, anon_sym_AT, anon_sym_PERCENT, @@ -13993,14 +13989,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_DASH_GT, - [10301] = 3, + [10301] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(363), 18, + ACTIONS(365), 1, + anon_sym_DOT, + ACTIONS(363), 17, sym_ident, anon_sym_PIPE, anon_sym_EQ, - anon_sym_DOT, anon_sym_Dyn, anon_sym_null, anon_sym_LBRACK, @@ -14045,10 +14042,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_DASH_GT, anon_sym_LBRACK_PIPE, - [10356] = 3, + [10358] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(117), 18, + sym_ident, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_Dyn, + anon_sym_null, + anon_sym_LBRACK, + anon_sym__, + anon_sym_true, + anon_sym_false, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_Number, + anon_sym_Bool, + anon_sym_String, + ACTIONS(119), 29, + sym_multstr_start, + sym__str_start, + sym_quoted_enum_tag_start, + sym_num_literal, + sym_raw_enum_tag, + anon_sym_COLON, + anon_sym_EQ_GT, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_AT, + anon_sym_QMARK, + anon_sym_PERCENT, + anon_sym_PLUS_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PIPE_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_DASH_GT, + anon_sym_LBRACK_PIPE, + [10413] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(367), 18, + ACTIONS(369), 18, sym_ident, anon_sym_PIPE, anon_sym_EQ, @@ -14067,7 +14116,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - ACTIONS(365), 29, + ACTIONS(367), 29, sym_multstr_start, sym__str_start, sym_quoted_enum_tag_start, @@ -14097,10 +14146,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_DASH_GT, anon_sym_LBRACK_PIPE, - [10411] = 3, + [10468] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(371), 18, + ACTIONS(373), 18, sym_ident, anon_sym_PIPE, anon_sym_EQ, @@ -14119,7 +14168,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - ACTIONS(369), 29, + ACTIONS(371), 29, sym_multstr_start, sym__str_start, sym_quoted_enum_tag_start, @@ -14149,12 +14198,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_DASH_GT, anon_sym_LBRACK_PIPE, - [10466] = 4, + [10523] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(377), 1, + ACTIONS(365), 1, anon_sym_DOT, - ACTIONS(375), 17, + ACTIONS(377), 17, sym_ident, anon_sym_PIPE, anon_sym_EQ, @@ -14172,7 +14221,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - ACTIONS(373), 29, + ACTIONS(375), 29, sym_multstr_start, sym__str_start, sym_quoted_enum_tag_start, @@ -14202,7 +14251,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_DASH_GT, anon_sym_LBRACK_PIPE, - [10523] = 3, + [10580] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(381), 18, @@ -14254,7 +14303,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_DASH_GT, anon_sym_LBRACK_PIPE, - [10578] = 3, + [10635] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(385), 18, @@ -14306,7 +14355,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_DASH_GT, anon_sym_LBRACK_PIPE, - [10633] = 3, + [10690] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(389), 18, @@ -14358,7 +14407,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_DASH_GT, anon_sym_LBRACK_PIPE, - [10688] = 3, + [10745] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(393), 18, @@ -14410,15 +14459,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_DASH_GT, anon_sym_LBRACK_PIPE, - [10743] = 4, + [10800] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(377), 1, - anon_sym_DOT, - ACTIONS(397), 17, + ACTIONS(397), 18, sym_ident, anon_sym_PIPE, anon_sym_EQ, + anon_sym_DOT, anon_sym_Dyn, anon_sym_null, anon_sym_LBRACK, @@ -14463,7 +14511,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_DASH_GT, anon_sym_LBRACK_PIPE, - [10800] = 3, + [10855] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(401), 18, @@ -14515,15 +14563,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_DASH_GT, anon_sym_LBRACK_PIPE, - [10855] = 4, + [10910] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(377), 1, - anon_sym_DOT, - ACTIONS(405), 17, + ACTIONS(405), 18, sym_ident, anon_sym_PIPE, anon_sym_EQ, + anon_sym_DOT, anon_sym_Dyn, anon_sym_null, anon_sym_LBRACK, @@ -14568,7 +14615,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_DASH_GT, anon_sym_LBRACK_PIPE, - [10912] = 3, + [10965] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(409), 18, @@ -14620,7 +14667,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_DASH_GT, anon_sym_LBRACK_PIPE, - [10967] = 3, + [11020] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(413), 18, @@ -14672,7 +14719,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_DASH_GT, anon_sym_LBRACK_PIPE, - [11022] = 3, + [11075] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(417), 18, @@ -14724,63 +14771,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_DASH_GT, anon_sym_LBRACK_PIPE, - [11077] = 4, + [11130] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(377), 1, - anon_sym_DOT, - ACTIONS(421), 17, - sym_ident, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_Dyn, - anon_sym_null, - anon_sym_LBRACK, - anon_sym__, - anon_sym_true, - anon_sym_false, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_Number, - anon_sym_Bool, - anon_sym_String, - ACTIONS(419), 29, - sym_multstr_start, - sym__str_start, - sym_quoted_enum_tag_start, - sym_num_literal, - sym_raw_enum_tag, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_AT, - anon_sym_QMARK, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PIPE_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_DASH_GT, - anon_sym_LBRACK_PIPE, - [11134] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(117), 18, + ACTIONS(421), 18, sym_ident, anon_sym_PIPE, anon_sym_EQ, @@ -14799,7 +14793,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - ACTIONS(119), 29, + ACTIONS(419), 29, sym_multstr_start, sym__str_start, sym_quoted_enum_tag_start, @@ -14829,7 +14823,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_DASH_GT, anon_sym_LBRACK_PIPE, - [11189] = 3, + [11185] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(425), 18, @@ -14881,7 +14875,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_DASH_GT, anon_sym_LBRACK_PIPE, - [11244] = 3, + [11240] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(429), 18, @@ -14933,14 +14927,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_DASH_GT, anon_sym_LBRACK_PIPE, - [11299] = 3, + [11295] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(433), 18, + ACTIONS(365), 1, + anon_sym_DOT, + ACTIONS(433), 17, sym_ident, anon_sym_PIPE, anon_sym_EQ, - anon_sym_DOT, anon_sym_Dyn, anon_sym_null, anon_sym_LBRACK, @@ -14985,7 +14980,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_DASH_GT, anon_sym_LBRACK_PIPE, - [11354] = 3, + [11352] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(437), 18, @@ -15037,7 +15032,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_DASH_GT, anon_sym_LBRACK_PIPE, - [11409] = 3, + [11407] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(441), 18, @@ -15089,7 +15084,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_DASH_GT, anon_sym_LBRACK_PIPE, - [11464] = 3, + [11462] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(445), 18, @@ -15141,7 +15136,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_DASH_GT, anon_sym_LBRACK_PIPE, - [11519] = 3, + [11517] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(449), 18, @@ -15193,7 +15188,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_DASH_GT, anon_sym_LBRACK_PIPE, - [11574] = 3, + [11572] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(453), 18, @@ -15245,7 +15240,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_DASH_GT, anon_sym_LBRACK_PIPE, - [11629] = 3, + [11627] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(457), 18, @@ -15297,7 +15292,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_DASH_GT, anon_sym_LBRACK_PIPE, - [11684] = 3, + [11682] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(461), 18, @@ -15349,7 +15344,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_DASH_GT, anon_sym_LBRACK_PIPE, - [11739] = 3, + [11737] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(465), 18, @@ -15401,7 +15396,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_DASH_GT, anon_sym_LBRACK_PIPE, - [11794] = 3, + [11792] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(469), 18, @@ -15453,7 +15448,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_DASH_GT, anon_sym_LBRACK_PIPE, - [11849] = 3, + [11847] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(473), 18, @@ -15505,7 +15500,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_DASH_GT, anon_sym_LBRACK_PIPE, - [11904] = 3, + [11902] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(477), 18, @@ -15557,7 +15552,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_DASH_GT, anon_sym_LBRACK_PIPE, - [11959] = 3, + [11957] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(481), 18, @@ -15609,7 +15604,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_DASH_GT, anon_sym_LBRACK_PIPE, - [12014] = 3, + [12012] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(485), 18, @@ -15661,7 +15656,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_DASH_GT, anon_sym_LBRACK_PIPE, - [12069] = 3, + [12067] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(489), 18, @@ -15713,7 +15708,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_DASH_GT, anon_sym_LBRACK_PIPE, - [12124] = 3, + [12122] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(493), 18, @@ -15765,7 +15760,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_DASH_GT, anon_sym_LBRACK_PIPE, - [12179] = 3, + [12177] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(497), 18, @@ -15817,7 +15812,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_DASH_GT, anon_sym_LBRACK_PIPE, - [12234] = 3, + [12232] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(501), 18, @@ -15869,7 +15864,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_DASH_GT, anon_sym_LBRACK_PIPE, - [12289] = 3, + [12287] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(505), 18, @@ -15921,14 +15916,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_DASH_GT, anon_sym_LBRACK_PIPE, - [12344] = 3, + [12342] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(509), 18, + ACTIONS(365), 1, + anon_sym_DOT, + ACTIONS(509), 17, sym_ident, anon_sym_PIPE, anon_sym_EQ, - anon_sym_DOT, anon_sym_Dyn, anon_sym_null, anon_sym_LBRACK, @@ -16114,37 +16110,37 @@ static const uint16_t ts_small_parse_table[] = { sym__str_start, ACTIONS(301), 1, sym_quoted_enum_tag_start, - STATE(75), 1, + STATE(72), 1, sym_enum_tag, - STATE(84), 1, + STATE(86), 1, sym_applicative, STATE(156), 1, sym_infix_u_op_5, - STATE(325), 1, + STATE(322), 1, sym_type_builtin, - STATE(333), 1, + STATE(330), 1, sym_record_operand, STATE(356), 1, sym_quoted_enum_tag, - STATE(532), 1, + STATE(536), 1, sym_infix_expr, - STATE(632), 1, - sym_types, - STATE(640), 1, + STATE(642), 1, sym_forall, + STATE(650), 1, + sym_types, ACTIONS(263), 2, sym_ident, anon_sym_null, ACTIONS(289), 2, anon_sym_true, anon_sym_false, - STATE(334), 2, + STATE(331), 2, sym_record_operation_chain, sym_atom, STATE(417), 2, sym_str_chunks_single, sym_str_chunks_multi, - STATE(439), 3, + STATE(440), 3, sym_match_expr, sym_type_array, sym_enum_variant, @@ -16153,7 +16149,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - STATE(321), 5, + STATE(318), 5, sym_uni_record, sym_bool, sym_str_chunks, @@ -16200,19 +16196,19 @@ static const uint16_t ts_small_parse_table[] = { sym_enum_tag, STATE(9), 1, sym_applicative, - STATE(95), 1, + STATE(87), 1, sym_record_operand, - STATE(99), 1, - sym_type_builtin, - STATE(123), 1, + STATE(97), 1, sym_quoted_enum_tag, + STATE(98), 1, + sym_type_builtin, STATE(158), 1, sym_infix_u_op_5, - STATE(464), 1, + STATE(463), 1, sym_infix_expr, - STATE(640), 1, + STATE(642), 1, sym_forall, - STATE(1027), 1, + STATE(1069), 1, sym_types, ACTIONS(53), 2, sym_ident, @@ -16223,10 +16219,10 @@ static const uint16_t ts_small_parse_table[] = { STATE(94), 2, sym_record_operation_chain, sym_atom, - STATE(98), 2, + STATE(96), 2, sym_str_chunks_single, sym_str_chunks_multi, - STATE(149), 3, + STATE(150), 3, sym_match_expr, sym_type_array, sym_enum_variant, @@ -16235,64 +16231,177 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - STATE(102), 5, + STATE(88), 5, sym_uni_record, sym_bool, sym_str_chunks, sym_builtin, sym_type_atom, - [12741] = 3, + [12741] = 34, ACTIONS(3), 1, sym_comment, - ACTIONS(521), 17, - sym_ident, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_Dyn, - anon_sym_null, + ACTIONS(41), 1, + anon_sym_BANG, + ACTIONS(51), 1, + sym_num_literal, + ACTIONS(55), 1, + sym_raw_enum_tag, + ACTIONS(59), 1, + anon_sym_match, + ACTIONS(61), 1, + anon_sym_LBRACE, + ACTIONS(65), 1, + anon_sym_forall, + ACTIONS(69), 1, + anon_sym_import, + ACTIONS(71), 1, + anon_sym_Array, + ACTIONS(75), 1, + anon_sym_LPAREN, + ACTIONS(77), 1, anon_sym_LBRACK, + ACTIONS(81), 1, anon_sym__, + ACTIONS(109), 1, + anon_sym_LBRACK_PIPE, + ACTIONS(111), 1, + sym_multstr_start, + ACTIONS(113), 1, + sym__str_start, + ACTIONS(115), 1, + sym_quoted_enum_tag_start, + ACTIONS(121), 1, + anon_sym_PERCENT, + ACTIONS(131), 1, + anon_sym_DASH, + STATE(8), 1, + sym_enum_tag, + STATE(9), 1, + sym_applicative, + STATE(87), 1, + sym_record_operand, + STATE(97), 1, + sym_quoted_enum_tag, + STATE(98), 1, + sym_type_builtin, + STATE(158), 1, + sym_infix_u_op_5, + STATE(463), 1, + sym_infix_expr, + STATE(642), 1, + sym_forall, + STATE(1047), 1, + sym_types, + ACTIONS(53), 2, + sym_ident, + anon_sym_null, + ACTIONS(83), 2, anon_sym_true, anon_sym_false, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, + STATE(94), 2, + sym_record_operation_chain, + sym_atom, + STATE(96), 2, + sym_str_chunks_single, + sym_str_chunks_multi, + STATE(150), 3, + sym_match_expr, + sym_type_array, + sym_enum_variant, + ACTIONS(73), 4, + anon_sym_Dyn, anon_sym_Number, anon_sym_Bool, anon_sym_String, - ACTIONS(519), 29, - sym_multstr_start, - sym__str_start, - sym_quoted_enum_tag_start, + STATE(88), 5, + sym_uni_record, + sym_bool, + sym_str_chunks, + sym_builtin, + sym_type_atom, + [12857] = 34, + ACTIONS(3), 1, + sym_comment, + ACTIONS(41), 1, + anon_sym_BANG, + ACTIONS(219), 1, sym_num_literal, + ACTIONS(223), 1, sym_raw_enum_tag, - anon_sym_COLON, - anon_sym_EQ_GT, + ACTIONS(227), 1, + anon_sym_match, + ACTIONS(229), 1, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, + ACTIONS(233), 1, + anon_sym_forall, + ACTIONS(235), 1, + anon_sym_import, + ACTIONS(237), 1, + anon_sym_Array, + ACTIONS(241), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_AT, - anon_sym_QMARK, + ACTIONS(243), 1, + anon_sym_LBRACK, + ACTIONS(245), 1, + anon_sym__, + ACTIONS(249), 1, anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PIPE_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_DASH_GT, + ACTIONS(251), 1, + anon_sym_DASH, + ACTIONS(253), 1, anon_sym_LBRACK_PIPE, - [12795] = 34, + ACTIONS(255), 1, + sym_multstr_start, + ACTIONS(257), 1, + sym__str_start, + ACTIONS(259), 1, + sym_quoted_enum_tag_start, + STATE(80), 1, + sym_enum_tag, + STATE(85), 1, + sym_applicative, + STATE(218), 1, + sym_infix_u_op_5, + STATE(255), 1, + sym_record_operand, + STATE(258), 1, + sym_type_builtin, + STATE(336), 1, + sym_quoted_enum_tag, + STATE(537), 1, + sym_infix_expr, + STATE(642), 1, + sym_forall, + STATE(650), 1, + sym_types, + ACTIONS(221), 2, + sym_ident, + anon_sym_null, + ACTIONS(247), 2, + anon_sym_true, + anon_sym_false, + STATE(253), 2, + sym_record_operation_chain, + sym_atom, + STATE(329), 2, + sym_str_chunks_single, + sym_str_chunks_multi, + STATE(454), 3, + sym_match_expr, + sym_type_array, + sym_enum_variant, + ACTIONS(239), 4, + anon_sym_Dyn, + anon_sym_Number, + anon_sym_Bool, + anon_sym_String, + STATE(260), 5, + sym_uni_record, + sym_bool, + sym_str_chunks, + sym_builtin, + sym_type_atom, + [12973] = 34, ACTIONS(3), 1, sym_comment, ACTIONS(41), 1, @@ -16333,19 +16442,19 @@ static const uint16_t ts_small_parse_table[] = { sym_enum_tag, STATE(9), 1, sym_applicative, - STATE(95), 1, + STATE(87), 1, sym_record_operand, - STATE(99), 1, - sym_type_builtin, - STATE(123), 1, + STATE(97), 1, sym_quoted_enum_tag, + STATE(98), 1, + sym_type_builtin, STATE(158), 1, sym_infix_u_op_5, - STATE(464), 1, + STATE(463), 1, sym_infix_expr, - STATE(640), 1, + STATE(642), 1, sym_forall, - STATE(641), 1, + STATE(643), 1, sym_types, ACTIONS(53), 2, sym_ident, @@ -16356,10 +16465,10 @@ static const uint16_t ts_small_parse_table[] = { STATE(94), 2, sym_record_operation_chain, sym_atom, - STATE(98), 2, + STATE(96), 2, sym_str_chunks_single, sym_str_chunks_multi, - STATE(149), 3, + STATE(150), 3, sym_match_expr, sym_type_array, sym_enum_variant, @@ -16368,231 +16477,180 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - STATE(102), 5, + STATE(88), 5, sym_uni_record, sym_bool, sym_str_chunks, sym_builtin, sym_type_atom, - [12911] = 34, + [13089] = 34, ACTIONS(3), 1, sym_comment, ACTIONS(41), 1, anon_sym_BANG, - ACTIONS(51), 1, + ACTIONS(303), 1, sym_num_literal, - ACTIONS(55), 1, + ACTIONS(307), 1, sym_raw_enum_tag, - ACTIONS(59), 1, + ACTIONS(311), 1, anon_sym_match, - ACTIONS(61), 1, + ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(65), 1, + ACTIONS(317), 1, anon_sym_forall, - ACTIONS(69), 1, + ACTIONS(319), 1, anon_sym_import, - ACTIONS(71), 1, + ACTIONS(321), 1, anon_sym_Array, - ACTIONS(75), 1, + ACTIONS(325), 1, anon_sym_LPAREN, - ACTIONS(77), 1, + ACTIONS(327), 1, anon_sym_LBRACK, - ACTIONS(81), 1, + ACTIONS(329), 1, anon_sym__, - ACTIONS(109), 1, + ACTIONS(333), 1, + anon_sym_PERCENT, + ACTIONS(335), 1, + anon_sym_DASH, + ACTIONS(337), 1, anon_sym_LBRACK_PIPE, - ACTIONS(111), 1, + ACTIONS(339), 1, sym_multstr_start, - ACTIONS(113), 1, + ACTIONS(341), 1, sym__str_start, - ACTIONS(115), 1, + ACTIONS(343), 1, sym_quoted_enum_tag_start, - ACTIONS(121), 1, - anon_sym_PERCENT, - ACTIONS(131), 1, - anon_sym_DASH, - STATE(8), 1, + STATE(76), 1, sym_enum_tag, - STATE(9), 1, + STATE(82), 1, sym_applicative, - STATE(95), 1, - sym_record_operand, - STATE(99), 1, - sym_type_builtin, - STATE(123), 1, - sym_quoted_enum_tag, - STATE(158), 1, + STATE(159), 1, sym_infix_u_op_5, - STATE(464), 1, + STATE(311), 1, + sym_quoted_enum_tag, + STATE(314), 1, + sym_type_builtin, + STATE(320), 1, + sym_record_operand, + STATE(516), 1, sym_infix_expr, - STATE(640), 1, + STATE(642), 1, sym_forall, - STATE(1107), 1, + STATE(650), 1, sym_types, - ACTIONS(53), 2, + ACTIONS(305), 2, sym_ident, anon_sym_null, - ACTIONS(83), 2, + ACTIONS(331), 2, anon_sym_true, anon_sym_false, - STATE(94), 2, + STATE(324), 2, sym_record_operation_chain, sym_atom, - STATE(98), 2, + STATE(406), 2, sym_str_chunks_single, sym_str_chunks_multi, - STATE(149), 3, + STATE(422), 3, sym_match_expr, sym_type_array, sym_enum_variant, - ACTIONS(73), 4, + ACTIONS(323), 4, anon_sym_Dyn, anon_sym_Number, anon_sym_Bool, anon_sym_String, - STATE(102), 5, + STATE(309), 5, sym_uni_record, sym_bool, sym_str_chunks, sym_builtin, sym_type_atom, - [13027] = 34, + [13205] = 34, ACTIONS(3), 1, sym_comment, ACTIONS(41), 1, anon_sym_BANG, - ACTIONS(303), 1, + ACTIONS(51), 1, sym_num_literal, - ACTIONS(307), 1, + ACTIONS(55), 1, sym_raw_enum_tag, - ACTIONS(311), 1, + ACTIONS(59), 1, anon_sym_match, - ACTIONS(313), 1, + ACTIONS(61), 1, anon_sym_LBRACE, - ACTIONS(317), 1, + ACTIONS(65), 1, anon_sym_forall, - ACTIONS(319), 1, + ACTIONS(69), 1, anon_sym_import, - ACTIONS(321), 1, + ACTIONS(71), 1, anon_sym_Array, - ACTIONS(325), 1, + ACTIONS(75), 1, anon_sym_LPAREN, - ACTIONS(327), 1, + ACTIONS(77), 1, anon_sym_LBRACK, - ACTIONS(329), 1, + ACTIONS(81), 1, anon_sym__, - ACTIONS(333), 1, - anon_sym_PERCENT, - ACTIONS(335), 1, - anon_sym_DASH, - ACTIONS(337), 1, + ACTIONS(109), 1, anon_sym_LBRACK_PIPE, - ACTIONS(339), 1, + ACTIONS(111), 1, sym_multstr_start, - ACTIONS(341), 1, + ACTIONS(113), 1, sym__str_start, - ACTIONS(343), 1, + ACTIONS(115), 1, sym_quoted_enum_tag_start, - STATE(72), 1, + ACTIONS(121), 1, + anon_sym_PERCENT, + ACTIONS(131), 1, + anon_sym_DASH, + STATE(8), 1, sym_enum_tag, - STATE(82), 1, + STATE(9), 1, sym_applicative, - STATE(159), 1, - sym_infix_u_op_5, - STATE(312), 1, - sym_type_builtin, - STATE(314), 1, - sym_quoted_enum_tag, - STATE(319), 1, + STATE(87), 1, sym_record_operand, - STATE(573), 1, + STATE(97), 1, + sym_quoted_enum_tag, + STATE(98), 1, + sym_type_builtin, + STATE(158), 1, + sym_infix_u_op_5, + STATE(463), 1, sym_infix_expr, - STATE(632), 1, - sym_types, - STATE(640), 1, + STATE(642), 1, sym_forall, - ACTIONS(305), 2, + STATE(998), 1, + sym_types, + ACTIONS(53), 2, sym_ident, anon_sym_null, - ACTIONS(331), 2, + ACTIONS(83), 2, anon_sym_true, anon_sym_false, - STATE(330), 2, + STATE(94), 2, sym_record_operation_chain, sym_atom, - STATE(406), 2, + STATE(96), 2, sym_str_chunks_single, sym_str_chunks_multi, - STATE(422), 3, + STATE(150), 3, sym_match_expr, sym_type_array, sym_enum_variant, - ACTIONS(323), 4, + ACTIONS(73), 4, anon_sym_Dyn, anon_sym_Number, anon_sym_Bool, anon_sym_String, - STATE(310), 5, + STATE(88), 5, sym_uni_record, sym_bool, sym_str_chunks, sym_builtin, sym_type_atom, - [13143] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(525), 17, - sym_ident, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_Dyn, - anon_sym_null, - anon_sym_LBRACK, - anon_sym__, - anon_sym_true, - anon_sym_false, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_Number, - anon_sym_Bool, - anon_sym_String, - ACTIONS(523), 29, - sym_multstr_start, - sym__str_start, - sym_quoted_enum_tag_start, - sym_num_literal, - sym_raw_enum_tag, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_AT, - anon_sym_QMARK, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PIPE_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_DASH_GT, - anon_sym_LBRACK_PIPE, - [13197] = 3, + [13321] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(529), 17, + ACTIONS(521), 17, sym_ident, anon_sym_PIPE, anon_sym_EQ, @@ -16610,7 +16668,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - ACTIONS(527), 29, + ACTIONS(519), 29, sym_multstr_start, sym__str_start, sym_quoted_enum_tag_start, @@ -16640,92 +16698,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_DASH_GT, anon_sym_LBRACK_PIPE, - [13251] = 34, + [13375] = 34, ACTIONS(3), 1, sym_comment, ACTIONS(41), 1, anon_sym_BANG, - ACTIONS(219), 1, + ACTIONS(261), 1, sym_num_literal, - ACTIONS(223), 1, + ACTIONS(265), 1, sym_raw_enum_tag, - ACTIONS(227), 1, + ACTIONS(269), 1, anon_sym_match, - ACTIONS(229), 1, + ACTIONS(271), 1, anon_sym_LBRACE, - ACTIONS(233), 1, + ACTIONS(275), 1, anon_sym_forall, - ACTIONS(235), 1, + ACTIONS(277), 1, anon_sym_import, - ACTIONS(237), 1, + ACTIONS(279), 1, anon_sym_Array, - ACTIONS(241), 1, + ACTIONS(283), 1, anon_sym_LPAREN, - ACTIONS(243), 1, + ACTIONS(285), 1, anon_sym_LBRACK, - ACTIONS(245), 1, + ACTIONS(287), 1, anon_sym__, - ACTIONS(249), 1, + ACTIONS(291), 1, anon_sym_PERCENT, - ACTIONS(251), 1, + ACTIONS(293), 1, anon_sym_DASH, - ACTIONS(253), 1, + ACTIONS(295), 1, anon_sym_LBRACK_PIPE, - ACTIONS(255), 1, + ACTIONS(297), 1, sym_multstr_start, - ACTIONS(257), 1, + ACTIONS(299), 1, sym__str_start, - ACTIONS(259), 1, + ACTIONS(301), 1, sym_quoted_enum_tag_start, - STATE(76), 1, + STATE(72), 1, sym_enum_tag, - STATE(83), 1, + STATE(86), 1, sym_applicative, - STATE(217), 1, + STATE(156), 1, sym_infix_u_op_5, - STATE(254), 1, - sym_record_operand, - STATE(257), 1, + STATE(322), 1, sym_type_builtin, - STATE(331), 1, + STATE(330), 1, + sym_record_operand, + STATE(356), 1, sym_quoted_enum_tag, - STATE(571), 1, + STATE(536), 1, sym_infix_expr, - STATE(632), 1, - sym_types, - STATE(640), 1, + STATE(642), 1, sym_forall, - ACTIONS(221), 2, + STATE(643), 1, + sym_types, + ACTIONS(263), 2, sym_ident, anon_sym_null, - ACTIONS(247), 2, + ACTIONS(289), 2, anon_sym_true, anon_sym_false, - STATE(253), 2, + STATE(331), 2, sym_record_operation_chain, sym_atom, - STATE(332), 2, + STATE(417), 2, sym_str_chunks_single, sym_str_chunks_multi, - STATE(454), 3, + STATE(440), 3, sym_match_expr, sym_type_array, sym_enum_variant, - ACTIONS(239), 4, + ACTIONS(281), 4, anon_sym_Dyn, anon_sym_Number, anon_sym_Bool, anon_sym_String, - STATE(260), 5, + STATE(318), 5, sym_uni_record, sym_bool, sym_str_chunks, sym_builtin, sym_type_atom, - [13367] = 3, + [13491] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(533), 17, + ACTIONS(525), 17, sym_ident, anon_sym_PIPE, anon_sym_EQ, @@ -16743,7 +16801,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - ACTIONS(531), 29, + ACTIONS(523), 29, sym_multstr_start, sym__str_start, sym_quoted_enum_tag_start, @@ -16773,89 +16831,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_DASH_GT, anon_sym_LBRACK_PIPE, - [13421] = 34, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_num_literal, - ACTIONS(9), 1, - sym_raw_enum_tag, - ACTIONS(15), 1, - anon_sym_match, - ACTIONS(17), 1, - anon_sym_LBRACE, - ACTIONS(21), 1, - anon_sym_forall, - ACTIONS(23), 1, - anon_sym_import, - ACTIONS(25), 1, - anon_sym_Array, - ACTIONS(29), 1, - anon_sym_LPAREN, - ACTIONS(31), 1, - anon_sym_LBRACK, - ACTIONS(33), 1, - anon_sym__, - ACTIONS(37), 1, - anon_sym_PERCENT, - ACTIONS(39), 1, - anon_sym_DASH, - ACTIONS(41), 1, - anon_sym_BANG, - ACTIONS(43), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(45), 1, - sym_multstr_start, - ACTIONS(47), 1, - sym__str_start, - ACTIONS(49), 1, - sym_quoted_enum_tag_start, - STATE(80), 1, - sym_enum_tag, - STATE(86), 1, - sym_applicative, - STATE(185), 1, - sym_infix_u_op_5, - STATE(225), 1, - sym_quoted_enum_tag, - STATE(240), 1, - sym_type_builtin, - STATE(252), 1, - sym_record_operand, - STATE(519), 1, - sym_infix_expr, - STATE(640), 1, - sym_forall, - STATE(641), 1, - sym_types, - ACTIONS(7), 2, - sym_ident, - anon_sym_null, - ACTIONS(35), 2, - anon_sym_true, - anon_sym_false, - STATE(256), 2, - sym_record_operation_chain, - sym_atom, - STATE(264), 2, - sym_str_chunks_single, - sym_str_chunks_multi, - STATE(456), 3, - sym_match_expr, - sym_type_array, - sym_enum_variant, - ACTIONS(27), 4, - anon_sym_Dyn, - anon_sym_Number, - anon_sym_Bool, - anon_sym_String, - STATE(366), 5, - sym_uni_record, - sym_bool, - sym_str_chunks, - sym_builtin, - sym_type_atom, - [13537] = 34, + [13545] = 34, ACTIONS(3), 1, sym_comment, ACTIONS(41), 1, @@ -16896,101 +16872,19 @@ static const uint16_t ts_small_parse_table[] = { sym_enum_tag, STATE(9), 1, sym_applicative, - STATE(95), 1, + STATE(87), 1, sym_record_operand, - STATE(99), 1, - sym_type_builtin, - STATE(123), 1, + STATE(97), 1, sym_quoted_enum_tag, - STATE(158), 1, - sym_infix_u_op_5, - STATE(464), 1, - sym_infix_expr, - STATE(640), 1, - sym_forall, - STATE(1001), 1, - sym_types, - ACTIONS(53), 2, - sym_ident, - anon_sym_null, - ACTIONS(83), 2, - anon_sym_true, - anon_sym_false, - STATE(94), 2, - sym_record_operation_chain, - sym_atom, - STATE(98), 2, - sym_str_chunks_single, - sym_str_chunks_multi, - STATE(149), 3, - sym_match_expr, - sym_type_array, - sym_enum_variant, - ACTIONS(73), 4, - anon_sym_Dyn, - anon_sym_Number, - anon_sym_Bool, - anon_sym_String, - STATE(102), 5, - sym_uni_record, - sym_bool, - sym_str_chunks, - sym_builtin, - sym_type_atom, - [13653] = 34, - ACTIONS(3), 1, - sym_comment, - ACTIONS(41), 1, - anon_sym_BANG, - ACTIONS(51), 1, - sym_num_literal, - ACTIONS(55), 1, - sym_raw_enum_tag, - ACTIONS(59), 1, - anon_sym_match, - ACTIONS(61), 1, - anon_sym_LBRACE, - ACTIONS(65), 1, - anon_sym_forall, - ACTIONS(69), 1, - anon_sym_import, - ACTIONS(71), 1, - anon_sym_Array, - ACTIONS(75), 1, - anon_sym_LPAREN, - ACTIONS(77), 1, - anon_sym_LBRACK, - ACTIONS(81), 1, - anon_sym__, - ACTIONS(109), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(111), 1, - sym_multstr_start, - ACTIONS(113), 1, - sym__str_start, - ACTIONS(115), 1, - sym_quoted_enum_tag_start, - ACTIONS(121), 1, - anon_sym_PERCENT, - ACTIONS(131), 1, - anon_sym_DASH, - STATE(8), 1, - sym_enum_tag, - STATE(9), 1, - sym_applicative, - STATE(95), 1, - sym_record_operand, - STATE(99), 1, + STATE(98), 1, sym_type_builtin, - STATE(123), 1, - sym_quoted_enum_tag, STATE(158), 1, sym_infix_u_op_5, - STATE(464), 1, + STATE(463), 1, sym_infix_expr, - STATE(640), 1, + STATE(642), 1, sym_forall, - STATE(1066), 1, + STATE(1015), 1, sym_types, ACTIONS(53), 2, sym_ident, @@ -17001,10 +16895,10 @@ static const uint16_t ts_small_parse_table[] = { STATE(94), 2, sym_record_operation_chain, sym_atom, - STATE(98), 2, + STATE(96), 2, sym_str_chunks_single, sym_str_chunks_multi, - STATE(149), 3, + STATE(150), 3, sym_match_expr, sym_type_array, sym_enum_variant, @@ -17013,64 +16907,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - STATE(102), 5, + STATE(88), 5, sym_uni_record, sym_bool, sym_str_chunks, sym_builtin, sym_type_atom, - [13769] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(537), 17, - sym_ident, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_Dyn, - anon_sym_null, - anon_sym_LBRACK, - anon_sym__, - anon_sym_true, - anon_sym_false, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_Number, - anon_sym_Bool, - anon_sym_String, - ACTIONS(535), 29, - sym_multstr_start, - sym__str_start, - sym_quoted_enum_tag_start, - sym_num_literal, - sym_raw_enum_tag, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_AT, - anon_sym_QMARK, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PIPE_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_DASH_GT, - anon_sym_LBRACK_PIPE, - [13823] = 34, + [13661] = 34, ACTIONS(3), 1, sym_comment, ACTIONS(41), 1, @@ -17107,9 +16950,9 @@ static const uint16_t ts_small_parse_table[] = { sym__str_start, ACTIONS(217), 1, sym_quoted_enum_tag_start, - STATE(78), 1, + STATE(71), 1, sym_enum_tag, - STATE(85), 1, + STATE(83), 1, sym_applicative, STATE(162), 1, sym_infix_u_op_5, @@ -17119,11 +16962,11 @@ static const uint16_t ts_small_parse_table[] = { sym_type_builtin, STATE(420), 1, sym_quoted_enum_tag, - STATE(568), 1, + STATE(569), 1, sym_infix_expr, - STATE(884), 1, + STATE(878), 1, sym_forall, - STATE(903), 1, + STATE(891), 1, sym_types, ACTIONS(179), 2, sym_ident, @@ -17131,13 +16974,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(205), 2, anon_sym_true, anon_sym_false, - STATE(251), 2, + STATE(252), 2, sym_str_chunks_single, sym_str_chunks_multi, STATE(344), 2, sym_record_operation_chain, sym_atom, - STATE(433), 3, + STATE(432), 3, sym_match_expr, sym_type_array, sym_enum_variant, @@ -17152,7 +16995,7 @@ static const uint16_t ts_small_parse_table[] = { sym_str_chunks, sym_builtin, sym_type_atom, - [13939] = 34, + [13777] = 34, ACTIONS(3), 1, sym_comment, ACTIONS(41), 1, @@ -17193,20 +17036,20 @@ static const uint16_t ts_small_parse_table[] = { sym_enum_tag, STATE(9), 1, sym_applicative, - STATE(95), 1, + STATE(87), 1, sym_record_operand, - STATE(99), 1, - sym_type_builtin, - STATE(123), 1, + STATE(97), 1, sym_quoted_enum_tag, + STATE(98), 1, + sym_type_builtin, STATE(158), 1, sym_infix_u_op_5, - STATE(464), 1, + STATE(463), 1, sym_infix_expr, - STATE(632), 1, - sym_types, - STATE(640), 1, + STATE(642), 1, sym_forall, + STATE(650), 1, + sym_types, ACTIONS(53), 2, sym_ident, anon_sym_null, @@ -17216,10 +17059,10 @@ static const uint16_t ts_small_parse_table[] = { STATE(94), 2, sym_record_operation_chain, sym_atom, - STATE(98), 2, + STATE(96), 2, sym_str_chunks_single, sym_str_chunks_multi, - STATE(149), 3, + STATE(150), 3, sym_match_expr, sym_type_array, sym_enum_variant, @@ -17228,16 +17071,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - STATE(102), 5, + STATE(88), 5, sym_uni_record, sym_bool, sym_str_chunks, sym_builtin, sym_type_atom, - [14055] = 3, + [13893] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(541), 17, + ACTIONS(529), 17, sym_ident, anon_sym_PIPE, anon_sym_EQ, @@ -17255,7 +17098,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - ACTIONS(539), 29, + ACTIONS(527), 29, sym_multstr_start, sym__str_start, sym_quoted_enum_tag_start, @@ -17285,89 +17128,140 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_DASH_GT, anon_sym_LBRACK_PIPE, - [14109] = 34, + [13947] = 34, ACTIONS(3), 1, sym_comment, - ACTIONS(41), 1, - anon_sym_BANG, - ACTIONS(51), 1, + ACTIONS(5), 1, sym_num_literal, - ACTIONS(55), 1, + ACTIONS(9), 1, sym_raw_enum_tag, - ACTIONS(59), 1, + ACTIONS(15), 1, anon_sym_match, - ACTIONS(61), 1, + ACTIONS(17), 1, anon_sym_LBRACE, - ACTIONS(65), 1, + ACTIONS(21), 1, anon_sym_forall, - ACTIONS(69), 1, + ACTIONS(23), 1, anon_sym_import, - ACTIONS(71), 1, + ACTIONS(25), 1, anon_sym_Array, - ACTIONS(75), 1, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(77), 1, + ACTIONS(31), 1, anon_sym_LBRACK, - ACTIONS(81), 1, + ACTIONS(33), 1, anon_sym__, - ACTIONS(109), 1, + ACTIONS(37), 1, + anon_sym_PERCENT, + ACTIONS(39), 1, + anon_sym_DASH, + ACTIONS(41), 1, + anon_sym_BANG, + ACTIONS(43), 1, anon_sym_LBRACK_PIPE, - ACTIONS(111), 1, + ACTIONS(45), 1, sym_multstr_start, - ACTIONS(113), 1, + ACTIONS(47), 1, sym__str_start, - ACTIONS(115), 1, + ACTIONS(49), 1, sym_quoted_enum_tag_start, - ACTIONS(121), 1, - anon_sym_PERCENT, - ACTIONS(131), 1, - anon_sym_DASH, - STATE(8), 1, + STATE(81), 1, sym_enum_tag, - STATE(9), 1, + STATE(84), 1, sym_applicative, - STATE(95), 1, - sym_record_operand, - STATE(99), 1, - sym_type_builtin, - STATE(123), 1, - sym_quoted_enum_tag, - STATE(158), 1, + STATE(186), 1, sym_infix_u_op_5, - STATE(464), 1, + STATE(225), 1, + sym_quoted_enum_tag, + STATE(240), 1, + sym_type_builtin, + STATE(251), 1, + sym_record_operand, + STATE(519), 1, sym_infix_expr, - STATE(640), 1, + STATE(642), 1, sym_forall, - STATE(1026), 1, + STATE(643), 1, sym_types, - ACTIONS(53), 2, + ACTIONS(7), 2, sym_ident, anon_sym_null, - ACTIONS(83), 2, + ACTIONS(35), 2, anon_sym_true, anon_sym_false, - STATE(94), 2, + STATE(256), 2, sym_record_operation_chain, sym_atom, - STATE(98), 2, + STATE(266), 2, sym_str_chunks_single, sym_str_chunks_multi, - STATE(149), 3, + STATE(456), 3, sym_match_expr, sym_type_array, sym_enum_variant, - ACTIONS(73), 4, + ACTIONS(27), 4, anon_sym_Dyn, anon_sym_Number, anon_sym_Bool, anon_sym_String, - STATE(102), 5, + STATE(366), 5, sym_uni_record, sym_bool, sym_str_chunks, sym_builtin, sym_type_atom, - [14225] = 34, + [14063] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(533), 17, + sym_ident, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_Dyn, + anon_sym_null, + anon_sym_LBRACK, + anon_sym__, + anon_sym_true, + anon_sym_false, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_Number, + anon_sym_Bool, + anon_sym_String, + ACTIONS(531), 29, + sym_multstr_start, + sym__str_start, + sym_quoted_enum_tag_start, + sym_num_literal, + sym_raw_enum_tag, + anon_sym_COLON, + anon_sym_EQ_GT, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_AT, + anon_sym_QMARK, + anon_sym_PERCENT, + anon_sym_PLUS_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PIPE_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_DASH_GT, + anon_sym_LBRACK_PIPE, + [14117] = 34, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -17404,24 +17298,24 @@ static const uint16_t ts_small_parse_table[] = { sym__str_start, ACTIONS(49), 1, sym_quoted_enum_tag_start, - STATE(80), 1, + STATE(81), 1, sym_enum_tag, - STATE(86), 1, + STATE(84), 1, sym_applicative, - STATE(185), 1, + STATE(186), 1, sym_infix_u_op_5, STATE(225), 1, sym_quoted_enum_tag, STATE(240), 1, sym_type_builtin, - STATE(252), 1, + STATE(251), 1, sym_record_operand, STATE(519), 1, sym_infix_expr, - STATE(632), 1, - sym_types, - STATE(640), 1, + STATE(642), 1, sym_forall, + STATE(650), 1, + sym_types, ACTIONS(7), 2, sym_ident, anon_sym_null, @@ -17431,7 +17325,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(256), 2, sym_record_operation_chain, sym_atom, - STATE(264), 2, + STATE(266), 2, sym_str_chunks_single, sym_str_chunks_multi, STATE(456), 3, @@ -17449,7 +17343,7 @@ static const uint16_t ts_small_parse_table[] = { sym_str_chunks, sym_builtin, sym_type_atom, - [14341] = 34, + [14233] = 34, ACTIONS(3), 1, sym_comment, ACTIONS(41), 1, @@ -17490,19 +17384,19 @@ static const uint16_t ts_small_parse_table[] = { sym_enum_tag, STATE(9), 1, sym_applicative, - STATE(95), 1, + STATE(87), 1, sym_record_operand, - STATE(99), 1, - sym_type_builtin, - STATE(123), 1, + STATE(97), 1, sym_quoted_enum_tag, + STATE(98), 1, + sym_type_builtin, STATE(158), 1, sym_infix_u_op_5, - STATE(464), 1, + STATE(463), 1, sym_infix_expr, - STATE(640), 1, + STATE(642), 1, sym_forall, - STATE(1137), 1, + STATE(1028), 1, sym_types, ACTIONS(53), 2, sym_ident, @@ -17513,10 +17407,10 @@ static const uint16_t ts_small_parse_table[] = { STATE(94), 2, sym_record_operation_chain, sym_atom, - STATE(98), 2, + STATE(96), 2, sym_str_chunks_single, sym_str_chunks_multi, - STATE(149), 3, + STATE(150), 3, sym_match_expr, sym_type_array, sym_enum_variant, @@ -17525,13 +17419,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - STATE(102), 5, + STATE(88), 5, sym_uni_record, sym_bool, sym_str_chunks, sym_builtin, sym_type_atom, - [14457] = 34, + [14349] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(537), 17, + sym_ident, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_Dyn, + anon_sym_null, + anon_sym_LBRACK, + anon_sym__, + anon_sym_true, + anon_sym_false, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_Number, + anon_sym_Bool, + anon_sym_String, + ACTIONS(535), 29, + sym_multstr_start, + sym__str_start, + sym_quoted_enum_tag_start, + sym_num_literal, + sym_raw_enum_tag, + anon_sym_COLON, + anon_sym_EQ_GT, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_AT, + anon_sym_QMARK, + anon_sym_PERCENT, + anon_sym_PLUS_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PIPE_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_DASH_GT, + anon_sym_LBRACK_PIPE, + [14403] = 34, ACTIONS(3), 1, sym_comment, ACTIONS(41), 1, @@ -17568,23 +17513,23 @@ static const uint16_t ts_small_parse_table[] = { sym__str_start, ACTIONS(343), 1, sym_quoted_enum_tag_start, - STATE(72), 1, + STATE(76), 1, sym_enum_tag, STATE(82), 1, sym_applicative, STATE(159), 1, sym_infix_u_op_5, - STATE(312), 1, - sym_type_builtin, - STATE(314), 1, + STATE(311), 1, sym_quoted_enum_tag, - STATE(319), 1, + STATE(314), 1, + sym_type_builtin, + STATE(320), 1, sym_record_operand, - STATE(573), 1, + STATE(516), 1, sym_infix_expr, - STATE(640), 1, + STATE(642), 1, sym_forall, - STATE(641), 1, + STATE(643), 1, sym_types, ACTIONS(305), 2, sym_ident, @@ -17592,7 +17537,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(331), 2, anon_sym_true, anon_sym_false, - STATE(330), 2, + STATE(324), 2, sym_record_operation_chain, sym_atom, STATE(406), 2, @@ -17607,13 +17552,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - STATE(310), 5, + STATE(309), 5, sym_uni_record, sym_bool, sym_str_chunks, sym_builtin, sym_type_atom, - [14573] = 34, + [14519] = 34, ACTIONS(3), 1, sym_comment, ACTIONS(41), 1, @@ -17650,23 +17595,23 @@ static const uint16_t ts_small_parse_table[] = { sym__str_start, ACTIONS(259), 1, sym_quoted_enum_tag_start, - STATE(76), 1, + STATE(80), 1, sym_enum_tag, - STATE(83), 1, + STATE(85), 1, sym_applicative, - STATE(217), 1, + STATE(218), 1, sym_infix_u_op_5, - STATE(254), 1, + STATE(255), 1, sym_record_operand, - STATE(257), 1, + STATE(258), 1, sym_type_builtin, - STATE(331), 1, + STATE(336), 1, sym_quoted_enum_tag, - STATE(571), 1, + STATE(537), 1, sym_infix_expr, - STATE(640), 1, + STATE(642), 1, sym_forall, - STATE(641), 1, + STATE(643), 1, sym_types, ACTIONS(221), 2, sym_ident, @@ -17677,7 +17622,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(253), 2, sym_record_operation_chain, sym_atom, - STATE(332), 2, + STATE(329), 2, sym_str_chunks_single, sym_str_chunks_multi, STATE(454), 3, @@ -17695,10 +17640,92 @@ static const uint16_t ts_small_parse_table[] = { sym_str_chunks, sym_builtin, sym_type_atom, - [14689] = 3, + [14635] = 34, ACTIONS(3), 1, sym_comment, - ACTIONS(397), 17, + ACTIONS(41), 1, + anon_sym_BANG, + ACTIONS(51), 1, + sym_num_literal, + ACTIONS(55), 1, + sym_raw_enum_tag, + ACTIONS(59), 1, + anon_sym_match, + ACTIONS(61), 1, + anon_sym_LBRACE, + ACTIONS(65), 1, + anon_sym_forall, + ACTIONS(69), 1, + anon_sym_import, + ACTIONS(71), 1, + anon_sym_Array, + ACTIONS(75), 1, + anon_sym_LPAREN, + ACTIONS(77), 1, + anon_sym_LBRACK, + ACTIONS(81), 1, + anon_sym__, + ACTIONS(109), 1, + anon_sym_LBRACK_PIPE, + ACTIONS(111), 1, + sym_multstr_start, + ACTIONS(113), 1, + sym__str_start, + ACTIONS(115), 1, + sym_quoted_enum_tag_start, + ACTIONS(121), 1, + anon_sym_PERCENT, + ACTIONS(131), 1, + anon_sym_DASH, + STATE(8), 1, + sym_enum_tag, + STATE(9), 1, + sym_applicative, + STATE(87), 1, + sym_record_operand, + STATE(97), 1, + sym_quoted_enum_tag, + STATE(98), 1, + sym_type_builtin, + STATE(158), 1, + sym_infix_u_op_5, + STATE(463), 1, + sym_infix_expr, + STATE(642), 1, + sym_forall, + STATE(1049), 1, + sym_types, + ACTIONS(53), 2, + sym_ident, + anon_sym_null, + ACTIONS(83), 2, + anon_sym_true, + anon_sym_false, + STATE(94), 2, + sym_record_operation_chain, + sym_atom, + STATE(96), 2, + sym_str_chunks_single, + sym_str_chunks_multi, + STATE(150), 3, + sym_match_expr, + sym_type_array, + sym_enum_variant, + ACTIONS(73), 4, + anon_sym_Dyn, + anon_sym_Number, + anon_sym_Bool, + anon_sym_String, + STATE(88), 5, + sym_uni_record, + sym_bool, + sym_str_chunks, + sym_builtin, + sym_type_atom, + [14751] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(541), 17, sym_ident, anon_sym_PIPE, anon_sym_EQ, @@ -17716,7 +17743,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - ACTIONS(395), 29, + ACTIONS(539), 29, sym_multstr_start, sym__str_start, sym_quoted_enum_tag_start, @@ -17746,88 +17773,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_DASH_GT, anon_sym_LBRACK_PIPE, - [14743] = 34, + [14805] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(41), 1, - anon_sym_BANG, - ACTIONS(261), 1, - sym_num_literal, - ACTIONS(265), 1, - sym_raw_enum_tag, - ACTIONS(269), 1, - anon_sym_match, - ACTIONS(271), 1, - anon_sym_LBRACE, - ACTIONS(275), 1, - anon_sym_forall, - ACTIONS(277), 1, - anon_sym_import, - ACTIONS(279), 1, - anon_sym_Array, - ACTIONS(283), 1, - anon_sym_LPAREN, - ACTIONS(285), 1, - anon_sym_LBRACK, - ACTIONS(287), 1, - anon_sym__, - ACTIONS(291), 1, - anon_sym_PERCENT, - ACTIONS(293), 1, - anon_sym_DASH, - ACTIONS(295), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(297), 1, - sym_multstr_start, - ACTIONS(299), 1, - sym__str_start, - ACTIONS(301), 1, - sym_quoted_enum_tag_start, - STATE(75), 1, - sym_enum_tag, - STATE(84), 1, - sym_applicative, - STATE(156), 1, - sym_infix_u_op_5, - STATE(325), 1, - sym_type_builtin, - STATE(333), 1, - sym_record_operand, - STATE(356), 1, - sym_quoted_enum_tag, - STATE(532), 1, - sym_infix_expr, - STATE(640), 1, - sym_forall, - STATE(641), 1, - sym_types, - ACTIONS(263), 2, + ACTIONS(363), 17, sym_ident, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_Dyn, anon_sym_null, - ACTIONS(289), 2, + anon_sym_LBRACK, + anon_sym__, anon_sym_true, anon_sym_false, - STATE(334), 2, - sym_record_operation_chain, - sym_atom, - STATE(417), 2, - sym_str_chunks_single, - sym_str_chunks_multi, - STATE(439), 3, - sym_match_expr, - sym_type_array, - sym_enum_variant, - ACTIONS(281), 4, - anon_sym_Dyn, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, anon_sym_Number, anon_sym_Bool, anon_sym_String, - STATE(321), 5, - sym_uni_record, - sym_bool, - sym_str_chunks, - sym_builtin, - sym_type_atom, + ACTIONS(361), 29, + sym_multstr_start, + sym__str_start, + sym_quoted_enum_tag_start, + sym_num_literal, + sym_raw_enum_tag, + anon_sym_COLON, + anon_sym_EQ_GT, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_AT, + anon_sym_QMARK, + anon_sym_PERCENT, + anon_sym_PLUS_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PIPE_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_DASH_GT, + anon_sym_LBRACK_PIPE, [14859] = 3, ACTIONS(3), 1, sym_comment, @@ -17916,9 +17912,9 @@ static const uint16_t ts_small_parse_table[] = { sym__str_start, ACTIONS(217), 1, sym_quoted_enum_tag_start, - STATE(78), 1, + STATE(71), 1, sym_enum_tag, - STATE(85), 1, + STATE(83), 1, sym_applicative, STATE(162), 1, sym_infix_u_op_5, @@ -17928,11 +17924,11 @@ static const uint16_t ts_small_parse_table[] = { sym_type_builtin, STATE(420), 1, sym_quoted_enum_tag, - STATE(568), 1, + STATE(569), 1, sym_infix_expr, - STATE(876), 1, + STATE(875), 1, sym_types, - STATE(884), 1, + STATE(878), 1, sym_forall, ACTIONS(179), 2, sym_ident, @@ -17940,13 +17936,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(205), 2, anon_sym_true, anon_sym_false, - STATE(251), 2, + STATE(252), 2, sym_str_chunks_single, sym_str_chunks_multi, STATE(344), 2, sym_record_operation_chain, sym_atom, - STATE(433), 3, + STATE(432), 3, sym_match_expr, sym_type_array, sym_enum_variant, @@ -18002,15 +17998,15 @@ static const uint16_t ts_small_parse_table[] = { sym_enum_tag, STATE(9), 1, sym_applicative, - STATE(95), 1, + STATE(87), 1, sym_record_operand, - STATE(99), 1, - sym_type_builtin, - STATE(123), 1, + STATE(97), 1, sym_quoted_enum_tag, + STATE(98), 1, + sym_type_builtin, STATE(158), 1, sym_infix_u_op_5, - STATE(466), 1, + STATE(465), 1, sym_infix_expr, ACTIONS(53), 2, sym_ident, @@ -18021,10 +18017,10 @@ static const uint16_t ts_small_parse_table[] = { STATE(94), 2, sym_record_operation_chain, sym_atom, - STATE(98), 2, + STATE(96), 2, sym_str_chunks_single, sym_str_chunks_multi, - STATE(149), 3, + STATE(150), 3, sym_match_expr, sym_type_array, sym_enum_variant, @@ -18033,7 +18029,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - STATE(102), 5, + STATE(88), 5, sym_uni_record, sym_bool, sym_str_chunks, @@ -18080,15 +18076,15 @@ static const uint16_t ts_small_parse_table[] = { sym_enum_tag, STATE(9), 1, sym_applicative, - STATE(95), 1, + STATE(87), 1, sym_record_operand, - STATE(99), 1, - sym_type_builtin, - STATE(123), 1, + STATE(97), 1, sym_quoted_enum_tag, + STATE(98), 1, + sym_type_builtin, STATE(158), 1, sym_infix_u_op_5, - STATE(465), 1, + STATE(466), 1, sym_infix_expr, ACTIONS(53), 2, sym_ident, @@ -18099,10 +18095,10 @@ static const uint16_t ts_small_parse_table[] = { STATE(94), 2, sym_record_operation_chain, sym_atom, - STATE(98), 2, + STATE(96), 2, sym_str_chunks_single, sym_str_chunks_multi, - STATE(149), 3, + STATE(150), 3, sym_match_expr, sym_type_array, sym_enum_variant, @@ -18111,7 +18107,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - STATE(102), 5, + STATE(88), 5, sym_uni_record, sym_bool, sym_str_chunks, @@ -18152,19 +18148,19 @@ static const uint16_t ts_small_parse_table[] = { sym__str_start, ACTIONS(49), 1, sym_quoted_enum_tag_start, - STATE(80), 1, + STATE(81), 1, sym_enum_tag, - STATE(86), 1, + STATE(84), 1, sym_applicative, - STATE(185), 1, + STATE(186), 1, sym_infix_u_op_5, STATE(225), 1, sym_quoted_enum_tag, STATE(240), 1, sym_type_builtin, - STATE(252), 1, + STATE(251), 1, sym_record_operand, - STATE(531), 1, + STATE(523), 1, sym_infix_expr, ACTIONS(7), 2, sym_ident, @@ -18175,7 +18171,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(256), 2, sym_record_operation_chain, sym_atom, - STATE(264), 2, + STATE(266), 2, sym_str_chunks_single, sym_str_chunks_multi, STATE(456), 3, @@ -18228,19 +18224,19 @@ static const uint16_t ts_small_parse_table[] = { sym__str_start, ACTIONS(301), 1, sym_quoted_enum_tag_start, - STATE(75), 1, + STATE(72), 1, sym_enum_tag, - STATE(84), 1, + STATE(86), 1, sym_applicative, STATE(156), 1, sym_infix_u_op_5, - STATE(325), 1, + STATE(322), 1, sym_type_builtin, - STATE(333), 1, + STATE(330), 1, sym_record_operand, STATE(356), 1, sym_quoted_enum_tag, - STATE(530), 1, + STATE(532), 1, sym_infix_expr, ACTIONS(263), 2, sym_ident, @@ -18248,13 +18244,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(289), 2, anon_sym_true, anon_sym_false, - STATE(334), 2, + STATE(331), 2, sym_record_operation_chain, sym_atom, STATE(417), 2, sym_str_chunks_single, sym_str_chunks_multi, - STATE(439), 3, + STATE(440), 3, sym_match_expr, sym_type_array, sym_enum_variant, @@ -18263,7 +18259,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - STATE(321), 5, + STATE(318), 5, sym_uni_record, sym_bool, sym_str_chunks, @@ -18308,12 +18304,12 @@ static const uint16_t ts_small_parse_table[] = { sym_enum_tag, STATE(9), 1, sym_applicative, - STATE(95), 1, + STATE(87), 1, sym_record_operand, - STATE(99), 1, - sym_type_builtin, - STATE(123), 1, + STATE(97), 1, sym_quoted_enum_tag, + STATE(98), 1, + sym_type_builtin, STATE(158), 1, sym_infix_u_op_5, STATE(471), 1, @@ -18327,10 +18323,10 @@ static const uint16_t ts_small_parse_table[] = { STATE(94), 2, sym_record_operation_chain, sym_atom, - STATE(98), 2, + STATE(96), 2, sym_str_chunks_single, sym_str_chunks_multi, - STATE(149), 3, + STATE(150), 3, sym_match_expr, sym_type_array, sym_enum_variant, @@ -18339,7 +18335,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - STATE(102), 5, + STATE(88), 5, sym_uni_record, sym_bool, sym_str_chunks, @@ -18384,12 +18380,12 @@ static const uint16_t ts_small_parse_table[] = { sym_enum_tag, STATE(9), 1, sym_applicative, - STATE(95), 1, + STATE(87), 1, sym_record_operand, - STATE(99), 1, - sym_type_builtin, - STATE(123), 1, + STATE(97), 1, sym_quoted_enum_tag, + STATE(98), 1, + sym_type_builtin, STATE(158), 1, sym_infix_u_op_5, STATE(466), 1, @@ -18403,10 +18399,10 @@ static const uint16_t ts_small_parse_table[] = { STATE(94), 2, sym_record_operation_chain, sym_atom, - STATE(98), 2, + STATE(96), 2, sym_str_chunks_single, sym_str_chunks_multi, - STATE(149), 3, + STATE(150), 3, sym_match_expr, sym_type_array, sym_enum_variant, @@ -18415,7 +18411,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - STATE(102), 5, + STATE(88), 5, sym_uni_record, sym_bool, sym_str_chunks, @@ -18456,19 +18452,19 @@ static const uint16_t ts_small_parse_table[] = { sym__str_start, ACTIONS(343), 1, sym_quoted_enum_tag_start, - STATE(72), 1, + STATE(76), 1, sym_enum_tag, STATE(82), 1, sym_applicative, STATE(159), 1, sym_infix_u_op_5, - STATE(312), 1, - sym_type_builtin, - STATE(314), 1, + STATE(311), 1, sym_quoted_enum_tag, - STATE(319), 1, + STATE(314), 1, + sym_type_builtin, + STATE(320), 1, sym_record_operand, - STATE(551), 1, + STATE(557), 1, sym_infix_expr, ACTIONS(305), 2, sym_ident, @@ -18476,7 +18472,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(331), 2, anon_sym_true, anon_sym_false, - STATE(330), 2, + STATE(324), 2, sym_record_operation_chain, sym_atom, STATE(406), 2, @@ -18491,7 +18487,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - STATE(310), 5, + STATE(309), 5, sym_uni_record, sym_bool, sym_str_chunks, @@ -18536,12 +18532,12 @@ static const uint16_t ts_small_parse_table[] = { sym_enum_tag, STATE(9), 1, sym_applicative, - STATE(95), 1, + STATE(87), 1, sym_record_operand, - STATE(99), 1, - sym_type_builtin, - STATE(123), 1, + STATE(97), 1, sym_quoted_enum_tag, + STATE(98), 1, + sym_type_builtin, STATE(158), 1, sym_infix_u_op_5, STATE(472), 1, @@ -18555,10 +18551,10 @@ static const uint16_t ts_small_parse_table[] = { STATE(94), 2, sym_record_operation_chain, sym_atom, - STATE(98), 2, + STATE(96), 2, sym_str_chunks_single, sym_str_chunks_multi, - STATE(149), 3, + STATE(150), 3, sym_match_expr, sym_type_array, sym_enum_variant, @@ -18567,7 +18563,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - STATE(102), 5, + STATE(88), 5, sym_uni_record, sym_bool, sym_str_chunks, @@ -18612,12 +18608,12 @@ static const uint16_t ts_small_parse_table[] = { sym_enum_tag, STATE(9), 1, sym_applicative, - STATE(95), 1, + STATE(87), 1, sym_record_operand, - STATE(99), 1, - sym_type_builtin, - STATE(123), 1, + STATE(97), 1, sym_quoted_enum_tag, + STATE(98), 1, + sym_type_builtin, STATE(158), 1, sym_infix_u_op_5, STATE(473), 1, @@ -18631,10 +18627,10 @@ static const uint16_t ts_small_parse_table[] = { STATE(94), 2, sym_record_operation_chain, sym_atom, - STATE(98), 2, + STATE(96), 2, sym_str_chunks_single, sym_str_chunks_multi, - STATE(149), 3, + STATE(150), 3, sym_match_expr, sym_type_array, sym_enum_variant, @@ -18643,7 +18639,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - STATE(102), 5, + STATE(88), 5, sym_uni_record, sym_bool, sym_str_chunks, @@ -18684,9 +18680,9 @@ static const uint16_t ts_small_parse_table[] = { sym__str_start, ACTIONS(217), 1, sym_quoted_enum_tag_start, - STATE(78), 1, + STATE(71), 1, sym_enum_tag, - STATE(85), 1, + STATE(83), 1, sym_applicative, STATE(162), 1, sym_infix_u_op_5, @@ -18696,7 +18692,7 @@ static const uint16_t ts_small_parse_table[] = { sym_type_builtin, STATE(420), 1, sym_quoted_enum_tag, - STATE(518), 1, + STATE(520), 1, sym_infix_expr, ACTIONS(179), 2, sym_ident, @@ -18704,13 +18700,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(205), 2, anon_sym_true, anon_sym_false, - STATE(251), 2, + STATE(252), 2, sym_str_chunks_single, sym_str_chunks_multi, STATE(344), 2, sym_record_operation_chain, sym_atom, - STATE(433), 3, + STATE(432), 3, sym_match_expr, sym_type_array, sym_enum_variant, @@ -18760,19 +18756,19 @@ static const uint16_t ts_small_parse_table[] = { sym__str_start, ACTIONS(301), 1, sym_quoted_enum_tag_start, - STATE(75), 1, + STATE(72), 1, sym_enum_tag, - STATE(84), 1, + STATE(86), 1, sym_applicative, STATE(156), 1, sym_infix_u_op_5, - STATE(325), 1, + STATE(322), 1, sym_type_builtin, - STATE(333), 1, + STATE(330), 1, sym_record_operand, STATE(356), 1, sym_quoted_enum_tag, - STATE(575), 1, + STATE(535), 1, sym_infix_expr, ACTIONS(263), 2, sym_ident, @@ -18780,13 +18776,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(289), 2, anon_sym_true, anon_sym_false, - STATE(334), 2, + STATE(331), 2, sym_record_operation_chain, sym_atom, STATE(417), 2, sym_str_chunks_single, sym_str_chunks_multi, - STATE(439), 3, + STATE(440), 3, sym_match_expr, sym_type_array, sym_enum_variant, @@ -18795,7 +18791,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - STATE(321), 5, + STATE(318), 5, sym_uni_record, sym_bool, sym_str_chunks, @@ -18840,15 +18836,15 @@ static const uint16_t ts_small_parse_table[] = { sym_enum_tag, STATE(9), 1, sym_applicative, - STATE(95), 1, + STATE(87), 1, sym_record_operand, - STATE(99), 1, - sym_type_builtin, - STATE(123), 1, + STATE(97), 1, sym_quoted_enum_tag, + STATE(98), 1, + sym_type_builtin, STATE(158), 1, sym_infix_u_op_5, - STATE(462), 1, + STATE(470), 1, sym_infix_expr, ACTIONS(53), 2, sym_ident, @@ -18859,10 +18855,10 @@ static const uint16_t ts_small_parse_table[] = { STATE(94), 2, sym_record_operation_chain, sym_atom, - STATE(98), 2, + STATE(96), 2, sym_str_chunks_single, sym_str_chunks_multi, - STATE(149), 3, + STATE(150), 3, sym_match_expr, sym_type_array, sym_enum_variant, @@ -18871,7 +18867,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - STATE(102), 5, + STATE(88), 5, sym_uni_record, sym_bool, sym_str_chunks, @@ -18912,9 +18908,9 @@ static const uint16_t ts_small_parse_table[] = { sym__str_start, ACTIONS(217), 1, sym_quoted_enum_tag_start, - STATE(78), 1, + STATE(71), 1, sym_enum_tag, - STATE(85), 1, + STATE(83), 1, sym_applicative, STATE(162), 1, sym_infix_u_op_5, @@ -18924,7 +18920,7 @@ static const uint16_t ts_small_parse_table[] = { sym_type_builtin, STATE(420), 1, sym_quoted_enum_tag, - STATE(569), 1, + STATE(570), 1, sym_infix_expr, ACTIONS(179), 2, sym_ident, @@ -18932,13 +18928,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(205), 2, anon_sym_true, anon_sym_false, - STATE(251), 2, + STATE(252), 2, sym_str_chunks_single, sym_str_chunks_multi, STATE(344), 2, sym_record_operation_chain, sym_atom, - STATE(433), 3, + STATE(432), 3, sym_match_expr, sym_type_array, sym_enum_variant, @@ -18958,72 +18954,72 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(41), 1, anon_sym_BANG, - ACTIONS(51), 1, + ACTIONS(219), 1, sym_num_literal, - ACTIONS(55), 1, + ACTIONS(223), 1, sym_raw_enum_tag, - ACTIONS(59), 1, + ACTIONS(227), 1, anon_sym_match, - ACTIONS(61), 1, + ACTIONS(229), 1, anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(235), 1, anon_sym_import, - ACTIONS(71), 1, + ACTIONS(237), 1, anon_sym_Array, - ACTIONS(75), 1, + ACTIONS(241), 1, anon_sym_LPAREN, - ACTIONS(77), 1, + ACTIONS(243), 1, anon_sym_LBRACK, - ACTIONS(81), 1, + ACTIONS(245), 1, anon_sym__, - ACTIONS(109), 1, + ACTIONS(249), 1, + anon_sym_PERCENT, + ACTIONS(251), 1, + anon_sym_DASH, + ACTIONS(253), 1, anon_sym_LBRACK_PIPE, - ACTIONS(111), 1, + ACTIONS(255), 1, sym_multstr_start, - ACTIONS(113), 1, + ACTIONS(257), 1, sym__str_start, - ACTIONS(115), 1, + ACTIONS(259), 1, sym_quoted_enum_tag_start, - ACTIONS(121), 1, - anon_sym_PERCENT, - ACTIONS(131), 1, - anon_sym_DASH, - STATE(8), 1, + STATE(80), 1, sym_enum_tag, - STATE(9), 1, + STATE(85), 1, sym_applicative, - STATE(95), 1, + STATE(218), 1, + sym_infix_u_op_5, + STATE(255), 1, sym_record_operand, - STATE(99), 1, + STATE(258), 1, sym_type_builtin, - STATE(123), 1, + STATE(336), 1, sym_quoted_enum_tag, - STATE(158), 1, - sym_infix_u_op_5, - STATE(470), 1, + STATE(568), 1, sym_infix_expr, - ACTIONS(53), 2, + ACTIONS(221), 2, sym_ident, anon_sym_null, - ACTIONS(83), 2, + ACTIONS(247), 2, anon_sym_true, anon_sym_false, - STATE(94), 2, + STATE(253), 2, sym_record_operation_chain, sym_atom, - STATE(98), 2, + STATE(329), 2, sym_str_chunks_single, sym_str_chunks_multi, - STATE(149), 3, + STATE(454), 3, sym_match_expr, sym_type_array, sym_enum_variant, - ACTIONS(73), 4, + ACTIONS(239), 4, anon_sym_Dyn, anon_sym_Number, anon_sym_Bool, anon_sym_String, - STATE(102), 5, + STATE(260), 5, sym_uni_record, sym_bool, sym_str_chunks, @@ -19064,9 +19060,9 @@ static const uint16_t ts_small_parse_table[] = { sym__str_start, ACTIONS(217), 1, sym_quoted_enum_tag_start, - STATE(78), 1, + STATE(71), 1, sym_enum_tag, - STATE(85), 1, + STATE(83), 1, sym_applicative, STATE(162), 1, sym_infix_u_op_5, @@ -19076,7 +19072,7 @@ static const uint16_t ts_small_parse_table[] = { sym_type_builtin, STATE(420), 1, sym_quoted_enum_tag, - STATE(528), 1, + STATE(518), 1, sym_infix_expr, ACTIONS(179), 2, sym_ident, @@ -19084,13 +19080,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(205), 2, anon_sym_true, anon_sym_false, - STATE(251), 2, + STATE(252), 2, sym_str_chunks_single, sym_str_chunks_multi, STATE(344), 2, sym_record_operation_chain, sym_atom, - STATE(433), 3, + STATE(432), 3, sym_match_expr, sym_type_array, sym_enum_variant, @@ -19110,72 +19106,72 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(41), 1, anon_sym_BANG, - ACTIONS(303), 1, + ACTIONS(51), 1, sym_num_literal, - ACTIONS(307), 1, + ACTIONS(55), 1, sym_raw_enum_tag, - ACTIONS(311), 1, + ACTIONS(59), 1, anon_sym_match, - ACTIONS(313), 1, + ACTIONS(61), 1, anon_sym_LBRACE, - ACTIONS(319), 1, + ACTIONS(69), 1, anon_sym_import, - ACTIONS(321), 1, + ACTIONS(71), 1, anon_sym_Array, - ACTIONS(325), 1, + ACTIONS(75), 1, anon_sym_LPAREN, - ACTIONS(327), 1, + ACTIONS(77), 1, anon_sym_LBRACK, - ACTIONS(329), 1, + ACTIONS(81), 1, anon_sym__, - ACTIONS(333), 1, - anon_sym_PERCENT, - ACTIONS(335), 1, - anon_sym_DASH, - ACTIONS(337), 1, + ACTIONS(109), 1, anon_sym_LBRACK_PIPE, - ACTIONS(339), 1, + ACTIONS(111), 1, sym_multstr_start, - ACTIONS(341), 1, + ACTIONS(113), 1, sym__str_start, - ACTIONS(343), 1, + ACTIONS(115), 1, sym_quoted_enum_tag_start, - STATE(72), 1, + ACTIONS(121), 1, + anon_sym_PERCENT, + ACTIONS(131), 1, + anon_sym_DASH, + STATE(8), 1, sym_enum_tag, - STATE(82), 1, + STATE(9), 1, sym_applicative, - STATE(159), 1, - sym_infix_u_op_5, - STATE(312), 1, - sym_type_builtin, - STATE(314), 1, - sym_quoted_enum_tag, - STATE(319), 1, + STATE(87), 1, sym_record_operand, - STATE(525), 1, + STATE(97), 1, + sym_quoted_enum_tag, + STATE(98), 1, + sym_type_builtin, + STATE(158), 1, + sym_infix_u_op_5, + STATE(462), 1, sym_infix_expr, - ACTIONS(305), 2, + ACTIONS(53), 2, sym_ident, anon_sym_null, - ACTIONS(331), 2, + ACTIONS(83), 2, anon_sym_true, anon_sym_false, - STATE(330), 2, + STATE(94), 2, sym_record_operation_chain, sym_atom, - STATE(406), 2, + STATE(96), 2, sym_str_chunks_single, sym_str_chunks_multi, - STATE(422), 3, + STATE(150), 3, sym_match_expr, sym_type_array, sym_enum_variant, - ACTIONS(323), 4, + ACTIONS(73), 4, anon_sym_Dyn, anon_sym_Number, anon_sym_Bool, anon_sym_String, - STATE(310), 5, + STATE(88), 5, sym_uni_record, sym_bool, sym_str_chunks, @@ -19216,19 +19212,19 @@ static const uint16_t ts_small_parse_table[] = { sym__str_start, ACTIONS(343), 1, sym_quoted_enum_tag_start, - STATE(72), 1, + STATE(76), 1, sym_enum_tag, STATE(82), 1, sym_applicative, STATE(159), 1, sym_infix_u_op_5, - STATE(312), 1, - sym_type_builtin, - STATE(314), 1, + STATE(311), 1, sym_quoted_enum_tag, - STATE(319), 1, + STATE(314), 1, + sym_type_builtin, + STATE(320), 1, sym_record_operand, - STATE(549), 1, + STATE(515), 1, sym_infix_expr, ACTIONS(305), 2, sym_ident, @@ -19236,7 +19232,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(331), 2, anon_sym_true, anon_sym_false, - STATE(330), 2, + STATE(324), 2, sym_record_operation_chain, sym_atom, STATE(406), 2, @@ -19251,13 +19247,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - STATE(310), 5, + STATE(309), 5, sym_uni_record, sym_bool, sym_str_chunks, sym_builtin, sym_type_atom, [16854] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(41), 1, + anon_sym_BANG, + ACTIONS(177), 1, + sym_num_literal, + ACTIONS(181), 1, + sym_raw_enum_tag, + ACTIONS(185), 1, + anon_sym_match, + ACTIONS(187), 1, + anon_sym_LBRACE, + ACTIONS(193), 1, + anon_sym_import, + ACTIONS(195), 1, + anon_sym_Array, + ACTIONS(199), 1, + anon_sym_LPAREN, + ACTIONS(201), 1, + anon_sym_LBRACK, + ACTIONS(203), 1, + anon_sym__, + ACTIONS(207), 1, + anon_sym_PERCENT, + ACTIONS(209), 1, + anon_sym_DASH, + ACTIONS(211), 1, + anon_sym_LBRACK_PIPE, + ACTIONS(213), 1, + sym_multstr_start, + ACTIONS(215), 1, + sym__str_start, + ACTIONS(217), 1, + sym_quoted_enum_tag_start, + STATE(71), 1, + sym_enum_tag, + STATE(83), 1, + sym_applicative, + STATE(162), 1, + sym_infix_u_op_5, + STATE(345), 1, + sym_record_operand, + STATE(354), 1, + sym_type_builtin, + STATE(420), 1, + sym_quoted_enum_tag, + STATE(539), 1, + sym_infix_expr, + ACTIONS(179), 2, + sym_ident, + anon_sym_null, + ACTIONS(205), 2, + anon_sym_true, + anon_sym_false, + STATE(252), 2, + sym_str_chunks_single, + sym_str_chunks_multi, + STATE(344), 2, + sym_record_operation_chain, + sym_atom, + STATE(432), 3, + sym_match_expr, + sym_type_array, + sym_enum_variant, + ACTIONS(197), 4, + anon_sym_Dyn, + anon_sym_Number, + anon_sym_Bool, + anon_sym_String, + STATE(357), 5, + sym_uni_record, + sym_bool, + sym_str_chunks, + sym_builtin, + sym_type_atom, + [16961] = 31, ACTIONS(3), 1, sym_comment, ACTIONS(41), 1, @@ -19292,19 +19364,19 @@ static const uint16_t ts_small_parse_table[] = { sym__str_start, ACTIONS(343), 1, sym_quoted_enum_tag_start, - STATE(72), 1, + STATE(76), 1, sym_enum_tag, STATE(82), 1, sym_applicative, STATE(159), 1, sym_infix_u_op_5, - STATE(312), 1, - sym_type_builtin, - STATE(314), 1, + STATE(311), 1, sym_quoted_enum_tag, - STATE(319), 1, + STATE(314), 1, + sym_type_builtin, + STATE(320), 1, sym_record_operand, - STATE(552), 1, + STATE(559), 1, sym_infix_expr, ACTIONS(305), 2, sym_ident, @@ -19312,7 +19384,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(331), 2, anon_sym_true, anon_sym_false, - STATE(330), 2, + STATE(324), 2, sym_record_operation_chain, sym_atom, STATE(406), 2, @@ -19327,89 +19399,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - STATE(310), 5, + STATE(309), 5, sym_uni_record, sym_bool, sym_str_chunks, sym_builtin, sym_type_atom, - [16961] = 31, + [17068] = 31, ACTIONS(3), 1, sym_comment, ACTIONS(41), 1, anon_sym_BANG, - ACTIONS(177), 1, + ACTIONS(303), 1, sym_num_literal, - ACTIONS(181), 1, + ACTIONS(307), 1, sym_raw_enum_tag, - ACTIONS(185), 1, + ACTIONS(311), 1, anon_sym_match, - ACTIONS(187), 1, + ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(193), 1, + ACTIONS(319), 1, anon_sym_import, - ACTIONS(195), 1, + ACTIONS(321), 1, anon_sym_Array, - ACTIONS(199), 1, + ACTIONS(325), 1, anon_sym_LPAREN, - ACTIONS(201), 1, + ACTIONS(327), 1, anon_sym_LBRACK, - ACTIONS(203), 1, + ACTIONS(329), 1, anon_sym__, - ACTIONS(207), 1, + ACTIONS(333), 1, anon_sym_PERCENT, - ACTIONS(209), 1, + ACTIONS(335), 1, anon_sym_DASH, - ACTIONS(211), 1, + ACTIONS(337), 1, anon_sym_LBRACK_PIPE, - ACTIONS(213), 1, + ACTIONS(339), 1, sym_multstr_start, - ACTIONS(215), 1, + ACTIONS(341), 1, sym__str_start, - ACTIONS(217), 1, + ACTIONS(343), 1, sym_quoted_enum_tag_start, - STATE(78), 1, + STATE(76), 1, sym_enum_tag, - STATE(85), 1, + STATE(82), 1, sym_applicative, - STATE(162), 1, + STATE(159), 1, sym_infix_u_op_5, - STATE(345), 1, - sym_record_operand, - STATE(354), 1, - sym_type_builtin, - STATE(420), 1, + STATE(311), 1, sym_quoted_enum_tag, - STATE(515), 1, + STATE(314), 1, + sym_type_builtin, + STATE(320), 1, + sym_record_operand, + STATE(556), 1, sym_infix_expr, - ACTIONS(179), 2, + ACTIONS(305), 2, sym_ident, anon_sym_null, - ACTIONS(205), 2, + ACTIONS(331), 2, anon_sym_true, anon_sym_false, - STATE(251), 2, - sym_str_chunks_single, - sym_str_chunks_multi, - STATE(344), 2, + STATE(324), 2, sym_record_operation_chain, sym_atom, - STATE(433), 3, + STATE(406), 2, + sym_str_chunks_single, + sym_str_chunks_multi, + STATE(422), 3, sym_match_expr, sym_type_array, sym_enum_variant, - ACTIONS(197), 4, + ACTIONS(323), 4, anon_sym_Dyn, anon_sym_Number, anon_sym_Bool, anon_sym_String, - STATE(357), 5, + STATE(309), 5, sym_uni_record, sym_bool, sym_str_chunks, sym_builtin, sym_type_atom, - [17068] = 31, + [17175] = 31, ACTIONS(3), 1, sym_comment, ACTIONS(41), 1, @@ -19444,9 +19516,9 @@ static const uint16_t ts_small_parse_table[] = { sym__str_start, ACTIONS(217), 1, sym_quoted_enum_tag_start, - STATE(78), 1, + STATE(71), 1, sym_enum_tag, - STATE(85), 1, + STATE(83), 1, sym_applicative, STATE(162), 1, sym_infix_u_op_5, @@ -19456,7 +19528,7 @@ static const uint16_t ts_small_parse_table[] = { sym_type_builtin, STATE(420), 1, sym_quoted_enum_tag, - STATE(529), 1, + STATE(548), 1, sym_infix_expr, ACTIONS(179), 2, sym_ident, @@ -19464,13 +19536,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(205), 2, anon_sym_true, anon_sym_false, - STATE(251), 2, + STATE(252), 2, sym_str_chunks_single, sym_str_chunks_multi, STATE(344), 2, sym_record_operation_chain, sym_atom, - STATE(433), 3, + STATE(432), 3, sym_match_expr, sym_type_array, sym_enum_variant, @@ -19485,83 +19557,83 @@ static const uint16_t ts_small_parse_table[] = { sym_str_chunks, sym_builtin, sym_type_atom, - [17175] = 31, + [17282] = 31, ACTIONS(3), 1, sym_comment, ACTIONS(41), 1, anon_sym_BANG, - ACTIONS(303), 1, + ACTIONS(177), 1, sym_num_literal, - ACTIONS(307), 1, + ACTIONS(181), 1, sym_raw_enum_tag, - ACTIONS(311), 1, + ACTIONS(185), 1, anon_sym_match, - ACTIONS(313), 1, + ACTIONS(187), 1, anon_sym_LBRACE, - ACTIONS(319), 1, + ACTIONS(193), 1, anon_sym_import, - ACTIONS(321), 1, + ACTIONS(195), 1, anon_sym_Array, - ACTIONS(325), 1, + ACTIONS(199), 1, anon_sym_LPAREN, - ACTIONS(327), 1, + ACTIONS(201), 1, anon_sym_LBRACK, - ACTIONS(329), 1, + ACTIONS(203), 1, anon_sym__, - ACTIONS(333), 1, + ACTIONS(207), 1, anon_sym_PERCENT, - ACTIONS(335), 1, + ACTIONS(209), 1, anon_sym_DASH, - ACTIONS(337), 1, + ACTIONS(211), 1, anon_sym_LBRACK_PIPE, - ACTIONS(339), 1, + ACTIONS(213), 1, sym_multstr_start, - ACTIONS(341), 1, + ACTIONS(215), 1, sym__str_start, - ACTIONS(343), 1, + ACTIONS(217), 1, sym_quoted_enum_tag_start, - STATE(72), 1, + STATE(71), 1, sym_enum_tag, - STATE(82), 1, + STATE(83), 1, sym_applicative, - STATE(159), 1, + STATE(162), 1, sym_infix_u_op_5, - STATE(312), 1, + STATE(345), 1, + sym_record_operand, + STATE(354), 1, sym_type_builtin, - STATE(314), 1, + STATE(420), 1, sym_quoted_enum_tag, - STATE(319), 1, - sym_record_operand, - STATE(547), 1, + STATE(541), 1, sym_infix_expr, - ACTIONS(305), 2, + ACTIONS(179), 2, sym_ident, anon_sym_null, - ACTIONS(331), 2, + ACTIONS(205), 2, anon_sym_true, anon_sym_false, - STATE(330), 2, - sym_record_operation_chain, - sym_atom, - STATE(406), 2, + STATE(252), 2, sym_str_chunks_single, sym_str_chunks_multi, - STATE(422), 3, + STATE(344), 2, + sym_record_operation_chain, + sym_atom, + STATE(432), 3, sym_match_expr, sym_type_array, sym_enum_variant, - ACTIONS(323), 4, + ACTIONS(197), 4, anon_sym_Dyn, anon_sym_Number, anon_sym_Bool, anon_sym_String, - STATE(310), 5, + STATE(357), 5, sym_uni_record, sym_bool, sym_str_chunks, sym_builtin, sym_type_atom, - [17282] = 31, + [17389] = 31, ACTIONS(3), 1, sym_comment, ACTIONS(41), 1, @@ -19596,9 +19668,9 @@ static const uint16_t ts_small_parse_table[] = { sym__str_start, ACTIONS(217), 1, sym_quoted_enum_tag_start, - STATE(78), 1, + STATE(71), 1, sym_enum_tag, - STATE(85), 1, + STATE(83), 1, sym_applicative, STATE(162), 1, sym_infix_u_op_5, @@ -19608,7 +19680,7 @@ static const uint16_t ts_small_parse_table[] = { sym_type_builtin, STATE(420), 1, sym_quoted_enum_tag, - STATE(535), 1, + STATE(544), 1, sym_infix_expr, ACTIONS(179), 2, sym_ident, @@ -19616,13 +19688,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(205), 2, anon_sym_true, anon_sym_false, - STATE(251), 2, + STATE(252), 2, sym_str_chunks_single, sym_str_chunks_multi, STATE(344), 2, sym_record_operation_chain, sym_atom, - STATE(433), 3, + STATE(432), 3, sym_match_expr, sym_type_array, sym_enum_variant, @@ -19637,7 +19709,7 @@ static const uint16_t ts_small_parse_table[] = { sym_str_chunks, sym_builtin, sym_type_atom, - [17389] = 31, + [17496] = 31, ACTIONS(3), 1, sym_comment, ACTIONS(41), 1, @@ -19672,9 +19744,9 @@ static const uint16_t ts_small_parse_table[] = { sym__str_start, ACTIONS(217), 1, sym_quoted_enum_tag_start, - STATE(78), 1, + STATE(71), 1, sym_enum_tag, - STATE(85), 1, + STATE(83), 1, sym_applicative, STATE(162), 1, sym_infix_u_op_5, @@ -19684,7 +19756,7 @@ static const uint16_t ts_small_parse_table[] = { sym_type_builtin, STATE(420), 1, sym_quoted_enum_tag, - STATE(570), 1, + STATE(545), 1, sym_infix_expr, ACTIONS(179), 2, sym_ident, @@ -19692,13 +19764,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(205), 2, anon_sym_true, anon_sym_false, - STATE(251), 2, + STATE(252), 2, sym_str_chunks_single, sym_str_chunks_multi, STATE(344), 2, sym_record_operation_chain, sym_atom, - STATE(433), 3, + STATE(432), 3, sym_match_expr, sym_type_array, sym_enum_variant, @@ -19713,7 +19785,7 @@ static const uint16_t ts_small_parse_table[] = { sym_str_chunks, sym_builtin, sym_type_atom, - [17496] = 31, + [17603] = 31, ACTIONS(3), 1, sym_comment, ACTIONS(41), 1, @@ -19748,9 +19820,9 @@ static const uint16_t ts_small_parse_table[] = { sym__str_start, ACTIONS(217), 1, sym_quoted_enum_tag_start, - STATE(78), 1, + STATE(71), 1, sym_enum_tag, - STATE(85), 1, + STATE(83), 1, sym_applicative, STATE(162), 1, sym_infix_u_op_5, @@ -19760,7 +19832,7 @@ static const uint16_t ts_small_parse_table[] = { sym_type_builtin, STATE(420), 1, sym_quoted_enum_tag, - STATE(536), 1, + STATE(561), 1, sym_infix_expr, ACTIONS(179), 2, sym_ident, @@ -19768,13 +19840,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(205), 2, anon_sym_true, anon_sym_false, - STATE(251), 2, + STATE(252), 2, sym_str_chunks_single, sym_str_chunks_multi, STATE(344), 2, sym_record_operation_chain, sym_atom, - STATE(433), 3, + STATE(432), 3, sym_match_expr, sym_type_array, sym_enum_variant, @@ -19789,7 +19861,7 @@ static const uint16_t ts_small_parse_table[] = { sym_str_chunks, sym_builtin, sym_type_atom, - [17603] = 31, + [17710] = 31, ACTIONS(3), 1, sym_comment, ACTIONS(41), 1, @@ -19824,9 +19896,9 @@ static const uint16_t ts_small_parse_table[] = { sym__str_start, ACTIONS(217), 1, sym_quoted_enum_tag_start, - STATE(78), 1, + STATE(71), 1, sym_enum_tag, - STATE(85), 1, + STATE(83), 1, sym_applicative, STATE(162), 1, sym_infix_u_op_5, @@ -19836,7 +19908,7 @@ static const uint16_t ts_small_parse_table[] = { sym_type_builtin, STATE(420), 1, sym_quoted_enum_tag, - STATE(538), 1, + STATE(563), 1, sym_infix_expr, ACTIONS(179), 2, sym_ident, @@ -19844,13 +19916,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(205), 2, anon_sym_true, anon_sym_false, - STATE(251), 2, + STATE(252), 2, sym_str_chunks_single, sym_str_chunks_multi, STATE(344), 2, sym_record_operation_chain, sym_atom, - STATE(433), 3, + STATE(432), 3, sym_match_expr, sym_type_array, sym_enum_variant, @@ -19865,83 +19937,83 @@ static const uint16_t ts_small_parse_table[] = { sym_str_chunks, sym_builtin, sym_type_atom, - [17710] = 31, + [17817] = 31, ACTIONS(3), 1, sym_comment, ACTIONS(41), 1, anon_sym_BANG, - ACTIONS(177), 1, + ACTIONS(303), 1, sym_num_literal, - ACTIONS(181), 1, + ACTIONS(307), 1, sym_raw_enum_tag, - ACTIONS(185), 1, + ACTIONS(311), 1, anon_sym_match, - ACTIONS(187), 1, + ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(193), 1, + ACTIONS(319), 1, anon_sym_import, - ACTIONS(195), 1, + ACTIONS(321), 1, anon_sym_Array, - ACTIONS(199), 1, + ACTIONS(325), 1, anon_sym_LPAREN, - ACTIONS(201), 1, + ACTIONS(327), 1, anon_sym_LBRACK, - ACTIONS(203), 1, + ACTIONS(329), 1, anon_sym__, - ACTIONS(207), 1, + ACTIONS(333), 1, anon_sym_PERCENT, - ACTIONS(209), 1, + ACTIONS(335), 1, anon_sym_DASH, - ACTIONS(211), 1, + ACTIONS(337), 1, anon_sym_LBRACK_PIPE, - ACTIONS(213), 1, + ACTIONS(339), 1, sym_multstr_start, - ACTIONS(215), 1, + ACTIONS(341), 1, sym__str_start, - ACTIONS(217), 1, + ACTIONS(343), 1, sym_quoted_enum_tag_start, - STATE(78), 1, + STATE(76), 1, sym_enum_tag, - STATE(85), 1, + STATE(82), 1, sym_applicative, - STATE(162), 1, + STATE(159), 1, sym_infix_u_op_5, - STATE(345), 1, - sym_record_operand, - STATE(354), 1, - sym_type_builtin, - STATE(420), 1, + STATE(311), 1, sym_quoted_enum_tag, - STATE(539), 1, + STATE(314), 1, + sym_type_builtin, + STATE(320), 1, + sym_record_operand, + STATE(554), 1, sym_infix_expr, - ACTIONS(179), 2, + ACTIONS(305), 2, sym_ident, anon_sym_null, - ACTIONS(205), 2, + ACTIONS(331), 2, anon_sym_true, anon_sym_false, - STATE(251), 2, - sym_str_chunks_single, - sym_str_chunks_multi, - STATE(344), 2, + STATE(324), 2, sym_record_operation_chain, sym_atom, - STATE(433), 3, + STATE(406), 2, + sym_str_chunks_single, + sym_str_chunks_multi, + STATE(422), 3, sym_match_expr, sym_type_array, sym_enum_variant, - ACTIONS(197), 4, + ACTIONS(323), 4, anon_sym_Dyn, anon_sym_Number, anon_sym_Bool, anon_sym_String, - STATE(357), 5, + STATE(309), 5, sym_uni_record, sym_bool, sym_str_chunks, sym_builtin, sym_type_atom, - [17817] = 31, + [17924] = 31, ACTIONS(3), 1, sym_comment, ACTIONS(41), 1, @@ -19976,19 +20048,19 @@ static const uint16_t ts_small_parse_table[] = { sym__str_start, ACTIONS(343), 1, sym_quoted_enum_tag_start, - STATE(72), 1, + STATE(76), 1, sym_enum_tag, STATE(82), 1, sym_applicative, STATE(159), 1, sym_infix_u_op_5, - STATE(312), 1, - sym_type_builtin, - STATE(314), 1, + STATE(311), 1, sym_quoted_enum_tag, - STATE(319), 1, + STATE(314), 1, + sym_type_builtin, + STATE(320), 1, sym_record_operand, - STATE(546), 1, + STATE(511), 1, sym_infix_expr, ACTIONS(305), 2, sym_ident, @@ -19996,7 +20068,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(331), 2, anon_sym_true, anon_sym_false, - STATE(330), 2, + STATE(324), 2, sym_record_operation_chain, sym_atom, STATE(406), 2, @@ -20011,13 +20083,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - STATE(310), 5, + STATE(309), 5, sym_uni_record, sym_bool, sym_str_chunks, sym_builtin, sym_type_atom, - [17924] = 31, + [18031] = 31, ACTIONS(3), 1, sym_comment, ACTIONS(41), 1, @@ -20052,19 +20124,19 @@ static const uint16_t ts_small_parse_table[] = { sym__str_start, ACTIONS(343), 1, sym_quoted_enum_tag_start, - STATE(72), 1, + STATE(76), 1, sym_enum_tag, STATE(82), 1, sym_applicative, STATE(159), 1, sym_infix_u_op_5, - STATE(312), 1, - sym_type_builtin, - STATE(314), 1, + STATE(311), 1, sym_quoted_enum_tag, - STATE(319), 1, + STATE(314), 1, + sym_type_builtin, + STATE(320), 1, sym_record_operand, - STATE(510), 1, + STATE(553), 1, sym_infix_expr, ACTIONS(305), 2, sym_ident, @@ -20072,7 +20144,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(331), 2, anon_sym_true, anon_sym_false, - STATE(330), 2, + STATE(324), 2, sym_record_operation_chain, sym_atom, STATE(406), 2, @@ -20087,13 +20159,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - STATE(310), 5, + STATE(309), 5, sym_uni_record, sym_bool, sym_str_chunks, sym_builtin, sym_type_atom, - [18031] = 31, + [18138] = 31, ACTIONS(3), 1, sym_comment, ACTIONS(41), 1, @@ -20128,19 +20200,19 @@ static const uint16_t ts_small_parse_table[] = { sym__str_start, ACTIONS(343), 1, sym_quoted_enum_tag_start, - STATE(72), 1, + STATE(76), 1, sym_enum_tag, STATE(82), 1, sym_applicative, STATE(159), 1, sym_infix_u_op_5, - STATE(312), 1, - sym_type_builtin, - STATE(314), 1, + STATE(311), 1, sym_quoted_enum_tag, - STATE(319), 1, + STATE(314), 1, + sym_type_builtin, + STATE(320), 1, sym_record_operand, - STATE(544), 1, + STATE(551), 1, sym_infix_expr, ACTIONS(305), 2, sym_ident, @@ -20148,7 +20220,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(331), 2, anon_sym_true, anon_sym_false, - STATE(330), 2, + STATE(324), 2, sym_record_operation_chain, sym_atom, STATE(406), 2, @@ -20163,13 +20235,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - STATE(310), 5, + STATE(309), 5, sym_uni_record, sym_bool, sym_str_chunks, sym_builtin, sym_type_atom, - [18138] = 31, + [18245] = 31, ACTIONS(3), 1, sym_comment, ACTIONS(41), 1, @@ -20204,19 +20276,19 @@ static const uint16_t ts_small_parse_table[] = { sym__str_start, ACTIONS(343), 1, sym_quoted_enum_tag_start, - STATE(72), 1, + STATE(76), 1, sym_enum_tag, STATE(82), 1, sym_applicative, STATE(159), 1, sym_infix_u_op_5, - STATE(312), 1, - sym_type_builtin, - STATE(314), 1, + STATE(311), 1, sym_quoted_enum_tag, - STATE(319), 1, + STATE(314), 1, + sym_type_builtin, + STATE(320), 1, sym_record_operand, - STATE(542), 1, + STATE(550), 1, sym_infix_expr, ACTIONS(305), 2, sym_ident, @@ -20224,7 +20296,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(331), 2, anon_sym_true, anon_sym_false, - STATE(330), 2, + STATE(324), 2, sym_record_operation_chain, sym_atom, STATE(406), 2, @@ -20239,13 +20311,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - STATE(310), 5, + STATE(309), 5, sym_uni_record, sym_bool, sym_str_chunks, sym_builtin, sym_type_atom, - [18245] = 31, + [18352] = 31, ACTIONS(3), 1, sym_comment, ACTIONS(41), 1, @@ -20280,19 +20352,19 @@ static const uint16_t ts_small_parse_table[] = { sym__str_start, ACTIONS(343), 1, sym_quoted_enum_tag_start, - STATE(72), 1, + STATE(76), 1, sym_enum_tag, STATE(82), 1, sym_applicative, STATE(159), 1, sym_infix_u_op_5, - STATE(312), 1, - sym_type_builtin, - STATE(314), 1, + STATE(311), 1, sym_quoted_enum_tag, - STATE(319), 1, + STATE(314), 1, + sym_type_builtin, + STATE(320), 1, sym_record_operand, - STATE(541), 1, + STATE(512), 1, sym_infix_expr, ACTIONS(305), 2, sym_ident, @@ -20300,7 +20372,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(331), 2, anon_sym_true, anon_sym_false, - STATE(330), 2, + STATE(324), 2, sym_record_operation_chain, sym_atom, STATE(406), 2, @@ -20315,13 +20387,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - STATE(310), 5, + STATE(309), 5, sym_uni_record, sym_bool, sym_str_chunks, sym_builtin, sym_type_atom, - [18352] = 31, + [18459] = 31, ACTIONS(3), 1, sym_comment, ACTIONS(41), 1, @@ -20356,19 +20428,19 @@ static const uint16_t ts_small_parse_table[] = { sym__str_start, ACTIONS(343), 1, sym_quoted_enum_tag_start, - STATE(72), 1, + STATE(76), 1, sym_enum_tag, STATE(82), 1, sym_applicative, STATE(159), 1, sym_infix_u_op_5, - STATE(312), 1, - sym_type_builtin, - STATE(314), 1, + STATE(311), 1, sym_quoted_enum_tag, - STATE(319), 1, + STATE(314), 1, + sym_type_builtin, + STATE(320), 1, sym_record_operand, - STATE(540), 1, + STATE(546), 1, sym_infix_expr, ACTIONS(305), 2, sym_ident, @@ -20376,7 +20448,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(331), 2, anon_sym_true, anon_sym_false, - STATE(330), 2, + STATE(324), 2, sym_record_operation_chain, sym_atom, STATE(406), 2, @@ -20391,13 +20463,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - STATE(310), 5, + STATE(309), 5, sym_uni_record, sym_bool, sym_str_chunks, sym_builtin, sym_type_atom, - [18459] = 31, + [18566] = 31, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -20432,19 +20504,19 @@ static const uint16_t ts_small_parse_table[] = { sym__str_start, ACTIONS(49), 1, sym_quoted_enum_tag_start, - STATE(80), 1, + STATE(81), 1, sym_enum_tag, - STATE(86), 1, + STATE(84), 1, sym_applicative, - STATE(185), 1, + STATE(186), 1, sym_infix_u_op_5, STATE(225), 1, sym_quoted_enum_tag, STATE(240), 1, sym_type_builtin, - STATE(252), 1, + STATE(251), 1, sym_record_operand, - STATE(526), 1, + STATE(514), 1, sym_infix_expr, ACTIONS(7), 2, sym_ident, @@ -20455,7 +20527,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(256), 2, sym_record_operation_chain, sym_atom, - STATE(264), 2, + STATE(266), 2, sym_str_chunks_single, sym_str_chunks_multi, STATE(456), 3, @@ -20473,7 +20545,7 @@ static const uint16_t ts_small_parse_table[] = { sym_str_chunks, sym_builtin, sym_type_atom, - [18566] = 31, + [18673] = 31, ACTIONS(3), 1, sym_comment, ACTIONS(41), 1, @@ -20512,12 +20584,12 @@ static const uint16_t ts_small_parse_table[] = { sym_enum_tag, STATE(9), 1, sym_applicative, - STATE(95), 1, + STATE(87), 1, sym_record_operand, - STATE(99), 1, - sym_type_builtin, - STATE(123), 1, + STATE(97), 1, sym_quoted_enum_tag, + STATE(98), 1, + sym_type_builtin, STATE(158), 1, sym_infix_u_op_5, STATE(469), 1, @@ -20531,10 +20603,10 @@ static const uint16_t ts_small_parse_table[] = { STATE(94), 2, sym_record_operation_chain, sym_atom, - STATE(98), 2, + STATE(96), 2, sym_str_chunks_single, sym_str_chunks_multi, - STATE(149), 3, + STATE(150), 3, sym_match_expr, sym_type_array, sym_enum_variant, @@ -20543,13 +20615,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - STATE(102), 5, + STATE(88), 5, sym_uni_record, sym_bool, sym_str_chunks, sym_builtin, sym_type_atom, - [18673] = 31, + [18780] = 31, ACTIONS(3), 1, sym_comment, ACTIONS(41), 1, @@ -20584,9 +20656,9 @@ static const uint16_t ts_small_parse_table[] = { sym__str_start, ACTIONS(217), 1, sym_quoted_enum_tag_start, - STATE(78), 1, + STATE(71), 1, sym_enum_tag, - STATE(85), 1, + STATE(83), 1, sym_applicative, STATE(162), 1, sym_infix_u_op_5, @@ -20596,7 +20668,7 @@ static const uint16_t ts_small_parse_table[] = { sym_type_builtin, STATE(420), 1, sym_quoted_enum_tag, - STATE(520), 1, + STATE(522), 1, sym_infix_expr, ACTIONS(179), 2, sym_ident, @@ -20604,13 +20676,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(205), 2, anon_sym_true, anon_sym_false, - STATE(251), 2, + STATE(252), 2, sym_str_chunks_single, sym_str_chunks_multi, STATE(344), 2, sym_record_operation_chain, sym_atom, - STATE(433), 3, + STATE(432), 3, sym_match_expr, sym_type_array, sym_enum_variant, @@ -20625,7 +20697,7 @@ static const uint16_t ts_small_parse_table[] = { sym_str_chunks, sym_builtin, sym_type_atom, - [18780] = 31, + [18887] = 31, ACTIONS(3), 1, sym_comment, ACTIONS(41), 1, @@ -20664,12 +20736,12 @@ static const uint16_t ts_small_parse_table[] = { sym_enum_tag, STATE(9), 1, sym_applicative, - STATE(95), 1, + STATE(87), 1, sym_record_operand, - STATE(99), 1, - sym_type_builtin, - STATE(123), 1, + STATE(97), 1, sym_quoted_enum_tag, + STATE(98), 1, + sym_type_builtin, STATE(158), 1, sym_infix_u_op_5, STATE(468), 1, @@ -20683,10 +20755,10 @@ static const uint16_t ts_small_parse_table[] = { STATE(94), 2, sym_record_operation_chain, sym_atom, - STATE(98), 2, + STATE(96), 2, sym_str_chunks_single, sym_str_chunks_multi, - STATE(149), 3, + STATE(150), 3, sym_match_expr, sym_type_array, sym_enum_variant, @@ -20695,13 +20767,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - STATE(102), 5, + STATE(88), 5, sym_uni_record, sym_bool, sym_str_chunks, sym_builtin, sym_type_atom, - [18887] = 31, + [18994] = 31, ACTIONS(3), 1, sym_comment, ACTIONS(41), 1, @@ -20740,12 +20812,12 @@ static const uint16_t ts_small_parse_table[] = { sym_enum_tag, STATE(9), 1, sym_applicative, - STATE(95), 1, + STATE(87), 1, sym_record_operand, - STATE(99), 1, - sym_type_builtin, - STATE(123), 1, + STATE(97), 1, sym_quoted_enum_tag, + STATE(98), 1, + sym_type_builtin, STATE(158), 1, sym_infix_u_op_5, STATE(467), 1, @@ -20759,10 +20831,10 @@ static const uint16_t ts_small_parse_table[] = { STATE(94), 2, sym_record_operation_chain, sym_atom, - STATE(98), 2, + STATE(96), 2, sym_str_chunks_single, sym_str_chunks_multi, - STATE(149), 3, + STATE(150), 3, sym_match_expr, sym_type_array, sym_enum_variant, @@ -20771,13 +20843,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - STATE(102), 5, + STATE(88), 5, sym_uni_record, sym_bool, sym_str_chunks, sym_builtin, sym_type_atom, - [18994] = 31, + [19101] = 31, ACTIONS(3), 1, sym_comment, ACTIONS(41), 1, @@ -20812,19 +20884,19 @@ static const uint16_t ts_small_parse_table[] = { sym__str_start, ACTIONS(301), 1, sym_quoted_enum_tag_start, - STATE(75), 1, + STATE(72), 1, sym_enum_tag, - STATE(84), 1, + STATE(86), 1, sym_applicative, STATE(156), 1, sym_infix_u_op_5, - STATE(325), 1, + STATE(322), 1, sym_type_builtin, - STATE(333), 1, + STATE(330), 1, sym_record_operand, STATE(356), 1, sym_quoted_enum_tag, - STATE(556), 1, + STATE(531), 1, sym_infix_expr, ACTIONS(263), 2, sym_ident, @@ -20832,13 +20904,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(289), 2, anon_sym_true, anon_sym_false, - STATE(334), 2, + STATE(331), 2, sym_record_operation_chain, sym_atom, STATE(417), 2, sym_str_chunks_single, sym_str_chunks_multi, - STATE(439), 3, + STATE(440), 3, sym_match_expr, sym_type_array, sym_enum_variant, @@ -20847,13 +20919,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - STATE(321), 5, + STATE(318), 5, sym_uni_record, sym_bool, sym_str_chunks, sym_builtin, sym_type_atom, - [19101] = 31, + [19208] = 31, ACTIONS(3), 1, sym_comment, ACTIONS(41), 1, @@ -20888,19 +20960,19 @@ static const uint16_t ts_small_parse_table[] = { sym__str_start, ACTIONS(301), 1, sym_quoted_enum_tag_start, - STATE(75), 1, + STATE(72), 1, sym_enum_tag, - STATE(84), 1, + STATE(86), 1, sym_applicative, STATE(156), 1, sym_infix_u_op_5, - STATE(325), 1, + STATE(322), 1, sym_type_builtin, - STATE(333), 1, + STATE(330), 1, sym_record_operand, STATE(356), 1, sym_quoted_enum_tag, - STATE(533), 1, + STATE(538), 1, sym_infix_expr, ACTIONS(263), 2, sym_ident, @@ -20908,13 +20980,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(289), 2, anon_sym_true, anon_sym_false, - STATE(334), 2, + STATE(331), 2, sym_record_operation_chain, sym_atom, STATE(417), 2, sym_str_chunks_single, sym_str_chunks_multi, - STATE(439), 3, + STATE(440), 3, sym_match_expr, sym_type_array, sym_enum_variant, @@ -20923,89 +20995,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - STATE(321), 5, + STATE(318), 5, sym_uni_record, sym_bool, sym_str_chunks, sym_builtin, sym_type_atom, - [19208] = 31, + [19315] = 31, ACTIONS(3), 1, sym_comment, ACTIONS(41), 1, anon_sym_BANG, - ACTIONS(261), 1, + ACTIONS(219), 1, sym_num_literal, - ACTIONS(265), 1, + ACTIONS(223), 1, sym_raw_enum_tag, - ACTIONS(269), 1, + ACTIONS(227), 1, anon_sym_match, - ACTIONS(271), 1, + ACTIONS(229), 1, anon_sym_LBRACE, - ACTIONS(277), 1, + ACTIONS(235), 1, anon_sym_import, - ACTIONS(279), 1, + ACTIONS(237), 1, anon_sym_Array, - ACTIONS(283), 1, + ACTIONS(241), 1, anon_sym_LPAREN, - ACTIONS(285), 1, + ACTIONS(243), 1, anon_sym_LBRACK, - ACTIONS(287), 1, + ACTIONS(245), 1, anon_sym__, - ACTIONS(291), 1, + ACTIONS(249), 1, anon_sym_PERCENT, - ACTIONS(293), 1, + ACTIONS(251), 1, anon_sym_DASH, - ACTIONS(295), 1, + ACTIONS(253), 1, anon_sym_LBRACK_PIPE, - ACTIONS(297), 1, + ACTIONS(255), 1, sym_multstr_start, - ACTIONS(299), 1, + ACTIONS(257), 1, sym__str_start, - ACTIONS(301), 1, + ACTIONS(259), 1, sym_quoted_enum_tag_start, - STATE(75), 1, + STATE(80), 1, sym_enum_tag, - STATE(84), 1, + STATE(85), 1, sym_applicative, - STATE(156), 1, + STATE(218), 1, sym_infix_u_op_5, - STATE(325), 1, - sym_type_builtin, - STATE(333), 1, + STATE(255), 1, sym_record_operand, - STATE(356), 1, + STATE(258), 1, + sym_type_builtin, + STATE(336), 1, sym_quoted_enum_tag, - STATE(534), 1, + STATE(571), 1, sym_infix_expr, - ACTIONS(263), 2, + ACTIONS(221), 2, sym_ident, anon_sym_null, - ACTIONS(289), 2, + ACTIONS(247), 2, anon_sym_true, anon_sym_false, - STATE(334), 2, + STATE(253), 2, sym_record_operation_chain, sym_atom, - STATE(417), 2, + STATE(329), 2, sym_str_chunks_single, sym_str_chunks_multi, - STATE(439), 3, + STATE(454), 3, sym_match_expr, sym_type_array, sym_enum_variant, - ACTIONS(281), 4, + ACTIONS(239), 4, anon_sym_Dyn, anon_sym_Number, anon_sym_Bool, anon_sym_String, - STATE(321), 5, + STATE(260), 5, sym_uni_record, sym_bool, sym_str_chunks, sym_builtin, sym_type_atom, - [19315] = 31, + [19422] = 31, ACTIONS(3), 1, sym_comment, ACTIONS(41), 1, @@ -21040,19 +21112,19 @@ static const uint16_t ts_small_parse_table[] = { sym__str_start, ACTIONS(259), 1, sym_quoted_enum_tag_start, - STATE(76), 1, + STATE(80), 1, sym_enum_tag, - STATE(83), 1, + STATE(85), 1, sym_applicative, - STATE(217), 1, + STATE(218), 1, sym_infix_u_op_5, - STATE(254), 1, + STATE(255), 1, sym_record_operand, - STATE(257), 1, + STATE(258), 1, sym_type_builtin, - STATE(331), 1, + STATE(336), 1, sym_quoted_enum_tag, - STATE(558), 1, + STATE(572), 1, sym_infix_expr, ACTIONS(221), 2, sym_ident, @@ -21063,7 +21135,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(253), 2, sym_record_operation_chain, sym_atom, - STATE(332), 2, + STATE(329), 2, sym_str_chunks_single, sym_str_chunks_multi, STATE(454), 3, @@ -21081,7 +21153,7 @@ static const uint16_t ts_small_parse_table[] = { sym_str_chunks, sym_builtin, sym_type_atom, - [19422] = 31, + [19529] = 31, ACTIONS(3), 1, sym_comment, ACTIONS(41), 1, @@ -21116,19 +21188,19 @@ static const uint16_t ts_small_parse_table[] = { sym__str_start, ACTIONS(259), 1, sym_quoted_enum_tag_start, - STATE(76), 1, + STATE(80), 1, sym_enum_tag, - STATE(83), 1, + STATE(85), 1, sym_applicative, - STATE(217), 1, + STATE(218), 1, sym_infix_u_op_5, - STATE(254), 1, + STATE(255), 1, sym_record_operand, - STATE(257), 1, + STATE(258), 1, sym_type_builtin, - STATE(331), 1, + STATE(336), 1, sym_quoted_enum_tag, - STATE(559), 1, + STATE(573), 1, sym_infix_expr, ACTIONS(221), 2, sym_ident, @@ -21139,7 +21211,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(253), 2, sym_record_operation_chain, sym_atom, - STATE(332), 2, + STATE(329), 2, sym_str_chunks_single, sym_str_chunks_multi, STATE(454), 3, @@ -21157,7 +21229,7 @@ static const uint16_t ts_small_parse_table[] = { sym_str_chunks, sym_builtin, sym_type_atom, - [19529] = 31, + [19636] = 31, ACTIONS(3), 1, sym_comment, ACTIONS(41), 1, @@ -21192,19 +21264,19 @@ static const uint16_t ts_small_parse_table[] = { sym__str_start, ACTIONS(259), 1, sym_quoted_enum_tag_start, - STATE(76), 1, + STATE(80), 1, sym_enum_tag, - STATE(83), 1, + STATE(85), 1, sym_applicative, - STATE(217), 1, + STATE(218), 1, sym_infix_u_op_5, - STATE(254), 1, + STATE(255), 1, sym_record_operand, - STATE(257), 1, + STATE(258), 1, sym_type_builtin, - STATE(331), 1, + STATE(336), 1, sym_quoted_enum_tag, - STATE(560), 1, + STATE(574), 1, sym_infix_expr, ACTIONS(221), 2, sym_ident, @@ -21215,7 +21287,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(253), 2, sym_record_operation_chain, sym_atom, - STATE(332), 2, + STATE(329), 2, sym_str_chunks_single, sym_str_chunks_multi, STATE(454), 3, @@ -21233,7 +21305,7 @@ static const uint16_t ts_small_parse_table[] = { sym_str_chunks, sym_builtin, sym_type_atom, - [19636] = 31, + [19743] = 31, ACTIONS(3), 1, sym_comment, ACTIONS(41), 1, @@ -21268,19 +21340,19 @@ static const uint16_t ts_small_parse_table[] = { sym__str_start, ACTIONS(259), 1, sym_quoted_enum_tag_start, - STATE(76), 1, + STATE(80), 1, sym_enum_tag, - STATE(83), 1, + STATE(85), 1, sym_applicative, - STATE(217), 1, + STATE(218), 1, sym_infix_u_op_5, - STATE(254), 1, + STATE(255), 1, sym_record_operand, - STATE(257), 1, + STATE(258), 1, sym_type_builtin, - STATE(331), 1, + STATE(336), 1, sym_quoted_enum_tag, - STATE(561), 1, + STATE(567), 1, sym_infix_expr, ACTIONS(221), 2, sym_ident, @@ -21291,7 +21363,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(253), 2, sym_record_operation_chain, sym_atom, - STATE(332), 2, + STATE(329), 2, sym_str_chunks_single, sym_str_chunks_multi, STATE(454), 3, @@ -21309,7 +21381,7 @@ static const uint16_t ts_small_parse_table[] = { sym_str_chunks, sym_builtin, sym_type_atom, - [19743] = 31, + [19850] = 31, ACTIONS(3), 1, sym_comment, ACTIONS(41), 1, @@ -21344,19 +21416,19 @@ static const uint16_t ts_small_parse_table[] = { sym__str_start, ACTIONS(259), 1, sym_quoted_enum_tag_start, - STATE(76), 1, + STATE(80), 1, sym_enum_tag, - STATE(83), 1, + STATE(85), 1, sym_applicative, - STATE(217), 1, + STATE(218), 1, sym_infix_u_op_5, - STATE(254), 1, + STATE(255), 1, sym_record_operand, - STATE(257), 1, + STATE(258), 1, sym_type_builtin, - STATE(331), 1, + STATE(336), 1, sym_quoted_enum_tag, - STATE(562), 1, + STATE(558), 1, sym_infix_expr, ACTIONS(221), 2, sym_ident, @@ -21367,7 +21439,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(253), 2, sym_record_operation_chain, sym_atom, - STATE(332), 2, + STATE(329), 2, sym_str_chunks_single, sym_str_chunks_multi, STATE(454), 3, @@ -21385,7 +21457,7 @@ static const uint16_t ts_small_parse_table[] = { sym_str_chunks, sym_builtin, sym_type_atom, - [19850] = 31, + [19957] = 31, ACTIONS(3), 1, sym_comment, ACTIONS(41), 1, @@ -21420,19 +21492,19 @@ static const uint16_t ts_small_parse_table[] = { sym__str_start, ACTIONS(259), 1, sym_quoted_enum_tag_start, - STATE(76), 1, + STATE(80), 1, sym_enum_tag, - STATE(83), 1, + STATE(85), 1, sym_applicative, - STATE(217), 1, + STATE(218), 1, sym_infix_u_op_5, - STATE(254), 1, + STATE(255), 1, sym_record_operand, - STATE(257), 1, + STATE(258), 1, sym_type_builtin, - STATE(331), 1, + STATE(336), 1, sym_quoted_enum_tag, - STATE(563), 1, + STATE(552), 1, sym_infix_expr, ACTIONS(221), 2, sym_ident, @@ -21443,7 +21515,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(253), 2, sym_record_operation_chain, sym_atom, - STATE(332), 2, + STATE(329), 2, sym_str_chunks_single, sym_str_chunks_multi, STATE(454), 3, @@ -21461,7 +21533,7 @@ static const uint16_t ts_small_parse_table[] = { sym_str_chunks, sym_builtin, sym_type_atom, - [19957] = 31, + [20064] = 31, ACTIONS(3), 1, sym_comment, ACTIONS(41), 1, @@ -21496,19 +21568,19 @@ static const uint16_t ts_small_parse_table[] = { sym__str_start, ACTIONS(259), 1, sym_quoted_enum_tag_start, - STATE(76), 1, + STATE(80), 1, sym_enum_tag, - STATE(83), 1, + STATE(85), 1, sym_applicative, - STATE(217), 1, + STATE(218), 1, sym_infix_u_op_5, - STATE(254), 1, + STATE(255), 1, sym_record_operand, - STATE(257), 1, + STATE(258), 1, sym_type_builtin, - STATE(331), 1, + STATE(336), 1, sym_quoted_enum_tag, - STATE(565), 1, + STATE(524), 1, sym_infix_expr, ACTIONS(221), 2, sym_ident, @@ -21519,7 +21591,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(253), 2, sym_record_operation_chain, sym_atom, - STATE(332), 2, + STATE(329), 2, sym_str_chunks_single, sym_str_chunks_multi, STATE(454), 3, @@ -21537,83 +21609,83 @@ static const uint16_t ts_small_parse_table[] = { sym_str_chunks, sym_builtin, sym_type_atom, - [20064] = 31, + [20171] = 31, ACTIONS(3), 1, sym_comment, ACTIONS(41), 1, anon_sym_BANG, - ACTIONS(219), 1, + ACTIONS(261), 1, sym_num_literal, - ACTIONS(223), 1, + ACTIONS(265), 1, sym_raw_enum_tag, - ACTIONS(227), 1, + ACTIONS(269), 1, anon_sym_match, - ACTIONS(229), 1, + ACTIONS(271), 1, anon_sym_LBRACE, - ACTIONS(235), 1, + ACTIONS(277), 1, anon_sym_import, - ACTIONS(237), 1, + ACTIONS(279), 1, anon_sym_Array, - ACTIONS(241), 1, + ACTIONS(283), 1, anon_sym_LPAREN, - ACTIONS(243), 1, + ACTIONS(285), 1, anon_sym_LBRACK, - ACTIONS(245), 1, + ACTIONS(287), 1, anon_sym__, - ACTIONS(249), 1, + ACTIONS(291), 1, anon_sym_PERCENT, - ACTIONS(251), 1, + ACTIONS(293), 1, anon_sym_DASH, - ACTIONS(253), 1, + ACTIONS(295), 1, anon_sym_LBRACK_PIPE, - ACTIONS(255), 1, + ACTIONS(297), 1, sym_multstr_start, - ACTIONS(257), 1, + ACTIONS(299), 1, sym__str_start, - ACTIONS(259), 1, + ACTIONS(301), 1, sym_quoted_enum_tag_start, - STATE(76), 1, + STATE(72), 1, sym_enum_tag, - STATE(83), 1, + STATE(86), 1, sym_applicative, - STATE(217), 1, + STATE(156), 1, sym_infix_u_op_5, - STATE(254), 1, - sym_record_operand, - STATE(257), 1, + STATE(322), 1, sym_type_builtin, - STATE(331), 1, + STATE(330), 1, + sym_record_operand, + STATE(356), 1, sym_quoted_enum_tag, - STATE(521), 1, + STATE(540), 1, sym_infix_expr, - ACTIONS(221), 2, + ACTIONS(263), 2, sym_ident, anon_sym_null, - ACTIONS(247), 2, + ACTIONS(289), 2, anon_sym_true, anon_sym_false, - STATE(253), 2, + STATE(331), 2, sym_record_operation_chain, sym_atom, - STATE(332), 2, + STATE(417), 2, sym_str_chunks_single, sym_str_chunks_multi, - STATE(454), 3, + STATE(440), 3, sym_match_expr, sym_type_array, sym_enum_variant, - ACTIONS(239), 4, + ACTIONS(281), 4, anon_sym_Dyn, anon_sym_Number, anon_sym_Bool, anon_sym_String, - STATE(260), 5, + STATE(318), 5, sym_uni_record, sym_bool, sym_str_chunks, sym_builtin, sym_type_atom, - [20171] = 31, + [20278] = 31, ACTIONS(3), 1, sym_comment, ACTIONS(41), 1, @@ -21648,19 +21720,19 @@ static const uint16_t ts_small_parse_table[] = { sym__str_start, ACTIONS(301), 1, sym_quoted_enum_tag_start, - STATE(75), 1, + STATE(72), 1, sym_enum_tag, - STATE(84), 1, + STATE(86), 1, sym_applicative, STATE(156), 1, sym_infix_u_op_5, - STATE(325), 1, + STATE(322), 1, sym_type_builtin, - STATE(333), 1, + STATE(330), 1, sym_record_operand, STATE(356), 1, sym_quoted_enum_tag, - STATE(537), 1, + STATE(542), 1, sym_infix_expr, ACTIONS(263), 2, sym_ident, @@ -21668,13 +21740,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(289), 2, anon_sym_true, anon_sym_false, - STATE(334), 2, + STATE(331), 2, sym_record_operation_chain, sym_atom, STATE(417), 2, sym_str_chunks_single, sym_str_chunks_multi, - STATE(439), 3, + STATE(440), 3, sym_match_expr, sym_type_array, sym_enum_variant, @@ -21683,89 +21755,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - STATE(321), 5, + STATE(318), 5, sym_uni_record, sym_bool, sym_str_chunks, sym_builtin, sym_type_atom, - [20278] = 31, + [20385] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(5), 1, + ACTIONS(41), 1, + anon_sym_BANG, + ACTIONS(261), 1, sym_num_literal, - ACTIONS(9), 1, + ACTIONS(265), 1, sym_raw_enum_tag, - ACTIONS(15), 1, + ACTIONS(269), 1, anon_sym_match, - ACTIONS(17), 1, + ACTIONS(271), 1, anon_sym_LBRACE, - ACTIONS(23), 1, + ACTIONS(277), 1, anon_sym_import, - ACTIONS(25), 1, + ACTIONS(279), 1, anon_sym_Array, - ACTIONS(29), 1, + ACTIONS(283), 1, anon_sym_LPAREN, - ACTIONS(31), 1, + ACTIONS(285), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(287), 1, anon_sym__, - ACTIONS(37), 1, + ACTIONS(291), 1, anon_sym_PERCENT, - ACTIONS(39), 1, + ACTIONS(293), 1, anon_sym_DASH, - ACTIONS(41), 1, - anon_sym_BANG, - ACTIONS(43), 1, + ACTIONS(295), 1, anon_sym_LBRACK_PIPE, - ACTIONS(45), 1, + ACTIONS(297), 1, sym_multstr_start, - ACTIONS(47), 1, + ACTIONS(299), 1, sym__str_start, - ACTIONS(49), 1, + ACTIONS(301), 1, sym_quoted_enum_tag_start, - STATE(80), 1, + STATE(72), 1, sym_enum_tag, STATE(86), 1, sym_applicative, - STATE(185), 1, + STATE(156), 1, sym_infix_u_op_5, - STATE(225), 1, - sym_quoted_enum_tag, - STATE(240), 1, + STATE(322), 1, sym_type_builtin, - STATE(252), 1, + STATE(330), 1, sym_record_operand, - STATE(516), 1, + STATE(356), 1, + sym_quoted_enum_tag, + STATE(543), 1, sym_infix_expr, - ACTIONS(7), 2, + ACTIONS(263), 2, sym_ident, anon_sym_null, - ACTIONS(35), 2, + ACTIONS(289), 2, anon_sym_true, anon_sym_false, - STATE(256), 2, + STATE(331), 2, sym_record_operation_chain, sym_atom, - STATE(264), 2, + STATE(417), 2, sym_str_chunks_single, sym_str_chunks_multi, - STATE(456), 3, + STATE(440), 3, sym_match_expr, sym_type_array, sym_enum_variant, - ACTIONS(27), 4, + ACTIONS(281), 4, anon_sym_Dyn, anon_sym_Number, anon_sym_Bool, anon_sym_String, - STATE(366), 5, + STATE(318), 5, sym_uni_record, sym_bool, sym_str_chunks, sym_builtin, sym_type_atom, - [20385] = 31, + [20492] = 31, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -21800,19 +21872,19 @@ static const uint16_t ts_small_parse_table[] = { sym__str_start, ACTIONS(49), 1, sym_quoted_enum_tag_start, - STATE(80), 1, + STATE(81), 1, sym_enum_tag, - STATE(86), 1, + STATE(84), 1, sym_applicative, - STATE(185), 1, + STATE(186), 1, sym_infix_u_op_5, STATE(225), 1, sym_quoted_enum_tag, STATE(240), 1, sym_type_builtin, - STATE(252), 1, + STATE(251), 1, sym_record_operand, - STATE(514), 1, + STATE(530), 1, sym_infix_expr, ACTIONS(7), 2, sym_ident, @@ -21823,7 +21895,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(256), 2, sym_record_operation_chain, sym_atom, - STATE(264), 2, + STATE(266), 2, sym_str_chunks_single, sym_str_chunks_multi, STATE(456), 3, @@ -21841,7 +21913,7 @@ static const uint16_t ts_small_parse_table[] = { sym_str_chunks, sym_builtin, sym_type_atom, - [20492] = 31, + [20599] = 31, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -21876,17 +21948,17 @@ static const uint16_t ts_small_parse_table[] = { sym__str_start, ACTIONS(49), 1, sym_quoted_enum_tag_start, - STATE(80), 1, + STATE(81), 1, sym_enum_tag, - STATE(86), 1, + STATE(84), 1, sym_applicative, - STATE(185), 1, + STATE(186), 1, sym_infix_u_op_5, STATE(225), 1, sym_quoted_enum_tag, STATE(240), 1, sym_type_builtin, - STATE(252), 1, + STATE(251), 1, sym_record_operand, STATE(513), 1, sym_infix_expr, @@ -21899,7 +21971,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(256), 2, sym_record_operation_chain, sym_atom, - STATE(264), 2, + STATE(266), 2, sym_str_chunks_single, sym_str_chunks_multi, STATE(456), 3, @@ -21917,7 +21989,7 @@ static const uint16_t ts_small_parse_table[] = { sym_str_chunks, sym_builtin, sym_type_atom, - [20599] = 31, + [20706] = 31, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -21952,19 +22024,19 @@ static const uint16_t ts_small_parse_table[] = { sym__str_start, ACTIONS(49), 1, sym_quoted_enum_tag_start, - STATE(80), 1, + STATE(81), 1, sym_enum_tag, - STATE(86), 1, + STATE(84), 1, sym_applicative, - STATE(185), 1, + STATE(186), 1, sym_infix_u_op_5, STATE(225), 1, sym_quoted_enum_tag, STATE(240), 1, sym_type_builtin, - STATE(252), 1, + STATE(251), 1, sym_record_operand, - STATE(527), 1, + STATE(529), 1, sym_infix_expr, ACTIONS(7), 2, sym_ident, @@ -21975,7 +22047,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(256), 2, sym_record_operation_chain, sym_atom, - STATE(264), 2, + STATE(266), 2, sym_str_chunks_single, sym_str_chunks_multi, STATE(456), 3, @@ -21993,7 +22065,7 @@ static const uint16_t ts_small_parse_table[] = { sym_str_chunks, sym_builtin, sym_type_atom, - [20706] = 31, + [20813] = 31, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -22028,19 +22100,19 @@ static const uint16_t ts_small_parse_table[] = { sym__str_start, ACTIONS(49), 1, sym_quoted_enum_tag_start, - STATE(80), 1, + STATE(81), 1, sym_enum_tag, - STATE(86), 1, + STATE(84), 1, sym_applicative, - STATE(185), 1, + STATE(186), 1, sym_infix_u_op_5, STATE(225), 1, sym_quoted_enum_tag, STATE(240), 1, sym_type_builtin, - STATE(252), 1, + STATE(251), 1, sym_record_operand, - STATE(512), 1, + STATE(528), 1, sym_infix_expr, ACTIONS(7), 2, sym_ident, @@ -22051,7 +22123,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(256), 2, sym_record_operation_chain, sym_atom, - STATE(264), 2, + STATE(266), 2, sym_str_chunks_single, sym_str_chunks_multi, STATE(456), 3, @@ -22069,7 +22141,7 @@ static const uint16_t ts_small_parse_table[] = { sym_str_chunks, sym_builtin, sym_type_atom, - [20813] = 31, + [20920] = 31, ACTIONS(3), 1, sym_comment, ACTIONS(41), 1, @@ -22104,19 +22176,19 @@ static const uint16_t ts_small_parse_table[] = { sym__str_start, ACTIONS(259), 1, sym_quoted_enum_tag_start, - STATE(76), 1, + STATE(80), 1, sym_enum_tag, - STATE(83), 1, + STATE(85), 1, sym_applicative, - STATE(217), 1, + STATE(218), 1, sym_infix_u_op_5, - STATE(254), 1, + STATE(255), 1, sym_record_operand, - STATE(257), 1, + STATE(258), 1, sym_type_builtin, - STATE(331), 1, + STATE(336), 1, sym_quoted_enum_tag, - STATE(567), 1, + STATE(517), 1, sym_infix_expr, ACTIONS(221), 2, sym_ident, @@ -22127,7 +22199,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(253), 2, sym_record_operation_chain, sym_atom, - STATE(332), 2, + STATE(329), 2, sym_str_chunks_single, sym_str_chunks_multi, STATE(454), 3, @@ -22145,7 +22217,7 @@ static const uint16_t ts_small_parse_table[] = { sym_str_chunks, sym_builtin, sym_type_atom, - [20920] = 31, + [21027] = 31, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -22180,19 +22252,19 @@ static const uint16_t ts_small_parse_table[] = { sym__str_start, ACTIONS(49), 1, sym_quoted_enum_tag_start, - STATE(80), 1, + STATE(81), 1, sym_enum_tag, - STATE(86), 1, + STATE(84), 1, sym_applicative, - STATE(185), 1, + STATE(186), 1, sym_infix_u_op_5, STATE(225), 1, sym_quoted_enum_tag, STATE(240), 1, sym_type_builtin, - STATE(252), 1, + STATE(251), 1, sym_record_operand, - STATE(524), 1, + STATE(527), 1, sym_infix_expr, ACTIONS(7), 2, sym_ident, @@ -22203,7 +22275,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(256), 2, sym_record_operation_chain, sym_atom, - STATE(264), 2, + STATE(266), 2, sym_str_chunks_single, sym_str_chunks_multi, STATE(456), 3, @@ -22221,7 +22293,7 @@ static const uint16_t ts_small_parse_table[] = { sym_str_chunks, sym_builtin, sym_type_atom, - [21027] = 31, + [21134] = 31, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -22256,19 +22328,19 @@ static const uint16_t ts_small_parse_table[] = { sym__str_start, ACTIONS(49), 1, sym_quoted_enum_tag_start, - STATE(80), 1, + STATE(81), 1, sym_enum_tag, - STATE(86), 1, + STATE(84), 1, sym_applicative, - STATE(185), 1, + STATE(186), 1, sym_infix_u_op_5, STATE(225), 1, sym_quoted_enum_tag, STATE(240), 1, sym_type_builtin, - STATE(252), 1, + STATE(251), 1, sym_record_operand, - STATE(523), 1, + STATE(526), 1, sym_infix_expr, ACTIONS(7), 2, sym_ident, @@ -22279,7 +22351,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(256), 2, sym_record_operation_chain, sym_atom, - STATE(264), 2, + STATE(266), 2, sym_str_chunks_single, sym_str_chunks_multi, STATE(456), 3, @@ -22297,7 +22369,7 @@ static const uint16_t ts_small_parse_table[] = { sym_str_chunks, sym_builtin, sym_type_atom, - [21134] = 31, + [21241] = 31, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -22332,19 +22404,19 @@ static const uint16_t ts_small_parse_table[] = { sym__str_start, ACTIONS(49), 1, sym_quoted_enum_tag_start, - STATE(80), 1, + STATE(81), 1, sym_enum_tag, - STATE(86), 1, + STATE(84), 1, sym_applicative, - STATE(185), 1, + STATE(186), 1, sym_infix_u_op_5, STATE(225), 1, sym_quoted_enum_tag, STATE(240), 1, sym_type_builtin, - STATE(252), 1, + STATE(251), 1, sym_record_operand, - STATE(522), 1, + STATE(525), 1, sym_infix_expr, ACTIONS(7), 2, sym_ident, @@ -22355,7 +22427,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(256), 2, sym_record_operation_chain, sym_atom, - STATE(264), 2, + STATE(266), 2, sym_str_chunks_single, sym_str_chunks_multi, STATE(456), 3, @@ -22373,7 +22445,83 @@ static const uint16_t ts_small_parse_table[] = { sym_str_chunks, sym_builtin, sym_type_atom, - [21241] = 31, + [21348] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_num_literal, + ACTIONS(9), 1, + sym_raw_enum_tag, + ACTIONS(15), 1, + anon_sym_match, + ACTIONS(17), 1, + anon_sym_LBRACE, + ACTIONS(23), 1, + anon_sym_import, + ACTIONS(25), 1, + anon_sym_Array, + ACTIONS(29), 1, + anon_sym_LPAREN, + ACTIONS(31), 1, + anon_sym_LBRACK, + ACTIONS(33), 1, + anon_sym__, + ACTIONS(37), 1, + anon_sym_PERCENT, + ACTIONS(39), 1, + anon_sym_DASH, + ACTIONS(41), 1, + anon_sym_BANG, + ACTIONS(43), 1, + anon_sym_LBRACK_PIPE, + ACTIONS(45), 1, + sym_multstr_start, + ACTIONS(47), 1, + sym__str_start, + ACTIONS(49), 1, + sym_quoted_enum_tag_start, + STATE(81), 1, + sym_enum_tag, + STATE(84), 1, + sym_applicative, + STATE(186), 1, + sym_infix_u_op_5, + STATE(225), 1, + sym_quoted_enum_tag, + STATE(240), 1, + sym_type_builtin, + STATE(251), 1, + sym_record_operand, + STATE(534), 1, + sym_infix_expr, + ACTIONS(7), 2, + sym_ident, + anon_sym_null, + ACTIONS(35), 2, + anon_sym_true, + anon_sym_false, + STATE(256), 2, + sym_record_operation_chain, + sym_atom, + STATE(266), 2, + sym_str_chunks_single, + sym_str_chunks_multi, + STATE(456), 3, + sym_match_expr, + sym_type_array, + sym_enum_variant, + ACTIONS(27), 4, + anon_sym_Dyn, + anon_sym_Number, + anon_sym_Bool, + anon_sym_String, + STATE(366), 5, + sym_uni_record, + sym_bool, + sym_str_chunks, + sym_builtin, + sym_type_atom, + [21455] = 31, ACTIONS(3), 1, sym_comment, ACTIONS(41), 1, @@ -22412,15 +22560,15 @@ static const uint16_t ts_small_parse_table[] = { sym_enum_tag, STATE(9), 1, sym_applicative, - STATE(95), 1, + STATE(87), 1, sym_record_operand, - STATE(99), 1, - sym_type_builtin, - STATE(123), 1, + STATE(97), 1, sym_quoted_enum_tag, + STATE(98), 1, + sym_type_builtin, STATE(158), 1, sym_infix_u_op_5, - STATE(463), 1, + STATE(464), 1, sym_infix_expr, ACTIONS(53), 2, sym_ident, @@ -22431,10 +22579,10 @@ static const uint16_t ts_small_parse_table[] = { STATE(94), 2, sym_record_operation_chain, sym_atom, - STATE(98), 2, + STATE(96), 2, sym_str_chunks_single, sym_str_chunks_multi, - STATE(149), 3, + STATE(150), 3, sym_match_expr, sym_type_array, sym_enum_variant, @@ -22443,13 +22591,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - STATE(102), 5, + STATE(88), 5, sym_uni_record, sym_bool, sym_str_chunks, sym_builtin, sym_type_atom, - [21348] = 31, + [21562] = 31, ACTIONS(3), 1, sym_comment, ACTIONS(41), 1, @@ -22484,19 +22632,19 @@ static const uint16_t ts_small_parse_table[] = { sym__str_start, ACTIONS(301), 1, sym_quoted_enum_tag_start, - STATE(75), 1, + STATE(72), 1, sym_enum_tag, - STATE(84), 1, + STATE(86), 1, sym_applicative, STATE(156), 1, sym_infix_u_op_5, - STATE(325), 1, + STATE(322), 1, sym_type_builtin, - STATE(333), 1, + STATE(330), 1, sym_record_operand, STATE(356), 1, sym_quoted_enum_tag, - STATE(543), 1, + STATE(547), 1, sym_infix_expr, ACTIONS(263), 2, sym_ident, @@ -22504,13 +22652,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(289), 2, anon_sym_true, anon_sym_false, - STATE(334), 2, + STATE(331), 2, sym_record_operation_chain, sym_atom, STATE(417), 2, sym_str_chunks_single, sym_str_chunks_multi, - STATE(439), 3, + STATE(440), 3, sym_match_expr, sym_type_array, sym_enum_variant, @@ -22519,13 +22667,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - STATE(321), 5, + STATE(318), 5, sym_uni_record, sym_bool, sym_str_chunks, sym_builtin, sym_type_atom, - [21455] = 31, + [21669] = 31, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -22560,19 +22708,19 @@ static const uint16_t ts_small_parse_table[] = { sym__str_start, ACTIONS(49), 1, sym_quoted_enum_tag_start, - STATE(80), 1, + STATE(81), 1, sym_enum_tag, - STATE(86), 1, + STATE(84), 1, sym_applicative, - STATE(185), 1, + STATE(186), 1, sym_infix_u_op_5, STATE(225), 1, sym_quoted_enum_tag, STATE(240), 1, sym_type_builtin, - STATE(252), 1, + STATE(251), 1, sym_record_operand, - STATE(517), 1, + STATE(521), 1, sym_infix_expr, ACTIONS(7), 2, sym_ident, @@ -22583,7 +22731,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(256), 2, sym_record_operation_chain, sym_atom, - STATE(264), 2, + STATE(266), 2, sym_str_chunks_single, sym_str_chunks_multi, STATE(456), 3, @@ -22601,83 +22749,7 @@ static const uint16_t ts_small_parse_table[] = { sym_str_chunks, sym_builtin, sym_type_atom, - [21562] = 31, - ACTIONS(3), 1, - sym_comment, - ACTIONS(41), 1, - anon_sym_BANG, - ACTIONS(261), 1, - sym_num_literal, - ACTIONS(265), 1, - sym_raw_enum_tag, - ACTIONS(269), 1, - anon_sym_match, - ACTIONS(271), 1, - anon_sym_LBRACE, - ACTIONS(277), 1, - anon_sym_import, - ACTIONS(279), 1, - anon_sym_Array, - ACTIONS(283), 1, - anon_sym_LPAREN, - ACTIONS(285), 1, - anon_sym_LBRACK, - ACTIONS(287), 1, - anon_sym__, - ACTIONS(291), 1, - anon_sym_PERCENT, - ACTIONS(293), 1, - anon_sym_DASH, - ACTIONS(295), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(297), 1, - sym_multstr_start, - ACTIONS(299), 1, - sym__str_start, - ACTIONS(301), 1, - sym_quoted_enum_tag_start, - STATE(75), 1, - sym_enum_tag, - STATE(84), 1, - sym_applicative, - STATE(156), 1, - sym_infix_u_op_5, - STATE(325), 1, - sym_type_builtin, - STATE(333), 1, - sym_record_operand, - STATE(356), 1, - sym_quoted_enum_tag, - STATE(545), 1, - sym_infix_expr, - ACTIONS(263), 2, - sym_ident, - anon_sym_null, - ACTIONS(289), 2, - anon_sym_true, - anon_sym_false, - STATE(334), 2, - sym_record_operation_chain, - sym_atom, - STATE(417), 2, - sym_str_chunks_single, - sym_str_chunks_multi, - STATE(439), 3, - sym_match_expr, - sym_type_array, - sym_enum_variant, - ACTIONS(281), 4, - anon_sym_Dyn, - anon_sym_Number, - anon_sym_Bool, - anon_sym_String, - STATE(321), 5, - sym_uni_record, - sym_bool, - sym_str_chunks, - sym_builtin, - sym_type_atom, - [21669] = 31, + [21776] = 31, ACTIONS(3), 1, sym_comment, ACTIONS(41), 1, @@ -22712,19 +22784,19 @@ static const uint16_t ts_small_parse_table[] = { sym__str_start, ACTIONS(301), 1, sym_quoted_enum_tag_start, - STATE(75), 1, + STATE(72), 1, sym_enum_tag, - STATE(84), 1, + STATE(86), 1, sym_applicative, STATE(156), 1, sym_infix_u_op_5, - STATE(325), 1, + STATE(322), 1, sym_type_builtin, - STATE(333), 1, + STATE(330), 1, sym_record_operand, STATE(356), 1, sym_quoted_enum_tag, - STATE(548), 1, + STATE(560), 1, sym_infix_expr, ACTIONS(263), 2, sym_ident, @@ -22732,13 +22804,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(289), 2, anon_sym_true, anon_sym_false, - STATE(334), 2, + STATE(331), 2, sym_record_operation_chain, sym_atom, STATE(417), 2, sym_str_chunks_single, sym_str_chunks_multi, - STATE(439), 3, + STATE(440), 3, sym_match_expr, sym_type_array, sym_enum_variant, @@ -22747,13 +22819,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - STATE(321), 5, + STATE(318), 5, sym_uni_record, sym_bool, sym_str_chunks, sym_builtin, sym_type_atom, - [21776] = 31, + [21883] = 31, ACTIONS(3), 1, sym_comment, ACTIONS(41), 1, @@ -22788,19 +22860,19 @@ static const uint16_t ts_small_parse_table[] = { sym__str_start, ACTIONS(301), 1, sym_quoted_enum_tag_start, - STATE(75), 1, + STATE(72), 1, sym_enum_tag, - STATE(84), 1, + STATE(86), 1, sym_applicative, STATE(156), 1, sym_infix_u_op_5, - STATE(325), 1, + STATE(322), 1, sym_type_builtin, - STATE(333), 1, + STATE(330), 1, sym_record_operand, STATE(356), 1, sym_quoted_enum_tag, - STATE(553), 1, + STATE(562), 1, sym_infix_expr, ACTIONS(263), 2, sym_ident, @@ -22808,13 +22880,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(289), 2, anon_sym_true, anon_sym_false, - STATE(334), 2, + STATE(331), 2, sym_record_operation_chain, sym_atom, STATE(417), 2, sym_str_chunks_single, sym_str_chunks_multi, - STATE(439), 3, + STATE(440), 3, sym_match_expr, sym_type_array, sym_enum_variant, @@ -22823,13 +22895,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - STATE(321), 5, + STATE(318), 5, sym_uni_record, sym_bool, sym_str_chunks, sym_builtin, sym_type_atom, - [21883] = 31, + [21990] = 31, ACTIONS(3), 1, sym_comment, ACTIONS(41), 1, @@ -22864,19 +22936,19 @@ static const uint16_t ts_small_parse_table[] = { sym__str_start, ACTIONS(259), 1, sym_quoted_enum_tag_start, - STATE(76), 1, + STATE(80), 1, sym_enum_tag, - STATE(83), 1, + STATE(85), 1, sym_applicative, - STATE(217), 1, + STATE(218), 1, sym_infix_u_op_5, - STATE(254), 1, + STATE(255), 1, sym_record_operand, - STATE(257), 1, + STATE(258), 1, sym_type_builtin, - STATE(331), 1, + STATE(336), 1, sym_quoted_enum_tag, - STATE(511), 1, + STATE(549), 1, sym_infix_expr, ACTIONS(221), 2, sym_ident, @@ -22887,7 +22959,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(253), 2, sym_record_operation_chain, sym_atom, - STATE(332), 2, + STATE(329), 2, sym_str_chunks_single, sym_str_chunks_multi, STATE(454), 3, @@ -22905,7 +22977,7 @@ static const uint16_t ts_small_parse_table[] = { sym_str_chunks, sym_builtin, sym_type_atom, - [21990] = 31, + [22097] = 31, ACTIONS(3), 1, sym_comment, ACTIONS(41), 1, @@ -22940,19 +23012,19 @@ static const uint16_t ts_small_parse_table[] = { sym__str_start, ACTIONS(301), 1, sym_quoted_enum_tag_start, - STATE(75), 1, + STATE(72), 1, sym_enum_tag, - STATE(84), 1, + STATE(86), 1, sym_applicative, STATE(156), 1, sym_infix_u_op_5, - STATE(325), 1, + STATE(322), 1, sym_type_builtin, - STATE(333), 1, + STATE(330), 1, sym_record_operand, STATE(356), 1, sym_quoted_enum_tag, - STATE(554), 1, + STATE(565), 1, sym_infix_expr, ACTIONS(263), 2, sym_ident, @@ -22960,13 +23032,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(289), 2, anon_sym_true, anon_sym_false, - STATE(334), 2, + STATE(331), 2, sym_record_operation_chain, sym_atom, STATE(417), 2, sym_str_chunks_single, sym_str_chunks_multi, - STATE(439), 3, + STATE(440), 3, sym_match_expr, sym_type_array, sym_enum_variant, @@ -22975,13 +23047,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - STATE(321), 5, + STATE(318), 5, sym_uni_record, sym_bool, sym_str_chunks, sym_builtin, sym_type_atom, - [22097] = 31, + [22204] = 31, ACTIONS(3), 1, sym_comment, ACTIONS(41), 1, @@ -23020,12 +23092,12 @@ static const uint16_t ts_small_parse_table[] = { sym_enum_tag, STATE(9), 1, sym_applicative, - STATE(95), 1, + STATE(87), 1, sym_record_operand, - STATE(99), 1, - sym_type_builtin, - STATE(123), 1, + STATE(97), 1, sym_quoted_enum_tag, + STATE(98), 1, + sym_type_builtin, STATE(158), 1, sym_infix_u_op_5, STATE(465), 1, @@ -23039,10 +23111,10 @@ static const uint16_t ts_small_parse_table[] = { STATE(94), 2, sym_record_operation_chain, sym_atom, - STATE(98), 2, + STATE(96), 2, sym_str_chunks_single, sym_str_chunks_multi, - STATE(149), 3, + STATE(150), 3, sym_match_expr, sym_type_array, sym_enum_variant, @@ -23051,83 +23123,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - STATE(102), 5, - sym_uni_record, - sym_bool, - sym_str_chunks, - sym_builtin, - sym_type_atom, - [22204] = 31, - ACTIONS(3), 1, - sym_comment, - ACTIONS(41), 1, - anon_sym_BANG, - ACTIONS(219), 1, - sym_num_literal, - ACTIONS(223), 1, - sym_raw_enum_tag, - ACTIONS(227), 1, - anon_sym_match, - ACTIONS(229), 1, - anon_sym_LBRACE, - ACTIONS(235), 1, - anon_sym_import, - ACTIONS(237), 1, - anon_sym_Array, - ACTIONS(241), 1, - anon_sym_LPAREN, - ACTIONS(243), 1, - anon_sym_LBRACK, - ACTIONS(245), 1, - anon_sym__, - ACTIONS(249), 1, - anon_sym_PERCENT, - ACTIONS(251), 1, - anon_sym_DASH, - ACTIONS(253), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(255), 1, - sym_multstr_start, - ACTIONS(257), 1, - sym__str_start, - ACTIONS(259), 1, - sym_quoted_enum_tag_start, - STATE(76), 1, - sym_enum_tag, - STATE(83), 1, - sym_applicative, - STATE(217), 1, - sym_infix_u_op_5, - STATE(254), 1, - sym_record_operand, - STATE(257), 1, - sym_type_builtin, - STATE(331), 1, - sym_quoted_enum_tag, - STATE(557), 1, - sym_infix_expr, - ACTIONS(221), 2, - sym_ident, - anon_sym_null, - ACTIONS(247), 2, - anon_sym_true, - anon_sym_false, - STATE(253), 2, - sym_record_operation_chain, - sym_atom, - STATE(332), 2, - sym_str_chunks_single, - sym_str_chunks_multi, - STATE(454), 3, - sym_match_expr, - sym_type_array, - sym_enum_variant, - ACTIONS(239), 4, - anon_sym_Dyn, - anon_sym_Number, - anon_sym_Bool, - anon_sym_String, - STATE(260), 5, + STATE(88), 5, sym_uni_record, sym_bool, sym_str_chunks, @@ -23138,7 +23134,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(551), 1, anon_sym_DOT, - ACTIONS(405), 17, + ACTIONS(509), 17, sym_ident, anon_sym_PIPE, anon_sym_in, @@ -23156,7 +23152,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - ACTIONS(403), 22, + ACTIONS(507), 22, sym_multstr_start, sym__str_start, sym_quoted_enum_tag_start, @@ -23182,7 +23178,7 @@ static const uint16_t ts_small_parse_table[] = { [22361] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(441), 18, + ACTIONS(417), 18, sym_ident, anon_sym_PIPE, anon_sym_then, @@ -23201,7 +23197,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - ACTIONS(439), 22, + ACTIONS(415), 22, sym_multstr_start, sym__str_start, sym_quoted_enum_tag_start, @@ -23227,7 +23223,7 @@ static const uint16_t ts_small_parse_table[] = { [22409] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(501), 17, + ACTIONS(493), 17, sym_ident, anon_sym_PIPE, anon_sym_DOT, @@ -23245,7 +23241,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - ACTIONS(499), 23, + ACTIONS(491), 23, sym_multstr_start, sym__str_start, sym_quoted_enum_tag_start, @@ -23272,9 +23268,10 @@ static const uint16_t ts_small_parse_table[] = { [22457] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(381), 17, + ACTIONS(417), 18, sym_ident, anon_sym_PIPE, + anon_sym_in, anon_sym_DOT, anon_sym_Dyn, anon_sym_null, @@ -23290,11 +23287,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - ACTIONS(379), 23, + ACTIONS(415), 22, sym_multstr_start, sym__str_start, sym_quoted_enum_tag_start, - ts_builtin_sym_end, sym_num_literal, sym_raw_enum_tag, anon_sym_COLON, @@ -23317,7 +23313,7 @@ static const uint16_t ts_small_parse_table[] = { [22505] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(505), 17, + ACTIONS(401), 17, sym_ident, anon_sym_PIPE, anon_sym_DOT, @@ -23335,7 +23331,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - ACTIONS(503), 23, + ACTIONS(399), 23, sym_multstr_start, sym__str_start, sym_quoted_enum_tag_start, @@ -23362,7 +23358,7 @@ static const uint16_t ts_small_parse_table[] = { [22553] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(433), 18, + ACTIONS(429), 18, sym_ident, anon_sym_PIPE, anon_sym_in, @@ -23381,7 +23377,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - ACTIONS(431), 22, + ACTIONS(427), 22, sym_multstr_start, sym__str_start, sym_quoted_enum_tag_start, @@ -23407,7 +23403,7 @@ static const uint16_t ts_small_parse_table[] = { [22601] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(429), 18, + ACTIONS(425), 18, sym_ident, anon_sym_PIPE, anon_sym_in, @@ -23426,7 +23422,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - ACTIONS(427), 22, + ACTIONS(423), 22, sym_multstr_start, sym__str_start, sym_quoted_enum_tag_start, @@ -23452,7 +23448,7 @@ static const uint16_t ts_small_parse_table[] = { [22649] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(509), 18, + ACTIONS(501), 18, sym_ident, anon_sym_PIPE, anon_sym_in, @@ -23471,7 +23467,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - ACTIONS(507), 22, + ACTIONS(499), 22, sym_multstr_start, sym__str_start, sym_quoted_enum_tag_start, @@ -23497,7 +23493,7 @@ static const uint16_t ts_small_parse_table[] = { [22697] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(469), 18, + ACTIONS(465), 18, sym_ident, anon_sym_PIPE, anon_sym_in, @@ -23516,7 +23512,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - ACTIONS(467), 22, + ACTIONS(463), 22, sym_multstr_start, sym__str_start, sym_quoted_enum_tag_start, @@ -23542,7 +23538,7 @@ static const uint16_t ts_small_parse_table[] = { [22745] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(389), 18, + ACTIONS(385), 18, sym_ident, anon_sym_PIPE, anon_sym_in, @@ -23561,7 +23557,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - ACTIONS(387), 22, + ACTIONS(383), 22, sym_multstr_start, sym__str_start, sym_quoted_enum_tag_start, @@ -23587,7 +23583,7 @@ static const uint16_t ts_small_parse_table[] = { [22793] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(417), 17, + ACTIONS(409), 17, sym_ident, anon_sym_PIPE, anon_sym_DOT, @@ -23605,7 +23601,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - ACTIONS(415), 23, + ACTIONS(407), 23, sym_multstr_start, sym__str_start, sym_quoted_enum_tag_start, @@ -23632,7 +23628,7 @@ static const uint16_t ts_small_parse_table[] = { [22841] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(381), 18, + ACTIONS(493), 18, sym_ident, anon_sym_PIPE, anon_sym_in, @@ -23651,7 +23647,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - ACTIONS(379), 22, + ACTIONS(491), 22, sym_multstr_start, sym__str_start, sym_quoted_enum_tag_start, @@ -23677,7 +23673,7 @@ static const uint16_t ts_small_parse_table[] = { [22889] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(501), 18, + ACTIONS(497), 18, sym_ident, anon_sym_PIPE, anon_sym_in, @@ -23696,7 +23692,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - ACTIONS(499), 22, + ACTIONS(495), 22, sym_multstr_start, sym__str_start, sym_quoted_enum_tag_start, @@ -23722,7 +23718,7 @@ static const uint16_t ts_small_parse_table[] = { [22937] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(517), 18, + ACTIONS(505), 18, sym_ident, anon_sym_PIPE, anon_sym_in, @@ -23741,7 +23737,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - ACTIONS(515), 22, + ACTIONS(503), 22, sym_multstr_start, sym__str_start, sym_quoted_enum_tag_start, @@ -23767,7 +23763,7 @@ static const uint16_t ts_small_parse_table[] = { [22985] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(493), 18, + ACTIONS(517), 18, sym_ident, anon_sym_PIPE, anon_sym_in, @@ -23786,7 +23782,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - ACTIONS(491), 22, + ACTIONS(515), 22, sym_multstr_start, sym__str_start, sym_quoted_enum_tag_start, @@ -23812,7 +23808,7 @@ static const uint16_t ts_small_parse_table[] = { [23033] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(367), 18, + ACTIONS(393), 18, sym_ident, anon_sym_PIPE, anon_sym_in, @@ -23831,7 +23827,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - ACTIONS(365), 22, + ACTIONS(391), 22, sym_multstr_start, sym__str_start, sym_quoted_enum_tag_start, @@ -23857,7 +23853,7 @@ static const uint16_t ts_small_parse_table[] = { [23081] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(461), 18, + ACTIONS(473), 18, sym_ident, anon_sym_PIPE, anon_sym_in, @@ -23876,7 +23872,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - ACTIONS(459), 22, + ACTIONS(471), 22, sym_multstr_start, sym__str_start, sym_quoted_enum_tag_start, @@ -23902,7 +23898,7 @@ static const uint16_t ts_small_parse_table[] = { [23129] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(437), 18, + ACTIONS(441), 18, sym_ident, anon_sym_PIPE, anon_sym_in, @@ -23921,7 +23917,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - ACTIONS(435), 22, + ACTIONS(439), 22, sym_multstr_start, sym__str_start, sym_quoted_enum_tag_start, @@ -23947,7 +23943,7 @@ static const uint16_t ts_small_parse_table[] = { [23177] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(425), 18, + ACTIONS(437), 18, sym_ident, anon_sym_PIPE, anon_sym_in, @@ -23966,7 +23962,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - ACTIONS(423), 22, + ACTIONS(435), 22, sym_multstr_start, sym__str_start, sym_quoted_enum_tag_start, @@ -23992,7 +23988,7 @@ static const uint16_t ts_small_parse_table[] = { [23225] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(413), 17, + ACTIONS(405), 17, sym_ident, anon_sym_PIPE, anon_sym_DOT, @@ -24010,7 +24006,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - ACTIONS(411), 23, + ACTIONS(403), 23, sym_multstr_start, sym__str_start, sym_quoted_enum_tag_start, @@ -24037,7 +24033,7 @@ static const uint16_t ts_small_parse_table[] = { [23273] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(457), 17, + ACTIONS(453), 17, sym_ident, anon_sym_PIPE, anon_sym_DOT, @@ -24055,7 +24051,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - ACTIONS(455), 23, + ACTIONS(451), 23, sym_multstr_start, sym__str_start, sym_interpolation_end, @@ -24082,7 +24078,7 @@ static const uint16_t ts_small_parse_table[] = { [23321] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(497), 17, + ACTIONS(413), 17, sym_ident, anon_sym_PIPE, anon_sym_DOT, @@ -24100,7 +24096,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - ACTIONS(495), 23, + ACTIONS(411), 23, sym_multstr_start, sym__str_start, sym_interpolation_end, @@ -24129,7 +24125,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(551), 1, anon_sym_DOT, - ACTIONS(421), 17, + ACTIONS(433), 17, sym_ident, anon_sym_PIPE, anon_sym_in, @@ -24147,7 +24143,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - ACTIONS(419), 22, + ACTIONS(431), 22, sym_multstr_start, sym__str_start, sym_quoted_enum_tag_start, @@ -24173,7 +24169,7 @@ static const uint16_t ts_small_parse_table[] = { [23419] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(477), 18, + ACTIONS(369), 18, sym_ident, anon_sym_PIPE, anon_sym_in, @@ -24192,7 +24188,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - ACTIONS(475), 22, + ACTIONS(367), 22, sym_multstr_start, sym__str_start, sym_quoted_enum_tag_start, @@ -24218,7 +24214,7 @@ static const uint16_t ts_small_parse_table[] = { [23467] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(371), 18, + ACTIONS(373), 18, sym_ident, anon_sym_PIPE, anon_sym_in, @@ -24237,7 +24233,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - ACTIONS(369), 22, + ACTIONS(371), 22, sym_multstr_start, sym__str_start, sym_quoted_enum_tag_start, @@ -24265,7 +24261,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(551), 1, anon_sym_DOT, - ACTIONS(375), 17, + ACTIONS(377), 17, sym_ident, anon_sym_PIPE, anon_sym_in, @@ -24283,7 +24279,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - ACTIONS(373), 22, + ACTIONS(375), 22, sym_multstr_start, sym__str_start, sym_quoted_enum_tag_start, @@ -24309,7 +24305,7 @@ static const uint16_t ts_small_parse_table[] = { [23565] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(465), 17, + ACTIONS(481), 17, sym_ident, anon_sym_PIPE, anon_sym_DOT, @@ -24327,7 +24323,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - ACTIONS(463), 23, + ACTIONS(479), 23, sym_multstr_start, sym__str_start, sym_quoted_enum_tag_start, @@ -24354,7 +24350,7 @@ static const uint16_t ts_small_parse_table[] = { [23613] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(385), 18, + ACTIONS(381), 18, sym_ident, anon_sym_PIPE, anon_sym_in, @@ -24373,7 +24369,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - ACTIONS(383), 22, + ACTIONS(379), 22, sym_multstr_start, sym__str_start, sym_quoted_enum_tag_start, @@ -24399,7 +24395,7 @@ static const uint16_t ts_small_parse_table[] = { [23661] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(473), 17, + ACTIONS(421), 17, sym_ident, anon_sym_PIPE, anon_sym_DOT, @@ -24417,7 +24413,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - ACTIONS(471), 23, + ACTIONS(419), 23, sym_multstr_start, sym__str_start, sym_interpolation_end, @@ -24444,7 +24440,7 @@ static const uint16_t ts_small_parse_table[] = { [23709] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(401), 17, + ACTIONS(477), 17, sym_ident, anon_sym_PIPE, anon_sym_DOT, @@ -24462,7 +24458,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - ACTIONS(399), 23, + ACTIONS(475), 23, sym_multstr_start, sym__str_start, sym_interpolation_end, @@ -24486,13 +24482,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_DASH_GT, anon_sym_LBRACK_PIPE, - [23757] = 3, + [23757] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(409), 17, + ACTIONS(553), 1, + anon_sym_DOT, + ACTIONS(363), 16, sym_ident, anon_sym_PIPE, - anon_sym_DOT, anon_sym_Dyn, anon_sym_null, anon_sym_LBRACK, @@ -24507,11 +24504,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - ACTIONS(407), 23, + ACTIONS(361), 23, sym_multstr_start, sym__str_start, - sym_interpolation_end, sym_quoted_enum_tag_start, + ts_builtin_sym_end, sym_num_literal, sym_raw_enum_tag, anon_sym_COLON, @@ -24531,14 +24528,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_DASH_GT, anon_sym_LBRACK_PIPE, - [23805] = 4, + [23807] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(553), 1, - anon_sym_DOT, - ACTIONS(397), 16, + ACTIONS(397), 17, sym_ident, anon_sym_PIPE, + anon_sym_DOT, anon_sym_Dyn, anon_sym_null, anon_sym_LBRACK, @@ -24556,8 +24552,8 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(395), 23, sym_multstr_start, sym__str_start, + sym_interpolation_end, sym_quoted_enum_tag_start, - ts_builtin_sym_end, sym_num_literal, sym_raw_enum_tag, anon_sym_COLON, @@ -24580,7 +24576,7 @@ static const uint16_t ts_small_parse_table[] = { [23855] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(393), 18, + ACTIONS(389), 18, sym_ident, anon_sym_PIPE, anon_sym_in, @@ -24599,7 +24595,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - ACTIONS(391), 22, + ACTIONS(387), 22, sym_multstr_start, sym__str_start, sym_quoted_enum_tag_start, @@ -24622,15 +24618,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_DASH_GT, anon_sym_LBRACK_PIPE, - [23903] = 4, + [23903] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(551), 1, - anon_sym_DOT, - ACTIONS(397), 17, + ACTIONS(385), 17, sym_ident, anon_sym_PIPE, - anon_sym_in, + anon_sym_DOT, anon_sym_Dyn, anon_sym_null, anon_sym_LBRACK, @@ -24645,10 +24639,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - ACTIONS(395), 22, + ACTIONS(383), 23, sym_multstr_start, sym__str_start, sym_quoted_enum_tag_start, + ts_builtin_sym_end, sym_num_literal, sym_raw_enum_tag, anon_sym_COLON, @@ -24668,13 +24663,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_DASH_GT, anon_sym_LBRACK_PIPE, - [23953] = 3, + [23951] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(389), 17, + ACTIONS(551), 1, + anon_sym_DOT, + ACTIONS(363), 17, sym_ident, anon_sym_PIPE, - anon_sym_DOT, + anon_sym_in, anon_sym_Dyn, anon_sym_null, anon_sym_LBRACK, @@ -24689,11 +24686,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - ACTIONS(387), 23, + ACTIONS(361), 22, sym_multstr_start, sym__str_start, sym_quoted_enum_tag_start, - ts_builtin_sym_end, sym_num_literal, sym_raw_enum_tag, anon_sym_COLON, @@ -24716,7 +24712,7 @@ static const uint16_t ts_small_parse_table[] = { [24001] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(393), 17, + ACTIONS(389), 17, sym_ident, anon_sym_PIPE, anon_sym_DOT, @@ -24734,7 +24730,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - ACTIONS(391), 23, + ACTIONS(387), 23, sym_multstr_start, sym__str_start, sym_quoted_enum_tag_start, @@ -24761,10 +24757,9 @@ static const uint16_t ts_small_parse_table[] = { [24049] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(413), 18, + ACTIONS(465), 17, sym_ident, anon_sym_PIPE, - anon_sym_in, anon_sym_DOT, anon_sym_Dyn, anon_sym_null, @@ -24780,10 +24775,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - ACTIONS(411), 22, + ACTIONS(463), 23, sym_multstr_start, sym__str_start, sym_quoted_enum_tag_start, + ts_builtin_sym_end, sym_num_literal, sym_raw_enum_tag, anon_sym_COLON, @@ -24806,7 +24802,7 @@ static const uint16_t ts_small_parse_table[] = { [24097] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(417), 18, + ACTIONS(405), 18, sym_ident, anon_sym_PIPE, anon_sym_in, @@ -24825,7 +24821,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - ACTIONS(415), 22, + ACTIONS(403), 22, sym_multstr_start, sym__str_start, sym_quoted_enum_tag_start, @@ -24851,9 +24847,10 @@ static const uint16_t ts_small_parse_table[] = { [24145] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(469), 17, + ACTIONS(409), 18, sym_ident, anon_sym_PIPE, + anon_sym_in, anon_sym_DOT, anon_sym_Dyn, anon_sym_null, @@ -24869,11 +24866,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - ACTIONS(467), 23, + ACTIONS(407), 22, sym_multstr_start, sym__str_start, sym_quoted_enum_tag_start, - ts_builtin_sym_end, sym_num_literal, sym_raw_enum_tag, anon_sym_COLON, @@ -24941,7 +24937,7 @@ static const uint16_t ts_small_parse_table[] = { [24241] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(363), 17, + ACTIONS(501), 17, sym_ident, anon_sym_PIPE, anon_sym_DOT, @@ -24959,11 +24955,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - ACTIONS(361), 23, + ACTIONS(499), 23, sym_multstr_start, sym__str_start, - sym_interpolation_end, sym_quoted_enum_tag_start, + ts_builtin_sym_end, sym_num_literal, sym_raw_enum_tag, anon_sym_COLON, @@ -24986,7 +24982,7 @@ static const uint16_t ts_small_parse_table[] = { [24289] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(481), 17, + ACTIONS(469), 17, sym_ident, anon_sym_PIPE, anon_sym_DOT, @@ -25004,7 +25000,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - ACTIONS(479), 23, + ACTIONS(467), 23, sym_multstr_start, sym__str_start, sym_interpolation_end, @@ -25031,9 +25027,10 @@ static const uint16_t ts_small_parse_table[] = { [24337] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(509), 17, + ACTIONS(421), 18, sym_ident, anon_sym_PIPE, + anon_sym_in, anon_sym_DOT, anon_sym_Dyn, anon_sym_null, @@ -25049,11 +25046,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - ACTIONS(507), 23, + ACTIONS(419), 22, sym_multstr_start, sym__str_start, sym_quoted_enum_tag_start, - ts_builtin_sym_end, sym_num_literal, sym_raw_enum_tag, anon_sym_COLON, @@ -25076,7 +25072,7 @@ static const uint16_t ts_small_parse_table[] = { [24385] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(409), 17, + ACTIONS(485), 17, sym_ident, anon_sym_PIPE, anon_sym_DOT, @@ -25094,11 +25090,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - ACTIONS(407), 23, + ACTIONS(483), 23, sym_multstr_start, sym__str_start, + sym_interpolation_end, sym_quoted_enum_tag_start, - ts_builtin_sym_end, sym_num_literal, sym_raw_enum_tag, anon_sym_COLON, @@ -25121,10 +25117,9 @@ static const uint16_t ts_small_parse_table[] = { [24433] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(401), 18, + ACTIONS(425), 17, sym_ident, anon_sym_PIPE, - anon_sym_in, anon_sym_DOT, anon_sym_Dyn, anon_sym_null, @@ -25140,10 +25135,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - ACTIONS(399), 22, + ACTIONS(423), 23, sym_multstr_start, sym__str_start, sym_quoted_enum_tag_start, + ts_builtin_sym_end, sym_num_literal, sym_raw_enum_tag, anon_sym_COLON, @@ -25166,7 +25162,7 @@ static const uint16_t ts_small_parse_table[] = { [24481] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(489), 17, + ACTIONS(397), 17, sym_ident, anon_sym_PIPE, anon_sym_DOT, @@ -25184,11 +25180,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - ACTIONS(487), 23, + ACTIONS(395), 23, sym_multstr_start, sym__str_start, - sym_interpolation_end, sym_quoted_enum_tag_start, + ts_builtin_sym_end, sym_num_literal, sym_raw_enum_tag, anon_sym_COLON, @@ -25211,7 +25207,7 @@ static const uint16_t ts_small_parse_table[] = { [24529] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(429), 17, + ACTIONS(513), 17, sym_ident, anon_sym_PIPE, anon_sym_DOT, @@ -25229,11 +25225,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - ACTIONS(427), 23, + ACTIONS(511), 23, sym_multstr_start, sym__str_start, + sym_interpolation_end, sym_quoted_enum_tag_start, - ts_builtin_sym_end, sym_num_literal, sym_raw_enum_tag, anon_sym_COLON, @@ -25256,7 +25252,7 @@ static const uint16_t ts_small_parse_table[] = { [24577] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(513), 17, + ACTIONS(449), 17, sym_ident, anon_sym_PIPE, anon_sym_DOT, @@ -25274,7 +25270,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - ACTIONS(511), 23, + ACTIONS(447), 23, sym_multstr_start, sym__str_start, sym_interpolation_end, @@ -25301,7 +25297,7 @@ static const uint16_t ts_small_parse_table[] = { [24625] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(517), 17, + ACTIONS(429), 17, sym_ident, anon_sym_PIPE, anon_sym_DOT, @@ -25319,7 +25315,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - ACTIONS(515), 23, + ACTIONS(427), 23, sym_multstr_start, sym__str_start, sym_quoted_enum_tag_start, @@ -25346,9 +25342,10 @@ static const uint16_t ts_small_parse_table[] = { [24673] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(449), 17, + ACTIONS(461), 18, sym_ident, anon_sym_PIPE, + anon_sym_in, anon_sym_DOT, anon_sym_Dyn, anon_sym_null, @@ -25364,10 +25361,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - ACTIONS(447), 23, + ACTIONS(459), 22, sym_multstr_start, sym__str_start, - sym_interpolation_end, sym_quoted_enum_tag_start, sym_num_literal, sym_raw_enum_tag, @@ -25391,7 +25387,7 @@ static const uint16_t ts_small_parse_table[] = { [24721] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(433), 17, + ACTIONS(445), 17, sym_ident, anon_sym_PIPE, anon_sym_DOT, @@ -25409,11 +25405,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - ACTIONS(431), 23, + ACTIONS(443), 23, sym_multstr_start, sym__str_start, + sym_interpolation_end, sym_quoted_enum_tag_start, - ts_builtin_sym_end, sym_num_literal, sym_raw_enum_tag, anon_sym_COLON, @@ -25436,7 +25432,7 @@ static const uint16_t ts_small_parse_table[] = { [24769] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(445), 17, + ACTIONS(461), 17, sym_ident, anon_sym_PIPE, anon_sym_DOT, @@ -25454,7 +25450,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - ACTIONS(443), 23, + ACTIONS(459), 23, sym_multstr_start, sym__str_start, sym_interpolation_end, @@ -25481,7 +25477,7 @@ static const uint16_t ts_small_parse_table[] = { [24817] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(441), 17, + ACTIONS(417), 17, sym_ident, anon_sym_PIPE, anon_sym_DOT, @@ -25499,7 +25495,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - ACTIONS(439), 23, + ACTIONS(415), 23, sym_multstr_start, sym__str_start, sym_interpolation_end, @@ -25526,7 +25522,7 @@ static const uint16_t ts_small_parse_table[] = { [24865] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(401), 17, + ACTIONS(477), 17, sym_ident, anon_sym_PIPE, anon_sym_DOT, @@ -25544,7 +25540,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - ACTIONS(399), 23, + ACTIONS(475), 23, sym_multstr_start, sym__str_start, sym_quoted_enum_tag_start, @@ -25571,7 +25567,7 @@ static const uint16_t ts_small_parse_table[] = { [24913] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(433), 17, + ACTIONS(505), 17, sym_ident, anon_sym_PIPE, anon_sym_DOT, @@ -25589,11 +25585,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - ACTIONS(431), 23, + ACTIONS(503), 23, sym_multstr_start, sym__str_start, - sym_interpolation_end, sym_quoted_enum_tag_start, + ts_builtin_sym_end, sym_num_literal, sym_raw_enum_tag, anon_sym_COLON, @@ -25661,10 +25657,9 @@ static const uint16_t ts_small_parse_table[] = { [25009] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(445), 18, + ACTIONS(425), 17, sym_ident, anon_sym_PIPE, - anon_sym_in, anon_sym_DOT, anon_sym_Dyn, anon_sym_null, @@ -25680,9 +25675,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - ACTIONS(443), 22, + ACTIONS(423), 23, sym_multstr_start, sym__str_start, + sym_interpolation_end, sym_quoted_enum_tag_start, sym_num_literal, sym_raw_enum_tag, @@ -25706,7 +25702,7 @@ static const uint16_t ts_small_parse_table[] = { [25057] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(509), 17, + ACTIONS(501), 17, sym_ident, anon_sym_PIPE, anon_sym_DOT, @@ -25724,7 +25720,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - ACTIONS(507), 23, + ACTIONS(499), 23, sym_multstr_start, sym__str_start, sym_interpolation_end, @@ -25751,7 +25747,7 @@ static const uint16_t ts_small_parse_table[] = { [25105] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(469), 17, + ACTIONS(465), 17, sym_ident, anon_sym_PIPE, anon_sym_DOT, @@ -25769,7 +25765,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - ACTIONS(467), 23, + ACTIONS(463), 23, sym_multstr_start, sym__str_start, sym_interpolation_end, @@ -25796,7 +25792,7 @@ static const uint16_t ts_small_parse_table[] = { [25153] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(389), 17, + ACTIONS(385), 17, sym_ident, anon_sym_PIPE, anon_sym_DOT, @@ -25814,7 +25810,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - ACTIONS(387), 23, + ACTIONS(383), 23, sym_multstr_start, sym__str_start, sym_interpolation_end, @@ -25841,7 +25837,7 @@ static const uint16_t ts_small_parse_table[] = { [25201] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(473), 17, + ACTIONS(421), 17, sym_ident, anon_sym_PIPE, anon_sym_DOT, @@ -25859,7 +25855,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - ACTIONS(471), 23, + ACTIONS(419), 23, sym_multstr_start, sym__str_start, sym_quoted_enum_tag_start, @@ -25886,7 +25882,7 @@ static const uint16_t ts_small_parse_table[] = { [25249] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(485), 17, + ACTIONS(489), 17, sym_ident, anon_sym_PIPE, anon_sym_DOT, @@ -25904,7 +25900,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - ACTIONS(483), 23, + ACTIONS(487), 23, sym_multstr_start, sym__str_start, sym_quoted_enum_tag_start, @@ -25931,7 +25927,7 @@ static const uint16_t ts_small_parse_table[] = { [25297] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(381), 17, + ACTIONS(493), 17, sym_ident, anon_sym_PIPE, anon_sym_DOT, @@ -25949,7 +25945,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - ACTIONS(379), 23, + ACTIONS(491), 23, sym_multstr_start, sym__str_start, sym_interpolation_end, @@ -25976,7 +25972,7 @@ static const uint16_t ts_small_parse_table[] = { [25345] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(501), 17, + ACTIONS(497), 17, sym_ident, anon_sym_PIPE, anon_sym_DOT, @@ -25994,7 +25990,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - ACTIONS(499), 23, + ACTIONS(495), 23, sym_multstr_start, sym__str_start, sym_interpolation_end, @@ -26021,7 +26017,7 @@ static const uint16_t ts_small_parse_table[] = { [25393] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(517), 17, + ACTIONS(505), 17, sym_ident, anon_sym_PIPE, anon_sym_DOT, @@ -26039,7 +26035,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - ACTIONS(515), 23, + ACTIONS(503), 23, sym_multstr_start, sym__str_start, sym_interpolation_end, @@ -26066,7 +26062,7 @@ static const uint16_t ts_small_parse_table[] = { [25441] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(493), 17, + ACTIONS(517), 17, sym_ident, anon_sym_PIPE, anon_sym_DOT, @@ -26084,7 +26080,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - ACTIONS(491), 23, + ACTIONS(515), 23, sym_multstr_start, sym__str_start, sym_interpolation_end, @@ -26111,7 +26107,7 @@ static const uint16_t ts_small_parse_table[] = { [25489] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(367), 17, + ACTIONS(393), 17, sym_ident, anon_sym_PIPE, anon_sym_DOT, @@ -26129,7 +26125,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - ACTIONS(365), 23, + ACTIONS(391), 23, sym_multstr_start, sym__str_start, sym_interpolation_end, @@ -26156,7 +26152,7 @@ static const uint16_t ts_small_parse_table[] = { [25537] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(461), 17, + ACTIONS(473), 17, sym_ident, anon_sym_PIPE, anon_sym_DOT, @@ -26174,7 +26170,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - ACTIONS(459), 23, + ACTIONS(471), 23, sym_multstr_start, sym__str_start, sym_interpolation_end, @@ -26201,7 +26197,7 @@ static const uint16_t ts_small_parse_table[] = { [25585] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(449), 18, + ACTIONS(445), 18, sym_ident, anon_sym_PIPE, anon_sym_in, @@ -26220,7 +26216,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - ACTIONS(447), 22, + ACTIONS(443), 22, sym_multstr_start, sym__str_start, sym_quoted_enum_tag_start, @@ -26246,9 +26242,10 @@ static const uint16_t ts_small_parse_table[] = { [25633] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(437), 17, + ACTIONS(457), 18, sym_ident, anon_sym_PIPE, + anon_sym_else, anon_sym_DOT, anon_sym_Dyn, anon_sym_null, @@ -26264,10 +26261,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - ACTIONS(435), 23, + ACTIONS(455), 22, sym_multstr_start, sym__str_start, - sym_interpolation_end, sym_quoted_enum_tag_start, sym_num_literal, sym_raw_enum_tag, @@ -26291,9 +26287,10 @@ static const uint16_t ts_small_parse_table[] = { [25681] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(425), 17, + ACTIONS(449), 18, sym_ident, anon_sym_PIPE, + anon_sym_in, anon_sym_DOT, anon_sym_Dyn, anon_sym_null, @@ -26309,10 +26306,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - ACTIONS(423), 23, + ACTIONS(447), 22, sym_multstr_start, sym__str_start, - sym_interpolation_end, sym_quoted_enum_tag_start, sym_num_literal, sym_raw_enum_tag, @@ -26336,7 +26332,7 @@ static const uint16_t ts_small_parse_table[] = { [25729] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(493), 17, + ACTIONS(441), 17, sym_ident, anon_sym_PIPE, anon_sym_DOT, @@ -26354,11 +26350,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - ACTIONS(491), 23, + ACTIONS(439), 23, sym_multstr_start, sym__str_start, + sym_interpolation_end, sym_quoted_enum_tag_start, - ts_builtin_sym_end, sym_num_literal, sym_raw_enum_tag, anon_sym_COLON, @@ -26381,10 +26377,9 @@ static const uint16_t ts_small_parse_table[] = { [25777] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(453), 18, + ACTIONS(437), 17, sym_ident, anon_sym_PIPE, - anon_sym_else, anon_sym_DOT, anon_sym_Dyn, anon_sym_null, @@ -26400,9 +26395,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - ACTIONS(451), 22, + ACTIONS(435), 23, sym_multstr_start, sym__str_start, + sym_interpolation_end, sym_quoted_enum_tag_start, sym_num_literal, sym_raw_enum_tag, @@ -26426,10 +26422,9 @@ static const uint16_t ts_small_parse_table[] = { [25825] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(485), 18, + ACTIONS(417), 17, sym_ident, anon_sym_PIPE, - anon_sym_else, anon_sym_DOT, anon_sym_Dyn, anon_sym_null, @@ -26445,10 +26440,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - ACTIONS(483), 22, + ACTIONS(415), 23, sym_multstr_start, sym__str_start, sym_quoted_enum_tag_start, + ts_builtin_sym_end, sym_num_literal, sym_raw_enum_tag, anon_sym_COLON, @@ -26471,10 +26467,9 @@ static const uint16_t ts_small_parse_table[] = { [25873] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(513), 18, + ACTIONS(461), 17, sym_ident, anon_sym_PIPE, - anon_sym_in, anon_sym_DOT, anon_sym_Dyn, anon_sym_null, @@ -26490,10 +26485,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - ACTIONS(511), 22, + ACTIONS(459), 23, sym_multstr_start, sym__str_start, sym_quoted_enum_tag_start, + ts_builtin_sym_end, sym_num_literal, sym_raw_enum_tag, anon_sym_COLON, @@ -26516,10 +26512,10 @@ static const uint16_t ts_small_parse_table[] = { [25921] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(457), 18, + ACTIONS(489), 18, sym_ident, anon_sym_PIPE, - anon_sym_then, + anon_sym_else, anon_sym_DOT, anon_sym_Dyn, anon_sym_null, @@ -26535,7 +26531,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - ACTIONS(455), 22, + ACTIONS(487), 22, sym_multstr_start, sym__str_start, sym_quoted_enum_tag_start, @@ -26561,7 +26557,7 @@ static const uint16_t ts_small_parse_table[] = { [25969] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(441), 17, + ACTIONS(445), 17, sym_ident, anon_sym_PIPE, anon_sym_DOT, @@ -26579,7 +26575,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - ACTIONS(439), 23, + ACTIONS(443), 23, sym_multstr_start, sym__str_start, sym_quoted_enum_tag_start, @@ -26606,7 +26602,7 @@ static const uint16_t ts_small_parse_table[] = { [26017] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(445), 17, + ACTIONS(517), 17, sym_ident, anon_sym_PIPE, anon_sym_DOT, @@ -26624,7 +26620,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - ACTIONS(443), 23, + ACTIONS(515), 23, sym_multstr_start, sym__str_start, sym_quoted_enum_tag_start, @@ -26651,10 +26647,10 @@ static const uint16_t ts_small_parse_table[] = { [26065] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(453), 18, + ACTIONS(513), 18, sym_ident, anon_sym_PIPE, - anon_sym_then, + anon_sym_in, anon_sym_DOT, anon_sym_Dyn, anon_sym_null, @@ -26670,7 +26666,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - ACTIONS(451), 22, + ACTIONS(511), 22, sym_multstr_start, sym__str_start, sym_quoted_enum_tag_start, @@ -26741,7 +26737,7 @@ static const uint16_t ts_small_parse_table[] = { [26161] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(367), 17, + ACTIONS(393), 17, sym_ident, anon_sym_PIPE, anon_sym_DOT, @@ -26759,7 +26755,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - ACTIONS(365), 23, + ACTIONS(391), 23, sym_multstr_start, sym__str_start, sym_quoted_enum_tag_start, @@ -26786,7 +26782,7 @@ static const uint16_t ts_small_parse_table[] = { [26209] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(461), 17, + ACTIONS(513), 17, sym_ident, anon_sym_PIPE, anon_sym_DOT, @@ -26804,7 +26800,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - ACTIONS(459), 23, + ACTIONS(511), 23, sym_multstr_start, sym__str_start, sym_quoted_enum_tag_start, @@ -26831,9 +26827,10 @@ static const uint16_t ts_small_parse_table[] = { [26257] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(513), 17, + ACTIONS(453), 18, sym_ident, anon_sym_PIPE, + anon_sym_then, anon_sym_DOT, anon_sym_Dyn, anon_sym_null, @@ -26849,11 +26846,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - ACTIONS(511), 23, + ACTIONS(451), 22, sym_multstr_start, sym__str_start, sym_quoted_enum_tag_start, - ts_builtin_sym_end, sym_num_literal, sym_raw_enum_tag, anon_sym_COLON, @@ -26876,10 +26872,10 @@ static const uint16_t ts_small_parse_table[] = { [26305] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(489), 18, + ACTIONS(457), 18, sym_ident, anon_sym_PIPE, - anon_sym_in, + anon_sym_then, anon_sym_DOT, anon_sym_Dyn, anon_sym_null, @@ -26895,7 +26891,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - ACTIONS(487), 22, + ACTIONS(455), 22, sym_multstr_start, sym__str_start, sym_quoted_enum_tag_start, @@ -26921,7 +26917,7 @@ static const uint16_t ts_small_parse_table[] = { [26353] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(489), 17, + ACTIONS(473), 17, sym_ident, anon_sym_PIPE, anon_sym_DOT, @@ -26939,7 +26935,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - ACTIONS(487), 23, + ACTIONS(471), 23, sym_multstr_start, sym__str_start, sym_quoted_enum_tag_start, @@ -26966,7 +26962,7 @@ static const uint16_t ts_small_parse_table[] = { [26401] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(497), 18, + ACTIONS(413), 18, sym_ident, anon_sym_PIPE, anon_sym_then, @@ -26985,7 +26981,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - ACTIONS(495), 22, + ACTIONS(411), 22, sym_multstr_start, sym__str_start, sym_quoted_enum_tag_start, @@ -27011,7 +27007,7 @@ static const uint16_t ts_small_parse_table[] = { [26449] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(481), 18, + ACTIONS(485), 18, sym_ident, anon_sym_PIPE, anon_sym_in, @@ -27030,7 +27026,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - ACTIONS(479), 22, + ACTIONS(483), 22, sym_multstr_start, sym__str_start, sym_quoted_enum_tag_start, @@ -27056,7 +27052,7 @@ static const uint16_t ts_small_parse_table[] = { [26497] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(363), 18, + ACTIONS(469), 18, sym_ident, anon_sym_PIPE, anon_sym_in, @@ -27075,7 +27071,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - ACTIONS(361), 22, + ACTIONS(467), 22, sym_multstr_start, sym__str_start, sym_quoted_enum_tag_start, @@ -27101,9 +27097,10 @@ static const uint16_t ts_small_parse_table[] = { [26545] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(437), 17, + ACTIONS(117), 18, sym_ident, anon_sym_PIPE, + anon_sym_else, anon_sym_DOT, anon_sym_Dyn, anon_sym_null, @@ -27119,11 +27116,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - ACTIONS(435), 23, + ACTIONS(119), 22, sym_multstr_start, sym__str_start, sym_quoted_enum_tag_start, - ts_builtin_sym_end, sym_num_literal, sym_raw_enum_tag, anon_sym_COLON, @@ -27146,10 +27142,9 @@ static const uint16_t ts_small_parse_table[] = { [26593] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(117), 18, + ACTIONS(441), 17, sym_ident, anon_sym_PIPE, - anon_sym_else, anon_sym_DOT, anon_sym_Dyn, anon_sym_null, @@ -27165,10 +27160,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - ACTIONS(119), 22, + ACTIONS(439), 23, sym_multstr_start, sym__str_start, sym_quoted_enum_tag_start, + ts_builtin_sym_end, sym_num_literal, sym_raw_enum_tag, anon_sym_COLON, @@ -27191,7 +27187,7 @@ static const uint16_t ts_small_parse_table[] = { [26641] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(417), 18, + ACTIONS(401), 18, sym_ident, anon_sym_PIPE, anon_sym_else, @@ -27210,7 +27206,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - ACTIONS(415), 22, + ACTIONS(399), 22, sym_multstr_start, sym__str_start, sym_quoted_enum_tag_start, @@ -27236,7 +27232,7 @@ static const uint16_t ts_small_parse_table[] = { [26689] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(413), 18, + ACTIONS(409), 18, sym_ident, anon_sym_PIPE, anon_sym_else, @@ -27255,7 +27251,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - ACTIONS(411), 22, + ACTIONS(407), 22, sym_multstr_start, sym__str_start, sym_quoted_enum_tag_start, @@ -27281,7 +27277,7 @@ static const uint16_t ts_small_parse_table[] = { [26737] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(465), 17, + ACTIONS(485), 17, sym_ident, anon_sym_PIPE, anon_sym_DOT, @@ -27299,11 +27295,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - ACTIONS(463), 23, + ACTIONS(483), 23, sym_multstr_start, sym__str_start, - sym_interpolation_end, sym_quoted_enum_tag_start, + ts_builtin_sym_end, sym_num_literal, sym_raw_enum_tag, anon_sym_COLON, @@ -27326,7 +27322,7 @@ static const uint16_t ts_small_parse_table[] = { [26785] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(505), 18, + ACTIONS(405), 18, sym_ident, anon_sym_PIPE, anon_sym_else, @@ -27345,7 +27341,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - ACTIONS(503), 22, + ACTIONS(403), 22, sym_multstr_start, sym__str_start, sym_quoted_enum_tag_start, @@ -27371,7 +27367,7 @@ static const uint16_t ts_small_parse_table[] = { [26833] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(425), 17, + ACTIONS(469), 17, sym_ident, anon_sym_PIPE, anon_sym_DOT, @@ -27389,7 +27385,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - ACTIONS(423), 23, + ACTIONS(467), 23, sym_multstr_start, sym__str_start, sym_quoted_enum_tag_start, @@ -27437,8 +27433,8 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(479), 23, sym_multstr_start, sym__str_start, + sym_interpolation_end, sym_quoted_enum_tag_start, - ts_builtin_sym_end, sym_num_literal, sym_raw_enum_tag, anon_sym_COLON, @@ -27461,10 +27457,9 @@ static const uint16_t ts_small_parse_table[] = { [26929] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(453), 18, + ACTIONS(437), 17, sym_ident, anon_sym_PIPE, - anon_sym_in, anon_sym_DOT, anon_sym_Dyn, anon_sym_null, @@ -27480,10 +27475,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - ACTIONS(451), 22, + ACTIONS(435), 23, sym_multstr_start, sym__str_start, sym_quoted_enum_tag_start, + ts_builtin_sym_end, sym_num_literal, sym_raw_enum_tag, anon_sym_COLON, @@ -27506,9 +27502,10 @@ static const uint16_t ts_small_parse_table[] = { [26977] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(363), 17, + ACTIONS(117), 18, sym_ident, anon_sym_PIPE, + anon_sym_then, anon_sym_DOT, anon_sym_Dyn, anon_sym_null, @@ -27524,11 +27521,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - ACTIONS(361), 23, + ACTIONS(119), 22, sym_multstr_start, sym__str_start, sym_quoted_enum_tag_start, - ts_builtin_sym_end, sym_num_literal, sym_raw_enum_tag, anon_sym_COLON, @@ -27548,15 +27544,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_DASH_GT, anon_sym_LBRACK_PIPE, - [27025] = 4, + [27025] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(555), 1, - anon_sym_DOT, - ACTIONS(397), 17, + ACTIONS(457), 18, sym_ident, anon_sym_PIPE, - anon_sym_else, + anon_sym_in, + anon_sym_DOT, anon_sym_Dyn, anon_sym_null, anon_sym_LBRACK, @@ -27571,7 +27566,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - ACTIONS(395), 22, + ACTIONS(455), 22, sym_multstr_start, sym__str_start, sym_quoted_enum_tag_start, @@ -27594,14 +27589,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_DASH_GT, anon_sym_LBRACK_PIPE, - [27075] = 4, + [27073] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(557), 1, + ACTIONS(555), 1, anon_sym_DOT, - ACTIONS(405), 16, + ACTIONS(363), 17, sym_ident, anon_sym_PIPE, + anon_sym_else, anon_sym_Dyn, anon_sym_null, anon_sym_LBRACK, @@ -27616,10 +27612,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - ACTIONS(403), 23, + ACTIONS(361), 22, sym_multstr_start, sym__str_start, - sym_interpolation_end, sym_quoted_enum_tag_start, sym_num_literal, sym_raw_enum_tag, @@ -27640,10 +27635,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_DASH_GT, anon_sym_LBRACK_PIPE, - [27125] = 3, + [27123] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(117), 18, + ACTIONS(409), 18, sym_ident, anon_sym_PIPE, anon_sym_then, @@ -27662,7 +27657,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - ACTIONS(119), 22, + ACTIONS(407), 22, sym_multstr_start, sym__str_start, sym_quoted_enum_tag_start, @@ -27685,14 +27680,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_DASH_GT, anon_sym_LBRACK_PIPE, - [27173] = 4, + [27171] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(557), 1, - anon_sym_DOT, - ACTIONS(421), 16, + ACTIONS(405), 18, sym_ident, anon_sym_PIPE, + anon_sym_then, + anon_sym_DOT, anon_sym_Dyn, anon_sym_null, anon_sym_LBRACK, @@ -27707,10 +27702,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - ACTIONS(419), 23, + ACTIONS(403), 22, sym_multstr_start, sym__str_start, - sym_interpolation_end, sym_quoted_enum_tag_start, sym_num_literal, sym_raw_enum_tag, @@ -27731,13 +27725,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_DASH_GT, anon_sym_LBRACK_PIPE, - [27223] = 3, + [27219] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(477), 17, + ACTIONS(557), 1, + anon_sym_DOT, + ACTIONS(509), 16, sym_ident, anon_sym_PIPE, - anon_sym_DOT, anon_sym_Dyn, anon_sym_null, anon_sym_LBRACK, @@ -27752,7 +27747,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - ACTIONS(475), 23, + ACTIONS(507), 23, sym_multstr_start, sym__str_start, sym_interpolation_end, @@ -27776,13 +27771,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_DASH_GT, anon_sym_LBRACK_PIPE, - [27271] = 3, + [27269] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(417), 18, + ACTIONS(389), 18, sym_ident, anon_sym_PIPE, - anon_sym_then, + anon_sym_else, anon_sym_DOT, anon_sym_Dyn, anon_sym_null, @@ -27798,7 +27793,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - ACTIONS(415), 22, + ACTIONS(387), 22, sym_multstr_start, sym__str_start, sym_quoted_enum_tag_start, @@ -27821,14 +27816,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_DASH_GT, anon_sym_LBRACK_PIPE, - [27319] = 3, + [27317] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(413), 18, + ACTIONS(557), 1, + anon_sym_DOT, + ACTIONS(433), 16, sym_ident, anon_sym_PIPE, - anon_sym_then, - anon_sym_DOT, anon_sym_Dyn, anon_sym_null, anon_sym_LBRACK, @@ -27843,9 +27838,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - ACTIONS(411), 22, + ACTIONS(431), 23, sym_multstr_start, sym__str_start, + sym_interpolation_end, sym_quoted_enum_tag_start, sym_num_literal, sym_raw_enum_tag, @@ -27869,7 +27865,7 @@ static const uint16_t ts_small_parse_table[] = { [27367] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(371), 17, + ACTIONS(369), 17, sym_ident, anon_sym_PIPE, anon_sym_DOT, @@ -27887,7 +27883,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - ACTIONS(369), 23, + ACTIONS(367), 23, sym_multstr_start, sym__str_start, sym_interpolation_end, @@ -27914,7 +27910,7 @@ static const uint16_t ts_small_parse_table[] = { [27415] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(485), 18, + ACTIONS(489), 18, sym_ident, anon_sym_PIPE, anon_sym_in, @@ -27933,7 +27929,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - ACTIONS(483), 22, + ACTIONS(487), 22, sym_multstr_start, sym__str_start, sym_quoted_enum_tag_start, @@ -27956,14 +27952,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_DASH_GT, anon_sym_LBRACK_PIPE, - [27463] = 4, + [27463] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(557), 1, - anon_sym_DOT, - ACTIONS(375), 16, + ACTIONS(381), 17, sym_ident, anon_sym_PIPE, + anon_sym_DOT, anon_sym_Dyn, anon_sym_null, anon_sym_LBRACK, @@ -27978,11 +27973,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - ACTIONS(373), 23, + ACTIONS(379), 23, sym_multstr_start, sym__str_start, - sym_interpolation_end, sym_quoted_enum_tag_start, + ts_builtin_sym_end, sym_num_literal, sym_raw_enum_tag, anon_sym_COLON, @@ -28002,12 +27997,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_DASH_GT, anon_sym_LBRACK_PIPE, - [27513] = 3, + [27511] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(385), 17, + ACTIONS(397), 18, sym_ident, anon_sym_PIPE, + anon_sym_in, anon_sym_DOT, anon_sym_Dyn, anon_sym_null, @@ -28023,11 +28019,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - ACTIONS(383), 23, + ACTIONS(395), 22, sym_multstr_start, sym__str_start, sym_quoted_enum_tag_start, - ts_builtin_sym_end, sym_num_literal, sym_raw_enum_tag, anon_sym_COLON, @@ -28047,14 +28042,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_DASH_GT, anon_sym_LBRACK_PIPE, - [27561] = 3, + [27559] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(393), 18, + ACTIONS(559), 1, + anon_sym_DOT, + ACTIONS(363), 17, sym_ident, anon_sym_PIPE, - anon_sym_else, - anon_sym_DOT, + anon_sym_then, anon_sym_Dyn, anon_sym_null, anon_sym_LBRACK, @@ -28069,7 +28065,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - ACTIONS(391), 22, + ACTIONS(361), 22, sym_multstr_start, sym__str_start, sym_quoted_enum_tag_start, @@ -28095,10 +28091,10 @@ static const uint16_t ts_small_parse_table[] = { [27609] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(505), 18, + ACTIONS(389), 18, sym_ident, anon_sym_PIPE, - anon_sym_in, + anon_sym_then, anon_sym_DOT, anon_sym_Dyn, anon_sym_null, @@ -28114,7 +28110,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - ACTIONS(503), 22, + ACTIONS(387), 22, sym_multstr_start, sym__str_start, sym_quoted_enum_tag_start, @@ -28140,10 +28136,9 @@ static const uint16_t ts_small_parse_table[] = { [27657] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(409), 18, + ACTIONS(373), 17, sym_ident, anon_sym_PIPE, - anon_sym_in, anon_sym_DOT, anon_sym_Dyn, anon_sym_null, @@ -28159,9 +28154,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - ACTIONS(407), 22, + ACTIONS(371), 23, sym_multstr_start, sym__str_start, + sym_interpolation_end, sym_quoted_enum_tag_start, sym_num_literal, sym_raw_enum_tag, @@ -28182,15 +28178,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_DASH_GT, anon_sym_LBRACK_PIPE, - [27705] = 4, + [27705] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(559), 1, - anon_sym_DOT, - ACTIONS(397), 17, + ACTIONS(477), 18, sym_ident, anon_sym_PIPE, - anon_sym_then, + anon_sym_in, + anon_sym_DOT, anon_sym_Dyn, anon_sym_null, anon_sym_LBRACK, @@ -28205,7 +28200,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - ACTIONS(395), 22, + ACTIONS(475), 22, sym_multstr_start, sym__str_start, sym_quoted_enum_tag_start, @@ -28228,13 +28223,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_DASH_GT, anon_sym_LBRACK_PIPE, - [27755] = 3, + [27753] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(393), 18, + ACTIONS(441), 18, sym_ident, anon_sym_PIPE, - anon_sym_then, + anon_sym_else, anon_sym_DOT, anon_sym_Dyn, anon_sym_null, @@ -28250,7 +28245,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - ACTIONS(391), 22, + ACTIONS(439), 22, sym_multstr_start, sym__str_start, sym_quoted_enum_tag_start, @@ -28273,13 +28268,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_DASH_GT, anon_sym_LBRACK_PIPE, - [27803] = 3, + [27801] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(385), 17, + ACTIONS(557), 1, + anon_sym_DOT, + ACTIONS(377), 16, sym_ident, anon_sym_PIPE, - anon_sym_DOT, anon_sym_Dyn, anon_sym_null, anon_sym_LBRACK, @@ -28294,7 +28290,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - ACTIONS(383), 23, + ACTIONS(375), 23, sym_multstr_start, sym__str_start, sym_interpolation_end, @@ -28321,10 +28317,10 @@ static const uint16_t ts_small_parse_table[] = { [27851] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(437), 18, + ACTIONS(401), 18, sym_ident, anon_sym_PIPE, - anon_sym_else, + anon_sym_in, anon_sym_DOT, anon_sym_Dyn, anon_sym_null, @@ -28340,7 +28336,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - ACTIONS(435), 22, + ACTIONS(399), 22, sym_multstr_start, sym__str_start, sym_quoted_enum_tag_start, @@ -28366,10 +28362,9 @@ static const uint16_t ts_small_parse_table[] = { [27899] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(473), 18, + ACTIONS(381), 17, sym_ident, anon_sym_PIPE, - anon_sym_in, anon_sym_DOT, anon_sym_Dyn, anon_sym_null, @@ -28385,9 +28380,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - ACTIONS(471), 22, + ACTIONS(379), 23, sym_multstr_start, sym__str_start, + sym_interpolation_end, sym_quoted_enum_tag_start, sym_num_literal, sym_raw_enum_tag, @@ -28411,7 +28407,7 @@ static const uint16_t ts_small_parse_table[] = { [27947] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(485), 18, + ACTIONS(489), 18, sym_ident, anon_sym_PIPE, anon_sym_then, @@ -28430,7 +28426,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - ACTIONS(483), 22, + ACTIONS(487), 22, sym_multstr_start, sym__str_start, sym_quoted_enum_tag_start, @@ -28456,7 +28452,7 @@ static const uint16_t ts_small_parse_table[] = { [27995] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(385), 18, + ACTIONS(381), 18, sym_ident, anon_sym_PIPE, anon_sym_else, @@ -28475,7 +28471,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - ACTIONS(383), 22, + ACTIONS(379), 22, sym_multstr_start, sym__str_start, sym_quoted_enum_tag_start, @@ -28501,7 +28497,7 @@ static const uint16_t ts_small_parse_table[] = { [28043] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(465), 18, + ACTIONS(481), 18, sym_ident, anon_sym_PIPE, anon_sym_else, @@ -28520,7 +28516,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - ACTIONS(463), 22, + ACTIONS(479), 22, sym_multstr_start, sym__str_start, sym_quoted_enum_tag_start, @@ -28548,7 +28544,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(555), 1, anon_sym_DOT, - ACTIONS(375), 17, + ACTIONS(377), 17, sym_ident, anon_sym_PIPE, anon_sym_else, @@ -28566,7 +28562,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - ACTIONS(373), 22, + ACTIONS(375), 22, sym_multstr_start, sym__str_start, sym_quoted_enum_tag_start, @@ -28592,7 +28588,7 @@ static const uint16_t ts_small_parse_table[] = { [28141] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(371), 18, + ACTIONS(373), 18, sym_ident, anon_sym_PIPE, anon_sym_else, @@ -28611,7 +28607,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - ACTIONS(369), 22, + ACTIONS(371), 22, sym_multstr_start, sym__str_start, sym_quoted_enum_tag_start, @@ -28637,7 +28633,7 @@ static const uint16_t ts_small_parse_table[] = { [28189] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(477), 18, + ACTIONS(369), 18, sym_ident, anon_sym_PIPE, anon_sym_else, @@ -28656,7 +28652,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - ACTIONS(475), 22, + ACTIONS(367), 22, sym_multstr_start, sym__str_start, sym_quoted_enum_tag_start, @@ -28682,7 +28678,7 @@ static const uint16_t ts_small_parse_table[] = { [28237] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(393), 17, + ACTIONS(389), 17, sym_ident, anon_sym_PIPE, anon_sym_DOT, @@ -28700,7 +28696,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - ACTIONS(391), 23, + ACTIONS(387), 23, sym_multstr_start, sym__str_start, sym_interpolation_end, @@ -28729,7 +28725,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(557), 1, anon_sym_DOT, - ACTIONS(397), 16, + ACTIONS(363), 16, sym_ident, anon_sym_PIPE, anon_sym_Dyn, @@ -28746,7 +28742,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - ACTIONS(395), 23, + ACTIONS(361), 23, sym_multstr_start, sym__str_start, sym_interpolation_end, @@ -28775,7 +28771,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(555), 1, anon_sym_DOT, - ACTIONS(421), 17, + ACTIONS(433), 17, sym_ident, anon_sym_PIPE, anon_sym_else, @@ -28793,7 +28789,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - ACTIONS(419), 22, + ACTIONS(431), 22, sym_multstr_start, sym__str_start, sym_quoted_enum_tag_start, @@ -28819,9 +28815,10 @@ static const uint16_t ts_small_parse_table[] = { [28385] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(453), 17, + ACTIONS(381), 18, sym_ident, anon_sym_PIPE, + anon_sym_then, anon_sym_DOT, anon_sym_Dyn, anon_sym_null, @@ -28837,10 +28834,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - ACTIONS(451), 23, + ACTIONS(379), 22, sym_multstr_start, sym__str_start, - sym_interpolation_end, sym_quoted_enum_tag_start, sym_num_literal, sym_raw_enum_tag, @@ -28864,10 +28860,9 @@ static const uint16_t ts_small_parse_table[] = { [28433] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(385), 18, + ACTIONS(457), 17, sym_ident, anon_sym_PIPE, - anon_sym_then, anon_sym_DOT, anon_sym_Dyn, anon_sym_null, @@ -28883,9 +28878,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - ACTIONS(383), 22, + ACTIONS(455), 23, sym_multstr_start, sym__str_start, + sym_interpolation_end, sym_quoted_enum_tag_start, sym_num_literal, sym_raw_enum_tag, @@ -28906,14 +28902,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_DASH_GT, anon_sym_LBRACK_PIPE, - [28481] = 3, + [28481] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(457), 18, + ACTIONS(559), 1, + anon_sym_DOT, + ACTIONS(377), 17, sym_ident, anon_sym_PIPE, - anon_sym_else, - anon_sym_DOT, + anon_sym_then, anon_sym_Dyn, anon_sym_null, anon_sym_LBRACK, @@ -28928,7 +28925,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - ACTIONS(455), 22, + ACTIONS(375), 22, sym_multstr_start, sym__str_start, sym_quoted_enum_tag_start, @@ -28951,15 +28948,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_DASH_GT, anon_sym_LBRACK_PIPE, - [28529] = 4, + [28531] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(559), 1, - anon_sym_DOT, - ACTIONS(375), 17, + ACTIONS(453), 18, sym_ident, anon_sym_PIPE, - anon_sym_then, + anon_sym_else, + anon_sym_DOT, anon_sym_Dyn, anon_sym_null, anon_sym_LBRACK, @@ -28974,7 +28970,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - ACTIONS(373), 22, + ACTIONS(451), 22, sym_multstr_start, sym__str_start, sym_quoted_enum_tag_start, @@ -29002,7 +28998,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(555), 1, anon_sym_DOT, - ACTIONS(405), 17, + ACTIONS(509), 17, sym_ident, anon_sym_PIPE, anon_sym_else, @@ -29020,7 +29016,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - ACTIONS(403), 22, + ACTIONS(507), 22, sym_multstr_start, sym__str_start, sym_quoted_enum_tag_start, @@ -29046,7 +29042,7 @@ static const uint16_t ts_small_parse_table[] = { [28629] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(497), 18, + ACTIONS(413), 18, sym_ident, anon_sym_PIPE, anon_sym_in, @@ -29065,7 +29061,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - ACTIONS(495), 22, + ACTIONS(411), 22, sym_multstr_start, sym__str_start, sym_quoted_enum_tag_start, @@ -29091,7 +29087,7 @@ static const uint16_t ts_small_parse_table[] = { [28677] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(465), 18, + ACTIONS(481), 18, sym_ident, anon_sym_PIPE, anon_sym_then, @@ -29110,7 +29106,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - ACTIONS(463), 22, + ACTIONS(479), 22, sym_multstr_start, sym__str_start, sym_quoted_enum_tag_start, @@ -29136,7 +29132,7 @@ static const uint16_t ts_small_parse_table[] = { [28725] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(413), 17, + ACTIONS(405), 17, sym_ident, anon_sym_PIPE, anon_sym_DOT, @@ -29154,7 +29150,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - ACTIONS(411), 23, + ACTIONS(403), 23, sym_multstr_start, sym__str_start, sym_interpolation_end, @@ -29181,7 +29177,7 @@ static const uint16_t ts_small_parse_table[] = { [28773] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(417), 17, + ACTIONS(409), 17, sym_ident, anon_sym_PIPE, anon_sym_DOT, @@ -29199,7 +29195,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - ACTIONS(415), 23, + ACTIONS(407), 23, sym_multstr_start, sym__str_start, sym_interpolation_end, @@ -29226,7 +29222,7 @@ static const uint16_t ts_small_parse_table[] = { [28821] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(505), 18, + ACTIONS(401), 18, sym_ident, anon_sym_PIPE, anon_sym_then, @@ -29245,7 +29241,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - ACTIONS(503), 22, + ACTIONS(399), 22, sym_multstr_start, sym__str_start, sym_quoted_enum_tag_start, @@ -29316,10 +29312,10 @@ static const uint16_t ts_small_parse_table[] = { [28917] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(457), 18, + ACTIONS(373), 18, sym_ident, anon_sym_PIPE, - anon_sym_in, + anon_sym_then, anon_sym_DOT, anon_sym_Dyn, anon_sym_null, @@ -29335,7 +29331,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - ACTIONS(455), 22, + ACTIONS(371), 22, sym_multstr_start, sym__str_start, sym_quoted_enum_tag_start, @@ -29361,10 +29357,10 @@ static const uint16_t ts_small_parse_table[] = { [28965] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(371), 18, + ACTIONS(453), 18, sym_ident, anon_sym_PIPE, - anon_sym_then, + anon_sym_in, anon_sym_DOT, anon_sym_Dyn, anon_sym_null, @@ -29380,7 +29376,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - ACTIONS(369), 22, + ACTIONS(451), 22, sym_multstr_start, sym__str_start, sym_quoted_enum_tag_start, @@ -29406,10 +29402,10 @@ static const uint16_t ts_small_parse_table[] = { [29013] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(497), 18, + ACTIONS(369), 18, sym_ident, anon_sym_PIPE, - anon_sym_else, + anon_sym_then, anon_sym_DOT, anon_sym_Dyn, anon_sym_null, @@ -29425,7 +29421,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - ACTIONS(495), 22, + ACTIONS(367), 22, sym_multstr_start, sym__str_start, sym_quoted_enum_tag_start, @@ -29451,10 +29447,10 @@ static const uint16_t ts_small_parse_table[] = { [29061] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(477), 18, + ACTIONS(413), 18, sym_ident, anon_sym_PIPE, - anon_sym_then, + anon_sym_else, anon_sym_DOT, anon_sym_Dyn, anon_sym_null, @@ -29470,7 +29466,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - ACTIONS(475), 22, + ACTIONS(411), 22, sym_multstr_start, sym__str_start, sym_quoted_enum_tag_start, @@ -29493,13 +29489,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_DASH_GT, anon_sym_LBRACK_PIPE, - [29109] = 3, + [29109] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(485), 17, + ACTIONS(559), 1, + anon_sym_DOT, + ACTIONS(433), 17, sym_ident, anon_sym_PIPE, - anon_sym_DOT, + anon_sym_then, anon_sym_Dyn, anon_sym_null, anon_sym_LBRACK, @@ -29514,10 +29512,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - ACTIONS(483), 23, + ACTIONS(431), 22, sym_multstr_start, sym__str_start, - sym_interpolation_end, sym_quoted_enum_tag_start, sym_num_literal, sym_raw_enum_tag, @@ -29538,12 +29535,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_DASH_GT, anon_sym_LBRACK_PIPE, - [29157] = 4, + [29159] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(559), 1, anon_sym_DOT, - ACTIONS(421), 17, + ACTIONS(509), 17, sym_ident, anon_sym_PIPE, anon_sym_then, @@ -29561,7 +29558,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - ACTIONS(419), 22, + ACTIONS(507), 22, sym_multstr_start, sym__str_start, sym_quoted_enum_tag_start, @@ -29584,15 +29581,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_DASH_GT, anon_sym_LBRACK_PIPE, - [29207] = 4, + [29209] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(559), 1, - anon_sym_DOT, - ACTIONS(405), 17, + ACTIONS(489), 17, sym_ident, anon_sym_PIPE, - anon_sym_then, + anon_sym_DOT, anon_sym_Dyn, anon_sym_null, anon_sym_LBRACK, @@ -29607,9 +29602,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - ACTIONS(403), 22, + ACTIONS(487), 23, sym_multstr_start, sym__str_start, + sym_interpolation_end, sym_quoted_enum_tag_start, sym_num_literal, sym_raw_enum_tag, @@ -29633,7 +29629,7 @@ static const uint16_t ts_small_parse_table[] = { [29257] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(425), 18, + ACTIONS(437), 18, sym_ident, anon_sym_PIPE, anon_sym_else, @@ -29652,7 +29648,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - ACTIONS(423), 22, + ACTIONS(435), 22, sym_multstr_start, sym__str_start, sym_quoted_enum_tag_start, @@ -29723,7 +29719,7 @@ static const uint16_t ts_small_parse_table[] = { [29353] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(453), 17, + ACTIONS(457), 17, sym_ident, anon_sym_PIPE, anon_sym_DOT, @@ -29741,7 +29737,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - ACTIONS(451), 23, + ACTIONS(455), 23, sym_multstr_start, sym__str_start, sym_quoted_enum_tag_start, @@ -29768,7 +29764,7 @@ static const uint16_t ts_small_parse_table[] = { [29401] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(461), 18, + ACTIONS(473), 18, sym_ident, anon_sym_PIPE, anon_sym_else, @@ -29787,7 +29783,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - ACTIONS(459), 22, + ACTIONS(471), 22, sym_multstr_start, sym__str_start, sym_quoted_enum_tag_start, @@ -29813,7 +29809,7 @@ static const uint16_t ts_small_parse_table[] = { [29449] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(457), 17, + ACTIONS(453), 17, sym_ident, anon_sym_PIPE, anon_sym_DOT, @@ -29831,7 +29827,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - ACTIONS(455), 23, + ACTIONS(451), 23, sym_multstr_start, sym__str_start, sym_quoted_enum_tag_start, @@ -29858,7 +29854,7 @@ static const uint16_t ts_small_parse_table[] = { [29497] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(367), 18, + ACTIONS(393), 18, sym_ident, anon_sym_PIPE, anon_sym_else, @@ -29877,7 +29873,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - ACTIONS(365), 22, + ACTIONS(391), 22, sym_multstr_start, sym__str_start, sym_quoted_enum_tag_start, @@ -29903,7 +29899,7 @@ static const uint16_t ts_small_parse_table[] = { [29545] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(497), 17, + ACTIONS(413), 17, sym_ident, anon_sym_PIPE, anon_sym_DOT, @@ -29921,7 +29917,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - ACTIONS(495), 23, + ACTIONS(411), 23, sym_multstr_start, sym__str_start, sym_quoted_enum_tag_start, @@ -29948,7 +29944,7 @@ static const uint16_t ts_small_parse_table[] = { [29593] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(493), 18, + ACTIONS(517), 18, sym_ident, anon_sym_PIPE, anon_sym_else, @@ -29967,7 +29963,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - ACTIONS(491), 22, + ACTIONS(515), 22, sym_multstr_start, sym__str_start, sym_quoted_enum_tag_start, @@ -29993,7 +29989,7 @@ static const uint16_t ts_small_parse_table[] = { [29641] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(517), 18, + ACTIONS(505), 18, sym_ident, anon_sym_PIPE, anon_sym_else, @@ -30012,7 +30008,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - ACTIONS(515), 22, + ACTIONS(503), 22, sym_multstr_start, sym__str_start, sym_quoted_enum_tag_start, @@ -30038,7 +30034,7 @@ static const uint16_t ts_small_parse_table[] = { [29689] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(501), 18, + ACTIONS(497), 18, sym_ident, anon_sym_PIPE, anon_sym_else, @@ -30057,7 +30053,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - ACTIONS(499), 22, + ACTIONS(495), 22, sym_multstr_start, sym__str_start, sym_quoted_enum_tag_start, @@ -30083,7 +30079,7 @@ static const uint16_t ts_small_parse_table[] = { [29737] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(381), 18, + ACTIONS(493), 18, sym_ident, anon_sym_PIPE, anon_sym_else, @@ -30102,7 +30098,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - ACTIONS(379), 22, + ACTIONS(491), 22, sym_multstr_start, sym__str_start, sym_quoted_enum_tag_start, @@ -30130,7 +30126,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(553), 1, anon_sym_DOT, - ACTIONS(405), 16, + ACTIONS(509), 16, sym_ident, anon_sym_PIPE, anon_sym_Dyn, @@ -30147,7 +30143,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - ACTIONS(403), 23, + ACTIONS(507), 23, sym_multstr_start, sym__str_start, sym_quoted_enum_tag_start, @@ -30176,7 +30172,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(553), 1, anon_sym_DOT, - ACTIONS(375), 16, + ACTIONS(377), 16, sym_ident, anon_sym_PIPE, anon_sym_Dyn, @@ -30193,7 +30189,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - ACTIONS(373), 23, + ACTIONS(375), 23, sym_multstr_start, sym__str_start, sym_quoted_enum_tag_start, @@ -30222,7 +30218,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(553), 1, anon_sym_DOT, - ACTIONS(421), 16, + ACTIONS(433), 16, sym_ident, anon_sym_PIPE, anon_sym_Dyn, @@ -30239,7 +30235,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - ACTIONS(419), 23, + ACTIONS(431), 23, sym_multstr_start, sym__str_start, sym_quoted_enum_tag_start, @@ -30266,7 +30262,7 @@ static const uint16_t ts_small_parse_table[] = { [29935] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(473), 18, + ACTIONS(421), 18, sym_ident, anon_sym_PIPE, anon_sym_else, @@ -30285,7 +30281,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - ACTIONS(471), 22, + ACTIONS(419), 22, sym_multstr_start, sym__str_start, sym_quoted_enum_tag_start, @@ -30311,7 +30307,7 @@ static const uint16_t ts_small_parse_table[] = { [29983] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(389), 18, + ACTIONS(385), 18, sym_ident, anon_sym_PIPE, anon_sym_else, @@ -30330,7 +30326,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - ACTIONS(387), 22, + ACTIONS(383), 22, sym_multstr_start, sym__str_start, sym_quoted_enum_tag_start, @@ -30356,7 +30352,7 @@ static const uint16_t ts_small_parse_table[] = { [30031] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(477), 17, + ACTIONS(369), 17, sym_ident, anon_sym_PIPE, anon_sym_DOT, @@ -30374,7 +30370,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - ACTIONS(475), 23, + ACTIONS(367), 23, sym_multstr_start, sym__str_start, sym_quoted_enum_tag_start, @@ -30401,7 +30397,7 @@ static const uint16_t ts_small_parse_table[] = { [30079] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(469), 18, + ACTIONS(465), 18, sym_ident, anon_sym_PIPE, anon_sym_else, @@ -30420,7 +30416,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - ACTIONS(467), 22, + ACTIONS(463), 22, sym_multstr_start, sym__str_start, sym_quoted_enum_tag_start, @@ -30446,7 +30442,7 @@ static const uint16_t ts_small_parse_table[] = { [30127] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(509), 18, + ACTIONS(501), 18, sym_ident, anon_sym_PIPE, anon_sym_else, @@ -30465,7 +30461,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - ACTIONS(507), 22, + ACTIONS(499), 22, sym_multstr_start, sym__str_start, sym_quoted_enum_tag_start, @@ -30491,7 +30487,7 @@ static const uint16_t ts_small_parse_table[] = { [30175] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(429), 18, + ACTIONS(425), 18, sym_ident, anon_sym_PIPE, anon_sym_else, @@ -30510,7 +30506,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - ACTIONS(427), 22, + ACTIONS(423), 22, sym_multstr_start, sym__str_start, sym_quoted_enum_tag_start, @@ -30536,7 +30532,7 @@ static const uint16_t ts_small_parse_table[] = { [30223] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(433), 18, + ACTIONS(429), 18, sym_ident, anon_sym_PIPE, anon_sym_else, @@ -30555,7 +30551,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - ACTIONS(431), 22, + ACTIONS(427), 22, sym_multstr_start, sym__str_start, sym_quoted_enum_tag_start, @@ -30581,7 +30577,7 @@ static const uint16_t ts_small_parse_table[] = { [30271] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(401), 18, + ACTIONS(477), 18, sym_ident, anon_sym_PIPE, anon_sym_else, @@ -30600,7 +30596,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - ACTIONS(399), 22, + ACTIONS(475), 22, sym_multstr_start, sym__str_start, sym_quoted_enum_tag_start, @@ -30626,7 +30622,7 @@ static const uint16_t ts_small_parse_table[] = { [30319] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(425), 18, + ACTIONS(437), 18, sym_ident, anon_sym_PIPE, anon_sym_then, @@ -30645,7 +30641,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - ACTIONS(423), 22, + ACTIONS(435), 22, sym_multstr_start, sym__str_start, sym_quoted_enum_tag_start, @@ -30671,7 +30667,7 @@ static const uint16_t ts_small_parse_table[] = { [30367] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(437), 18, + ACTIONS(441), 18, sym_ident, anon_sym_PIPE, anon_sym_then, @@ -30690,7 +30686,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - ACTIONS(435), 22, + ACTIONS(439), 22, sym_multstr_start, sym__str_start, sym_quoted_enum_tag_start, @@ -30716,7 +30712,7 @@ static const uint16_t ts_small_parse_table[] = { [30415] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(371), 17, + ACTIONS(373), 17, sym_ident, anon_sym_PIPE, anon_sym_DOT, @@ -30734,7 +30730,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - ACTIONS(369), 23, + ACTIONS(371), 23, sym_multstr_start, sym__str_start, sym_quoted_enum_tag_start, @@ -30761,7 +30757,7 @@ static const uint16_t ts_small_parse_table[] = { [30463] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(461), 18, + ACTIONS(473), 18, sym_ident, anon_sym_PIPE, anon_sym_then, @@ -30780,7 +30776,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - ACTIONS(459), 22, + ACTIONS(471), 22, sym_multstr_start, sym__str_start, sym_quoted_enum_tag_start, @@ -30806,7 +30802,7 @@ static const uint16_t ts_small_parse_table[] = { [30511] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(367), 18, + ACTIONS(393), 18, sym_ident, anon_sym_PIPE, anon_sym_then, @@ -30825,7 +30821,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - ACTIONS(365), 22, + ACTIONS(391), 22, sym_multstr_start, sym__str_start, sym_quoted_enum_tag_start, @@ -30851,7 +30847,7 @@ static const uint16_t ts_small_parse_table[] = { [30559] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(493), 18, + ACTIONS(517), 18, sym_ident, anon_sym_PIPE, anon_sym_then, @@ -30870,7 +30866,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - ACTIONS(491), 22, + ACTIONS(515), 22, sym_multstr_start, sym__str_start, sym_quoted_enum_tag_start, @@ -30896,7 +30892,7 @@ static const uint16_t ts_small_parse_table[] = { [30607] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(517), 18, + ACTIONS(505), 18, sym_ident, anon_sym_PIPE, anon_sym_then, @@ -30915,7 +30911,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - ACTIONS(515), 22, + ACTIONS(503), 22, sym_multstr_start, sym__str_start, sym_quoted_enum_tag_start, @@ -30941,7 +30937,7 @@ static const uint16_t ts_small_parse_table[] = { [30655] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(501), 18, + ACTIONS(497), 18, sym_ident, anon_sym_PIPE, anon_sym_then, @@ -30960,7 +30956,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - ACTIONS(499), 22, + ACTIONS(495), 22, sym_multstr_start, sym__str_start, sym_quoted_enum_tag_start, @@ -30986,7 +30982,7 @@ static const uint16_t ts_small_parse_table[] = { [30703] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(381), 18, + ACTIONS(493), 18, sym_ident, anon_sym_PIPE, anon_sym_then, @@ -31005,7 +31001,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - ACTIONS(379), 22, + ACTIONS(491), 22, sym_multstr_start, sym__str_start, sym_quoted_enum_tag_start, @@ -31031,7 +31027,7 @@ static const uint16_t ts_small_parse_table[] = { [30751] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(473), 18, + ACTIONS(421), 18, sym_ident, anon_sym_PIPE, anon_sym_then, @@ -31050,7 +31046,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - ACTIONS(471), 22, + ACTIONS(419), 22, sym_multstr_start, sym__str_start, sym_quoted_enum_tag_start, @@ -31076,7 +31072,7 @@ static const uint16_t ts_small_parse_table[] = { [30799] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(389), 18, + ACTIONS(385), 18, sym_ident, anon_sym_PIPE, anon_sym_then, @@ -31095,7 +31091,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - ACTIONS(387), 22, + ACTIONS(383), 22, sym_multstr_start, sym__str_start, sym_quoted_enum_tag_start, @@ -31121,7 +31117,7 @@ static const uint16_t ts_small_parse_table[] = { [30847] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(469), 18, + ACTIONS(465), 18, sym_ident, anon_sym_PIPE, anon_sym_then, @@ -31140,7 +31136,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - ACTIONS(467), 22, + ACTIONS(463), 22, sym_multstr_start, sym__str_start, sym_quoted_enum_tag_start, @@ -31166,7 +31162,7 @@ static const uint16_t ts_small_parse_table[] = { [30895] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(509), 18, + ACTIONS(501), 18, sym_ident, anon_sym_PIPE, anon_sym_then, @@ -31185,7 +31181,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - ACTIONS(507), 22, + ACTIONS(499), 22, sym_multstr_start, sym__str_start, sym_quoted_enum_tag_start, @@ -31211,7 +31207,7 @@ static const uint16_t ts_small_parse_table[] = { [30943] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(429), 18, + ACTIONS(425), 18, sym_ident, anon_sym_PIPE, anon_sym_then, @@ -31230,7 +31226,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - ACTIONS(427), 22, + ACTIONS(423), 22, sym_multstr_start, sym__str_start, sym_quoted_enum_tag_start, @@ -31256,7 +31252,7 @@ static const uint16_t ts_small_parse_table[] = { [30991] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(433), 18, + ACTIONS(429), 18, sym_ident, anon_sym_PIPE, anon_sym_then, @@ -31275,7 +31271,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - ACTIONS(431), 22, + ACTIONS(427), 22, sym_multstr_start, sym__str_start, sym_quoted_enum_tag_start, @@ -31301,7 +31297,7 @@ static const uint16_t ts_small_parse_table[] = { [31039] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(401), 18, + ACTIONS(477), 18, sym_ident, anon_sym_PIPE, anon_sym_then, @@ -31320,7 +31316,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - ACTIONS(399), 22, + ACTIONS(475), 22, sym_multstr_start, sym__str_start, sym_quoted_enum_tag_start, @@ -31346,10 +31342,9 @@ static const uint16_t ts_small_parse_table[] = { [31087] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(441), 18, + ACTIONS(497), 17, sym_ident, anon_sym_PIPE, - anon_sym_in, anon_sym_DOT, anon_sym_Dyn, anon_sym_null, @@ -31365,10 +31360,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - ACTIONS(439), 22, + ACTIONS(495), 23, sym_multstr_start, sym__str_start, sym_quoted_enum_tag_start, + ts_builtin_sym_end, sym_num_literal, sym_raw_enum_tag, anon_sym_COLON, @@ -31391,7 +31387,7 @@ static const uint16_t ts_small_parse_table[] = { [31135] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(445), 18, + ACTIONS(461), 18, sym_ident, anon_sym_PIPE, anon_sym_then, @@ -31410,7 +31406,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - ACTIONS(443), 22, + ACTIONS(459), 22, sym_multstr_start, sym__str_start, sym_quoted_enum_tag_start, @@ -31436,7 +31432,7 @@ static const uint16_t ts_small_parse_table[] = { [31183] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(449), 18, + ACTIONS(445), 18, sym_ident, anon_sym_PIPE, anon_sym_then, @@ -31455,7 +31451,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - ACTIONS(447), 22, + ACTIONS(443), 22, sym_multstr_start, sym__str_start, sym_quoted_enum_tag_start, @@ -31481,7 +31477,7 @@ static const uint16_t ts_small_parse_table[] = { [31231] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(409), 18, + ACTIONS(397), 18, sym_ident, anon_sym_PIPE, anon_sym_else, @@ -31500,7 +31496,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - ACTIONS(407), 22, + ACTIONS(395), 22, sym_multstr_start, sym__str_start, sym_quoted_enum_tag_start, @@ -31526,7 +31522,7 @@ static const uint16_t ts_small_parse_table[] = { [31279] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(513), 18, + ACTIONS(449), 18, sym_ident, anon_sym_PIPE, anon_sym_then, @@ -31545,7 +31541,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - ACTIONS(511), 22, + ACTIONS(447), 22, sym_multstr_start, sym__str_start, sym_quoted_enum_tag_start, @@ -31571,7 +31567,7 @@ static const uint16_t ts_small_parse_table[] = { [31327] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(489), 18, + ACTIONS(513), 18, sym_ident, anon_sym_PIPE, anon_sym_then, @@ -31590,7 +31586,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - ACTIONS(487), 22, + ACTIONS(511), 22, sym_multstr_start, sym__str_start, sym_quoted_enum_tag_start, @@ -31616,7 +31612,7 @@ static const uint16_t ts_small_parse_table[] = { [31375] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(465), 18, + ACTIONS(481), 18, sym_ident, anon_sym_PIPE, anon_sym_in, @@ -31635,7 +31631,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - ACTIONS(463), 22, + ACTIONS(479), 22, sym_multstr_start, sym__str_start, sym_quoted_enum_tag_start, @@ -31661,7 +31657,7 @@ static const uint16_t ts_small_parse_table[] = { [31423] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(481), 18, + ACTIONS(485), 18, sym_ident, anon_sym_PIPE, anon_sym_then, @@ -31680,7 +31676,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - ACTIONS(479), 22, + ACTIONS(483), 22, sym_multstr_start, sym__str_start, sym_quoted_enum_tag_start, @@ -31706,7 +31702,7 @@ static const uint16_t ts_small_parse_table[] = { [31471] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(363), 18, + ACTIONS(469), 18, sym_ident, anon_sym_PIPE, anon_sym_then, @@ -31725,7 +31721,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - ACTIONS(361), 22, + ACTIONS(467), 22, sym_multstr_start, sym__str_start, sym_quoted_enum_tag_start, @@ -31751,7 +31747,7 @@ static const uint16_t ts_small_parse_table[] = { [31519] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(441), 18, + ACTIONS(417), 18, sym_ident, anon_sym_PIPE, anon_sym_else, @@ -31770,7 +31766,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - ACTIONS(439), 22, + ACTIONS(415), 22, sym_multstr_start, sym__str_start, sym_quoted_enum_tag_start, @@ -31796,7 +31792,7 @@ static const uint16_t ts_small_parse_table[] = { [31567] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(445), 18, + ACTIONS(461), 18, sym_ident, anon_sym_PIPE, anon_sym_else, @@ -31815,7 +31811,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - ACTIONS(443), 22, + ACTIONS(459), 22, sym_multstr_start, sym__str_start, sym_quoted_enum_tag_start, @@ -31841,7 +31837,7 @@ static const uint16_t ts_small_parse_table[] = { [31615] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(449), 18, + ACTIONS(445), 18, sym_ident, anon_sym_PIPE, anon_sym_else, @@ -31860,7 +31856,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - ACTIONS(447), 22, + ACTIONS(443), 22, sym_multstr_start, sym__str_start, sym_quoted_enum_tag_start, @@ -31886,7 +31882,7 @@ static const uint16_t ts_small_parse_table[] = { [31663] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(513), 18, + ACTIONS(449), 18, sym_ident, anon_sym_PIPE, anon_sym_else, @@ -31905,7 +31901,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - ACTIONS(511), 22, + ACTIONS(447), 22, sym_multstr_start, sym__str_start, sym_quoted_enum_tag_start, @@ -31931,7 +31927,7 @@ static const uint16_t ts_small_parse_table[] = { [31711] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(489), 18, + ACTIONS(513), 18, sym_ident, anon_sym_PIPE, anon_sym_else, @@ -31950,7 +31946,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - ACTIONS(487), 22, + ACTIONS(511), 22, sym_multstr_start, sym__str_start, sym_quoted_enum_tag_start, @@ -31976,7 +31972,7 @@ static const uint16_t ts_small_parse_table[] = { [31759] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(409), 18, + ACTIONS(397), 18, sym_ident, anon_sym_PIPE, anon_sym_then, @@ -31995,7 +31991,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - ACTIONS(407), 22, + ACTIONS(395), 22, sym_multstr_start, sym__str_start, sym_quoted_enum_tag_start, @@ -32021,7 +32017,7 @@ static const uint16_t ts_small_parse_table[] = { [31807] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(481), 18, + ACTIONS(485), 18, sym_ident, anon_sym_PIPE, anon_sym_else, @@ -32040,7 +32036,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - ACTIONS(479), 22, + ACTIONS(483), 22, sym_multstr_start, sym__str_start, sym_quoted_enum_tag_start, @@ -32066,7 +32062,7 @@ static const uint16_t ts_small_parse_table[] = { [31855] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(363), 18, + ACTIONS(469), 18, sym_ident, anon_sym_PIPE, anon_sym_else, @@ -32085,7 +32081,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - ACTIONS(361), 22, + ACTIONS(467), 22, sym_multstr_start, sym__str_start, sym_quoted_enum_tag_start, @@ -32111,7 +32107,7 @@ static const uint16_t ts_small_parse_table[] = { [31903] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(505), 17, + ACTIONS(401), 17, sym_ident, anon_sym_PIPE, anon_sym_DOT, @@ -32129,7 +32125,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - ACTIONS(503), 23, + ACTIONS(399), 23, sym_multstr_start, sym__str_start, sym_interpolation_end, @@ -32200,7 +32196,7 @@ static const uint16_t ts_small_parse_table[] = { [31998] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(397), 17, + ACTIONS(363), 17, sym_ident, anon_sym_PIPE, anon_sym_else, @@ -32218,7 +32214,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - ACTIONS(395), 22, + ACTIONS(361), 22, sym_multstr_start, sym__str_start, sym_quoted_enum_tag_start, @@ -32244,7 +32240,7 @@ static const uint16_t ts_small_parse_table[] = { [32045] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(541), 17, + ACTIONS(537), 17, sym_ident, anon_sym_PIPE, anon_sym_else, @@ -32262,7 +32258,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - ACTIONS(539), 22, + ACTIONS(535), 22, sym_multstr_start, sym__str_start, sym_quoted_enum_tag_start, @@ -32288,7 +32284,7 @@ static const uint16_t ts_small_parse_table[] = { [32092] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(541), 17, + ACTIONS(537), 17, sym_ident, anon_sym_PIPE, anon_sym_then, @@ -32306,7 +32302,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - ACTIONS(539), 22, + ACTIONS(535), 22, sym_multstr_start, sym__str_start, sym_quoted_enum_tag_start, @@ -32332,7 +32328,7 @@ static const uint16_t ts_small_parse_table[] = { [32139] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(533), 17, + ACTIONS(525), 17, sym_ident, anon_sym_PIPE, anon_sym_then, @@ -32350,7 +32346,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - ACTIONS(531), 22, + ACTIONS(523), 22, sym_multstr_start, sym__str_start, sym_quoted_enum_tag_start, @@ -32420,7 +32416,7 @@ static const uint16_t ts_small_parse_table[] = { [32233] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(533), 17, + ACTIONS(525), 17, sym_ident, anon_sym_PIPE, anon_sym_else, @@ -32438,7 +32434,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - ACTIONS(531), 22, + ACTIONS(523), 22, sym_multstr_start, sym__str_start, sym_quoted_enum_tag_start, @@ -32464,7 +32460,7 @@ static const uint16_t ts_small_parse_table[] = { [32280] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(521), 16, + ACTIONS(529), 16, sym_ident, anon_sym_PIPE, anon_sym_Dyn, @@ -32481,7 +32477,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - ACTIONS(519), 23, + ACTIONS(527), 23, sym_multstr_start, sym__str_start, sym_interpolation_end, @@ -32508,7 +32504,7 @@ static const uint16_t ts_small_parse_table[] = { [32327] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(525), 16, + ACTIONS(541), 16, sym_ident, anon_sym_PIPE, anon_sym_Dyn, @@ -32525,7 +32521,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - ACTIONS(523), 23, + ACTIONS(539), 23, sym_multstr_start, sym__str_start, sym_quoted_enum_tag_start, @@ -32596,7 +32592,7 @@ static const uint16_t ts_small_parse_table[] = { [32421] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(537), 16, + ACTIONS(533), 16, sym_ident, anon_sym_PIPE, anon_sym_Dyn, @@ -32613,7 +32609,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - ACTIONS(535), 23, + ACTIONS(531), 23, sym_multstr_start, sym__str_start, sym_interpolation_end, @@ -32640,10 +32636,9 @@ static const uint16_t ts_small_parse_table[] = { [32468] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(525), 17, + ACTIONS(363), 16, sym_ident, anon_sym_PIPE, - anon_sym_then, anon_sym_Dyn, anon_sym_null, anon_sym_LBRACK, @@ -32658,9 +32653,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - ACTIONS(523), 22, + ACTIONS(361), 23, sym_multstr_start, sym__str_start, + sym_interpolation_end, sym_quoted_enum_tag_start, sym_num_literal, sym_raw_enum_tag, @@ -32684,9 +32680,10 @@ static const uint16_t ts_small_parse_table[] = { [32515] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(397), 16, + ACTIONS(541), 17, sym_ident, anon_sym_PIPE, + anon_sym_then, anon_sym_Dyn, anon_sym_null, anon_sym_LBRACK, @@ -32701,10 +32698,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - ACTIONS(395), 23, + ACTIONS(539), 22, sym_multstr_start, sym__str_start, - sym_interpolation_end, sym_quoted_enum_tag_start, sym_num_literal, sym_raw_enum_tag, @@ -32728,7 +32724,7 @@ static const uint16_t ts_small_parse_table[] = { [32562] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(537), 17, + ACTIONS(533), 17, sym_ident, anon_sym_PIPE, anon_sym_in, @@ -32746,7 +32742,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - ACTIONS(535), 22, + ACTIONS(531), 22, sym_multstr_start, sym__str_start, sym_quoted_enum_tag_start, @@ -32772,7 +32768,7 @@ static const uint16_t ts_small_parse_table[] = { [32609] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(521), 17, + ACTIONS(529), 17, sym_ident, anon_sym_PIPE, anon_sym_in, @@ -32790,7 +32786,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - ACTIONS(519), 22, + ACTIONS(527), 22, sym_multstr_start, sym__str_start, sym_quoted_enum_tag_start, @@ -32816,7 +32812,7 @@ static const uint16_t ts_small_parse_table[] = { [32656] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(525), 17, + ACTIONS(541), 17, sym_ident, anon_sym_PIPE, anon_sym_else, @@ -32834,7 +32830,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - ACTIONS(523), 22, + ACTIONS(539), 22, sym_multstr_start, sym__str_start, sym_quoted_enum_tag_start, @@ -32860,7 +32856,7 @@ static const uint16_t ts_small_parse_table[] = { [32703] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(537), 17, + ACTIONS(533), 17, sym_ident, anon_sym_PIPE, anon_sym_else, @@ -32878,7 +32874,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - ACTIONS(535), 22, + ACTIONS(531), 22, sym_multstr_start, sym__str_start, sym_quoted_enum_tag_start, @@ -32904,7 +32900,7 @@ static const uint16_t ts_small_parse_table[] = { [32750] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(521), 17, + ACTIONS(529), 17, sym_ident, anon_sym_PIPE, anon_sym_else, @@ -32922,7 +32918,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - ACTIONS(519), 22, + ACTIONS(527), 22, sym_multstr_start, sym__str_start, sym_quoted_enum_tag_start, @@ -32948,10 +32944,9 @@ static const uint16_t ts_small_parse_table[] = { [32797] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(397), 17, + ACTIONS(541), 16, sym_ident, anon_sym_PIPE, - anon_sym_then, anon_sym_Dyn, anon_sym_null, anon_sym_LBRACK, @@ -32966,9 +32961,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - ACTIONS(395), 22, + ACTIONS(539), 23, sym_multstr_start, sym__str_start, + sym_interpolation_end, sym_quoted_enum_tag_start, sym_num_literal, sym_raw_enum_tag, @@ -32992,9 +32988,10 @@ static const uint16_t ts_small_parse_table[] = { [32844] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(525), 16, + ACTIONS(363), 17, sym_ident, anon_sym_PIPE, + anon_sym_then, anon_sym_Dyn, anon_sym_null, anon_sym_LBRACK, @@ -33009,10 +33006,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - ACTIONS(523), 23, + ACTIONS(361), 22, sym_multstr_start, sym__str_start, - sym_interpolation_end, sym_quoted_enum_tag_start, sym_num_literal, sym_raw_enum_tag, @@ -33036,7 +33032,7 @@ static const uint16_t ts_small_parse_table[] = { [32891] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(529), 17, + ACTIONS(521), 17, sym_ident, anon_sym_PIPE, anon_sym_then, @@ -33054,7 +33050,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - ACTIONS(527), 22, + ACTIONS(519), 22, sym_multstr_start, sym__str_start, sym_quoted_enum_tag_start, @@ -33080,7 +33076,7 @@ static const uint16_t ts_small_parse_table[] = { [32938] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(529), 16, + ACTIONS(521), 16, sym_ident, anon_sym_PIPE, anon_sym_Dyn, @@ -33097,7 +33093,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - ACTIONS(527), 23, + ACTIONS(519), 23, sym_multstr_start, sym__str_start, sym_quoted_enum_tag_start, @@ -33124,7 +33120,7 @@ static const uint16_t ts_small_parse_table[] = { [32985] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(529), 17, + ACTIONS(521), 17, sym_ident, anon_sym_PIPE, anon_sym_else, @@ -33142,7 +33138,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - ACTIONS(527), 22, + ACTIONS(519), 22, sym_multstr_start, sym__str_start, sym_quoted_enum_tag_start, @@ -33168,7 +33164,7 @@ static const uint16_t ts_small_parse_table[] = { [33032] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(529), 17, + ACTIONS(521), 17, sym_ident, anon_sym_PIPE, anon_sym_in, @@ -33186,7 +33182,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - ACTIONS(527), 22, + ACTIONS(519), 22, sym_multstr_start, sym__str_start, sym_quoted_enum_tag_start, @@ -33212,7 +33208,7 @@ static const uint16_t ts_small_parse_table[] = { [33079] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(537), 17, + ACTIONS(533), 17, sym_ident, anon_sym_PIPE, anon_sym_then, @@ -33230,7 +33226,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - ACTIONS(535), 22, + ACTIONS(531), 22, sym_multstr_start, sym__str_start, sym_quoted_enum_tag_start, @@ -33256,7 +33252,7 @@ static const uint16_t ts_small_parse_table[] = { [33126] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(537), 16, + ACTIONS(533), 16, sym_ident, anon_sym_PIPE, anon_sym_Dyn, @@ -33273,7 +33269,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - ACTIONS(535), 23, + ACTIONS(531), 23, sym_multstr_start, sym__str_start, sym_quoted_enum_tag_start, @@ -33344,7 +33340,7 @@ static const uint16_t ts_small_parse_table[] = { [33220] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(541), 16, + ACTIONS(537), 16, sym_ident, anon_sym_PIPE, anon_sym_Dyn, @@ -33361,7 +33357,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - ACTIONS(539), 23, + ACTIONS(535), 23, sym_multstr_start, sym__str_start, sym_quoted_enum_tag_start, @@ -33388,7 +33384,7 @@ static const uint16_t ts_small_parse_table[] = { [33267] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(541), 17, + ACTIONS(537), 17, sym_ident, anon_sym_PIPE, anon_sym_in, @@ -33406,7 +33402,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - ACTIONS(539), 22, + ACTIONS(535), 22, sym_multstr_start, sym__str_start, sym_quoted_enum_tag_start, @@ -33432,7 +33428,7 @@ static const uint16_t ts_small_parse_table[] = { [33314] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(521), 17, + ACTIONS(529), 17, sym_ident, anon_sym_PIPE, anon_sym_then, @@ -33450,7 +33446,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - ACTIONS(519), 22, + ACTIONS(527), 22, sym_multstr_start, sym__str_start, sym_quoted_enum_tag_start, @@ -33476,7 +33472,7 @@ static const uint16_t ts_small_parse_table[] = { [33361] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(533), 16, + ACTIONS(525), 16, sym_ident, anon_sym_PIPE, anon_sym_Dyn, @@ -33493,7 +33489,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - ACTIONS(531), 23, + ACTIONS(523), 23, sym_multstr_start, sym__str_start, sym_interpolation_end, @@ -33520,7 +33516,7 @@ static const uint16_t ts_small_parse_table[] = { [33408] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(541), 16, + ACTIONS(537), 16, sym_ident, anon_sym_PIPE, anon_sym_Dyn, @@ -33537,7 +33533,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - ACTIONS(539), 23, + ACTIONS(535), 23, sym_multstr_start, sym__str_start, sym_interpolation_end, @@ -33564,7 +33560,7 @@ static const uint16_t ts_small_parse_table[] = { [33455] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(529), 16, + ACTIONS(521), 16, sym_ident, anon_sym_PIPE, anon_sym_Dyn, @@ -33581,7 +33577,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - ACTIONS(527), 23, + ACTIONS(519), 23, sym_multstr_start, sym__str_start, sym_interpolation_end, @@ -33608,7 +33604,7 @@ static const uint16_t ts_small_parse_table[] = { [33502] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(397), 17, + ACTIONS(363), 17, sym_ident, anon_sym_PIPE, anon_sym_in, @@ -33626,7 +33622,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - ACTIONS(395), 22, + ACTIONS(361), 22, sym_multstr_start, sym__str_start, sym_quoted_enum_tag_start, @@ -33652,7 +33648,7 @@ static const uint16_t ts_small_parse_table[] = { [33549] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(533), 16, + ACTIONS(525), 16, sym_ident, anon_sym_PIPE, anon_sym_Dyn, @@ -33669,7 +33665,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - ACTIONS(531), 23, + ACTIONS(523), 23, sym_multstr_start, sym__str_start, sym_quoted_enum_tag_start, @@ -33696,7 +33692,7 @@ static const uint16_t ts_small_parse_table[] = { [33596] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(397), 16, + ACTIONS(363), 16, sym_ident, anon_sym_PIPE, anon_sym_Dyn, @@ -33713,7 +33709,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - ACTIONS(395), 23, + ACTIONS(361), 23, sym_multstr_start, sym__str_start, sym_quoted_enum_tag_start, @@ -33740,7 +33736,7 @@ static const uint16_t ts_small_parse_table[] = { [33643] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(525), 17, + ACTIONS(541), 17, sym_ident, anon_sym_PIPE, anon_sym_in, @@ -33758,7 +33754,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - ACTIONS(523), 22, + ACTIONS(539), 22, sym_multstr_start, sym__str_start, sym_quoted_enum_tag_start, @@ -33784,7 +33780,7 @@ static const uint16_t ts_small_parse_table[] = { [33690] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(521), 16, + ACTIONS(529), 16, sym_ident, anon_sym_PIPE, anon_sym_Dyn, @@ -33801,7 +33797,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - ACTIONS(519), 23, + ACTIONS(527), 23, sym_multstr_start, sym__str_start, sym_quoted_enum_tag_start, @@ -33872,7 +33868,7 @@ static const uint16_t ts_small_parse_table[] = { [33784] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(533), 17, + ACTIONS(525), 17, sym_ident, anon_sym_PIPE, anon_sym_in, @@ -33890,7 +33886,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - ACTIONS(531), 22, + ACTIONS(523), 22, sym_multstr_start, sym__str_start, sym_quoted_enum_tag_start, @@ -33940,15 +33936,15 @@ static const uint16_t ts_small_parse_table[] = { sym_infix_lazy_b_op_10, STATE(164), 1, sym_infix_b_op_7, - STATE(166), 1, + STATE(168), 1, sym_infix_b_op_6, - STATE(186), 1, + STATE(187), 1, sym_infix_b_op_4, - STATE(188), 1, - sym_infix_b_op_3, STATE(189), 1, + sym_infix_b_op_3, + STATE(190), 1, sym_infix_b_op_2, - STATE(671), 1, + STATE(673), 1, sym_annot, ACTIONS(569), 2, anon_sym_AT, @@ -33965,7 +33961,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(583), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - STATE(666), 2, + STATE(667), 2, sym_annot_atom, aux_sym_annot_repeat1, ACTIONS(571), 3, @@ -33979,13 +33975,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, - [33923] = 16, + [33923] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(575), 1, - anon_sym_AMP, - ACTIONS(577), 1, - anon_sym_PIPE_GT, STATE(157), 1, sym_infix_b_op_8, STATE(160), 1, @@ -33994,13 +33986,13 @@ static const uint16_t ts_small_parse_table[] = { sym_infix_lazy_b_op_10, STATE(164), 1, sym_infix_b_op_7, - STATE(166), 1, + STATE(168), 1, sym_infix_b_op_6, - STATE(186), 1, + STATE(187), 1, sym_infix_b_op_4, - STATE(188), 1, - sym_infix_b_op_3, STATE(189), 1, + sym_infix_b_op_3, + STATE(190), 1, sym_infix_b_op_2, ACTIONS(569), 2, anon_sym_AT, @@ -34012,12 +34004,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(591), 4, + ACTIONS(591), 5, anon_sym_PIPE, anon_sym_EQ, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, - ACTIONS(593), 15, + ACTIONS(593), 16, anon_sym_COLON, anon_sym_EQ_GT, anon_sym_COMMA, @@ -34026,6 +34019,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_QMARK, + anon_sym_PIPE_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, @@ -34033,7 +34027,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_DASH_GT, - [33993] = 22, + [33989] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(575), 1, @@ -34054,13 +34048,13 @@ static const uint16_t ts_small_parse_table[] = { sym_infix_lazy_b_op_10, STATE(164), 1, sym_infix_b_op_7, - STATE(166), 1, + STATE(168), 1, sym_infix_b_op_6, - STATE(186), 1, + STATE(187), 1, sym_infix_b_op_4, - STATE(188), 1, - sym_infix_b_op_3, STATE(189), 1, + sym_infix_b_op_3, + STATE(190), 1, sym_infix_b_op_2, ACTIONS(569), 2, anon_sym_AT, @@ -34077,14 +34071,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(583), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(591), 2, + ACTIONS(595), 2, anon_sym_PIPE, anon_sym_EQ, ACTIONS(571), 3, anon_sym_PERCENT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(593), 8, + ACTIONS(597), 8, anon_sym_COLON, anon_sym_EQ_GT, anon_sym_COMMA, @@ -34093,7 +34087,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_QMARK, - [34075] = 22, + [34071] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(575), 1, @@ -34114,13 +34108,13 @@ static const uint16_t ts_small_parse_table[] = { sym_infix_lazy_b_op_10, STATE(164), 1, sym_infix_b_op_7, - STATE(166), 1, + STATE(168), 1, sym_infix_b_op_6, - STATE(186), 1, + STATE(187), 1, sym_infix_b_op_4, - STATE(188), 1, - sym_infix_b_op_3, STATE(189), 1, + sym_infix_b_op_3, + STATE(190), 1, sym_infix_b_op_2, ACTIONS(569), 2, anon_sym_AT, @@ -34137,14 +34131,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(583), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(595), 2, + ACTIONS(591), 2, anon_sym_PIPE, anon_sym_EQ, ACTIONS(571), 3, anon_sym_PERCENT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(597), 8, + ACTIONS(593), 8, anon_sym_COLON, anon_sym_EQ_GT, anon_sym_COMMA, @@ -34153,7 +34147,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_QMARK, - [34157] = 11, + [34153] = 11, ACTIONS(3), 1, sym_comment, STATE(157), 1, @@ -34164,13 +34158,13 @@ static const uint16_t ts_small_parse_table[] = { sym_infix_lazy_b_op_10, STATE(164), 1, sym_infix_b_op_7, - STATE(166), 1, + STATE(168), 1, sym_infix_b_op_6, - STATE(186), 1, + STATE(187), 1, sym_infix_b_op_4, - STATE(188), 1, - sym_infix_b_op_3, STATE(189), 1, + sym_infix_b_op_3, + STATE(190), 1, sym_infix_b_op_2, ACTIONS(599), 7, anon_sym_PIPE, @@ -34202,7 +34196,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_DASH_GT, - [34217] = 14, + [34213] = 14, ACTIONS(3), 1, sym_comment, STATE(157), 1, @@ -34213,13 +34207,13 @@ static const uint16_t ts_small_parse_table[] = { sym_infix_lazy_b_op_10, STATE(164), 1, sym_infix_b_op_7, - STATE(166), 1, + STATE(168), 1, sym_infix_b_op_6, - STATE(186), 1, + STATE(187), 1, sym_infix_b_op_4, - STATE(188), 1, - sym_infix_b_op_3, STATE(189), 1, + sym_infix_b_op_3, + STATE(190), 1, sym_infix_b_op_2, ACTIONS(569), 2, anon_sym_AT, @@ -34254,7 +34248,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_DASH_GT, - [34283] = 11, + [34279] = 11, ACTIONS(3), 1, sym_comment, STATE(157), 1, @@ -34265,13 +34259,13 @@ static const uint16_t ts_small_parse_table[] = { sym_infix_lazy_b_op_10, STATE(164), 1, sym_infix_b_op_7, - STATE(166), 1, + STATE(168), 1, sym_infix_b_op_6, - STATE(186), 1, + STATE(187), 1, sym_infix_b_op_4, - STATE(188), 1, - sym_infix_b_op_3, STATE(189), 1, + sym_infix_b_op_3, + STATE(190), 1, sym_infix_b_op_2, ACTIONS(591), 7, anon_sym_PIPE, @@ -34303,7 +34297,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_DASH_GT, - [34343] = 12, + [34339] = 12, ACTIONS(3), 1, sym_comment, STATE(157), 1, @@ -34314,13 +34308,13 @@ static const uint16_t ts_small_parse_table[] = { sym_infix_lazy_b_op_10, STATE(164), 1, sym_infix_b_op_7, - STATE(166), 1, + STATE(168), 1, sym_infix_b_op_6, - STATE(186), 1, + STATE(187), 1, sym_infix_b_op_4, - STATE(188), 1, - sym_infix_b_op_3, STATE(189), 1, + sym_infix_b_op_3, + STATE(190), 1, sym_infix_b_op_2, ACTIONS(569), 2, anon_sym_AT, @@ -34353,7 +34347,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_DASH_GT, - [34405] = 13, + [34401] = 13, ACTIONS(3), 1, sym_comment, STATE(157), 1, @@ -34364,13 +34358,13 @@ static const uint16_t ts_small_parse_table[] = { sym_infix_lazy_b_op_10, STATE(164), 1, sym_infix_b_op_7, - STATE(166), 1, + STATE(168), 1, sym_infix_b_op_6, - STATE(186), 1, + STATE(187), 1, sym_infix_b_op_4, - STATE(188), 1, - sym_infix_b_op_3, STATE(189), 1, + sym_infix_b_op_3, + STATE(190), 1, sym_infix_b_op_2, ACTIONS(569), 2, anon_sym_AT, @@ -34404,9 +34398,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_DASH_GT, - [34469] = 14, + [34465] = 16, ACTIONS(3), 1, sym_comment, + ACTIONS(575), 1, + anon_sym_AMP, + ACTIONS(577), 1, + anon_sym_PIPE_GT, STATE(157), 1, sym_infix_b_op_8, STATE(160), 1, @@ -34415,13 +34413,13 @@ static const uint16_t ts_small_parse_table[] = { sym_infix_lazy_b_op_10, STATE(164), 1, sym_infix_b_op_7, - STATE(166), 1, + STATE(168), 1, sym_infix_b_op_6, - STATE(186), 1, + STATE(187), 1, sym_infix_b_op_4, - STATE(188), 1, - sym_infix_b_op_3, STATE(189), 1, + sym_infix_b_op_3, + STATE(190), 1, sym_infix_b_op_2, ACTIONS(569), 2, anon_sym_AT, @@ -34433,13 +34431,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(591), 5, + ACTIONS(591), 4, anon_sym_PIPE, anon_sym_EQ, - anon_sym_AMP, anon_sym_LT, anon_sym_GT, - ACTIONS(593), 16, + ACTIONS(593), 15, anon_sym_COLON, anon_sym_EQ_GT, anon_sym_COMMA, @@ -34448,7 +34445,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_PIPE_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, @@ -34471,13 +34467,13 @@ static const uint16_t ts_small_parse_table[] = { sym_infix_lazy_b_op_10, STATE(164), 1, sym_infix_b_op_7, - STATE(166), 1, + STATE(168), 1, sym_infix_b_op_6, - STATE(186), 1, + STATE(187), 1, sym_infix_b_op_4, - STATE(188), 1, - sym_infix_b_op_3, STATE(189), 1, + sym_infix_b_op_3, + STATE(190), 1, sym_infix_b_op_2, ACTIONS(569), 2, anon_sym_AT, @@ -34527,13 +34523,13 @@ static const uint16_t ts_small_parse_table[] = { sym_infix_lazy_b_op_10, STATE(164), 1, sym_infix_b_op_7, - STATE(166), 1, + STATE(168), 1, sym_infix_b_op_6, - STATE(186), 1, + STATE(187), 1, sym_infix_b_op_4, - STATE(188), 1, - sym_infix_b_op_3, STATE(189), 1, + sym_infix_b_op_3, + STATE(190), 1, sym_infix_b_op_2, ACTIONS(569), 2, anon_sym_AT, @@ -34586,13 +34582,13 @@ static const uint16_t ts_small_parse_table[] = { sym_infix_lazy_b_op_10, STATE(164), 1, sym_infix_b_op_7, - STATE(166), 1, + STATE(168), 1, sym_infix_b_op_6, - STATE(186), 1, + STATE(187), 1, sym_infix_b_op_4, - STATE(188), 1, - sym_infix_b_op_3, STATE(189), 1, + sym_infix_b_op_3, + STATE(190), 1, sym_infix_b_op_2, ACTIONS(569), 2, anon_sym_AT, @@ -34656,38 +34652,38 @@ static const uint16_t ts_small_parse_table[] = { sym__str_start, ACTIONS(629), 1, sym_quoted_enum_tag_start, - STATE(478), 1, + STATE(483), 1, aux_sym_array_pattern_repeat1, - STATE(564), 1, + STATE(509), 1, sym_enum_tag, - STATE(602), 1, + STATE(609), 1, aux_sym_or_pattern_unparens_repeat1, - STATE(614), 1, + STATE(613), 1, sym_quoted_enum_tag, - STATE(698), 1, + STATE(697), 1, sym_enum_pattern_parens, - STATE(726), 1, + STATE(718), 1, sym_or_pattern_parens, - STATE(734), 1, - sym_or_pattern_unparens, - STATE(753), 1, + STATE(746), 1, sym_enum_variant_pattern, - STATE(977), 1, + STATE(747), 1, + sym_or_pattern_unparens, + STATE(975), 1, sym_pattern, - STATE(985), 1, - sym_last_elem_pat, - STATE(1055), 1, + STATE(1039), 1, sym_pattern_or_branch, + STATE(1059), 1, + sym_last_elem_pat, ACTIONS(623), 2, anon_sym_true, anon_sym_false, - STATE(677), 2, + STATE(690), 2, sym_bool, sym_static_string, - STATE(738), 2, + STATE(734), 2, sym_enum_pattern, sym_or_pattern, - STATE(712), 3, + STATE(719), 3, sym_constant_pattern, sym_record_pattern, sym_array_pattern, @@ -34722,36 +34718,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, STATE(476), 1, aux_sym_array_pattern_repeat1, - STATE(564), 1, + STATE(509), 1, sym_enum_tag, - STATE(602), 1, + STATE(609), 1, aux_sym_or_pattern_unparens_repeat1, - STATE(614), 1, + STATE(613), 1, sym_quoted_enum_tag, - STATE(698), 1, + STATE(697), 1, sym_enum_pattern_parens, - STATE(726), 1, + STATE(718), 1, sym_or_pattern_parens, - STATE(734), 1, - sym_or_pattern_unparens, - STATE(753), 1, + STATE(746), 1, sym_enum_variant_pattern, - STATE(977), 1, + STATE(747), 1, + sym_or_pattern_unparens, + STATE(975), 1, sym_pattern, - STATE(1055), 1, + STATE(1039), 1, sym_pattern_or_branch, - STATE(1131), 1, + STATE(1085), 1, sym_last_elem_pat, ACTIONS(623), 2, anon_sym_true, anon_sym_false, - STATE(677), 2, + STATE(690), 2, sym_bool, sym_static_string, - STATE(738), 2, + STATE(734), 2, sym_enum_pattern, sym_or_pattern, - STATE(712), 3, + STATE(719), 3, sym_constant_pattern, sym_record_pattern, sym_array_pattern, @@ -34784,38 +34780,38 @@ static const uint16_t ts_small_parse_table[] = { sym_quoted_enum_tag_start, ACTIONS(633), 1, anon_sym_RBRACK, - STATE(478), 1, + STATE(483), 1, aux_sym_array_pattern_repeat1, - STATE(564), 1, + STATE(509), 1, sym_enum_tag, - STATE(602), 1, + STATE(609), 1, aux_sym_or_pattern_unparens_repeat1, - STATE(614), 1, + STATE(613), 1, sym_quoted_enum_tag, - STATE(698), 1, + STATE(697), 1, sym_enum_pattern_parens, - STATE(726), 1, + STATE(718), 1, sym_or_pattern_parens, - STATE(734), 1, - sym_or_pattern_unparens, - STATE(753), 1, + STATE(746), 1, sym_enum_variant_pattern, - STATE(977), 1, + STATE(747), 1, + sym_or_pattern_unparens, + STATE(975), 1, sym_pattern, - STATE(1055), 1, + STATE(1039), 1, sym_pattern_or_branch, - STATE(1110), 1, + STATE(1071), 1, sym_last_elem_pat, ACTIONS(623), 2, anon_sym_true, anon_sym_false, - STATE(677), 2, + STATE(690), 2, sym_bool, sym_static_string, - STATE(738), 2, + STATE(734), 2, sym_enum_pattern, sym_or_pattern, - STATE(712), 3, + STATE(719), 3, sym_constant_pattern, sym_record_pattern, sym_array_pattern, @@ -34850,105 +34846,154 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, STATE(474), 1, aux_sym_array_pattern_repeat1, - STATE(564), 1, + STATE(509), 1, sym_enum_tag, - STATE(602), 1, + STATE(609), 1, aux_sym_or_pattern_unparens_repeat1, - STATE(614), 1, + STATE(613), 1, sym_quoted_enum_tag, - STATE(698), 1, + STATE(697), 1, sym_enum_pattern_parens, - STATE(726), 1, + STATE(718), 1, sym_or_pattern_parens, - STATE(734), 1, - sym_or_pattern_unparens, - STATE(753), 1, + STATE(746), 1, sym_enum_variant_pattern, - STATE(977), 1, + STATE(747), 1, + sym_or_pattern_unparens, + STATE(975), 1, sym_pattern, - STATE(997), 1, - sym_last_elem_pat, - STATE(1055), 1, + STATE(1039), 1, sym_pattern_or_branch, + STATE(1140), 1, + sym_last_elem_pat, ACTIONS(623), 2, anon_sym_true, anon_sym_false, - STATE(677), 2, + STATE(690), 2, sym_bool, sym_static_string, - STATE(738), 2, + STATE(734), 2, sym_enum_pattern, sym_or_pattern, - STATE(712), 3, + STATE(719), 3, sym_constant_pattern, sym_record_pattern, sym_array_pattern, - [35135] = 27, + [35135] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(637), 1, - sym_signed_num_literal, - ACTIONS(640), 1, - sym_ident, - ACTIONS(643), 1, + ACTIONS(303), 1, + sym_num_literal, + ACTIONS(307), 1, sym_raw_enum_tag, - ACTIONS(646), 1, + ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(649), 1, + ACTIONS(325), 1, anon_sym_LPAREN, - ACTIONS(652), 1, - anon_sym_null, - ACTIONS(655), 1, + ACTIONS(327), 1, anon_sym_LBRACK, - ACTIONS(660), 1, + ACTIONS(329), 1, anon_sym__, - ACTIONS(666), 1, + ACTIONS(333), 1, + anon_sym_PERCENT, + ACTIONS(337), 1, + anon_sym_LBRACK_PIPE, + ACTIONS(339), 1, sym_multstr_start, - ACTIONS(669), 1, + ACTIONS(341), 1, sym__str_start, - ACTIONS(672), 1, + ACTIONS(343), 1, sym_quoted_enum_tag_start, - STATE(478), 1, - aux_sym_array_pattern_repeat1, - STATE(564), 1, + STATE(311), 1, + sym_quoted_enum_tag, + STATE(314), 1, + sym_type_builtin, + STATE(341), 1, + sym_record_operand, + ACTIONS(305), 2, + sym_ident, + anon_sym_null, + ACTIONS(331), 2, + anon_sym_true, + anon_sym_false, + STATE(324), 2, + sym_record_operation_chain, + sym_atom, + STATE(406), 2, + sym_str_chunks_single, + sym_str_chunks_multi, + ACTIONS(323), 4, + anon_sym_Dyn, + anon_sym_Number, + anon_sym_Bool, + anon_sym_String, + STATE(309), 6, + sym_uni_record, + sym_bool, + sym_str_chunks, sym_enum_tag, - STATE(602), 1, - aux_sym_or_pattern_unparens_repeat1, - STATE(614), 1, + sym_builtin, + sym_type_atom, + [35211] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(177), 1, + sym_num_literal, + ACTIONS(181), 1, + sym_raw_enum_tag, + ACTIONS(187), 1, + anon_sym_LBRACE, + ACTIONS(199), 1, + anon_sym_LPAREN, + ACTIONS(201), 1, + anon_sym_LBRACK, + ACTIONS(203), 1, + anon_sym__, + ACTIONS(207), 1, + anon_sym_PERCENT, + ACTIONS(211), 1, + anon_sym_LBRACK_PIPE, + ACTIONS(213), 1, + sym_multstr_start, + ACTIONS(215), 1, + sym__str_start, + ACTIONS(217), 1, + sym_quoted_enum_tag_start, + STATE(335), 1, + sym_record_operand, + STATE(354), 1, + sym_type_builtin, + STATE(420), 1, sym_quoted_enum_tag, - STATE(698), 1, - sym_enum_pattern_parens, - STATE(726), 1, - sym_or_pattern_parens, - STATE(734), 1, - sym_or_pattern_unparens, - STATE(753), 1, - sym_enum_variant_pattern, - STATE(1036), 1, - sym_pattern, - STATE(1055), 1, - sym_pattern_or_branch, - ACTIONS(658), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - ACTIONS(663), 2, + ACTIONS(179), 2, + sym_ident, + anon_sym_null, + ACTIONS(205), 2, anon_sym_true, anon_sym_false, - STATE(677), 2, + STATE(252), 2, + sym_str_chunks_single, + sym_str_chunks_multi, + STATE(344), 2, + sym_record_operation_chain, + sym_atom, + ACTIONS(197), 4, + anon_sym_Dyn, + anon_sym_Number, + anon_sym_Bool, + anon_sym_String, + STATE(357), 6, + sym_uni_record, sym_bool, - sym_static_string, - STATE(738), 2, - sym_enum_pattern, - sym_or_pattern, - STATE(712), 3, - sym_constant_pattern, - sym_record_pattern, - sym_array_pattern, - [35223] = 25, + sym_str_chunks, + sym_enum_tag, + sym_builtin, + sym_type_atom, + [35287] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(567), 1, - sym_interpolation_end, + anon_sym_else, ACTIONS(575), 1, anon_sym_AMP, ACTIONS(577), 1, @@ -34957,29 +35002,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, ACTIONS(587), 1, anon_sym_PIPE_PIPE, - ACTIONS(675), 1, + ACTIONS(637), 1, anon_sym_PIPE, - ACTIONS(677), 1, + ACTIONS(639), 1, anon_sym_COLON, - ACTIONS(679), 1, + ACTIONS(641), 1, anon_sym_DASH_GT, - STATE(167), 1, + STATE(172), 1, sym_infix_b_op_2, - STATE(171), 1, + STATE(179), 1, sym_infix_b_op_3, - STATE(172), 1, + STATE(180), 1, sym_infix_b_op_4, - STATE(174), 1, + STATE(181), 1, sym_infix_b_op_6, - STATE(175), 1, + STATE(182), 1, sym_infix_b_op_7, - STATE(176), 1, + STATE(183), 1, sym_infix_b_op_8, - STATE(177), 1, + STATE(184), 1, sym_infix_lazy_b_op_9, - STATE(178), 1, + STATE(185), 1, sym_infix_lazy_b_op_10, - STATE(1108), 1, + STATE(673), 1, sym_annot, ACTIONS(569), 2, anon_sym_AT, @@ -34996,14 +35041,76 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(583), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - STATE(826), 2, + STATE(834), 2, sym_annot_atom, aux_sym_annot_repeat1, ACTIONS(571), 3, anon_sym_PERCENT, anon_sym_STAR, anon_sym_SLASH, - [35307] = 21, + [35371] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(603), 1, + sym_signed_num_literal, + ACTIONS(609), 1, + anon_sym_LBRACE, + ACTIONS(611), 1, + anon_sym_LPAREN, + ACTIONS(613), 1, + anon_sym_null, + ACTIONS(615), 1, + anon_sym_LBRACK, + ACTIONS(621), 1, + anon_sym__, + ACTIONS(625), 1, + sym_multstr_start, + ACTIONS(627), 1, + sym__str_start, + ACTIONS(643), 1, + sym_ident, + ACTIONS(645), 1, + sym_raw_enum_tag, + ACTIONS(647), 1, + anon_sym_COMMA, + ACTIONS(649), 1, + anon_sym_RBRACE, + ACTIONS(651), 1, + sym_quoted_enum_tag_start, + STATE(584), 1, + sym_enum_tag, + STATE(609), 1, + aux_sym_or_pattern_unparens_repeat1, + STATE(618), 1, + sym_quoted_enum_tag, + STATE(697), 1, + sym_enum_pattern_parens, + STATE(718), 1, + sym_or_pattern_parens, + STATE(746), 1, + sym_enum_variant_pattern, + STATE(747), 1, + sym_or_pattern_unparens, + STATE(866), 1, + sym_pattern, + STATE(926), 1, + sym_match_branch, + STATE(1039), 1, + sym_pattern_or_branch, + ACTIONS(623), 2, + anon_sym_true, + anon_sym_false, + STATE(690), 2, + sym_bool, + sym_static_string, + STATE(734), 2, + sym_enum_pattern, + sym_or_pattern, + STATE(719), 3, + sym_constant_pattern, + sym_record_pattern, + sym_array_pattern, + [35461] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(51), 1, @@ -35028,12 +35135,12 @@ static const uint16_t ts_small_parse_table[] = { sym_quoted_enum_tag_start, ACTIONS(121), 1, anon_sym_PERCENT, - STATE(90), 1, + STATE(91), 1, sym_record_operand, - STATE(99), 1, - sym_type_builtin, - STATE(123), 1, + STATE(97), 1, sym_quoted_enum_tag, + STATE(98), 1, + sym_type_builtin, ACTIONS(53), 2, sym_ident, anon_sym_null, @@ -35043,7 +35150,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(94), 2, sym_record_operation_chain, sym_atom, - STATE(98), 2, + STATE(96), 2, sym_str_chunks_single, sym_str_chunks_multi, ACTIONS(73), 4, @@ -35051,194 +35158,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - STATE(102), 6, + STATE(88), 6, sym_uni_record, sym_bool, sym_str_chunks, sym_enum_tag, sym_builtin, sym_type_atom, - [35383] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(567), 1, - anon_sym_else, - ACTIONS(575), 1, - anon_sym_AMP, - ACTIONS(577), 1, - anon_sym_PIPE_GT, - ACTIONS(585), 1, - anon_sym_AMP_AMP, - ACTIONS(587), 1, - anon_sym_PIPE_PIPE, - ACTIONS(681), 1, - anon_sym_PIPE, - ACTIONS(683), 1, - anon_sym_COLON, - ACTIONS(685), 1, - anon_sym_DASH_GT, - STATE(169), 1, - sym_infix_b_op_2, - STATE(173), 1, - sym_infix_b_op_3, - STATE(179), 1, - sym_infix_b_op_4, - STATE(180), 1, - sym_infix_b_op_6, - STATE(181), 1, - sym_infix_b_op_7, - STATE(182), 1, - sym_infix_b_op_8, - STATE(183), 1, - sym_infix_lazy_b_op_9, - STATE(184), 1, - sym_infix_lazy_b_op_10, - STATE(671), 1, - sym_annot, - ACTIONS(569), 2, - anon_sym_AT, - anon_sym_PLUS_PLUS, - ACTIONS(573), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(579), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(581), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(583), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - STATE(839), 2, - sym_annot_atom, - aux_sym_annot_repeat1, - ACTIONS(571), 3, - anon_sym_PERCENT, - anon_sym_STAR, - anon_sym_SLASH, - [35467] = 28, + [35537] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(603), 1, + ACTIONS(653), 1, sym_signed_num_literal, - ACTIONS(609), 1, + ACTIONS(656), 1, + sym_ident, + ACTIONS(659), 1, + sym_raw_enum_tag, + ACTIONS(662), 1, anon_sym_LBRACE, - ACTIONS(611), 1, + ACTIONS(665), 1, anon_sym_LPAREN, - ACTIONS(613), 1, + ACTIONS(668), 1, anon_sym_null, - ACTIONS(615), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(621), 1, + ACTIONS(676), 1, anon_sym__, - ACTIONS(625), 1, + ACTIONS(682), 1, sym_multstr_start, - ACTIONS(627), 1, + ACTIONS(685), 1, sym__str_start, - ACTIONS(687), 1, - sym_ident, - ACTIONS(689), 1, - sym_raw_enum_tag, - ACTIONS(691), 1, - anon_sym_COMMA, - ACTIONS(693), 1, - anon_sym_RBRACE, - ACTIONS(695), 1, + ACTIONS(688), 1, sym_quoted_enum_tag_start, - STATE(592), 1, + STATE(483), 1, + aux_sym_array_pattern_repeat1, + STATE(509), 1, sym_enum_tag, - STATE(602), 1, + STATE(609), 1, aux_sym_or_pattern_unparens_repeat1, - STATE(618), 1, + STATE(613), 1, sym_quoted_enum_tag, - STATE(698), 1, + STATE(697), 1, sym_enum_pattern_parens, - STATE(726), 1, + STATE(718), 1, sym_or_pattern_parens, - STATE(734), 1, - sym_or_pattern_unparens, - STATE(753), 1, + STATE(746), 1, sym_enum_variant_pattern, - STATE(871), 1, + STATE(747), 1, + sym_or_pattern_unparens, + STATE(988), 1, sym_pattern, - STATE(896), 1, - sym_match_branch, - STATE(1055), 1, + STATE(1039), 1, sym_pattern_or_branch, - ACTIONS(623), 2, + ACTIONS(674), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + ACTIONS(679), 2, anon_sym_true, anon_sym_false, - STATE(677), 2, + STATE(690), 2, sym_bool, sym_static_string, - STATE(738), 2, + STATE(734), 2, sym_enum_pattern, sym_or_pattern, - STATE(712), 3, + STATE(719), 3, sym_constant_pattern, sym_record_pattern, sym_array_pattern, - [35557] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(177), 1, - sym_num_literal, - ACTIONS(181), 1, - sym_raw_enum_tag, - ACTIONS(187), 1, - anon_sym_LBRACE, - ACTIONS(199), 1, - anon_sym_LPAREN, - ACTIONS(201), 1, - anon_sym_LBRACK, - ACTIONS(203), 1, - anon_sym__, - ACTIONS(207), 1, - anon_sym_PERCENT, - ACTIONS(211), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(213), 1, - sym_multstr_start, - ACTIONS(215), 1, - sym__str_start, - ACTIONS(217), 1, - sym_quoted_enum_tag_start, - STATE(328), 1, - sym_record_operand, - STATE(354), 1, - sym_type_builtin, - STATE(420), 1, - sym_quoted_enum_tag, - ACTIONS(179), 2, - sym_ident, - anon_sym_null, - ACTIONS(205), 2, - anon_sym_true, - anon_sym_false, - STATE(251), 2, - sym_str_chunks_single, - sym_str_chunks_multi, - STATE(344), 2, - sym_record_operation_chain, - sym_atom, - ACTIONS(197), 4, - anon_sym_Dyn, - anon_sym_Number, - anon_sym_Bool, - anon_sym_String, - STATE(357), 6, - sym_uni_record, - sym_bool, - sym_str_chunks, - sym_enum_tag, - sym_builtin, - sym_type_atom, - [35633] = 25, + [35625] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(567), 1, - anon_sym_then, + sym_interpolation_end, ACTIONS(575), 1, anon_sym_AMP, ACTIONS(577), 1, @@ -35247,29 +35239,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, ACTIONS(587), 1, anon_sym_PIPE_PIPE, - ACTIONS(697), 1, + ACTIONS(691), 1, anon_sym_PIPE, - ACTIONS(699), 1, + ACTIONS(693), 1, anon_sym_COLON, - ACTIONS(701), 1, + ACTIONS(695), 1, anon_sym_DASH_GT, - STATE(191), 1, + STATE(167), 1, sym_infix_b_op_2, - STATE(192), 1, + STATE(170), 1, sym_infix_b_op_3, - STATE(201), 1, + STATE(173), 1, sym_infix_b_op_4, - STATE(212), 1, + STATE(174), 1, sym_infix_b_op_6, - STATE(214), 1, + STATE(175), 1, sym_infix_b_op_7, - STATE(215), 1, + STATE(176), 1, sym_infix_b_op_8, - STATE(216), 1, + STATE(177), 1, sym_infix_lazy_b_op_9, - STATE(218), 1, + STATE(178), 1, sym_infix_lazy_b_op_10, - STATE(671), 1, + STATE(1116), 1, sym_annot, ACTIONS(569), 2, anon_sym_AT, @@ -35286,14 +35278,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(583), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - STATE(837), 2, + STATE(841), 2, sym_annot_atom, aux_sym_annot_repeat1, ACTIONS(571), 3, anon_sym_PERCENT, anon_sym_STAR, anon_sym_SLASH, - [35717] = 28, + [35709] = 28, ACTIONS(3), 1, sym_comment, ACTIONS(603), 1, @@ -35312,105 +35304,50 @@ static const uint16_t ts_small_parse_table[] = { sym_multstr_start, ACTIONS(627), 1, sym__str_start, - ACTIONS(687), 1, + ACTIONS(643), 1, sym_ident, - ACTIONS(689), 1, + ACTIONS(645), 1, sym_raw_enum_tag, - ACTIONS(695), 1, + ACTIONS(651), 1, sym_quoted_enum_tag_start, - ACTIONS(703), 1, + ACTIONS(697), 1, anon_sym_COMMA, - ACTIONS(705), 1, + ACTIONS(699), 1, anon_sym_RBRACE, - STATE(592), 1, + STATE(584), 1, sym_enum_tag, - STATE(602), 1, + STATE(609), 1, aux_sym_or_pattern_unparens_repeat1, STATE(618), 1, sym_quoted_enum_tag, - STATE(698), 1, + STATE(697), 1, sym_enum_pattern_parens, - STATE(726), 1, + STATE(718), 1, sym_or_pattern_parens, - STATE(734), 1, - sym_or_pattern_unparens, - STATE(753), 1, + STATE(746), 1, sym_enum_variant_pattern, - STATE(871), 1, + STATE(747), 1, + sym_or_pattern_unparens, + STATE(866), 1, sym_pattern, - STATE(933), 1, + STATE(916), 1, sym_match_branch, - STATE(1055), 1, + STATE(1039), 1, sym_pattern_or_branch, ACTIONS(623), 2, anon_sym_true, anon_sym_false, - STATE(677), 2, + STATE(690), 2, sym_bool, sym_static_string, - STATE(738), 2, + STATE(734), 2, sym_enum_pattern, sym_or_pattern, - STATE(712), 3, + STATE(719), 3, sym_constant_pattern, sym_record_pattern, sym_array_pattern, - [35807] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(303), 1, - sym_num_literal, - ACTIONS(307), 1, - sym_raw_enum_tag, - ACTIONS(313), 1, - anon_sym_LBRACE, - ACTIONS(325), 1, - anon_sym_LPAREN, - ACTIONS(327), 1, - anon_sym_LBRACK, - ACTIONS(329), 1, - anon_sym__, - ACTIONS(333), 1, - anon_sym_PERCENT, - ACTIONS(337), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(339), 1, - sym_multstr_start, - ACTIONS(341), 1, - sym__str_start, - ACTIONS(343), 1, - sym_quoted_enum_tag_start, - STATE(312), 1, - sym_type_builtin, - STATE(314), 1, - sym_quoted_enum_tag, - STATE(341), 1, - sym_record_operand, - ACTIONS(305), 2, - sym_ident, - anon_sym_null, - ACTIONS(331), 2, - anon_sym_true, - anon_sym_false, - STATE(330), 2, - sym_record_operation_chain, - sym_atom, - STATE(406), 2, - sym_str_chunks_single, - sym_str_chunks_multi, - ACTIONS(323), 4, - anon_sym_Dyn, - anon_sym_Number, - anon_sym_Bool, - anon_sym_String, - STATE(310), 6, - sym_uni_record, - sym_bool, - sym_str_chunks, - sym_enum_tag, - sym_builtin, - sym_type_atom, - [35883] = 21, + [35799] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(219), 1, @@ -35437,9 +35374,9 @@ static const uint16_t ts_small_parse_table[] = { sym_quoted_enum_tag_start, STATE(246), 1, sym_record_operand, - STATE(257), 1, + STATE(258), 1, sym_type_builtin, - STATE(331), 1, + STATE(336), 1, sym_quoted_enum_tag, ACTIONS(221), 2, sym_ident, @@ -35450,7 +35387,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(253), 2, sym_record_operation_chain, sym_atom, - STATE(332), 2, + STATE(329), 2, sym_str_chunks_single, sym_str_chunks_multi, ACTIONS(239), 4, @@ -35465,7 +35402,69 @@ static const uint16_t ts_small_parse_table[] = { sym_enum_tag, sym_builtin, sym_type_atom, - [35959] = 25, + [35875] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(603), 1, + sym_signed_num_literal, + ACTIONS(609), 1, + anon_sym_LBRACE, + ACTIONS(611), 1, + anon_sym_LPAREN, + ACTIONS(613), 1, + anon_sym_null, + ACTIONS(615), 1, + anon_sym_LBRACK, + ACTIONS(621), 1, + anon_sym__, + ACTIONS(625), 1, + sym_multstr_start, + ACTIONS(627), 1, + sym__str_start, + ACTIONS(643), 1, + sym_ident, + ACTIONS(645), 1, + sym_raw_enum_tag, + ACTIONS(651), 1, + sym_quoted_enum_tag_start, + ACTIONS(701), 1, + anon_sym_COMMA, + ACTIONS(703), 1, + anon_sym_RBRACE, + STATE(584), 1, + sym_enum_tag, + STATE(609), 1, + aux_sym_or_pattern_unparens_repeat1, + STATE(618), 1, + sym_quoted_enum_tag, + STATE(697), 1, + sym_enum_pattern_parens, + STATE(718), 1, + sym_or_pattern_parens, + STATE(746), 1, + sym_enum_variant_pattern, + STATE(747), 1, + sym_or_pattern_unparens, + STATE(866), 1, + sym_pattern, + STATE(887), 1, + sym_match_branch, + STATE(1039), 1, + sym_pattern_or_branch, + ACTIONS(623), 2, + anon_sym_true, + anon_sym_false, + STATE(690), 2, + sym_bool, + sym_static_string, + STATE(734), 2, + sym_enum_pattern, + sym_or_pattern, + STATE(719), 3, + sym_constant_pattern, + sym_record_pattern, + sym_array_pattern, + [35965] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(567), 1, @@ -35478,29 +35477,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, ACTIONS(587), 1, anon_sym_PIPE_PIPE, - ACTIONS(707), 1, + ACTIONS(705), 1, anon_sym_PIPE, - ACTIONS(709), 1, + ACTIONS(707), 1, anon_sym_COLON, - ACTIONS(711), 1, + ACTIONS(709), 1, anon_sym_DASH_GT, STATE(155), 1, sym_infix_b_op_2, - STATE(202), 1, + STATE(204), 1, sym_infix_lazy_b_op_10, - STATE(203), 1, + STATE(206), 1, sym_infix_lazy_b_op_9, - STATE(204), 1, + STATE(207), 1, sym_infix_b_op_8, - STATE(206), 1, + STATE(209), 1, sym_infix_b_op_7, - STATE(208), 1, + STATE(210), 1, sym_infix_b_op_6, - STATE(209), 1, + STATE(211), 1, sym_infix_b_op_4, - STATE(210), 1, + STATE(212), 1, sym_infix_b_op_3, - STATE(671), 1, + STATE(673), 1, sym_annot, ACTIONS(569), 2, anon_sym_AT, @@ -35517,14 +35516,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(583), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - STATE(830), 2, + STATE(827), 2, sym_annot_atom, aux_sym_annot_repeat1, ACTIONS(571), 3, anon_sym_PERCENT, anon_sym_STAR, anon_sym_SLASH, - [36043] = 21, + [36049] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -35564,7 +35563,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(256), 2, sym_record_operation_chain, sym_atom, - STATE(264), 2, + STATE(266), 2, sym_str_chunks_single, sym_str_chunks_multi, ACTIONS(27), 4, @@ -35579,7 +35578,7 @@ static const uint16_t ts_small_parse_table[] = { sym_enum_tag, sym_builtin, sym_type_atom, - [36119] = 28, + [36125] = 28, ACTIONS(3), 1, sym_comment, ACTIONS(603), 1, @@ -35598,111 +35597,108 @@ static const uint16_t ts_small_parse_table[] = { sym_multstr_start, ACTIONS(627), 1, sym__str_start, - ACTIONS(687), 1, + ACTIONS(643), 1, sym_ident, - ACTIONS(689), 1, + ACTIONS(645), 1, sym_raw_enum_tag, - ACTIONS(695), 1, + ACTIONS(651), 1, sym_quoted_enum_tag_start, - ACTIONS(713), 1, + ACTIONS(711), 1, anon_sym_COMMA, - ACTIONS(715), 1, + ACTIONS(713), 1, anon_sym_RBRACE, - STATE(592), 1, + STATE(584), 1, sym_enum_tag, - STATE(602), 1, + STATE(609), 1, aux_sym_or_pattern_unparens_repeat1, STATE(618), 1, sym_quoted_enum_tag, - STATE(698), 1, + STATE(697), 1, sym_enum_pattern_parens, - STATE(726), 1, + STATE(718), 1, sym_or_pattern_parens, - STATE(734), 1, - sym_or_pattern_unparens, - STATE(753), 1, + STATE(746), 1, sym_enum_variant_pattern, - STATE(871), 1, + STATE(747), 1, + sym_or_pattern_unparens, + STATE(866), 1, sym_pattern, - STATE(873), 1, + STATE(868), 1, sym_match_branch, - STATE(1055), 1, + STATE(1039), 1, sym_pattern_or_branch, ACTIONS(623), 2, anon_sym_true, anon_sym_false, - STATE(677), 2, + STATE(690), 2, sym_bool, sym_static_string, - STATE(738), 2, + STATE(734), 2, sym_enum_pattern, sym_or_pattern, - STATE(712), 3, + STATE(719), 3, sym_constant_pattern, sym_record_pattern, sym_array_pattern, - [36209] = 28, + [36215] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(603), 1, - sym_signed_num_literal, - ACTIONS(609), 1, - anon_sym_LBRACE, - ACTIONS(611), 1, - anon_sym_LPAREN, - ACTIONS(613), 1, - anon_sym_null, - ACTIONS(615), 1, - anon_sym_LBRACK, - ACTIONS(621), 1, - anon_sym__, - ACTIONS(625), 1, - sym_multstr_start, - ACTIONS(627), 1, - sym__str_start, - ACTIONS(687), 1, - sym_ident, - ACTIONS(689), 1, - sym_raw_enum_tag, - ACTIONS(695), 1, - sym_quoted_enum_tag_start, + ACTIONS(567), 1, + anon_sym_then, + ACTIONS(575), 1, + anon_sym_AMP, + ACTIONS(577), 1, + anon_sym_PIPE_GT, + ACTIONS(585), 1, + anon_sym_AMP_AMP, + ACTIONS(587), 1, + anon_sym_PIPE_PIPE, + ACTIONS(715), 1, + anon_sym_PIPE, ACTIONS(717), 1, - anon_sym_COMMA, + anon_sym_COLON, ACTIONS(719), 1, - anon_sym_RBRACE, - STATE(592), 1, - sym_enum_tag, - STATE(602), 1, - aux_sym_or_pattern_unparens_repeat1, - STATE(618), 1, - sym_quoted_enum_tag, - STATE(698), 1, - sym_enum_pattern_parens, - STATE(726), 1, - sym_or_pattern_parens, - STATE(734), 1, - sym_or_pattern_unparens, - STATE(753), 1, - sym_enum_variant_pattern, - STATE(869), 1, - sym_match_branch, - STATE(871), 1, - sym_pattern, - STATE(1055), 1, - sym_pattern_or_branch, - ACTIONS(623), 2, - anon_sym_true, - anon_sym_false, - STATE(677), 2, - sym_bool, - sym_static_string, - STATE(738), 2, - sym_enum_pattern, - sym_or_pattern, - STATE(712), 3, - sym_constant_pattern, - sym_record_pattern, - sym_array_pattern, + anon_sym_DASH_GT, + STATE(192), 1, + sym_infix_b_op_2, + STATE(201), 1, + sym_infix_b_op_3, + STATE(202), 1, + sym_infix_b_op_4, + STATE(203), 1, + sym_infix_b_op_6, + STATE(214), 1, + sym_infix_b_op_7, + STATE(216), 1, + sym_infix_b_op_8, + STATE(217), 1, + sym_infix_lazy_b_op_9, + STATE(219), 1, + sym_infix_lazy_b_op_10, + STATE(673), 1, + sym_annot, + ACTIONS(569), 2, + anon_sym_AT, + anon_sym_PLUS_PLUS, + ACTIONS(573), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(579), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(581), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(583), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(836), 2, + sym_annot_atom, + aux_sym_annot_repeat1, + ACTIONS(571), 3, + anon_sym_PERCENT, + anon_sym_STAR, + anon_sym_SLASH, [36299] = 21, ACTIONS(3), 1, sym_comment, @@ -35728,9 +35724,9 @@ static const uint16_t ts_small_parse_table[] = { sym__str_start, ACTIONS(301), 1, sym_quoted_enum_tag_start, - STATE(325), 1, + STATE(322), 1, sym_type_builtin, - STATE(350), 1, + STATE(349), 1, sym_record_operand, STATE(356), 1, sym_quoted_enum_tag, @@ -35740,7 +35736,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(289), 2, anon_sym_true, anon_sym_false, - STATE(334), 2, + STATE(331), 2, sym_record_operation_chain, sym_atom, STATE(417), 2, @@ -35751,7 +35747,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - STATE(321), 6, + STATE(318), 6, sym_uni_record, sym_bool, sym_str_chunks, @@ -35777,6 +35773,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, ACTIONS(725), 1, anon_sym_DASH_GT, + STATE(166), 1, + sym_infix_lazy_b_op_10, STATE(193), 1, sym_infix_lazy_b_op_9, STATE(194), 1, @@ -35791,9 +35789,7 @@ static const uint16_t ts_small_parse_table[] = { sym_infix_b_op_3, STATE(199), 1, sym_infix_b_op_2, - STATE(220), 1, - sym_infix_lazy_b_op_10, - STATE(671), 1, + STATE(673), 1, sym_annot, ACTIONS(569), 2, anon_sym_AT, @@ -35810,7 +35806,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(583), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - STATE(825), 2, + STATE(842), 2, sym_annot_atom, aux_sym_annot_repeat1, ACTIONS(571), 3, @@ -35836,46 +35832,46 @@ static const uint16_t ts_small_parse_table[] = { sym_multstr_start, ACTIONS(627), 1, sym__str_start, - ACTIONS(687), 1, + ACTIONS(643), 1, sym_ident, - ACTIONS(689), 1, + ACTIONS(645), 1, sym_raw_enum_tag, - ACTIONS(695), 1, + ACTIONS(651), 1, sym_quoted_enum_tag_start, ACTIONS(727), 1, anon_sym_COMMA, ACTIONS(729), 1, anon_sym_RBRACE, - STATE(592), 1, + STATE(584), 1, sym_enum_tag, - STATE(602), 1, + STATE(609), 1, aux_sym_or_pattern_unparens_repeat1, STATE(618), 1, sym_quoted_enum_tag, - STATE(698), 1, + STATE(697), 1, sym_enum_pattern_parens, - STATE(726), 1, + STATE(718), 1, sym_or_pattern_parens, - STATE(734), 1, - sym_or_pattern_unparens, - STATE(753), 1, + STATE(746), 1, sym_enum_variant_pattern, - STATE(871), 1, + STATE(747), 1, + sym_or_pattern_unparens, + STATE(866), 1, sym_pattern, - STATE(936), 1, + STATE(892), 1, sym_match_branch, - STATE(1055), 1, + STATE(1039), 1, sym_pattern_or_branch, ACTIONS(623), 2, anon_sym_true, anon_sym_false, - STATE(677), 2, + STATE(690), 2, sym_bool, sym_static_string, - STATE(738), 2, + STATE(734), 2, sym_enum_pattern, sym_or_pattern, - STATE(712), 3, + STATE(719), 3, sym_constant_pattern, sym_record_pattern, sym_array_pattern, @@ -35898,46 +35894,46 @@ static const uint16_t ts_small_parse_table[] = { sym_multstr_start, ACTIONS(627), 1, sym__str_start, - ACTIONS(687), 1, + ACTIONS(643), 1, sym_ident, - ACTIONS(689), 1, + ACTIONS(645), 1, sym_raw_enum_tag, - ACTIONS(695), 1, + ACTIONS(651), 1, sym_quoted_enum_tag_start, ACTIONS(731), 1, anon_sym_COMMA, ACTIONS(733), 1, anon_sym_RBRACE, - STATE(592), 1, + STATE(584), 1, sym_enum_tag, - STATE(602), 1, + STATE(609), 1, aux_sym_or_pattern_unparens_repeat1, STATE(618), 1, sym_quoted_enum_tag, - STATE(698), 1, + STATE(697), 1, sym_enum_pattern_parens, - STATE(726), 1, + STATE(718), 1, sym_or_pattern_parens, - STATE(734), 1, - sym_or_pattern_unparens, - STATE(753), 1, + STATE(746), 1, sym_enum_variant_pattern, - STATE(871), 1, + STATE(747), 1, + sym_or_pattern_unparens, + STATE(866), 1, sym_pattern, - STATE(910), 1, + STATE(911), 1, sym_match_branch, - STATE(1055), 1, + STATE(1039), 1, sym_pattern_or_branch, ACTIONS(623), 2, anon_sym_true, anon_sym_false, - STATE(677), 2, + STATE(690), 2, sym_bool, sym_static_string, - STATE(738), 2, + STATE(734), 2, sym_enum_pattern, sym_or_pattern, - STATE(712), 3, + STATE(719), 3, sym_constant_pattern, sym_record_pattern, sym_array_pattern, @@ -35960,44 +35956,44 @@ static const uint16_t ts_small_parse_table[] = { sym_multstr_start, ACTIONS(627), 1, sym__str_start, - ACTIONS(687), 1, + ACTIONS(643), 1, sym_ident, - ACTIONS(689), 1, + ACTIONS(645), 1, sym_raw_enum_tag, - ACTIONS(695), 1, + ACTIONS(651), 1, sym_quoted_enum_tag_start, ACTIONS(735), 1, anon_sym_RBRACE, - STATE(592), 1, + STATE(584), 1, sym_enum_tag, - STATE(602), 1, + STATE(609), 1, aux_sym_or_pattern_unparens_repeat1, STATE(618), 1, sym_quoted_enum_tag, - STATE(698), 1, + STATE(697), 1, sym_enum_pattern_parens, - STATE(726), 1, + STATE(718), 1, sym_or_pattern_parens, - STATE(734), 1, - sym_or_pattern_unparens, - STATE(753), 1, + STATE(746), 1, sym_enum_variant_pattern, - STATE(871), 1, + STATE(747), 1, + sym_or_pattern_unparens, + STATE(866), 1, sym_pattern, - STATE(951), 1, + STATE(945), 1, sym_match_branch, - STATE(1055), 1, + STATE(1039), 1, sym_pattern_or_branch, ACTIONS(623), 2, anon_sym_true, anon_sym_false, - STATE(677), 2, + STATE(690), 2, sym_bool, sym_static_string, - STATE(738), 2, + STATE(734), 2, sym_enum_pattern, sym_or_pattern, - STATE(712), 3, + STATE(719), 3, sym_constant_pattern, sym_record_pattern, sym_array_pattern, @@ -36020,44 +36016,44 @@ static const uint16_t ts_small_parse_table[] = { sym_multstr_start, ACTIONS(627), 1, sym__str_start, - ACTIONS(687), 1, + ACTIONS(643), 1, sym_ident, - ACTIONS(689), 1, + ACTIONS(645), 1, sym_raw_enum_tag, - ACTIONS(695), 1, + ACTIONS(651), 1, sym_quoted_enum_tag_start, ACTIONS(737), 1, anon_sym_RBRACE, - STATE(592), 1, + STATE(584), 1, sym_enum_tag, - STATE(602), 1, + STATE(609), 1, aux_sym_or_pattern_unparens_repeat1, STATE(618), 1, sym_quoted_enum_tag, - STATE(698), 1, + STATE(697), 1, sym_enum_pattern_parens, - STATE(726), 1, + STATE(718), 1, sym_or_pattern_parens, - STATE(734), 1, - sym_or_pattern_unparens, - STATE(753), 1, + STATE(746), 1, sym_enum_variant_pattern, - STATE(871), 1, + STATE(747), 1, + sym_or_pattern_unparens, + STATE(866), 1, sym_pattern, - STATE(951), 1, + STATE(945), 1, sym_match_branch, - STATE(1055), 1, + STATE(1039), 1, sym_pattern_or_branch, ACTIONS(623), 2, anon_sym_true, anon_sym_false, - STATE(677), 2, + STATE(690), 2, sym_bool, sym_static_string, - STATE(738), 2, + STATE(734), 2, sym_enum_pattern, sym_or_pattern, - STATE(712), 3, + STATE(719), 3, sym_constant_pattern, sym_record_pattern, sym_array_pattern, @@ -36080,44 +36076,44 @@ static const uint16_t ts_small_parse_table[] = { sym_multstr_start, ACTIONS(627), 1, sym__str_start, - ACTIONS(687), 1, + ACTIONS(643), 1, sym_ident, - ACTIONS(689), 1, + ACTIONS(645), 1, sym_raw_enum_tag, - ACTIONS(695), 1, + ACTIONS(651), 1, sym_quoted_enum_tag_start, ACTIONS(739), 1, anon_sym_RBRACE, - STATE(592), 1, + STATE(584), 1, sym_enum_tag, - STATE(602), 1, + STATE(609), 1, aux_sym_or_pattern_unparens_repeat1, STATE(618), 1, sym_quoted_enum_tag, - STATE(698), 1, + STATE(697), 1, sym_enum_pattern_parens, - STATE(726), 1, + STATE(718), 1, sym_or_pattern_parens, - STATE(734), 1, - sym_or_pattern_unparens, - STATE(753), 1, + STATE(746), 1, sym_enum_variant_pattern, - STATE(871), 1, + STATE(747), 1, + sym_or_pattern_unparens, + STATE(866), 1, sym_pattern, - STATE(951), 1, + STATE(945), 1, sym_match_branch, - STATE(1055), 1, + STATE(1039), 1, sym_pattern_or_branch, ACTIONS(623), 2, anon_sym_true, anon_sym_false, - STATE(677), 2, + STATE(690), 2, sym_bool, sym_static_string, - STATE(738), 2, + STATE(734), 2, sym_enum_pattern, sym_or_pattern, - STATE(712), 3, + STATE(719), 3, sym_constant_pattern, sym_record_pattern, sym_array_pattern, @@ -36140,44 +36136,44 @@ static const uint16_t ts_small_parse_table[] = { sym_multstr_start, ACTIONS(627), 1, sym__str_start, - ACTIONS(687), 1, + ACTIONS(643), 1, sym_ident, - ACTIONS(689), 1, + ACTIONS(645), 1, sym_raw_enum_tag, - ACTIONS(695), 1, + ACTIONS(651), 1, sym_quoted_enum_tag_start, ACTIONS(741), 1, anon_sym_RBRACE, - STATE(592), 1, + STATE(584), 1, sym_enum_tag, - STATE(602), 1, + STATE(609), 1, aux_sym_or_pattern_unparens_repeat1, STATE(618), 1, sym_quoted_enum_tag, - STATE(698), 1, + STATE(697), 1, sym_enum_pattern_parens, - STATE(726), 1, + STATE(718), 1, sym_or_pattern_parens, - STATE(734), 1, - sym_or_pattern_unparens, - STATE(753), 1, + STATE(746), 1, sym_enum_variant_pattern, - STATE(871), 1, + STATE(747), 1, + sym_or_pattern_unparens, + STATE(866), 1, sym_pattern, - STATE(951), 1, + STATE(945), 1, sym_match_branch, - STATE(1055), 1, + STATE(1039), 1, sym_pattern_or_branch, ACTIONS(623), 2, anon_sym_true, anon_sym_false, - STATE(677), 2, + STATE(690), 2, sym_bool, sym_static_string, - STATE(738), 2, + STATE(734), 2, sym_enum_pattern, sym_or_pattern, - STATE(712), 3, + STATE(719), 3, sym_constant_pattern, sym_record_pattern, sym_array_pattern, @@ -36200,44 +36196,44 @@ static const uint16_t ts_small_parse_table[] = { sym_multstr_start, ACTIONS(627), 1, sym__str_start, - ACTIONS(687), 1, + ACTIONS(643), 1, sym_ident, - ACTIONS(689), 1, + ACTIONS(645), 1, sym_raw_enum_tag, - ACTIONS(695), 1, + ACTIONS(651), 1, sym_quoted_enum_tag_start, ACTIONS(743), 1, anon_sym_RBRACE, - STATE(592), 1, + STATE(584), 1, sym_enum_tag, - STATE(602), 1, + STATE(609), 1, aux_sym_or_pattern_unparens_repeat1, STATE(618), 1, sym_quoted_enum_tag, - STATE(698), 1, + STATE(697), 1, sym_enum_pattern_parens, - STATE(726), 1, + STATE(718), 1, sym_or_pattern_parens, - STATE(734), 1, - sym_or_pattern_unparens, - STATE(753), 1, + STATE(746), 1, sym_enum_variant_pattern, - STATE(871), 1, + STATE(747), 1, + sym_or_pattern_unparens, + STATE(866), 1, sym_pattern, - STATE(951), 1, + STATE(945), 1, sym_match_branch, - STATE(1055), 1, + STATE(1039), 1, sym_pattern_or_branch, ACTIONS(623), 2, anon_sym_true, anon_sym_false, - STATE(677), 2, + STATE(690), 2, sym_bool, sym_static_string, - STATE(738), 2, + STATE(734), 2, sym_enum_pattern, sym_or_pattern, - STATE(712), 3, + STATE(719), 3, sym_constant_pattern, sym_record_pattern, sym_array_pattern, @@ -36260,44 +36256,44 @@ static const uint16_t ts_small_parse_table[] = { sym_multstr_start, ACTIONS(627), 1, sym__str_start, - ACTIONS(687), 1, + ACTIONS(643), 1, sym_ident, - ACTIONS(689), 1, + ACTIONS(645), 1, sym_raw_enum_tag, - ACTIONS(695), 1, + ACTIONS(651), 1, sym_quoted_enum_tag_start, ACTIONS(745), 1, anon_sym_RBRACE, - STATE(592), 1, + STATE(584), 1, sym_enum_tag, - STATE(602), 1, + STATE(609), 1, aux_sym_or_pattern_unparens_repeat1, STATE(618), 1, sym_quoted_enum_tag, - STATE(698), 1, + STATE(697), 1, sym_enum_pattern_parens, - STATE(726), 1, + STATE(718), 1, sym_or_pattern_parens, - STATE(734), 1, - sym_or_pattern_unparens, - STATE(753), 1, + STATE(746), 1, sym_enum_variant_pattern, - STATE(871), 1, + STATE(747), 1, + sym_or_pattern_unparens, + STATE(866), 1, sym_pattern, - STATE(951), 1, + STATE(945), 1, sym_match_branch, - STATE(1055), 1, + STATE(1039), 1, sym_pattern_or_branch, ACTIONS(623), 2, anon_sym_true, anon_sym_false, - STATE(677), 2, + STATE(690), 2, sym_bool, sym_static_string, - STATE(738), 2, + STATE(734), 2, sym_enum_pattern, sym_or_pattern, - STATE(712), 3, + STATE(719), 3, sym_constant_pattern, sym_record_pattern, sym_array_pattern, @@ -36320,44 +36316,44 @@ static const uint16_t ts_small_parse_table[] = { sym_multstr_start, ACTIONS(627), 1, sym__str_start, - ACTIONS(687), 1, + ACTIONS(643), 1, sym_ident, - ACTIONS(689), 1, + ACTIONS(645), 1, sym_raw_enum_tag, - ACTIONS(695), 1, + ACTIONS(651), 1, sym_quoted_enum_tag_start, ACTIONS(747), 1, anon_sym_RBRACE, - STATE(592), 1, + STATE(584), 1, sym_enum_tag, - STATE(602), 1, + STATE(609), 1, aux_sym_or_pattern_unparens_repeat1, STATE(618), 1, sym_quoted_enum_tag, - STATE(698), 1, + STATE(697), 1, sym_enum_pattern_parens, - STATE(726), 1, + STATE(718), 1, sym_or_pattern_parens, - STATE(734), 1, - sym_or_pattern_unparens, - STATE(753), 1, + STATE(746), 1, sym_enum_variant_pattern, - STATE(871), 1, + STATE(747), 1, + sym_or_pattern_unparens, + STATE(866), 1, sym_pattern, - STATE(951), 1, + STATE(945), 1, sym_match_branch, - STATE(1055), 1, + STATE(1039), 1, sym_pattern_or_branch, ACTIONS(623), 2, anon_sym_true, anon_sym_false, - STATE(677), 2, + STATE(690), 2, sym_bool, sym_static_string, - STATE(738), 2, + STATE(734), 2, sym_enum_pattern, sym_or_pattern, - STATE(712), 3, + STATE(719), 3, sym_constant_pattern, sym_record_pattern, sym_array_pattern, @@ -36380,44 +36376,44 @@ static const uint16_t ts_small_parse_table[] = { sym_multstr_start, ACTIONS(627), 1, sym__str_start, - ACTIONS(687), 1, + ACTIONS(643), 1, sym_ident, - ACTIONS(689), 1, + ACTIONS(645), 1, sym_raw_enum_tag, - ACTIONS(695), 1, + ACTIONS(651), 1, sym_quoted_enum_tag_start, ACTIONS(749), 1, anon_sym_RBRACE, - STATE(592), 1, + STATE(584), 1, sym_enum_tag, - STATE(602), 1, + STATE(609), 1, aux_sym_or_pattern_unparens_repeat1, STATE(618), 1, sym_quoted_enum_tag, - STATE(698), 1, + STATE(697), 1, sym_enum_pattern_parens, - STATE(726), 1, + STATE(718), 1, sym_or_pattern_parens, - STATE(734), 1, - sym_or_pattern_unparens, - STATE(753), 1, + STATE(746), 1, sym_enum_variant_pattern, - STATE(871), 1, + STATE(747), 1, + sym_or_pattern_unparens, + STATE(866), 1, sym_pattern, - STATE(951), 1, + STATE(945), 1, sym_match_branch, - STATE(1055), 1, + STATE(1039), 1, sym_pattern_or_branch, ACTIONS(623), 2, anon_sym_true, anon_sym_false, - STATE(677), 2, + STATE(690), 2, sym_bool, sym_static_string, - STATE(738), 2, + STATE(734), 2, sym_enum_pattern, sym_or_pattern, - STATE(712), 3, + STATE(719), 3, sym_constant_pattern, sym_record_pattern, sym_array_pattern, @@ -36440,44 +36436,44 @@ static const uint16_t ts_small_parse_table[] = { sym_multstr_start, ACTIONS(627), 1, sym__str_start, - ACTIONS(687), 1, + ACTIONS(643), 1, sym_ident, - ACTIONS(689), 1, + ACTIONS(645), 1, sym_raw_enum_tag, - ACTIONS(695), 1, + ACTIONS(651), 1, sym_quoted_enum_tag_start, ACTIONS(751), 1, anon_sym_RBRACE, - STATE(592), 1, + STATE(584), 1, sym_enum_tag, - STATE(602), 1, + STATE(609), 1, aux_sym_or_pattern_unparens_repeat1, STATE(618), 1, sym_quoted_enum_tag, - STATE(698), 1, + STATE(697), 1, sym_enum_pattern_parens, - STATE(726), 1, + STATE(718), 1, sym_or_pattern_parens, - STATE(734), 1, - sym_or_pattern_unparens, - STATE(753), 1, + STATE(746), 1, sym_enum_variant_pattern, - STATE(871), 1, + STATE(747), 1, + sym_or_pattern_unparens, + STATE(866), 1, sym_pattern, - STATE(951), 1, + STATE(945), 1, sym_match_branch, - STATE(1055), 1, + STATE(1039), 1, sym_pattern_or_branch, ACTIONS(623), 2, anon_sym_true, anon_sym_false, - STATE(677), 2, + STATE(690), 2, sym_bool, sym_static_string, - STATE(738), 2, + STATE(734), 2, sym_enum_pattern, sym_or_pattern, - STATE(712), 3, + STATE(719), 3, sym_constant_pattern, sym_record_pattern, sym_array_pattern, @@ -36500,44 +36496,44 @@ static const uint16_t ts_small_parse_table[] = { sym_multstr_start, ACTIONS(627), 1, sym__str_start, - ACTIONS(687), 1, + ACTIONS(643), 1, sym_ident, - ACTIONS(689), 1, + ACTIONS(645), 1, sym_raw_enum_tag, - ACTIONS(695), 1, + ACTIONS(651), 1, sym_quoted_enum_tag_start, ACTIONS(753), 1, anon_sym_RBRACE, - STATE(592), 1, + STATE(584), 1, sym_enum_tag, - STATE(602), 1, + STATE(609), 1, aux_sym_or_pattern_unparens_repeat1, STATE(618), 1, sym_quoted_enum_tag, - STATE(698), 1, + STATE(697), 1, sym_enum_pattern_parens, - STATE(726), 1, + STATE(718), 1, sym_or_pattern_parens, - STATE(734), 1, - sym_or_pattern_unparens, - STATE(753), 1, + STATE(746), 1, sym_enum_variant_pattern, - STATE(871), 1, + STATE(747), 1, + sym_or_pattern_unparens, + STATE(866), 1, sym_pattern, - STATE(951), 1, + STATE(945), 1, sym_match_branch, - STATE(1055), 1, + STATE(1039), 1, sym_pattern_or_branch, ACTIONS(623), 2, anon_sym_true, anon_sym_false, - STATE(677), 2, + STATE(690), 2, sym_bool, sym_static_string, - STATE(738), 2, + STATE(734), 2, sym_enum_pattern, sym_or_pattern, - STATE(712), 3, + STATE(719), 3, sym_constant_pattern, sym_record_pattern, sym_array_pattern, @@ -36560,44 +36556,44 @@ static const uint16_t ts_small_parse_table[] = { sym_multstr_start, ACTIONS(627), 1, sym__str_start, - ACTIONS(687), 1, + ACTIONS(643), 1, sym_ident, - ACTIONS(689), 1, + ACTIONS(645), 1, sym_raw_enum_tag, - ACTIONS(695), 1, + ACTIONS(651), 1, sym_quoted_enum_tag_start, ACTIONS(755), 1, anon_sym_RBRACE, - STATE(592), 1, + STATE(584), 1, sym_enum_tag, - STATE(602), 1, + STATE(609), 1, aux_sym_or_pattern_unparens_repeat1, STATE(618), 1, sym_quoted_enum_tag, - STATE(698), 1, + STATE(697), 1, sym_enum_pattern_parens, - STATE(726), 1, + STATE(718), 1, sym_or_pattern_parens, - STATE(734), 1, - sym_or_pattern_unparens, - STATE(753), 1, + STATE(746), 1, sym_enum_variant_pattern, - STATE(871), 1, + STATE(747), 1, + sym_or_pattern_unparens, + STATE(866), 1, sym_pattern, - STATE(951), 1, + STATE(945), 1, sym_match_branch, - STATE(1055), 1, + STATE(1039), 1, sym_pattern_or_branch, ACTIONS(623), 2, anon_sym_true, anon_sym_false, - STATE(677), 2, + STATE(690), 2, sym_bool, sym_static_string, - STATE(738), 2, + STATE(734), 2, sym_enum_pattern, sym_or_pattern, - STATE(712), 3, + STATE(719), 3, sym_constant_pattern, sym_record_pattern, sym_array_pattern, @@ -36620,44 +36616,44 @@ static const uint16_t ts_small_parse_table[] = { sym_multstr_start, ACTIONS(627), 1, sym__str_start, - ACTIONS(687), 1, + ACTIONS(643), 1, sym_ident, - ACTIONS(689), 1, + ACTIONS(645), 1, sym_raw_enum_tag, - ACTIONS(695), 1, + ACTIONS(651), 1, sym_quoted_enum_tag_start, ACTIONS(757), 1, anon_sym_RBRACE, - STATE(592), 1, + STATE(584), 1, sym_enum_tag, - STATE(602), 1, + STATE(609), 1, aux_sym_or_pattern_unparens_repeat1, STATE(618), 1, sym_quoted_enum_tag, - STATE(698), 1, + STATE(697), 1, sym_enum_pattern_parens, - STATE(726), 1, + STATE(718), 1, sym_or_pattern_parens, - STATE(734), 1, - sym_or_pattern_unparens, - STATE(753), 1, + STATE(746), 1, sym_enum_variant_pattern, - STATE(871), 1, + STATE(747), 1, + sym_or_pattern_unparens, + STATE(866), 1, sym_pattern, - STATE(951), 1, + STATE(945), 1, sym_match_branch, - STATE(1055), 1, + STATE(1039), 1, sym_pattern_or_branch, ACTIONS(623), 2, anon_sym_true, anon_sym_false, - STATE(677), 2, + STATE(690), 2, sym_bool, sym_static_string, - STATE(738), 2, + STATE(734), 2, sym_enum_pattern, sym_or_pattern, - STATE(712), 3, + STATE(719), 3, sym_constant_pattern, sym_record_pattern, sym_array_pattern, @@ -36688,38 +36684,90 @@ static const uint16_t ts_small_parse_table[] = { sym_quoted_enum_tag_start, ACTIONS(759), 1, anon_sym_rec, - STATE(564), 1, + STATE(509), 1, sym_enum_tag, - STATE(602), 1, + STATE(609), 1, aux_sym_or_pattern_unparens_repeat1, - STATE(614), 1, + STATE(613), 1, sym_quoted_enum_tag, - STATE(698), 1, + STATE(697), 1, sym_enum_pattern_parens, - STATE(726), 1, + STATE(718), 1, sym_or_pattern_parens, - STATE(734), 1, - sym_or_pattern_unparens, - STATE(753), 1, + STATE(746), 1, sym_enum_variant_pattern, - STATE(815), 1, + STATE(747), 1, + sym_or_pattern_unparens, + STATE(806), 1, sym_pattern, - STATE(1055), 1, + STATE(1039), 1, sym_pattern_or_branch, ACTIONS(623), 2, anon_sym_true, anon_sym_false, - STATE(677), 2, + STATE(690), 2, sym_bool, sym_static_string, - STATE(738), 2, + STATE(734), 2, sym_enum_pattern, sym_or_pattern, - STATE(712), 3, + STATE(719), 3, + sym_constant_pattern, + sym_record_pattern, + sym_array_pattern, + [37767] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(603), 1, + sym_signed_num_literal, + ACTIONS(609), 1, + anon_sym_LBRACE, + ACTIONS(613), 1, + anon_sym_null, + ACTIONS(615), 1, + anon_sym_LBRACK, + ACTIONS(625), 1, + sym_multstr_start, + ACTIONS(627), 1, + sym__str_start, + ACTIONS(761), 1, + sym_ident, + ACTIONS(763), 1, + sym_raw_enum_tag, + ACTIONS(767), 1, + anon_sym_LPAREN, + ACTIONS(769), 1, + anon_sym__, + ACTIONS(771), 1, + anon_sym_or, + ACTIONS(773), 1, + sym_quoted_enum_tag_start, + STATE(668), 1, + sym_quoted_enum_tag, + STATE(686), 1, + sym_enum_tag, + STATE(711), 1, + sym_pattern_fun, + ACTIONS(623), 2, + anon_sym_true, + anon_sym_false, + STATE(690), 2, + sym_bool, + sym_static_string, + STATE(712), 5, sym_constant_pattern, sym_record_pattern, sym_array_pattern, - [37767] = 26, + sym_enum_pattern_parens, + sym_or_pattern_parens, + ACTIONS(765), 6, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RBRACK, + [37839] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(603), 1, @@ -36738,76 +36786,75 @@ static const uint16_t ts_small_parse_table[] = { sym_multstr_start, ACTIONS(627), 1, sym__str_start, - ACTIONS(687), 1, + ACTIONS(643), 1, sym_ident, - ACTIONS(689), 1, + ACTIONS(645), 1, sym_raw_enum_tag, - ACTIONS(695), 1, + ACTIONS(651), 1, sym_quoted_enum_tag_start, - STATE(592), 1, + STATE(584), 1, sym_enum_tag, - STATE(602), 1, + STATE(609), 1, aux_sym_or_pattern_unparens_repeat1, STATE(618), 1, sym_quoted_enum_tag, - STATE(698), 1, + STATE(697), 1, sym_enum_pattern_parens, - STATE(726), 1, + STATE(718), 1, sym_or_pattern_parens, - STATE(734), 1, - sym_or_pattern_unparens, - STATE(753), 1, + STATE(746), 1, sym_enum_variant_pattern, - STATE(871), 1, + STATE(747), 1, + sym_or_pattern_unparens, + STATE(866), 1, sym_pattern, - STATE(951), 1, + STATE(945), 1, sym_match_branch, - STATE(1055), 1, + STATE(1039), 1, sym_pattern_or_branch, ACTIONS(623), 2, anon_sym_true, anon_sym_false, - STATE(677), 2, + STATE(690), 2, sym_bool, sym_static_string, - STATE(738), 2, + STATE(734), 2, sym_enum_pattern, sym_or_pattern, - STATE(712), 3, + STATE(719), 3, sym_constant_pattern, sym_record_pattern, sym_array_pattern, - [37851] = 14, + [37923] = 13, ACTIONS(3), 1, sym_comment, - STATE(169), 1, + STATE(172), 1, sym_infix_b_op_2, - STATE(173), 1, - sym_infix_b_op_3, STATE(179), 1, - sym_infix_b_op_4, + sym_infix_b_op_3, STATE(180), 1, - sym_infix_b_op_6, + sym_infix_b_op_4, STATE(181), 1, - sym_infix_b_op_7, + sym_infix_b_op_6, STATE(182), 1, - sym_infix_b_op_8, + sym_infix_b_op_7, STATE(183), 1, - sym_infix_lazy_b_op_9, + sym_infix_b_op_8, STATE(184), 1, + sym_infix_lazy_b_op_9, + STATE(185), 1, sym_infix_lazy_b_op_10, ACTIONS(569), 2, anon_sym_AT, anon_sym_PLUS_PLUS, - ACTIONS(573), 2, - anon_sym_PLUS, - anon_sym_DASH, ACTIONS(571), 3, anon_sym_PERCENT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(591), 4, + ACTIONS(591), 6, anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_AMP, anon_sym_LT, anon_sym_GT, @@ -36822,24 +36869,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_DASH_GT, - [37910] = 14, + [37980] = 19, ACTIONS(3), 1, sym_comment, - STATE(193), 1, - sym_infix_lazy_b_op_9, - STATE(194), 1, - sym_infix_b_op_8, - STATE(195), 1, - sym_infix_b_op_7, - STATE(196), 1, - sym_infix_b_op_6, - STATE(197), 1, - sym_infix_b_op_4, - STATE(198), 1, - sym_infix_b_op_3, - STATE(199), 1, + ACTIONS(575), 1, + anon_sym_AMP, + ACTIONS(577), 1, + anon_sym_PIPE_GT, + ACTIONS(591), 1, + anon_sym_PIPE, + STATE(172), 1, sym_infix_b_op_2, - STATE(220), 1, + STATE(179), 1, + sym_infix_b_op_3, + STATE(180), 1, + sym_infix_b_op_4, + STATE(181), 1, + sym_infix_b_op_6, + STATE(182), 1, + sym_infix_b_op_7, + STATE(183), 1, + sym_infix_b_op_8, + STATE(184), 1, + sym_infix_lazy_b_op_9, + STATE(185), 1, sym_infix_lazy_b_op_10, ACTIONS(569), 2, anon_sym_AT, @@ -36847,18 +36900,59 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(573), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(579), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(581), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(583), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, ACTIONS(571), 3, anon_sym_PERCENT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(599), 4, + ACTIONS(593), 5, + anon_sym_COLON, + anon_sym_else, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_DASH_GT, + [38049] = 11, + ACTIONS(3), 1, + sym_comment, + STATE(155), 1, + sym_infix_b_op_2, + STATE(204), 1, + sym_infix_lazy_b_op_10, + STATE(206), 1, + sym_infix_lazy_b_op_9, + STATE(207), 1, + sym_infix_b_op_8, + STATE(209), 1, + sym_infix_b_op_7, + STATE(210), 1, + sym_infix_b_op_6, + STATE(211), 1, + sym_infix_b_op_4, + STATE(212), 1, + sym_infix_b_op_3, + ACTIONS(599), 6, anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_AMP, anon_sym_LT, anon_sym_GT, - ACTIONS(601), 10, + ACTIONS(601), 15, + ts_builtin_sym_end, anon_sym_COLON, - anon_sym_in, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_PLUS_PLUS, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_PIPE_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, @@ -36867,28 +36961,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_DASH_GT, - [37969] = 16, + [38102] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(575), 1, - anon_sym_AMP, - ACTIONS(577), 1, - anon_sym_PIPE_GT, STATE(155), 1, sym_infix_b_op_2, - STATE(202), 1, + STATE(204), 1, sym_infix_lazy_b_op_10, - STATE(203), 1, + STATE(206), 1, sym_infix_lazy_b_op_9, - STATE(204), 1, + STATE(207), 1, sym_infix_b_op_8, - STATE(206), 1, + STATE(209), 1, sym_infix_b_op_7, - STATE(208), 1, + STATE(210), 1, sym_infix_b_op_6, - STATE(209), 1, + STATE(211), 1, sym_infix_b_op_4, - STATE(210), 1, + STATE(212), 1, sym_infix_b_op_3, ACTIONS(569), 2, anon_sym_AT, @@ -36900,13 +36990,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(591), 3, + ACTIONS(599), 4, anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, - ACTIONS(593), 9, + ACTIONS(601), 10, ts_builtin_sym_end, anon_sym_COLON, + anon_sym_PIPE_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, @@ -36914,31 +37006,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_DASH_GT, - [38032] = 18, + [38161] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(575), 1, anon_sym_AMP, ACTIONS(577), 1, anon_sym_PIPE_GT, + ACTIONS(585), 1, + anon_sym_AMP_AMP, + ACTIONS(587), 1, + anon_sym_PIPE_PIPE, ACTIONS(591), 1, anon_sym_PIPE, - STATE(155), 1, + ACTIONS(641), 1, + anon_sym_DASH_GT, + STATE(172), 1, sym_infix_b_op_2, - STATE(202), 1, - sym_infix_lazy_b_op_10, - STATE(203), 1, - sym_infix_lazy_b_op_9, - STATE(204), 1, - sym_infix_b_op_8, - STATE(206), 1, - sym_infix_b_op_7, - STATE(208), 1, - sym_infix_b_op_6, - STATE(209), 1, - sym_infix_b_op_4, - STATE(210), 1, + STATE(179), 1, sym_infix_b_op_3, + STATE(180), 1, + sym_infix_b_op_4, + STATE(181), 1, + sym_infix_b_op_6, + STATE(182), 1, + sym_infix_b_op_7, + STATE(183), 1, + sym_infix_b_op_8, + STATE(184), 1, + sym_infix_lazy_b_op_9, + STATE(185), 1, + sym_infix_lazy_b_op_10, ACTIONS(569), 2, anon_sym_AT, anon_sym_PLUS_PLUS, @@ -36951,43 +37049,47 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(581), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(583), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(593), 2, + anon_sym_COLON, + anon_sym_else, ACTIONS(571), 3, anon_sym_PERCENT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(593), 7, - ts_builtin_sym_end, - anon_sym_COLON, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_DASH_GT, - [38099] = 19, + [38236] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(575), 1, anon_sym_AMP, ACTIONS(577), 1, anon_sym_PIPE_GT, - ACTIONS(591), 1, + ACTIONS(585), 1, + anon_sym_AMP_AMP, + ACTIONS(587), 1, + anon_sym_PIPE_PIPE, + ACTIONS(595), 1, anon_sym_PIPE, - STATE(155), 1, + ACTIONS(641), 1, + anon_sym_DASH_GT, + STATE(172), 1, sym_infix_b_op_2, - STATE(202), 1, - sym_infix_lazy_b_op_10, - STATE(203), 1, - sym_infix_lazy_b_op_9, - STATE(204), 1, - sym_infix_b_op_8, - STATE(206), 1, - sym_infix_b_op_7, - STATE(208), 1, - sym_infix_b_op_6, - STATE(209), 1, - sym_infix_b_op_4, - STATE(210), 1, + STATE(179), 1, sym_infix_b_op_3, + STATE(180), 1, + sym_infix_b_op_4, + STATE(181), 1, + sym_infix_b_op_6, + STATE(182), 1, + sym_infix_b_op_7, + STATE(183), 1, + sym_infix_b_op_8, + STATE(184), 1, + sym_infix_lazy_b_op_9, + STATE(185), 1, + sym_infix_lazy_b_op_10, ACTIONS(569), 2, anon_sym_AT, anon_sym_PLUS_PLUS, @@ -37003,24 +37105,63 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(583), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(597), 2, + anon_sym_COLON, + anon_sym_else, ACTIONS(571), 3, anon_sym_PERCENT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(593), 5, - ts_builtin_sym_end, + [38311] = 11, + ACTIONS(3), 1, + sym_comment, + STATE(166), 1, + sym_infix_lazy_b_op_10, + STATE(193), 1, + sym_infix_lazy_b_op_9, + STATE(194), 1, + sym_infix_b_op_8, + STATE(195), 1, + sym_infix_b_op_7, + STATE(196), 1, + sym_infix_b_op_6, + STATE(197), 1, + sym_infix_b_op_4, + STATE(198), 1, + sym_infix_b_op_3, + STATE(199), 1, + sym_infix_b_op_2, + ACTIONS(599), 6, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + ACTIONS(601), 15, anon_sym_COLON, + anon_sym_in, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_PLUS_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PIPE_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_DASH_GT, - [38168] = 12, + [38364] = 11, ACTIONS(3), 1, sym_comment, STATE(167), 1, sym_infix_b_op_2, - STATE(171), 1, + STATE(170), 1, sym_infix_b_op_3, - STATE(172), 1, + STATE(173), 1, sym_infix_b_op_4, STATE(174), 1, sym_infix_b_op_6, @@ -37032,9 +37173,6 @@ static const uint16_t ts_small_parse_table[] = { sym_infix_lazy_b_op_9, STATE(178), 1, sym_infix_lazy_b_op_10, - ACTIONS(569), 2, - anon_sym_AT, - anon_sym_PLUS_PLUS, ACTIONS(591), 6, anon_sym_PIPE, anon_sym_PLUS, @@ -37042,10 +37180,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_LT, anon_sym_GT, - ACTIONS(593), 13, + ACTIONS(593), 15, sym_interpolation_end, anon_sym_COLON, + anon_sym_AT, anon_sym_PERCENT, + anon_sym_PLUS_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PIPE_GT, @@ -37056,58 +37196,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_DASH_GT, - [38223] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(575), 1, - anon_sym_AMP, - ACTIONS(577), 1, - anon_sym_PIPE_GT, - ACTIONS(585), 1, - anon_sym_AMP_AMP, - ACTIONS(591), 1, - anon_sym_PIPE, - STATE(155), 1, - sym_infix_b_op_2, - STATE(202), 1, - sym_infix_lazy_b_op_10, - STATE(203), 1, - sym_infix_lazy_b_op_9, - STATE(204), 1, - sym_infix_b_op_8, - STATE(206), 1, - sym_infix_b_op_7, - STATE(208), 1, - sym_infix_b_op_6, - STATE(209), 1, - sym_infix_b_op_4, - STATE(210), 1, - sym_infix_b_op_3, - ACTIONS(569), 2, - anon_sym_AT, - anon_sym_PLUS_PLUS, - ACTIONS(573), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(579), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(581), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(583), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(571), 3, - anon_sym_PERCENT, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(593), 4, - ts_builtin_sym_end, - anon_sym_COLON, - anon_sym_PIPE_PIPE, - anon_sym_DASH_GT, - [38294] = 22, + [38417] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(575), 1, @@ -37118,25 +37207,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, ACTIONS(587), 1, anon_sym_PIPE_PIPE, - ACTIONS(591), 1, + ACTIONS(595), 1, anon_sym_PIPE, - ACTIONS(711), 1, + ACTIONS(709), 1, anon_sym_DASH_GT, STATE(155), 1, sym_infix_b_op_2, - STATE(202), 1, + STATE(204), 1, sym_infix_lazy_b_op_10, - STATE(203), 1, + STATE(206), 1, sym_infix_lazy_b_op_9, - STATE(204), 1, + STATE(207), 1, sym_infix_b_op_8, - STATE(206), 1, + STATE(209), 1, sym_infix_b_op_7, - STATE(208), 1, + STATE(210), 1, sym_infix_b_op_6, - STATE(209), 1, + STATE(211), 1, sym_infix_b_op_4, - STATE(210), 1, + STATE(212), 1, sym_infix_b_op_3, ACTIONS(569), 2, anon_sym_AT, @@ -37153,21 +37242,21 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(583), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(593), 2, + ACTIONS(597), 2, ts_builtin_sym_end, anon_sym_COLON, ACTIONS(571), 3, anon_sym_PERCENT, anon_sym_STAR, anon_sym_SLASH, - [38369] = 14, + [38492] = 14, ACTIONS(3), 1, sym_comment, STATE(167), 1, sym_infix_b_op_2, - STATE(171), 1, + STATE(170), 1, sym_infix_b_op_3, - STATE(172), 1, + STATE(173), 1, sym_infix_b_op_4, STATE(174), 1, sym_infix_b_op_6, @@ -37205,7 +37294,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_DASH_GT, - [38428] = 22, + [38551] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(575), 1, @@ -37216,25 +37305,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, ACTIONS(587), 1, anon_sym_PIPE_PIPE, - ACTIONS(595), 1, + ACTIONS(591), 1, anon_sym_PIPE, - ACTIONS(711), 1, + ACTIONS(709), 1, anon_sym_DASH_GT, STATE(155), 1, sym_infix_b_op_2, - STATE(202), 1, + STATE(204), 1, sym_infix_lazy_b_op_10, - STATE(203), 1, + STATE(206), 1, sym_infix_lazy_b_op_9, - STATE(204), 1, + STATE(207), 1, sym_infix_b_op_8, - STATE(206), 1, + STATE(209), 1, sym_infix_b_op_7, - STATE(208), 1, + STATE(210), 1, sym_infix_b_op_6, - STATE(209), 1, + STATE(211), 1, sym_infix_b_op_4, - STATE(210), 1, + STATE(212), 1, sym_infix_b_op_3, ACTIONS(569), 2, anon_sym_AT, @@ -37251,21 +37340,21 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(583), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(597), 2, + ACTIONS(593), 2, ts_builtin_sym_end, anon_sym_COLON, ACTIONS(571), 3, anon_sym_PERCENT, anon_sym_STAR, anon_sym_SLASH, - [38503] = 11, + [38626] = 11, ACTIONS(3), 1, sym_comment, STATE(167), 1, sym_infix_b_op_2, - STATE(171), 1, + STATE(170), 1, sym_infix_b_op_3, - STATE(172), 1, + STATE(173), 1, sym_infix_b_op_4, STATE(174), 1, sym_infix_b_op_6, @@ -37300,7 +37389,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_DASH_GT, - [38556] = 22, + [38679] = 11, + ACTIONS(3), 1, + sym_comment, + STATE(155), 1, + sym_infix_b_op_2, + STATE(204), 1, + sym_infix_lazy_b_op_10, + STATE(206), 1, + sym_infix_lazy_b_op_9, + STATE(207), 1, + sym_infix_b_op_8, + STATE(209), 1, + sym_infix_b_op_7, + STATE(210), 1, + sym_infix_b_op_6, + STATE(211), 1, + sym_infix_b_op_4, + STATE(212), 1, + sym_infix_b_op_3, + ACTIONS(591), 6, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + ACTIONS(593), 15, + ts_builtin_sym_end, + anon_sym_COLON, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_PLUS_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PIPE_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_DASH_GT, + [38732] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(575), 1, @@ -37315,6 +37446,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, ACTIONS(725), 1, anon_sym_DASH_GT, + STATE(166), 1, + sym_infix_lazy_b_op_10, STATE(193), 1, sym_infix_lazy_b_op_9, STATE(194), 1, @@ -37329,8 +37462,6 @@ static const uint16_t ts_small_parse_table[] = { sym_infix_b_op_3, STATE(199), 1, sym_infix_b_op_2, - STATE(220), 1, - sym_infix_lazy_b_op_10, ACTIONS(569), 2, anon_sym_AT, anon_sym_PLUS_PLUS, @@ -37353,28 +37484,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_STAR, anon_sym_SLASH, - [38631] = 12, + [38807] = 13, ACTIONS(3), 1, sym_comment, STATE(155), 1, sym_infix_b_op_2, - STATE(202), 1, + STATE(204), 1, sym_infix_lazy_b_op_10, - STATE(203), 1, + STATE(206), 1, sym_infix_lazy_b_op_9, - STATE(204), 1, + STATE(207), 1, sym_infix_b_op_8, - STATE(206), 1, + STATE(209), 1, sym_infix_b_op_7, - STATE(208), 1, + STATE(210), 1, sym_infix_b_op_6, - STATE(209), 1, + STATE(211), 1, sym_infix_b_op_4, - STATE(210), 1, + STATE(212), 1, sym_infix_b_op_3, ACTIONS(569), 2, anon_sym_AT, anon_sym_PLUS_PLUS, + ACTIONS(571), 3, + anon_sym_PERCENT, + anon_sym_STAR, + anon_sym_SLASH, ACTIONS(591), 6, anon_sym_PIPE, anon_sym_PLUS, @@ -37382,12 +37517,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_LT, anon_sym_GT, - ACTIONS(593), 13, + ACTIONS(593), 10, ts_builtin_sym_end, anon_sym_COLON, - anon_sym_PERCENT, - anon_sym_STAR, - anon_sym_SLASH, anon_sym_PIPE_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, @@ -37396,36 +37528,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_DASH_GT, - [38686] = 13, + [38864] = 14, ACTIONS(3), 1, sym_comment, STATE(155), 1, sym_infix_b_op_2, - STATE(202), 1, + STATE(204), 1, sym_infix_lazy_b_op_10, - STATE(203), 1, + STATE(206), 1, sym_infix_lazy_b_op_9, - STATE(204), 1, + STATE(207), 1, sym_infix_b_op_8, - STATE(206), 1, + STATE(209), 1, sym_infix_b_op_7, - STATE(208), 1, + STATE(210), 1, sym_infix_b_op_6, - STATE(209), 1, + STATE(211), 1, sym_infix_b_op_4, - STATE(210), 1, + STATE(212), 1, sym_infix_b_op_3, ACTIONS(569), 2, anon_sym_AT, anon_sym_PLUS_PLUS, + ACTIONS(573), 2, + anon_sym_PLUS, + anon_sym_DASH, ACTIONS(571), 3, anon_sym_PERCENT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(591), 6, + ACTIONS(591), 4, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_AMP, anon_sym_LT, anon_sym_GT, @@ -37440,24 +37573,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_DASH_GT, - [38743] = 14, + [38923] = 16, ACTIONS(3), 1, sym_comment, + ACTIONS(575), 1, + anon_sym_AMP, + ACTIONS(577), 1, + anon_sym_PIPE_GT, STATE(155), 1, sym_infix_b_op_2, - STATE(202), 1, + STATE(204), 1, sym_infix_lazy_b_op_10, - STATE(203), 1, + STATE(206), 1, sym_infix_lazy_b_op_9, - STATE(204), 1, + STATE(207), 1, sym_infix_b_op_8, - STATE(206), 1, + STATE(209), 1, sym_infix_b_op_7, - STATE(208), 1, + STATE(210), 1, sym_infix_b_op_6, - STATE(209), 1, + STATE(211), 1, sym_infix_b_op_4, - STATE(210), 1, + STATE(212), 1, sym_infix_b_op_3, ACTIONS(569), 2, anon_sym_AT, @@ -37469,15 +37606,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(591), 4, + ACTIONS(591), 3, anon_sym_PIPE, - anon_sym_AMP, anon_sym_LT, anon_sym_GT, - ACTIONS(593), 10, + ACTIONS(593), 9, ts_builtin_sym_end, anon_sym_COLON, - anon_sym_PIPE_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, @@ -37485,37 +37620,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_DASH_GT, - [38802] = 22, + [38986] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(575), 1, anon_sym_AMP, ACTIONS(577), 1, anon_sym_PIPE_GT, - ACTIONS(585), 1, - anon_sym_AMP_AMP, - ACTIONS(587), 1, - anon_sym_PIPE_PIPE, ACTIONS(591), 1, anon_sym_PIPE, - ACTIONS(685), 1, - anon_sym_DASH_GT, - STATE(169), 1, + STATE(155), 1, sym_infix_b_op_2, - STATE(173), 1, - sym_infix_b_op_3, - STATE(179), 1, - sym_infix_b_op_4, - STATE(180), 1, - sym_infix_b_op_6, - STATE(181), 1, - sym_infix_b_op_7, - STATE(182), 1, - sym_infix_b_op_8, - STATE(183), 1, - sym_infix_lazy_b_op_9, - STATE(184), 1, + STATE(204), 1, sym_infix_lazy_b_op_10, + STATE(206), 1, + sym_infix_lazy_b_op_9, + STATE(207), 1, + sym_infix_b_op_8, + STATE(209), 1, + sym_infix_b_op_7, + STATE(210), 1, + sym_infix_b_op_6, + STATE(211), 1, + sym_infix_b_op_4, + STATE(212), 1, + sym_infix_b_op_3, ACTIONS(569), 2, anon_sym_AT, anon_sym_PLUS_PLUS, @@ -37528,34 +37657,42 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(581), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(583), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(593), 2, - anon_sym_COLON, - anon_sym_else, ACTIONS(571), 3, anon_sym_PERCENT, anon_sym_STAR, anon_sym_SLASH, - [38877] = 14, + ACTIONS(593), 7, + ts_builtin_sym_end, + anon_sym_COLON, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_DASH_GT, + [39053] = 19, ACTIONS(3), 1, sym_comment, + ACTIONS(575), 1, + anon_sym_AMP, + ACTIONS(577), 1, + anon_sym_PIPE_GT, + ACTIONS(591), 1, + anon_sym_PIPE, STATE(155), 1, sym_infix_b_op_2, - STATE(202), 1, + STATE(204), 1, sym_infix_lazy_b_op_10, - STATE(203), 1, + STATE(206), 1, sym_infix_lazy_b_op_9, - STATE(204), 1, + STATE(207), 1, sym_infix_b_op_8, - STATE(206), 1, + STATE(209), 1, sym_infix_b_op_7, - STATE(208), 1, + STATE(210), 1, sym_infix_b_op_6, - STATE(209), 1, + STATE(211), 1, sym_infix_b_op_4, - STATE(210), 1, + STATE(212), 1, sym_infix_b_op_3, ACTIONS(569), 2, anon_sym_AT, @@ -37563,172 +37700,147 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(573), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(571), 3, - anon_sym_PERCENT, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(599), 4, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(579), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(601), 10, - ts_builtin_sym_end, - anon_sym_COLON, - anon_sym_PIPE_GT, + ACTIONS(581), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(583), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(571), 3, + anon_sym_PERCENT, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(593), 5, + ts_builtin_sym_end, + anon_sym_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_DASH_GT, - [38936] = 11, + [39122] = 20, ACTIONS(3), 1, sym_comment, + ACTIONS(575), 1, + anon_sym_AMP, + ACTIONS(577), 1, + anon_sym_PIPE_GT, + ACTIONS(585), 1, + anon_sym_AMP_AMP, + ACTIONS(591), 1, + anon_sym_PIPE, STATE(155), 1, sym_infix_b_op_2, - STATE(202), 1, + STATE(204), 1, sym_infix_lazy_b_op_10, - STATE(203), 1, + STATE(206), 1, sym_infix_lazy_b_op_9, - STATE(204), 1, + STATE(207), 1, sym_infix_b_op_8, - STATE(206), 1, + STATE(209), 1, sym_infix_b_op_7, - STATE(208), 1, + STATE(210), 1, sym_infix_b_op_6, - STATE(209), 1, + STATE(211), 1, sym_infix_b_op_4, - STATE(210), 1, + STATE(212), 1, sym_infix_b_op_3, - ACTIONS(599), 6, - anon_sym_PIPE, + ACTIONS(569), 2, + anon_sym_AT, + anon_sym_PLUS_PLUS, + ACTIONS(573), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_AMP, + ACTIONS(579), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(601), 15, - ts_builtin_sym_end, - anon_sym_COLON, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PIPE_GT, + ACTIONS(581), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(583), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_AMP_AMP, + ACTIONS(571), 3, + anon_sym_PERCENT, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(593), 4, + ts_builtin_sym_end, + anon_sym_COLON, anon_sym_PIPE_PIPE, anon_sym_DASH_GT, - [38989] = 11, + [39193] = 22, ACTIONS(3), 1, sym_comment, - STATE(167), 1, - sym_infix_b_op_2, - STATE(171), 1, - sym_infix_b_op_3, - STATE(172), 1, - sym_infix_b_op_4, - STATE(174), 1, - sym_infix_b_op_6, - STATE(175), 1, - sym_infix_b_op_7, - STATE(176), 1, - sym_infix_b_op_8, - STATE(177), 1, - sym_infix_lazy_b_op_9, - STATE(178), 1, - sym_infix_lazy_b_op_10, - ACTIONS(591), 6, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(575), 1, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - ACTIONS(593), 15, - sym_interpolation_end, - anon_sym_COLON, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_STAR, - anon_sym_SLASH, + ACTIONS(577), 1, anon_sym_PIPE_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(585), 1, anon_sym_AMP_AMP, + ACTIONS(587), 1, anon_sym_PIPE_PIPE, + ACTIONS(591), 1, + anon_sym_PIPE, + ACTIONS(719), 1, anon_sym_DASH_GT, - [39042] = 13, - ACTIONS(3), 1, - sym_comment, - STATE(167), 1, + STATE(192), 1, sym_infix_b_op_2, - STATE(171), 1, + STATE(201), 1, sym_infix_b_op_3, - STATE(172), 1, + STATE(202), 1, sym_infix_b_op_4, - STATE(174), 1, + STATE(203), 1, sym_infix_b_op_6, - STATE(175), 1, + STATE(214), 1, sym_infix_b_op_7, - STATE(176), 1, + STATE(216), 1, sym_infix_b_op_8, - STATE(177), 1, + STATE(217), 1, sym_infix_lazy_b_op_9, - STATE(178), 1, + STATE(219), 1, sym_infix_lazy_b_op_10, ACTIONS(569), 2, anon_sym_AT, anon_sym_PLUS_PLUS, - ACTIONS(571), 3, - anon_sym_PERCENT, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(591), 6, - anon_sym_PIPE, + ACTIONS(573), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_AMP, + ACTIONS(579), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(593), 10, - sym_interpolation_end, - anon_sym_COLON, - anon_sym_PIPE_GT, + ACTIONS(581), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(583), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_DASH_GT, - [39099] = 14, + ACTIONS(593), 2, + anon_sym_COLON, + anon_sym_then, + ACTIONS(571), 3, + anon_sym_PERCENT, + anon_sym_STAR, + anon_sym_SLASH, + [39268] = 14, ACTIONS(3), 1, sym_comment, - STATE(191), 1, - sym_infix_b_op_2, STATE(192), 1, - sym_infix_b_op_3, + sym_infix_b_op_2, STATE(201), 1, + sym_infix_b_op_3, + STATE(202), 1, sym_infix_b_op_4, - STATE(212), 1, + STATE(203), 1, sym_infix_b_op_6, STATE(214), 1, sym_infix_b_op_7, - STATE(215), 1, - sym_infix_b_op_8, STATE(216), 1, + sym_infix_b_op_8, + STATE(217), 1, sym_infix_lazy_b_op_9, - STATE(218), 1, + STATE(219), 1, sym_infix_lazy_b_op_10, ACTIONS(569), 2, anon_sym_AT, @@ -37756,25 +37868,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_DASH_GT, - [39158] = 11, + [39327] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(603), 1, + sym_signed_num_literal, + ACTIONS(605), 1, + sym_ident, + ACTIONS(607), 1, + sym_raw_enum_tag, + ACTIONS(609), 1, + anon_sym_LBRACE, + ACTIONS(611), 1, + anon_sym_LPAREN, + ACTIONS(613), 1, + anon_sym_null, + ACTIONS(615), 1, + anon_sym_LBRACK, + ACTIONS(621), 1, + anon_sym__, + ACTIONS(625), 1, + sym_multstr_start, + ACTIONS(627), 1, + sym__str_start, + ACTIONS(629), 1, + sym_quoted_enum_tag_start, + STATE(509), 1, + sym_enum_tag, + STATE(609), 1, + aux_sym_or_pattern_unparens_repeat1, + STATE(613), 1, + sym_quoted_enum_tag, + STATE(697), 1, + sym_enum_pattern_parens, + STATE(718), 1, + sym_or_pattern_parens, + STATE(746), 1, + sym_enum_variant_pattern, + STATE(747), 1, + sym_or_pattern_unparens, + STATE(955), 1, + sym_pattern, + STATE(1039), 1, + sym_pattern_or_branch, + ACTIONS(623), 2, + anon_sym_true, + anon_sym_false, + STATE(690), 2, + sym_bool, + sym_static_string, + STATE(734), 2, + sym_enum_pattern, + sym_or_pattern, + STATE(719), 3, + sym_constant_pattern, + sym_record_pattern, + sym_array_pattern, + [39408] = 12, ACTIONS(3), 1, sym_comment, STATE(155), 1, sym_infix_b_op_2, - STATE(202), 1, + STATE(204), 1, sym_infix_lazy_b_op_10, - STATE(203), 1, + STATE(206), 1, sym_infix_lazy_b_op_9, - STATE(204), 1, + STATE(207), 1, sym_infix_b_op_8, - STATE(206), 1, + STATE(209), 1, sym_infix_b_op_7, - STATE(208), 1, + STATE(210), 1, sym_infix_b_op_6, - STATE(209), 1, + STATE(211), 1, sym_infix_b_op_4, - STATE(210), 1, + STATE(212), 1, sym_infix_b_op_3, + ACTIONS(569), 2, + anon_sym_AT, + anon_sym_PLUS_PLUS, ACTIONS(591), 6, anon_sym_PIPE, anon_sym_PLUS, @@ -37782,9 +37953,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_LT, anon_sym_GT, - ACTIONS(593), 15, + ACTIONS(593), 13, ts_builtin_sym_end, anon_sym_COLON, + anon_sym_PERCENT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PIPE_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_DASH_GT, + [39463] = 11, + ACTIONS(3), 1, + sym_comment, + STATE(192), 1, + sym_infix_b_op_2, + STATE(201), 1, + sym_infix_b_op_3, + STATE(202), 1, + sym_infix_b_op_4, + STATE(203), 1, + sym_infix_b_op_6, + STATE(214), 1, + sym_infix_b_op_7, + STATE(216), 1, + sym_infix_b_op_8, + STATE(217), 1, + sym_infix_lazy_b_op_9, + STATE(219), 1, + sym_infix_lazy_b_op_10, + ACTIONS(599), 6, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + ACTIONS(601), 15, + anon_sym_COLON, + anon_sym_then, anon_sym_AT, anon_sym_PERCENT, anon_sym_PLUS_PLUS, @@ -37798,7 +38009,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_DASH_GT, - [39211] = 22, + [39516] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(575), 1, @@ -37811,23 +38022,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, ACTIONS(595), 1, anon_sym_PIPE, - ACTIONS(701), 1, + ACTIONS(719), 1, anon_sym_DASH_GT, - STATE(191), 1, - sym_infix_b_op_2, STATE(192), 1, - sym_infix_b_op_3, + sym_infix_b_op_2, STATE(201), 1, + sym_infix_b_op_3, + STATE(202), 1, sym_infix_b_op_4, - STATE(212), 1, + STATE(203), 1, sym_infix_b_op_6, STATE(214), 1, sym_infix_b_op_7, - STATE(215), 1, - sym_infix_b_op_8, STATE(216), 1, + sym_infix_b_op_8, + STATE(217), 1, sym_infix_lazy_b_op_9, - STATE(218), 1, + STATE(219), 1, sym_infix_lazy_b_op_10, ACTIONS(569), 2, anon_sym_AT, @@ -37851,24 +38062,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_STAR, anon_sym_SLASH, - [39286] = 11, + [39591] = 22, ACTIONS(3), 1, sym_comment, - STATE(191), 1, + ACTIONS(575), 1, + anon_sym_AMP, + ACTIONS(577), 1, + anon_sym_PIPE_GT, + ACTIONS(585), 1, + anon_sym_AMP_AMP, + ACTIONS(587), 1, + anon_sym_PIPE_PIPE, + ACTIONS(595), 1, + anon_sym_PIPE, + ACTIONS(725), 1, + anon_sym_DASH_GT, + STATE(166), 1, + sym_infix_lazy_b_op_10, + STATE(193), 1, + sym_infix_lazy_b_op_9, + STATE(194), 1, + sym_infix_b_op_8, + STATE(195), 1, + sym_infix_b_op_7, + STATE(196), 1, + sym_infix_b_op_6, + STATE(197), 1, + sym_infix_b_op_4, + STATE(198), 1, + sym_infix_b_op_3, + STATE(199), 1, sym_infix_b_op_2, + ACTIONS(569), 2, + anon_sym_AT, + anon_sym_PLUS_PLUS, + ACTIONS(573), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(579), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(581), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(583), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(597), 2, + anon_sym_COLON, + anon_sym_in, + ACTIONS(571), 3, + anon_sym_PERCENT, + anon_sym_STAR, + anon_sym_SLASH, + [39666] = 11, + ACTIONS(3), 1, + sym_comment, STATE(192), 1, - sym_infix_b_op_3, + sym_infix_b_op_2, STATE(201), 1, + sym_infix_b_op_3, + STATE(202), 1, sym_infix_b_op_4, - STATE(212), 1, + STATE(203), 1, sym_infix_b_op_6, STATE(214), 1, sym_infix_b_op_7, - STATE(215), 1, - sym_infix_b_op_8, STATE(216), 1, + sym_infix_b_op_8, + STATE(217), 1, sym_infix_lazy_b_op_9, - STATE(218), 1, + STATE(219), 1, sym_infix_lazy_b_op_10, ACTIONS(591), 6, anon_sym_PIPE, @@ -37893,24 +38157,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_DASH_GT, - [39339] = 12, + [39719] = 12, ACTIONS(3), 1, sym_comment, - STATE(191), 1, + STATE(167), 1, sym_infix_b_op_2, - STATE(192), 1, + STATE(170), 1, sym_infix_b_op_3, - STATE(201), 1, + STATE(173), 1, sym_infix_b_op_4, - STATE(212), 1, + STATE(174), 1, sym_infix_b_op_6, - STATE(214), 1, + STATE(175), 1, sym_infix_b_op_7, - STATE(215), 1, + STATE(176), 1, sym_infix_b_op_8, - STATE(216), 1, + STATE(177), 1, sym_infix_lazy_b_op_9, - STATE(218), 1, + STATE(178), 1, sym_infix_lazy_b_op_10, ACTIONS(569), 2, anon_sym_AT, @@ -37923,8 +38187,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, ACTIONS(593), 13, + sym_interpolation_end, anon_sym_COLON, - anon_sym_then, anon_sym_PERCENT, anon_sym_STAR, anon_sym_SLASH, @@ -37936,43 +38200,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_DASH_GT, - [39394] = 14, + [39774] = 12, ACTIONS(3), 1, sym_comment, - STATE(167), 1, + STATE(192), 1, sym_infix_b_op_2, - STATE(171), 1, + STATE(201), 1, sym_infix_b_op_3, - STATE(172), 1, + STATE(202), 1, sym_infix_b_op_4, - STATE(174), 1, + STATE(203), 1, sym_infix_b_op_6, - STATE(175), 1, + STATE(214), 1, sym_infix_b_op_7, - STATE(176), 1, + STATE(216), 1, sym_infix_b_op_8, - STATE(177), 1, + STATE(217), 1, sym_infix_lazy_b_op_9, - STATE(178), 1, + STATE(219), 1, sym_infix_lazy_b_op_10, ACTIONS(569), 2, anon_sym_AT, anon_sym_PLUS_PLUS, - ACTIONS(573), 2, + ACTIONS(591), 6, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(571), 3, - anon_sym_PERCENT, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(591), 4, - anon_sym_PIPE, anon_sym_AMP, anon_sym_LT, anon_sym_GT, - ACTIONS(593), 10, - sym_interpolation_end, + ACTIONS(593), 13, anon_sym_COLON, + anon_sym_then, + anon_sym_PERCENT, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_PIPE_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, @@ -37981,20 +38243,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_DASH_GT, - [39453] = 18, + [39829] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(575), 1, - anon_sym_AMP, - ACTIONS(577), 1, - anon_sym_PIPE_GT, - ACTIONS(591), 1, - anon_sym_PIPE, STATE(167), 1, sym_infix_b_op_2, - STATE(171), 1, + STATE(170), 1, sym_infix_b_op_3, - STATE(172), 1, + STATE(173), 1, sym_infix_b_op_4, STATE(174), 1, sym_infix_b_op_6, @@ -38012,42 +38268,44 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(573), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(579), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(581), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, ACTIONS(571), 3, anon_sym_PERCENT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(593), 7, + ACTIONS(591), 4, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + ACTIONS(593), 10, sym_interpolation_end, anon_sym_COLON, + anon_sym_PIPE_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_DASH_GT, - [39520] = 13, + [39888] = 13, ACTIONS(3), 1, sym_comment, - STATE(191), 1, - sym_infix_b_op_2, STATE(192), 1, - sym_infix_b_op_3, + sym_infix_b_op_2, STATE(201), 1, + sym_infix_b_op_3, + STATE(202), 1, sym_infix_b_op_4, - STATE(212), 1, + STATE(203), 1, sym_infix_b_op_6, STATE(214), 1, sym_infix_b_op_7, - STATE(215), 1, - sym_infix_b_op_8, STATE(216), 1, + sym_infix_b_op_8, + STATE(217), 1, sym_infix_lazy_b_op_9, - STATE(218), 1, + STATE(219), 1, sym_infix_lazy_b_op_10, ACTIONS(569), 2, anon_sym_AT, @@ -38074,30 +38332,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_DASH_GT, - [39577] = 19, + [39945] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(575), 1, - anon_sym_AMP, - ACTIONS(577), 1, - anon_sym_PIPE_GT, - ACTIONS(591), 1, - anon_sym_PIPE, - STATE(167), 1, + STATE(192), 1, sym_infix_b_op_2, - STATE(171), 1, + STATE(201), 1, sym_infix_b_op_3, - STATE(172), 1, + STATE(202), 1, sym_infix_b_op_4, - STATE(174), 1, + STATE(203), 1, sym_infix_b_op_6, - STATE(175), 1, + STATE(214), 1, sym_infix_b_op_7, - STATE(176), 1, + STATE(216), 1, sym_infix_b_op_8, - STATE(177), 1, + STATE(217), 1, sym_infix_lazy_b_op_9, - STATE(178), 1, + STATE(219), 1, sym_infix_lazy_b_op_10, ACTIONS(569), 2, anon_sym_AT, @@ -38105,41 +38357,38 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(573), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(579), 2, + ACTIONS(571), 3, + anon_sym_PERCENT, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(591), 4, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, - ACTIONS(581), 2, + ACTIONS(593), 10, + anon_sym_COLON, + anon_sym_then, + anon_sym_PIPE_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(583), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(571), 3, - anon_sym_PERCENT, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(593), 5, - sym_interpolation_end, - anon_sym_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_DASH_GT, - [39646] = 20, + [40004] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(575), 1, anon_sym_AMP, ACTIONS(577), 1, anon_sym_PIPE_GT, - ACTIONS(585), 1, - anon_sym_AMP_AMP, - ACTIONS(591), 1, - anon_sym_PIPE, STATE(167), 1, sym_infix_b_op_2, - STATE(171), 1, + STATE(170), 1, sym_infix_b_op_3, - STATE(172), 1, + STATE(173), 1, sym_infix_b_op_4, STATE(174), 1, sym_infix_b_op_6, @@ -38157,50 +38406,48 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(573), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(579), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(581), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(583), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, ACTIONS(571), 3, anon_sym_PERCENT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(593), 4, + ACTIONS(591), 3, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + ACTIONS(593), 9, sym_interpolation_end, anon_sym_COLON, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_DASH_GT, - [39717] = 20, + [40067] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(575), 1, anon_sym_AMP, ACTIONS(577), 1, anon_sym_PIPE_GT, - ACTIONS(585), 1, - anon_sym_AMP_AMP, ACTIONS(591), 1, anon_sym_PIPE, - STATE(169), 1, + STATE(167), 1, sym_infix_b_op_2, - STATE(173), 1, + STATE(170), 1, sym_infix_b_op_3, - STATE(179), 1, + STATE(173), 1, sym_infix_b_op_4, - STATE(180), 1, + STATE(174), 1, sym_infix_b_op_6, - STATE(181), 1, + STATE(175), 1, sym_infix_b_op_7, - STATE(182), 1, + STATE(176), 1, sym_infix_b_op_8, - STATE(183), 1, + STATE(177), 1, sym_infix_lazy_b_op_9, - STATE(184), 1, + STATE(178), 1, sym_infix_lazy_b_op_10, ACTIONS(569), 2, anon_sym_AT, @@ -38214,42 +38461,44 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(581), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(583), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, ACTIONS(571), 3, anon_sym_PERCENT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(593), 4, + ACTIONS(593), 7, + sym_interpolation_end, anon_sym_COLON, - anon_sym_else, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_DASH_GT, - [39788] = 19, + [40134] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(575), 1, anon_sym_AMP, ACTIONS(577), 1, anon_sym_PIPE_GT, + ACTIONS(585), 1, + anon_sym_AMP_AMP, ACTIONS(591), 1, anon_sym_PIPE, - STATE(169), 1, + STATE(172), 1, sym_infix_b_op_2, - STATE(173), 1, - sym_infix_b_op_3, STATE(179), 1, - sym_infix_b_op_4, + sym_infix_b_op_3, STATE(180), 1, - sym_infix_b_op_6, + sym_infix_b_op_4, STATE(181), 1, - sym_infix_b_op_7, + sym_infix_b_op_6, STATE(182), 1, - sym_infix_b_op_8, + sym_infix_b_op_7, STATE(183), 1, - sym_infix_lazy_b_op_9, + sym_infix_b_op_8, STATE(184), 1, + sym_infix_lazy_b_op_9, + STATE(185), 1, sym_infix_lazy_b_op_10, ACTIONS(569), 2, anon_sym_AT, @@ -38270,36 +38519,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(593), 5, + ACTIONS(593), 4, anon_sym_COLON, anon_sym_else, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_DASH_GT, - [39857] = 18, + [40205] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(575), 1, anon_sym_AMP, ACTIONS(577), 1, anon_sym_PIPE_GT, - ACTIONS(591), 1, - anon_sym_PIPE, - STATE(169), 1, + STATE(192), 1, sym_infix_b_op_2, - STATE(173), 1, + STATE(201), 1, sym_infix_b_op_3, - STATE(179), 1, + STATE(202), 1, sym_infix_b_op_4, - STATE(180), 1, + STATE(203), 1, sym_infix_b_op_6, - STATE(181), 1, + STATE(214), 1, sym_infix_b_op_7, - STATE(182), 1, + STATE(216), 1, sym_infix_b_op_8, - STATE(183), 1, + STATE(217), 1, sym_infix_lazy_b_op_9, - STATE(184), 1, + STATE(219), 1, sym_infix_lazy_b_op_10, ACTIONS(569), 2, anon_sym_AT, @@ -38307,61 +38553,60 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(573), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(579), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(581), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, ACTIONS(571), 3, anon_sym_PERCENT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(593), 7, + ACTIONS(591), 3, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + ACTIONS(593), 9, anon_sym_COLON, - anon_sym_else, + anon_sym_then, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_DASH_GT, - [39924] = 14, + [40268] = 13, ACTIONS(3), 1, sym_comment, - STATE(191), 1, + STATE(167), 1, sym_infix_b_op_2, - STATE(192), 1, + STATE(170), 1, sym_infix_b_op_3, - STATE(201), 1, + STATE(173), 1, sym_infix_b_op_4, - STATE(212), 1, + STATE(174), 1, sym_infix_b_op_6, - STATE(214), 1, + STATE(175), 1, sym_infix_b_op_7, - STATE(215), 1, + STATE(176), 1, sym_infix_b_op_8, - STATE(216), 1, + STATE(177), 1, sym_infix_lazy_b_op_9, - STATE(218), 1, + STATE(178), 1, sym_infix_lazy_b_op_10, ACTIONS(569), 2, anon_sym_AT, anon_sym_PLUS_PLUS, - ACTIONS(573), 2, - anon_sym_PLUS, - anon_sym_DASH, ACTIONS(571), 3, anon_sym_PERCENT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(591), 4, + ACTIONS(591), 6, anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_AMP, anon_sym_LT, anon_sym_GT, ACTIONS(593), 10, + sym_interpolation_end, anon_sym_COLON, - anon_sym_then, anon_sym_PIPE_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, @@ -38370,29 +38615,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_DASH_GT, - [39983] = 16, + [40325] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(575), 1, - anon_sym_AMP, - ACTIONS(577), 1, - anon_sym_PIPE_GT, - STATE(169), 1, - sym_infix_b_op_2, - STATE(173), 1, - sym_infix_b_op_3, - STATE(179), 1, - sym_infix_b_op_4, - STATE(180), 1, - sym_infix_b_op_6, - STATE(181), 1, - sym_infix_b_op_7, - STATE(182), 1, - sym_infix_b_op_8, - STATE(183), 1, - sym_infix_lazy_b_op_9, - STATE(184), 1, + STATE(166), 1, sym_infix_lazy_b_op_10, + STATE(193), 1, + sym_infix_lazy_b_op_9, + STATE(194), 1, + sym_infix_b_op_8, + STATE(195), 1, + sym_infix_b_op_7, + STATE(196), 1, + sym_infix_b_op_6, + STATE(197), 1, + sym_infix_b_op_4, + STATE(198), 1, + sym_infix_b_op_3, + STATE(199), 1, + sym_infix_b_op_2, ACTIONS(569), 2, anon_sym_AT, anon_sym_PLUS_PLUS, @@ -38403,13 +38644,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(591), 3, + ACTIONS(599), 4, anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, - ACTIONS(593), 9, + ACTIONS(601), 10, anon_sym_COLON, - anon_sym_else, + anon_sym_in, + anon_sym_PIPE_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, @@ -38417,28 +38660,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_DASH_GT, - [40046] = 16, + [40384] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(575), 1, anon_sym_AMP, ACTIONS(577), 1, anon_sym_PIPE_GT, - STATE(191), 1, + ACTIONS(591), 1, + anon_sym_PIPE, + STATE(172), 1, sym_infix_b_op_2, - STATE(192), 1, + STATE(179), 1, sym_infix_b_op_3, - STATE(201), 1, + STATE(180), 1, sym_infix_b_op_4, - STATE(212), 1, + STATE(181), 1, sym_infix_b_op_6, - STATE(214), 1, + STATE(182), 1, sym_infix_b_op_7, - STATE(215), 1, + STATE(183), 1, sym_infix_b_op_8, - STATE(216), 1, + STATE(184), 1, sym_infix_lazy_b_op_9, - STATE(218), 1, + STATE(185), 1, sym_infix_lazy_b_op_10, ACTIONS(569), 2, anon_sym_AT, @@ -38446,61 +38691,64 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(573), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(579), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(581), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, ACTIONS(571), 3, anon_sym_PERCENT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(591), 3, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - ACTIONS(593), 9, + ACTIONS(593), 7, anon_sym_COLON, - anon_sym_then, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + anon_sym_else, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_DASH_GT, - [40109] = 13, + [40451] = 16, ACTIONS(3), 1, sym_comment, - STATE(169), 1, + ACTIONS(575), 1, + anon_sym_AMP, + ACTIONS(577), 1, + anon_sym_PIPE_GT, + STATE(172), 1, sym_infix_b_op_2, - STATE(173), 1, - sym_infix_b_op_3, STATE(179), 1, - sym_infix_b_op_4, + sym_infix_b_op_3, STATE(180), 1, - sym_infix_b_op_6, + sym_infix_b_op_4, STATE(181), 1, - sym_infix_b_op_7, + sym_infix_b_op_6, STATE(182), 1, - sym_infix_b_op_8, + sym_infix_b_op_7, STATE(183), 1, - sym_infix_lazy_b_op_9, + sym_infix_b_op_8, STATE(184), 1, + sym_infix_lazy_b_op_9, + STATE(185), 1, sym_infix_lazy_b_op_10, ACTIONS(569), 2, anon_sym_AT, anon_sym_PLUS_PLUS, + ACTIONS(573), 2, + anon_sym_PLUS, + anon_sym_DASH, ACTIONS(571), 3, anon_sym_PERCENT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(591), 6, + ACTIONS(591), 3, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, anon_sym_LT, anon_sym_GT, - ACTIONS(593), 10, + ACTIONS(593), 9, anon_sym_COLON, anon_sym_else, - anon_sym_PIPE_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, @@ -38508,28 +38756,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_DASH_GT, - [40166] = 12, + [40514] = 11, ACTIONS(3), 1, sym_comment, - STATE(169), 1, - sym_infix_b_op_2, - STATE(173), 1, - sym_infix_b_op_3, - STATE(179), 1, - sym_infix_b_op_4, - STATE(180), 1, - sym_infix_b_op_6, - STATE(181), 1, - sym_infix_b_op_7, - STATE(182), 1, - sym_infix_b_op_8, - STATE(183), 1, - sym_infix_lazy_b_op_9, - STATE(184), 1, + STATE(166), 1, sym_infix_lazy_b_op_10, - ACTIONS(569), 2, - anon_sym_AT, - anon_sym_PLUS_PLUS, + STATE(193), 1, + sym_infix_lazy_b_op_9, + STATE(194), 1, + sym_infix_b_op_8, + STATE(195), 1, + sym_infix_b_op_7, + STATE(196), 1, + sym_infix_b_op_6, + STATE(197), 1, + sym_infix_b_op_4, + STATE(198), 1, + sym_infix_b_op_3, + STATE(199), 1, + sym_infix_b_op_2, ACTIONS(591), 6, anon_sym_PIPE, anon_sym_PLUS, @@ -38537,10 +38782,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_LT, anon_sym_GT, - ACTIONS(593), 13, + ACTIONS(593), 15, anon_sym_COLON, - anon_sym_else, + anon_sym_in, + anon_sym_AT, anon_sym_PERCENT, + anon_sym_PLUS_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PIPE_GT, @@ -38551,30 +38798,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_DASH_GT, - [40221] = 18, + [40567] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(575), 1, - anon_sym_AMP, - ACTIONS(577), 1, - anon_sym_PIPE_GT, - ACTIONS(591), 1, - anon_sym_PIPE, - STATE(191), 1, + STATE(172), 1, sym_infix_b_op_2, - STATE(192), 1, + STATE(179), 1, sym_infix_b_op_3, - STATE(201), 1, + STATE(180), 1, sym_infix_b_op_4, - STATE(212), 1, + STATE(181), 1, sym_infix_b_op_6, - STATE(214), 1, + STATE(182), 1, sym_infix_b_op_7, - STATE(215), 1, + STATE(183), 1, sym_infix_b_op_8, - STATE(216), 1, + STATE(184), 1, sym_infix_lazy_b_op_9, - STATE(218), 1, + STATE(185), 1, sym_infix_lazy_b_op_10, ACTIONS(569), 2, anon_sym_AT, @@ -38582,43 +38823,48 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(573), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(579), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(581), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, ACTIONS(571), 3, anon_sym_PERCENT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(593), 7, + ACTIONS(591), 4, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + ACTIONS(593), 10, anon_sym_COLON, - anon_sym_then, + anon_sym_else, + anon_sym_PIPE_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_DASH_GT, - [40288] = 11, + [40626] = 12, ACTIONS(3), 1, sym_comment, - STATE(169), 1, + STATE(172), 1, sym_infix_b_op_2, - STATE(173), 1, - sym_infix_b_op_3, STATE(179), 1, - sym_infix_b_op_4, + sym_infix_b_op_3, STATE(180), 1, - sym_infix_b_op_6, + sym_infix_b_op_4, STATE(181), 1, - sym_infix_b_op_7, + sym_infix_b_op_6, STATE(182), 1, - sym_infix_b_op_8, + sym_infix_b_op_7, STATE(183), 1, - sym_infix_lazy_b_op_9, + sym_infix_b_op_8, STATE(184), 1, + sym_infix_lazy_b_op_9, + STATE(185), 1, sym_infix_lazy_b_op_10, + ACTIONS(569), 2, + anon_sym_AT, + anon_sym_PLUS_PLUS, ACTIONS(591), 6, anon_sym_PIPE, anon_sym_PLUS, @@ -38626,12 +38872,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_LT, anon_sym_GT, - ACTIONS(593), 15, + ACTIONS(593), 13, anon_sym_COLON, anon_sym_else, - anon_sym_AT, anon_sym_PERCENT, - anon_sym_PLUS_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PIPE_GT, @@ -38642,7 +38886,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_DASH_GT, - [40341] = 25, + [40681] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(603), 1, @@ -38667,74 +38911,71 @@ static const uint16_t ts_small_parse_table[] = { sym__str_start, ACTIONS(629), 1, sym_quoted_enum_tag_start, - STATE(564), 1, + STATE(509), 1, sym_enum_tag, - STATE(602), 1, + STATE(609), 1, aux_sym_or_pattern_unparens_repeat1, - STATE(614), 1, + STATE(613), 1, sym_quoted_enum_tag, - STATE(698), 1, + STATE(697), 1, sym_enum_pattern_parens, - STATE(726), 1, + STATE(718), 1, sym_or_pattern_parens, - STATE(734), 1, - sym_or_pattern_unparens, - STATE(753), 1, + STATE(746), 1, sym_enum_variant_pattern, - STATE(978), 1, + STATE(747), 1, + sym_or_pattern_unparens, + STATE(962), 1, sym_pattern, - STATE(1055), 1, + STATE(1039), 1, sym_pattern_or_branch, ACTIONS(623), 2, anon_sym_true, anon_sym_false, - STATE(677), 2, + STATE(690), 2, sym_bool, sym_static_string, - STATE(738), 2, + STATE(734), 2, sym_enum_pattern, sym_or_pattern, - STATE(712), 3, + STATE(719), 3, sym_constant_pattern, sym_record_pattern, sym_array_pattern, - [40422] = 14, + [40762] = 11, ACTIONS(3), 1, sym_comment, - STATE(169), 1, + STATE(172), 1, sym_infix_b_op_2, - STATE(173), 1, - sym_infix_b_op_3, STATE(179), 1, - sym_infix_b_op_4, + sym_infix_b_op_3, STATE(180), 1, - sym_infix_b_op_6, + sym_infix_b_op_4, STATE(181), 1, - sym_infix_b_op_7, + sym_infix_b_op_6, STATE(182), 1, - sym_infix_b_op_8, + sym_infix_b_op_7, STATE(183), 1, - sym_infix_lazy_b_op_9, + sym_infix_b_op_8, STATE(184), 1, + sym_infix_lazy_b_op_9, + STATE(185), 1, sym_infix_lazy_b_op_10, - ACTIONS(569), 2, - anon_sym_AT, - anon_sym_PLUS_PLUS, - ACTIONS(573), 2, + ACTIONS(591), 6, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(571), 3, - anon_sym_PERCENT, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(599), 4, - anon_sym_PIPE, anon_sym_AMP, anon_sym_LT, anon_sym_GT, - ACTIONS(601), 10, + ACTIONS(593), 15, anon_sym_COLON, anon_sym_else, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_PLUS_PLUS, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_PIPE_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, @@ -38743,40 +38984,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_DASH_GT, - [40481] = 11, + [40815] = 14, ACTIONS(3), 1, sym_comment, - STATE(169), 1, + STATE(172), 1, sym_infix_b_op_2, - STATE(173), 1, - sym_infix_b_op_3, STATE(179), 1, - sym_infix_b_op_4, + sym_infix_b_op_3, STATE(180), 1, - sym_infix_b_op_6, + sym_infix_b_op_4, STATE(181), 1, - sym_infix_b_op_7, + sym_infix_b_op_6, STATE(182), 1, - sym_infix_b_op_8, + sym_infix_b_op_7, STATE(183), 1, - sym_infix_lazy_b_op_9, + sym_infix_b_op_8, STATE(184), 1, + sym_infix_lazy_b_op_9, + STATE(185), 1, sym_infix_lazy_b_op_10, - ACTIONS(599), 6, - anon_sym_PIPE, + ACTIONS(569), 2, + anon_sym_AT, + anon_sym_PLUS_PLUS, + ACTIONS(573), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(571), 3, + anon_sym_PERCENT, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(599), 4, + anon_sym_PIPE, anon_sym_AMP, anon_sym_LT, anon_sym_GT, - ACTIONS(601), 15, + ACTIONS(601), 10, anon_sym_COLON, anon_sym_else, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_STAR, - anon_sym_SLASH, anon_sym_PIPE_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, @@ -38785,30 +39029,214 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_DASH_GT, - [40534] = 19, + [40874] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(575), 1, - anon_sym_AMP, - ACTIONS(577), 1, - anon_sym_PIPE_GT, - ACTIONS(591), 1, - anon_sym_PIPE, - STATE(191), 1, - sym_infix_b_op_2, - STATE(192), 1, - sym_infix_b_op_3, - STATE(201), 1, + STATE(166), 1, + sym_infix_lazy_b_op_10, + STATE(193), 1, + sym_infix_lazy_b_op_9, + STATE(194), 1, + sym_infix_b_op_8, + STATE(195), 1, + sym_infix_b_op_7, + STATE(196), 1, + sym_infix_b_op_6, + STATE(197), 1, sym_infix_b_op_4, - STATE(212), 1, + STATE(198), 1, + sym_infix_b_op_3, + STATE(199), 1, + sym_infix_b_op_2, + ACTIONS(569), 2, + anon_sym_AT, + anon_sym_PLUS_PLUS, + ACTIONS(591), 6, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + ACTIONS(593), 13, + anon_sym_COLON, + anon_sym_in, + anon_sym_PERCENT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PIPE_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_DASH_GT, + [40929] = 11, + ACTIONS(3), 1, + sym_comment, + STATE(172), 1, + sym_infix_b_op_2, + STATE(179), 1, + sym_infix_b_op_3, + STATE(180), 1, + sym_infix_b_op_4, + STATE(181), 1, + sym_infix_b_op_6, + STATE(182), 1, + sym_infix_b_op_7, + STATE(183), 1, + sym_infix_b_op_8, + STATE(184), 1, + sym_infix_lazy_b_op_9, + STATE(185), 1, + sym_infix_lazy_b_op_10, + ACTIONS(599), 6, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + ACTIONS(601), 15, + anon_sym_COLON, + anon_sym_else, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_PLUS_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PIPE_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_DASH_GT, + [40982] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(575), 1, + anon_sym_AMP, + ACTIONS(577), 1, + anon_sym_PIPE_GT, + ACTIONS(591), 1, + anon_sym_PIPE, + STATE(192), 1, + sym_infix_b_op_2, + STATE(201), 1, + sym_infix_b_op_3, + STATE(202), 1, + sym_infix_b_op_4, + STATE(203), 1, sym_infix_b_op_6, STATE(214), 1, sym_infix_b_op_7, - STATE(215), 1, + STATE(216), 1, + sym_infix_b_op_8, + STATE(217), 1, + sym_infix_lazy_b_op_9, + STATE(219), 1, + sym_infix_lazy_b_op_10, + ACTIONS(569), 2, + anon_sym_AT, + anon_sym_PLUS_PLUS, + ACTIONS(573), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(579), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(581), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(571), 3, + anon_sym_PERCENT, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(593), 7, + anon_sym_COLON, + anon_sym_then, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_DASH_GT, + [41049] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(575), 1, + anon_sym_AMP, + ACTIONS(577), 1, + anon_sym_PIPE_GT, + ACTIONS(591), 1, + anon_sym_PIPE, + STATE(167), 1, + sym_infix_b_op_2, + STATE(170), 1, + sym_infix_b_op_3, + STATE(173), 1, + sym_infix_b_op_4, + STATE(174), 1, + sym_infix_b_op_6, + STATE(175), 1, + sym_infix_b_op_7, + STATE(176), 1, sym_infix_b_op_8, + STATE(177), 1, + sym_infix_lazy_b_op_9, + STATE(178), 1, + sym_infix_lazy_b_op_10, + ACTIONS(569), 2, + anon_sym_AT, + anon_sym_PLUS_PLUS, + ACTIONS(573), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(579), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(581), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(583), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(571), 3, + anon_sym_PERCENT, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(593), 5, + sym_interpolation_end, + anon_sym_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_DASH_GT, + [41118] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(575), 1, + anon_sym_AMP, + ACTIONS(577), 1, + anon_sym_PIPE_GT, + ACTIONS(591), 1, + anon_sym_PIPE, + STATE(192), 1, + sym_infix_b_op_2, + STATE(201), 1, + sym_infix_b_op_3, + STATE(202), 1, + sym_infix_b_op_4, + STATE(203), 1, + sym_infix_b_op_6, + STATE(214), 1, + sym_infix_b_op_7, STATE(216), 1, + sym_infix_b_op_8, + STATE(217), 1, sym_infix_lazy_b_op_9, - STATE(218), 1, + STATE(219), 1, sym_infix_lazy_b_op_10, ACTIONS(569), 2, anon_sym_AT, @@ -38835,7 +39263,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_DASH_GT, - [40603] = 20, + [41187] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(575), 1, @@ -38846,21 +39274,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, ACTIONS(591), 1, anon_sym_PIPE, - STATE(191), 1, + STATE(167), 1, sym_infix_b_op_2, - STATE(192), 1, + STATE(170), 1, sym_infix_b_op_3, - STATE(201), 1, + STATE(173), 1, sym_infix_b_op_4, - STATE(212), 1, + STATE(174), 1, sym_infix_b_op_6, - STATE(214), 1, + STATE(175), 1, sym_infix_b_op_7, - STATE(215), 1, + STATE(176), 1, sym_infix_b_op_8, - STATE(216), 1, + STATE(177), 1, sym_infix_lazy_b_op_9, - STATE(218), 1, + STATE(178), 1, sym_infix_lazy_b_op_10, ACTIONS(569), 2, anon_sym_AT, @@ -38882,11 +39310,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, ACTIONS(593), 4, + sym_interpolation_end, anon_sym_COLON, - anon_sym_then, anon_sym_PIPE_PIPE, anon_sym_DASH_GT, - [40674] = 25, + [41258] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(603), 1, @@ -38911,38 +39339,38 @@ static const uint16_t ts_small_parse_table[] = { sym__str_start, ACTIONS(629), 1, sym_quoted_enum_tag_start, - STATE(564), 1, + STATE(509), 1, sym_enum_tag, - STATE(602), 1, + STATE(609), 1, aux_sym_or_pattern_unparens_repeat1, - STATE(614), 1, + STATE(613), 1, sym_quoted_enum_tag, - STATE(698), 1, + STATE(697), 1, sym_enum_pattern_parens, - STATE(726), 1, + STATE(718), 1, sym_or_pattern_parens, - STATE(734), 1, - sym_or_pattern_unparens, - STATE(753), 1, + STATE(746), 1, sym_enum_variant_pattern, - STATE(824), 1, + STATE(747), 1, + sym_or_pattern_unparens, + STATE(822), 1, sym_pattern, - STATE(1055), 1, + STATE(1039), 1, sym_pattern_or_branch, ACTIONS(623), 2, anon_sym_true, anon_sym_false, - STATE(677), 2, + STATE(690), 2, sym_bool, sym_static_string, - STATE(738), 2, + STATE(734), 2, sym_enum_pattern, sym_or_pattern, - STATE(712), 3, + STATE(719), 3, sym_constant_pattern, sym_record_pattern, sym_array_pattern, - [40755] = 22, + [41339] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(575), 1, @@ -38951,27 +39379,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_GT, ACTIONS(585), 1, anon_sym_AMP_AMP, - ACTIONS(587), 1, - anon_sym_PIPE_PIPE, ACTIONS(591), 1, anon_sym_PIPE, - ACTIONS(701), 1, - anon_sym_DASH_GT, - STATE(191), 1, - sym_infix_b_op_2, STATE(192), 1, - sym_infix_b_op_3, + sym_infix_b_op_2, STATE(201), 1, + sym_infix_b_op_3, + STATE(202), 1, sym_infix_b_op_4, - STATE(212), 1, + STATE(203), 1, sym_infix_b_op_6, STATE(214), 1, sym_infix_b_op_7, - STATE(215), 1, - sym_infix_b_op_8, STATE(216), 1, + sym_infix_b_op_8, + STATE(217), 1, sym_infix_lazy_b_op_9, - STATE(218), 1, + STATE(219), 1, sym_infix_lazy_b_op_10, ACTIONS(569), 2, anon_sym_AT, @@ -38988,14 +39412,116 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(583), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(593), 2, + ACTIONS(571), 3, + anon_sym_PERCENT, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(593), 4, anon_sym_COLON, anon_sym_then, + anon_sym_PIPE_PIPE, + anon_sym_DASH_GT, + [41410] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(603), 1, + sym_signed_num_literal, + ACTIONS(605), 1, + sym_ident, + ACTIONS(607), 1, + sym_raw_enum_tag, + ACTIONS(609), 1, + anon_sym_LBRACE, + ACTIONS(611), 1, + anon_sym_LPAREN, + ACTIONS(613), 1, + anon_sym_null, + ACTIONS(615), 1, + anon_sym_LBRACK, + ACTIONS(621), 1, + anon_sym__, + ACTIONS(625), 1, + sym_multstr_start, + ACTIONS(627), 1, + sym__str_start, + ACTIONS(629), 1, + sym_quoted_enum_tag_start, + STATE(509), 1, + sym_enum_tag, + STATE(609), 1, + aux_sym_or_pattern_unparens_repeat1, + STATE(613), 1, + sym_quoted_enum_tag, + STATE(697), 1, + sym_enum_pattern_parens, + STATE(718), 1, + sym_or_pattern_parens, + STATE(746), 1, + sym_enum_variant_pattern, + STATE(747), 1, + sym_or_pattern_unparens, + STATE(956), 1, + sym_pattern, + STATE(1039), 1, + sym_pattern_or_branch, + ACTIONS(623), 2, + anon_sym_true, + anon_sym_false, + STATE(690), 2, + sym_bool, + sym_static_string, + STATE(734), 2, + sym_enum_pattern, + sym_or_pattern, + STATE(719), 3, + sym_constant_pattern, + sym_record_pattern, + sym_array_pattern, + [41491] = 13, + ACTIONS(3), 1, + sym_comment, + STATE(166), 1, + sym_infix_lazy_b_op_10, + STATE(193), 1, + sym_infix_lazy_b_op_9, + STATE(194), 1, + sym_infix_b_op_8, + STATE(195), 1, + sym_infix_b_op_7, + STATE(196), 1, + sym_infix_b_op_6, + STATE(197), 1, + sym_infix_b_op_4, + STATE(198), 1, + sym_infix_b_op_3, + STATE(199), 1, + sym_infix_b_op_2, + ACTIONS(569), 2, + anon_sym_AT, + anon_sym_PLUS_PLUS, ACTIONS(571), 3, anon_sym_PERCENT, anon_sym_STAR, anon_sym_SLASH, - [40830] = 20, + ACTIONS(591), 6, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + ACTIONS(593), 10, + anon_sym_COLON, + anon_sym_in, + anon_sym_PIPE_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_DASH_GT, + [41548] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(575), 1, @@ -39006,6 +39532,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, ACTIONS(591), 1, anon_sym_PIPE, + STATE(166), 1, + sym_infix_lazy_b_op_10, STATE(193), 1, sym_infix_lazy_b_op_9, STATE(194), 1, @@ -39020,8 +39548,6 @@ static const uint16_t ts_small_parse_table[] = { sym_infix_b_op_3, STATE(199), 1, sym_infix_b_op_2, - STATE(220), 1, - sym_infix_lazy_b_op_10, ACTIONS(569), 2, anon_sym_AT, anon_sym_PLUS_PLUS, @@ -39046,30 +39572,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_PIPE_PIPE, anon_sym_DASH_GT, - [40901] = 19, + [41619] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(575), 1, anon_sym_AMP, ACTIONS(577), 1, anon_sym_PIPE_GT, - ACTIONS(591), 1, + ACTIONS(585), 1, + anon_sym_AMP_AMP, + ACTIONS(587), 1, + anon_sym_PIPE_PIPE, + ACTIONS(595), 1, anon_sym_PIPE, - STATE(193), 1, - sym_infix_lazy_b_op_9, - STATE(194), 1, - sym_infix_b_op_8, - STATE(195), 1, - sym_infix_b_op_7, - STATE(196), 1, - sym_infix_b_op_6, - STATE(197), 1, - sym_infix_b_op_4, - STATE(198), 1, - sym_infix_b_op_3, - STATE(199), 1, + ACTIONS(695), 1, + anon_sym_DASH_GT, + STATE(167), 1, sym_infix_b_op_2, - STATE(220), 1, + STATE(170), 1, + sym_infix_b_op_3, + STATE(173), 1, + sym_infix_b_op_4, + STATE(174), 1, + sym_infix_b_op_6, + STATE(175), 1, + sym_infix_b_op_7, + STATE(176), 1, + sym_infix_b_op_8, + STATE(177), 1, + sym_infix_lazy_b_op_9, + STATE(178), 1, sym_infix_lazy_b_op_10, ACTIONS(569), 2, anon_sym_AT, @@ -39086,40 +39618,43 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(583), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(597), 2, + sym_interpolation_end, + anon_sym_COLON, ACTIONS(571), 3, anon_sym_PERCENT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(593), 5, - anon_sym_COLON, - anon_sym_in, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_DASH_GT, - [40970] = 18, + [41694] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(575), 1, anon_sym_AMP, ACTIONS(577), 1, anon_sym_PIPE_GT, + ACTIONS(585), 1, + anon_sym_AMP_AMP, + ACTIONS(587), 1, + anon_sym_PIPE_PIPE, ACTIONS(591), 1, anon_sym_PIPE, - STATE(193), 1, - sym_infix_lazy_b_op_9, - STATE(194), 1, - sym_infix_b_op_8, - STATE(195), 1, - sym_infix_b_op_7, - STATE(196), 1, - sym_infix_b_op_6, - STATE(197), 1, - sym_infix_b_op_4, - STATE(198), 1, - sym_infix_b_op_3, - STATE(199), 1, + ACTIONS(695), 1, + anon_sym_DASH_GT, + STATE(167), 1, sym_infix_b_op_2, - STATE(220), 1, + STATE(170), 1, + sym_infix_b_op_3, + STATE(173), 1, + sym_infix_b_op_4, + STATE(174), 1, + sym_infix_b_op_6, + STATE(175), 1, + sym_infix_b_op_7, + STATE(176), 1, + sym_infix_b_op_8, + STATE(177), 1, + sym_infix_lazy_b_op_9, + STATE(178), 1, sym_infix_lazy_b_op_10, ACTIONS(569), 2, anon_sym_AT, @@ -39133,25 +39668,27 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(581), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(583), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(593), 2, + sym_interpolation_end, + anon_sym_COLON, ACTIONS(571), 3, anon_sym_PERCENT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(593), 7, - anon_sym_COLON, - anon_sym_in, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_DASH_GT, - [41037] = 16, + [41769] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(575), 1, anon_sym_AMP, ACTIONS(577), 1, anon_sym_PIPE_GT, + ACTIONS(591), 1, + anon_sym_PIPE, + STATE(166), 1, + sym_infix_lazy_b_op_10, STATE(193), 1, sym_infix_lazy_b_op_9, STATE(194), 1, @@ -39166,35 +39703,42 @@ static const uint16_t ts_small_parse_table[] = { sym_infix_b_op_3, STATE(199), 1, sym_infix_b_op_2, - STATE(220), 1, - sym_infix_lazy_b_op_10, ACTIONS(569), 2, anon_sym_AT, anon_sym_PLUS_PLUS, ACTIONS(573), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(571), 3, - anon_sym_PERCENT, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(591), 3, - anon_sym_PIPE, + ACTIONS(579), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(593), 9, - anon_sym_COLON, - anon_sym_in, + ACTIONS(581), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(583), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(571), 3, + anon_sym_PERCENT, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(593), 5, + anon_sym_COLON, + anon_sym_in, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_DASH_GT, - [41100] = 14, + [41838] = 18, ACTIONS(3), 1, sym_comment, + ACTIONS(575), 1, + anon_sym_AMP, + ACTIONS(577), 1, + anon_sym_PIPE_GT, + ACTIONS(591), 1, + anon_sym_PIPE, + STATE(166), 1, + sym_infix_lazy_b_op_10, STATE(193), 1, sym_infix_lazy_b_op_9, STATE(194), 1, @@ -39209,37 +39753,39 @@ static const uint16_t ts_small_parse_table[] = { sym_infix_b_op_3, STATE(199), 1, sym_infix_b_op_2, - STATE(220), 1, - sym_infix_lazy_b_op_10, ACTIONS(569), 2, anon_sym_AT, anon_sym_PLUS_PLUS, ACTIONS(573), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(579), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(581), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, ACTIONS(571), 3, anon_sym_PERCENT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(591), 4, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - ACTIONS(593), 10, + ACTIONS(593), 7, anon_sym_COLON, anon_sym_in, - anon_sym_PIPE_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_DASH_GT, - [41159] = 13, + [41905] = 16, ACTIONS(3), 1, sym_comment, + ACTIONS(575), 1, + anon_sym_AMP, + ACTIONS(577), 1, + anon_sym_PIPE_GT, + STATE(166), 1, + sym_infix_lazy_b_op_10, STATE(193), 1, sym_infix_lazy_b_op_9, STATE(194), 1, @@ -39254,26 +39800,23 @@ static const uint16_t ts_small_parse_table[] = { sym_infix_b_op_3, STATE(199), 1, sym_infix_b_op_2, - STATE(220), 1, - sym_infix_lazy_b_op_10, ACTIONS(569), 2, anon_sym_AT, anon_sym_PLUS_PLUS, + ACTIONS(573), 2, + anon_sym_PLUS, + anon_sym_DASH, ACTIONS(571), 3, anon_sym_PERCENT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(591), 6, + ACTIONS(591), 3, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, anon_sym_LT, anon_sym_GT, - ACTIONS(593), 10, + ACTIONS(593), 9, anon_sym_COLON, anon_sym_in, - anon_sym_PIPE_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, @@ -39281,9 +39824,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_DASH_GT, - [41216] = 12, + [41968] = 14, ACTIONS(3), 1, sym_comment, + STATE(166), 1, + sym_infix_lazy_b_op_10, STATE(193), 1, sym_infix_lazy_b_op_9, STATE(194), 1, @@ -39298,24 +39843,24 @@ static const uint16_t ts_small_parse_table[] = { sym_infix_b_op_3, STATE(199), 1, sym_infix_b_op_2, - STATE(220), 1, - sym_infix_lazy_b_op_10, ACTIONS(569), 2, anon_sym_AT, anon_sym_PLUS_PLUS, - ACTIONS(591), 6, - anon_sym_PIPE, + ACTIONS(573), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(571), 3, + anon_sym_PERCENT, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(591), 4, + anon_sym_PIPE, anon_sym_AMP, anon_sym_LT, anon_sym_GT, - ACTIONS(593), 13, + ACTIONS(593), 10, anon_sym_COLON, anon_sym_in, - anon_sym_PERCENT, - anon_sym_STAR, - anon_sym_SLASH, anon_sym_PIPE_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, @@ -39324,610 +39869,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_DASH_GT, - [41271] = 19, + [42027] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(603), 1, sym_signed_num_literal, + ACTIONS(605), 1, + sym_ident, + ACTIONS(607), 1, + sym_raw_enum_tag, ACTIONS(609), 1, anon_sym_LBRACE, + ACTIONS(611), 1, + anon_sym_LPAREN, ACTIONS(613), 1, anon_sym_null, ACTIONS(615), 1, anon_sym_LBRACK, - ACTIONS(625), 1, - sym_multstr_start, - ACTIONS(627), 1, - sym__str_start, - ACTIONS(761), 1, - sym_ident, - ACTIONS(763), 1, - sym_raw_enum_tag, - ACTIONS(767), 1, - anon_sym_LPAREN, - ACTIONS(769), 1, - anon_sym__, - ACTIONS(771), 1, - anon_sym_or, - ACTIONS(773), 1, - sym_quoted_enum_tag_start, - STATE(664), 1, - sym_quoted_enum_tag, - STATE(675), 1, - sym_enum_tag, - ACTIONS(623), 2, - anon_sym_true, - anon_sym_false, - STATE(677), 2, - sym_bool, - sym_static_string, - STATE(719), 5, - sym_constant_pattern, - sym_record_pattern, - sym_array_pattern, - sym_enum_pattern_parens, - sym_or_pattern_parens, - ACTIONS(765), 6, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RBRACK, - [41340] = 11, - ACTIONS(3), 1, - sym_comment, - STATE(193), 1, - sym_infix_lazy_b_op_9, - STATE(194), 1, - sym_infix_b_op_8, - STATE(195), 1, - sym_infix_b_op_7, - STATE(196), 1, - sym_infix_b_op_6, - STATE(197), 1, - sym_infix_b_op_4, - STATE(198), 1, - sym_infix_b_op_3, - STATE(199), 1, - sym_infix_b_op_2, - STATE(220), 1, - sym_infix_lazy_b_op_10, - ACTIONS(591), 6, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - ACTIONS(593), 15, - anon_sym_COLON, - anon_sym_in, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PIPE_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_DASH_GT, - [41393] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(603), 1, - sym_signed_num_literal, - ACTIONS(605), 1, - sym_ident, - ACTIONS(607), 1, - sym_raw_enum_tag, - ACTIONS(609), 1, - anon_sym_LBRACE, - ACTIONS(611), 1, - anon_sym_LPAREN, - ACTIONS(613), 1, - anon_sym_null, - ACTIONS(615), 1, - anon_sym_LBRACK, - ACTIONS(621), 1, - anon_sym__, + ACTIONS(621), 1, + anon_sym__, ACTIONS(625), 1, sym_multstr_start, ACTIONS(627), 1, sym__str_start, ACTIONS(629), 1, sym_quoted_enum_tag_start, - STATE(564), 1, + STATE(509), 1, sym_enum_tag, - STATE(602), 1, + STATE(609), 1, aux_sym_or_pattern_unparens_repeat1, - STATE(614), 1, + STATE(613), 1, sym_quoted_enum_tag, - STATE(698), 1, + STATE(697), 1, sym_enum_pattern_parens, - STATE(726), 1, + STATE(718), 1, sym_or_pattern_parens, - STATE(734), 1, - sym_or_pattern_unparens, - STATE(753), 1, + STATE(746), 1, sym_enum_variant_pattern, - STATE(971), 1, - sym_pattern, - STATE(1055), 1, - sym_pattern_or_branch, - ACTIONS(623), 2, - anon_sym_true, - anon_sym_false, - STATE(677), 2, - sym_bool, - sym_static_string, - STATE(738), 2, - sym_enum_pattern, - sym_or_pattern, - STATE(712), 3, - sym_constant_pattern, - sym_record_pattern, - sym_array_pattern, - [41474] = 11, - ACTIONS(3), 1, - sym_comment, - STATE(193), 1, - sym_infix_lazy_b_op_9, - STATE(194), 1, - sym_infix_b_op_8, - STATE(195), 1, - sym_infix_b_op_7, - STATE(196), 1, - sym_infix_b_op_6, - STATE(197), 1, - sym_infix_b_op_4, - STATE(198), 1, - sym_infix_b_op_3, - STATE(199), 1, - sym_infix_b_op_2, - STATE(220), 1, - sym_infix_lazy_b_op_10, - ACTIONS(599), 6, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - ACTIONS(601), 15, - anon_sym_COLON, - anon_sym_in, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PIPE_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_DASH_GT, - [41527] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(575), 1, - anon_sym_AMP, - ACTIONS(577), 1, - anon_sym_PIPE_GT, - ACTIONS(585), 1, - anon_sym_AMP_AMP, - ACTIONS(587), 1, - anon_sym_PIPE_PIPE, - ACTIONS(595), 1, - anon_sym_PIPE, - ACTIONS(679), 1, - anon_sym_DASH_GT, - STATE(167), 1, - sym_infix_b_op_2, - STATE(171), 1, - sym_infix_b_op_3, - STATE(172), 1, - sym_infix_b_op_4, - STATE(174), 1, - sym_infix_b_op_6, - STATE(175), 1, - sym_infix_b_op_7, - STATE(176), 1, - sym_infix_b_op_8, - STATE(177), 1, - sym_infix_lazy_b_op_9, - STATE(178), 1, - sym_infix_lazy_b_op_10, - ACTIONS(569), 2, - anon_sym_AT, - anon_sym_PLUS_PLUS, - ACTIONS(573), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(579), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(581), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(583), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(597), 2, - sym_interpolation_end, - anon_sym_COLON, - ACTIONS(571), 3, - anon_sym_PERCENT, - anon_sym_STAR, - anon_sym_SLASH, - [41602] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(575), 1, - anon_sym_AMP, - ACTIONS(577), 1, - anon_sym_PIPE_GT, - ACTIONS(585), 1, - anon_sym_AMP_AMP, - ACTIONS(587), 1, - anon_sym_PIPE_PIPE, - ACTIONS(591), 1, - anon_sym_PIPE, - ACTIONS(679), 1, - anon_sym_DASH_GT, - STATE(167), 1, - sym_infix_b_op_2, - STATE(171), 1, - sym_infix_b_op_3, - STATE(172), 1, - sym_infix_b_op_4, - STATE(174), 1, - sym_infix_b_op_6, - STATE(175), 1, - sym_infix_b_op_7, - STATE(176), 1, - sym_infix_b_op_8, - STATE(177), 1, - sym_infix_lazy_b_op_9, - STATE(178), 1, - sym_infix_lazy_b_op_10, - ACTIONS(569), 2, - anon_sym_AT, - anon_sym_PLUS_PLUS, - ACTIONS(573), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(579), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(581), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(583), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(593), 2, - sym_interpolation_end, - anon_sym_COLON, - ACTIONS(571), 3, - anon_sym_PERCENT, - anon_sym_STAR, - anon_sym_SLASH, - [41677] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(575), 1, - anon_sym_AMP, - ACTIONS(577), 1, - anon_sym_PIPE_GT, - STATE(167), 1, - sym_infix_b_op_2, - STATE(171), 1, - sym_infix_b_op_3, - STATE(172), 1, - sym_infix_b_op_4, - STATE(174), 1, - sym_infix_b_op_6, - STATE(175), 1, - sym_infix_b_op_7, - STATE(176), 1, - sym_infix_b_op_8, - STATE(177), 1, - sym_infix_lazy_b_op_9, - STATE(178), 1, - sym_infix_lazy_b_op_10, - ACTIONS(569), 2, - anon_sym_AT, - anon_sym_PLUS_PLUS, - ACTIONS(573), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(571), 3, - anon_sym_PERCENT, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(591), 3, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - ACTIONS(593), 9, - sym_interpolation_end, - anon_sym_COLON, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_DASH_GT, - [41740] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(575), 1, - anon_sym_AMP, - ACTIONS(577), 1, - anon_sym_PIPE_GT, - ACTIONS(585), 1, - anon_sym_AMP_AMP, - ACTIONS(587), 1, - anon_sym_PIPE_PIPE, - ACTIONS(595), 1, - anon_sym_PIPE, - ACTIONS(725), 1, - anon_sym_DASH_GT, - STATE(193), 1, - sym_infix_lazy_b_op_9, - STATE(194), 1, - sym_infix_b_op_8, - STATE(195), 1, - sym_infix_b_op_7, - STATE(196), 1, - sym_infix_b_op_6, - STATE(197), 1, - sym_infix_b_op_4, - STATE(198), 1, - sym_infix_b_op_3, - STATE(199), 1, - sym_infix_b_op_2, - STATE(220), 1, - sym_infix_lazy_b_op_10, - ACTIONS(569), 2, - anon_sym_AT, - anon_sym_PLUS_PLUS, - ACTIONS(573), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(579), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(581), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(583), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(597), 2, - anon_sym_COLON, - anon_sym_in, - ACTIONS(571), 3, - anon_sym_PERCENT, - anon_sym_STAR, - anon_sym_SLASH, - [41815] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(603), 1, - sym_signed_num_literal, - ACTIONS(605), 1, - sym_ident, - ACTIONS(607), 1, - sym_raw_enum_tag, - ACTIONS(609), 1, - anon_sym_LBRACE, - ACTIONS(611), 1, - anon_sym_LPAREN, - ACTIONS(613), 1, - anon_sym_null, - ACTIONS(615), 1, - anon_sym_LBRACK, - ACTIONS(621), 1, - anon_sym__, - ACTIONS(625), 1, - sym_multstr_start, - ACTIONS(627), 1, - sym__str_start, - ACTIONS(629), 1, - sym_quoted_enum_tag_start, - STATE(564), 1, - sym_enum_tag, - STATE(602), 1, - aux_sym_or_pattern_unparens_repeat1, - STATE(614), 1, - sym_quoted_enum_tag, - STATE(698), 1, - sym_enum_pattern_parens, - STATE(726), 1, - sym_or_pattern_parens, - STATE(734), 1, + STATE(747), 1, sym_or_pattern_unparens, - STATE(753), 1, - sym_enum_variant_pattern, - STATE(974), 1, + STATE(959), 1, sym_pattern, - STATE(1055), 1, - sym_pattern_or_branch, - ACTIONS(623), 2, - anon_sym_true, - anon_sym_false, - STATE(677), 2, - sym_bool, - sym_static_string, - STATE(738), 2, - sym_enum_pattern, - sym_or_pattern, - STATE(712), 3, - sym_constant_pattern, - sym_record_pattern, - sym_array_pattern, - [41896] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(575), 1, - anon_sym_AMP, - ACTIONS(577), 1, - anon_sym_PIPE_GT, - ACTIONS(585), 1, - anon_sym_AMP_AMP, - ACTIONS(587), 1, - anon_sym_PIPE_PIPE, - ACTIONS(595), 1, - anon_sym_PIPE, - ACTIONS(685), 1, - anon_sym_DASH_GT, - STATE(169), 1, - sym_infix_b_op_2, - STATE(173), 1, - sym_infix_b_op_3, - STATE(179), 1, - sym_infix_b_op_4, - STATE(180), 1, - sym_infix_b_op_6, - STATE(181), 1, - sym_infix_b_op_7, - STATE(182), 1, - sym_infix_b_op_8, - STATE(183), 1, - sym_infix_lazy_b_op_9, - STATE(184), 1, - sym_infix_lazy_b_op_10, - ACTIONS(569), 2, - anon_sym_AT, - anon_sym_PLUS_PLUS, - ACTIONS(573), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(579), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(581), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(583), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(597), 2, - anon_sym_COLON, - anon_sym_else, - ACTIONS(571), 3, - anon_sym_PERCENT, - anon_sym_STAR, - anon_sym_SLASH, - [41971] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(603), 1, - sym_signed_num_literal, - ACTIONS(605), 1, - sym_ident, - ACTIONS(607), 1, - sym_raw_enum_tag, - ACTIONS(609), 1, - anon_sym_LBRACE, - ACTIONS(611), 1, - anon_sym_LPAREN, - ACTIONS(613), 1, - anon_sym_null, - ACTIONS(615), 1, - anon_sym_LBRACK, - ACTIONS(621), 1, - anon_sym__, - ACTIONS(625), 1, - sym_multstr_start, - ACTIONS(627), 1, - sym__str_start, - ACTIONS(629), 1, - sym_quoted_enum_tag_start, - STATE(564), 1, - sym_enum_tag, - STATE(602), 1, - aux_sym_or_pattern_unparens_repeat1, - STATE(614), 1, - sym_quoted_enum_tag, - STATE(698), 1, - sym_enum_pattern_parens, - STATE(726), 1, - sym_or_pattern_parens, - STATE(734), 1, - sym_or_pattern_unparens, - STATE(753), 1, - sym_enum_variant_pattern, - STATE(973), 1, - sym_pattern, - STATE(1055), 1, + STATE(1039), 1, sym_pattern_or_branch, ACTIONS(623), 2, anon_sym_true, anon_sym_false, - STATE(677), 2, + STATE(690), 2, sym_bool, sym_static_string, - STATE(738), 2, + STATE(734), 2, sym_enum_pattern, sym_or_pattern, - STATE(712), 3, + STATE(719), 3, sym_constant_pattern, sym_record_pattern, sym_array_pattern, - [42052] = 11, - ACTIONS(3), 1, - sym_comment, - STATE(191), 1, - sym_infix_b_op_2, - STATE(192), 1, - sym_infix_b_op_3, - STATE(201), 1, - sym_infix_b_op_4, - STATE(212), 1, - sym_infix_b_op_6, - STATE(214), 1, - sym_infix_b_op_7, - STATE(215), 1, - sym_infix_b_op_8, - STATE(216), 1, - sym_infix_lazy_b_op_9, - STATE(218), 1, - sym_infix_lazy_b_op_10, - ACTIONS(599), 6, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - ACTIONS(601), 15, - anon_sym_COLON, - anon_sym_then, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PIPE_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_DASH_GT, - [42105] = 3, + [42108] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(775), 11, @@ -39960,7 +39958,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - [42141] = 3, + [42144] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(779), 11, @@ -39993,7 +39991,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - [42177] = 3, + [42180] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(783), 11, @@ -40026,7 +40024,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - [42213] = 3, + [42216] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(787), 11, @@ -40059,13 +40057,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - [42249] = 23, + [42252] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(603), 1, sym_signed_num_literal, - ACTIONS(607), 1, - sym_raw_enum_tag, ACTIONS(609), 1, anon_sym_LBRACE, ACTIONS(611), 1, @@ -40078,23 +40074,25 @@ static const uint16_t ts_small_parse_table[] = { sym_multstr_start, ACTIONS(627), 1, sym__str_start, - ACTIONS(629), 1, + ACTIONS(645), 1, + sym_raw_enum_tag, + ACTIONS(651), 1, sym_quoted_enum_tag_start, - STATE(564), 1, + STATE(584), 1, sym_enum_tag, - STATE(602), 1, + STATE(609), 1, aux_sym_or_pattern_unparens_repeat1, - STATE(614), 1, + STATE(618), 1, sym_quoted_enum_tag, - STATE(698), 1, + STATE(697), 1, sym_enum_pattern_parens, - STATE(726), 1, + STATE(718), 1, sym_or_pattern_parens, - STATE(734), 1, - sym_or_pattern_unparens, - STATE(753), 1, + STATE(746), 1, sym_enum_variant_pattern, - STATE(1055), 1, + STATE(747), 1, + sym_or_pattern_unparens, + STATE(1039), 1, sym_pattern_or_branch, ACTIONS(623), 2, anon_sym_true, @@ -40102,21 +40100,23 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(791), 2, sym_ident, anon_sym__, - STATE(677), 2, + STATE(690), 2, sym_bool, sym_static_string, - STATE(739), 2, + STATE(753), 2, sym_enum_pattern, sym_or_pattern, - STATE(724), 3, + STATE(713), 3, sym_constant_pattern, sym_record_pattern, sym_array_pattern, - [42325] = 23, + [42328] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(603), 1, sym_signed_num_literal, + ACTIONS(607), 1, + sym_raw_enum_tag, ACTIONS(609), 1, anon_sym_LBRACE, ACTIONS(611), 1, @@ -40129,25 +40129,23 @@ static const uint16_t ts_small_parse_table[] = { sym_multstr_start, ACTIONS(627), 1, sym__str_start, - ACTIONS(689), 1, - sym_raw_enum_tag, - ACTIONS(695), 1, + ACTIONS(629), 1, sym_quoted_enum_tag_start, - STATE(592), 1, + STATE(509), 1, sym_enum_tag, - STATE(602), 1, + STATE(609), 1, aux_sym_or_pattern_unparens_repeat1, - STATE(618), 1, + STATE(613), 1, sym_quoted_enum_tag, - STATE(698), 1, + STATE(697), 1, sym_enum_pattern_parens, - STATE(726), 1, + STATE(718), 1, sym_or_pattern_parens, - STATE(734), 1, - sym_or_pattern_unparens, - STATE(753), 1, + STATE(746), 1, sym_enum_variant_pattern, - STATE(1055), 1, + STATE(747), 1, + sym_or_pattern_unparens, + STATE(1039), 1, sym_pattern_or_branch, ACTIONS(623), 2, anon_sym_true, @@ -40155,17 +40153,17 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(791), 2, sym_ident, anon_sym__, - STATE(677), 2, + STATE(690), 2, sym_bool, sym_static_string, - STATE(739), 2, + STATE(753), 2, sym_enum_pattern, sym_or_pattern, - STATE(724), 3, + STATE(713), 3, sym_constant_pattern, sym_record_pattern, sym_array_pattern, - [42401] = 20, + [42404] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(603), 1, @@ -40186,34 +40184,34 @@ static const uint16_t ts_small_parse_table[] = { sym_quoted_enum_tag_start, ACTIONS(767), 1, anon_sym_LPAREN, - STATE(602), 1, - aux_sym_or_pattern_unparens_repeat1, - STATE(610), 1, + STATE(596), 1, sym_enum_tag, - STATE(614), 1, + STATE(609), 1, + aux_sym_or_pattern_unparens_repeat1, + STATE(613), 1, sym_quoted_enum_tag, - STATE(989), 1, + STATE(1039), 1, + sym_pattern_or_branch, + STATE(1136), 1, sym_enum_variant_pattern, - STATE(990), 1, + STATE(1138), 1, sym_or_pattern_unparens, - STATE(1055), 1, - sym_pattern_or_branch, ACTIONS(623), 2, anon_sym_true, anon_sym_false, ACTIONS(793), 2, sym_ident, anon_sym__, - STATE(677), 2, + STATE(690), 2, sym_bool, sym_static_string, - STATE(698), 5, + STATE(697), 5, sym_constant_pattern, sym_record_pattern, sym_array_pattern, sym_enum_pattern_parens, sym_or_pattern_parens, - [42469] = 20, + [42472] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(603), 1, @@ -40234,40 +40232,38 @@ static const uint16_t ts_small_parse_table[] = { sym_quoted_enum_tag_start, ACTIONS(767), 1, anon_sym_LPAREN, - STATE(602), 1, - aux_sym_or_pattern_unparens_repeat1, - STATE(610), 1, + STATE(596), 1, sym_enum_tag, - STATE(614), 1, + STATE(609), 1, + aux_sym_or_pattern_unparens_repeat1, + STATE(613), 1, sym_quoted_enum_tag, - STATE(990), 1, - sym_or_pattern_unparens, - STATE(1055), 1, + STATE(1039), 1, sym_pattern_or_branch, - STATE(1128), 1, + STATE(1083), 1, sym_enum_variant_pattern, + STATE(1138), 1, + sym_or_pattern_unparens, ACTIONS(623), 2, anon_sym_true, anon_sym_false, ACTIONS(793), 2, sym_ident, anon_sym__, - STATE(677), 2, + STATE(690), 2, sym_bool, sym_static_string, - STATE(698), 5, + STATE(697), 5, sym_constant_pattern, sym_record_pattern, sym_array_pattern, sym_enum_pattern_parens, sym_or_pattern_parens, - [42537] = 20, + [42540] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(603), 1, sym_signed_num_literal, - ACTIONS(607), 1, - sym_raw_enum_tag, ACTIONS(609), 1, anon_sym_LBRACE, ACTIONS(613), 1, @@ -40278,689 +40274,694 @@ static const uint16_t ts_small_parse_table[] = { sym_multstr_start, ACTIONS(627), 1, sym__str_start, - ACTIONS(629), 1, - sym_quoted_enum_tag_start, + ACTIONS(761), 1, + sym_ident, + ACTIONS(763), 1, + sym_raw_enum_tag, + ACTIONS(765), 1, + anon_sym_EQ_GT, ACTIONS(767), 1, anon_sym_LPAREN, - STATE(602), 1, - aux_sym_or_pattern_unparens_repeat1, - STATE(610), 1, - sym_enum_tag, - STATE(614), 1, + ACTIONS(769), 1, + anon_sym__, + ACTIONS(771), 1, + anon_sym_or, + ACTIONS(773), 1, + sym_quoted_enum_tag_start, + ACTIONS(795), 1, + anon_sym_if, + STATE(668), 1, sym_quoted_enum_tag, - STATE(1009), 1, - sym_enum_variant_pattern, - STATE(1055), 1, - sym_pattern_or_branch, - STATE(1133), 1, - sym_or_pattern_unparens, + STATE(686), 1, + sym_enum_tag, + STATE(711), 1, + sym_pattern_fun, ACTIONS(623), 2, anon_sym_true, anon_sym_false, - ACTIONS(793), 2, - sym_ident, - anon_sym__, - STATE(677), 2, + STATE(690), 2, sym_bool, sym_static_string, - STATE(698), 5, + STATE(712), 5, sym_constant_pattern, sym_record_pattern, sym_array_pattern, sym_enum_pattern_parens, sym_or_pattern_parens, - [42605] = 19, + [42610] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(795), 1, + ACTIONS(603), 1, sym_signed_num_literal, - ACTIONS(797), 1, - sym_ident, - ACTIONS(799), 1, + ACTIONS(607), 1, sym_raw_enum_tag, - ACTIONS(801), 1, - anon_sym_EQ_GT, - ACTIONS(803), 1, + ACTIONS(609), 1, anon_sym_LBRACE, - ACTIONS(805), 1, - anon_sym_LPAREN, - ACTIONS(807), 1, + ACTIONS(613), 1, anon_sym_null, - ACTIONS(809), 1, + ACTIONS(615), 1, anon_sym_LBRACK, - ACTIONS(811), 1, - anon_sym__, - ACTIONS(815), 1, + ACTIONS(625), 1, sym_multstr_start, - ACTIONS(817), 1, + ACTIONS(627), 1, sym__str_start, - ACTIONS(819), 1, + ACTIONS(629), 1, sym_quoted_enum_tag_start, - STATE(631), 1, + ACTIONS(767), 1, + anon_sym_LPAREN, + STATE(596), 1, sym_enum_tag, - STATE(650), 1, + STATE(609), 1, + aux_sym_or_pattern_unparens_repeat1, + STATE(613), 1, sym_quoted_enum_tag, - ACTIONS(813), 2, + STATE(1039), 1, + sym_pattern_or_branch, + STATE(1086), 1, + sym_or_pattern_unparens, + STATE(1147), 1, + sym_enum_variant_pattern, + ACTIONS(623), 2, anon_sym_true, anon_sym_false, - STATE(589), 2, - sym_pattern_fun, - aux_sym_fun_expr_repeat1, - STATE(637), 2, + ACTIONS(793), 2, + sym_ident, + anon_sym__, + STATE(690), 2, sym_bool, sym_static_string, - STATE(660), 5, + STATE(697), 5, sym_constant_pattern, sym_record_pattern, sym_array_pattern, sym_enum_pattern_parens, sym_or_pattern_parens, - [42670] = 19, + [42678] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(795), 1, - sym_signed_num_literal, ACTIONS(797), 1, - sym_ident, + sym_signed_num_literal, ACTIONS(799), 1, + sym_ident, + ACTIONS(801), 1, sym_raw_enum_tag, ACTIONS(803), 1, - anon_sym_LBRACE, + anon_sym_EQ_GT, ACTIONS(805), 1, - anon_sym_LPAREN, + anon_sym_LBRACE, ACTIONS(807), 1, - anon_sym_null, + anon_sym_LPAREN, ACTIONS(809), 1, - anon_sym_LBRACK, + anon_sym_null, ACTIONS(811), 1, + anon_sym_LBRACK, + ACTIONS(813), 1, anon_sym__, - ACTIONS(815), 1, - sym_multstr_start, ACTIONS(817), 1, - sym__str_start, + sym_multstr_start, ACTIONS(819), 1, - sym_quoted_enum_tag_start, + sym__str_start, ACTIONS(821), 1, - anon_sym_EQ_GT, - STATE(631), 1, + sym_quoted_enum_tag_start, + STATE(638), 1, sym_enum_tag, - STATE(650), 1, + STATE(656), 1, sym_quoted_enum_tag, - ACTIONS(813), 2, + ACTIONS(815), 2, anon_sym_true, anon_sym_false, - STATE(589), 2, + STATE(591), 2, sym_pattern_fun, aux_sym_fun_expr_repeat1, - STATE(637), 2, + STATE(634), 2, sym_bool, sym_static_string, - STATE(660), 5, + STATE(632), 5, sym_constant_pattern, sym_record_pattern, sym_array_pattern, sym_enum_pattern_parens, sym_or_pattern_parens, - [42735] = 3, + [42743] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(823), 12, - sym_multstr_start, - sym__str_start, - sym_quoted_enum_tag_start, - sym_num_literal, - sym_raw_enum_tag, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PERCENT, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_LBRACK_PIPE, - ACTIONS(825), 13, - sym_ident, - anon_sym_match, - anon_sym_import, - anon_sym_Array, - anon_sym_Dyn, - anon_sym_null, - anon_sym_LBRACK, - anon_sym__, - anon_sym_true, - anon_sym_false, - anon_sym_Number, - anon_sym_Bool, - anon_sym_String, - [42768] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(795), 1, - sym_signed_num_literal, ACTIONS(797), 1, - sym_ident, + sym_signed_num_literal, ACTIONS(799), 1, + sym_ident, + ACTIONS(801), 1, sym_raw_enum_tag, - ACTIONS(803), 1, - anon_sym_LBRACE, ACTIONS(805), 1, - anon_sym_LPAREN, + anon_sym_LBRACE, ACTIONS(807), 1, - anon_sym_null, + anon_sym_LPAREN, ACTIONS(809), 1, - anon_sym_LBRACK, + anon_sym_null, ACTIONS(811), 1, + anon_sym_LBRACK, + ACTIONS(813), 1, anon_sym__, - ACTIONS(815), 1, - sym_multstr_start, ACTIONS(817), 1, - sym__str_start, + sym_multstr_start, ACTIONS(819), 1, + sym__str_start, + ACTIONS(821), 1, sym_quoted_enum_tag_start, - ACTIONS(827), 1, + ACTIONS(823), 1, anon_sym_EQ_GT, - STATE(631), 1, + STATE(638), 1, sym_enum_tag, - STATE(650), 1, + STATE(656), 1, sym_quoted_enum_tag, - ACTIONS(813), 2, + ACTIONS(815), 2, anon_sym_true, anon_sym_false, - STATE(589), 2, + STATE(591), 2, sym_pattern_fun, aux_sym_fun_expr_repeat1, - STATE(637), 2, + STATE(634), 2, sym_bool, sym_static_string, - STATE(660), 5, + STATE(632), 5, sym_constant_pattern, sym_record_pattern, sym_array_pattern, sym_enum_pattern_parens, sym_or_pattern_parens, - [42833] = 19, + [42808] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(829), 1, + ACTIONS(797), 1, sym_signed_num_literal, - ACTIONS(832), 1, + ACTIONS(799), 1, sym_ident, - ACTIONS(835), 1, + ACTIONS(801), 1, sym_raw_enum_tag, - ACTIONS(838), 1, - anon_sym_EQ_GT, - ACTIONS(840), 1, + ACTIONS(805), 1, anon_sym_LBRACE, - ACTIONS(843), 1, + ACTIONS(807), 1, anon_sym_LPAREN, - ACTIONS(846), 1, + ACTIONS(809), 1, anon_sym_null, - ACTIONS(849), 1, + ACTIONS(811), 1, anon_sym_LBRACK, - ACTIONS(852), 1, + ACTIONS(813), 1, anon_sym__, - ACTIONS(858), 1, + ACTIONS(817), 1, sym_multstr_start, - ACTIONS(861), 1, + ACTIONS(819), 1, sym__str_start, - ACTIONS(864), 1, + ACTIONS(821), 1, sym_quoted_enum_tag_start, - STATE(631), 1, + ACTIONS(825), 1, + anon_sym_EQ_GT, + STATE(638), 1, sym_enum_tag, - STATE(650), 1, + STATE(656), 1, sym_quoted_enum_tag, - ACTIONS(855), 2, + ACTIONS(815), 2, anon_sym_true, anon_sym_false, - STATE(589), 2, + STATE(591), 2, sym_pattern_fun, aux_sym_fun_expr_repeat1, - STATE(637), 2, + STATE(634), 2, sym_bool, sym_static_string, - STATE(660), 5, + STATE(632), 5, sym_constant_pattern, sym_record_pattern, sym_array_pattern, sym_enum_pattern_parens, sym_or_pattern_parens, - [42898] = 19, + [42873] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(795), 1, - sym_signed_num_literal, ACTIONS(797), 1, - sym_ident, + sym_signed_num_literal, ACTIONS(799), 1, + sym_ident, + ACTIONS(801), 1, sym_raw_enum_tag, - ACTIONS(803), 1, - anon_sym_LBRACE, ACTIONS(805), 1, - anon_sym_LPAREN, + anon_sym_LBRACE, ACTIONS(807), 1, - anon_sym_null, + anon_sym_LPAREN, ACTIONS(809), 1, - anon_sym_LBRACK, + anon_sym_null, ACTIONS(811), 1, + anon_sym_LBRACK, + ACTIONS(813), 1, anon_sym__, - ACTIONS(815), 1, - sym_multstr_start, ACTIONS(817), 1, - sym__str_start, + sym_multstr_start, ACTIONS(819), 1, + sym__str_start, + ACTIONS(821), 1, sym_quoted_enum_tag_start, - ACTIONS(867), 1, + ACTIONS(827), 1, anon_sym_EQ_GT, - STATE(631), 1, + STATE(638), 1, sym_enum_tag, - STATE(650), 1, + STATE(656), 1, sym_quoted_enum_tag, - ACTIONS(813), 2, + ACTIONS(815), 2, anon_sym_true, anon_sym_false, - STATE(589), 2, + STATE(591), 2, sym_pattern_fun, aux_sym_fun_expr_repeat1, - STATE(637), 2, + STATE(634), 2, sym_bool, sym_static_string, - STATE(660), 5, + STATE(632), 5, sym_constant_pattern, sym_record_pattern, sym_array_pattern, sym_enum_pattern_parens, sym_or_pattern_parens, - [42963] = 19, + [42938] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(795), 1, - sym_signed_num_literal, ACTIONS(797), 1, - sym_ident, + sym_signed_num_literal, ACTIONS(799), 1, + sym_ident, + ACTIONS(801), 1, sym_raw_enum_tag, - ACTIONS(803), 1, - anon_sym_LBRACE, ACTIONS(805), 1, - anon_sym_LPAREN, + anon_sym_LBRACE, ACTIONS(807), 1, - anon_sym_null, + anon_sym_LPAREN, ACTIONS(809), 1, - anon_sym_LBRACK, + anon_sym_null, ACTIONS(811), 1, + anon_sym_LBRACK, + ACTIONS(813), 1, anon_sym__, - ACTIONS(815), 1, - sym_multstr_start, ACTIONS(817), 1, - sym__str_start, + sym_multstr_start, ACTIONS(819), 1, + sym__str_start, + ACTIONS(821), 1, sym_quoted_enum_tag_start, - ACTIONS(869), 1, + ACTIONS(829), 1, anon_sym_EQ_GT, - STATE(631), 1, + STATE(638), 1, sym_enum_tag, - STATE(650), 1, + STATE(656), 1, sym_quoted_enum_tag, - ACTIONS(813), 2, + ACTIONS(815), 2, anon_sym_true, anon_sym_false, - STATE(589), 2, + STATE(591), 2, sym_pattern_fun, aux_sym_fun_expr_repeat1, - STATE(637), 2, + STATE(634), 2, sym_bool, sym_static_string, - STATE(660), 5, + STATE(632), 5, sym_constant_pattern, sym_record_pattern, sym_array_pattern, sym_enum_pattern_parens, sym_or_pattern_parens, - [43028] = 20, + [43003] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(603), 1, + ACTIONS(831), 1, sym_signed_num_literal, - ACTIONS(609), 1, - anon_sym_LBRACE, - ACTIONS(613), 1, - anon_sym_null, - ACTIONS(615), 1, - anon_sym_LBRACK, - ACTIONS(625), 1, - sym_multstr_start, - ACTIONS(627), 1, - sym__str_start, - ACTIONS(761), 1, + ACTIONS(834), 1, sym_ident, - ACTIONS(763), 1, + ACTIONS(837), 1, sym_raw_enum_tag, - ACTIONS(765), 1, + ACTIONS(840), 1, anon_sym_EQ_GT, - ACTIONS(767), 1, + ACTIONS(842), 1, + anon_sym_LBRACE, + ACTIONS(845), 1, anon_sym_LPAREN, - ACTIONS(769), 1, + ACTIONS(848), 1, + anon_sym_null, + ACTIONS(851), 1, + anon_sym_LBRACK, + ACTIONS(854), 1, anon_sym__, - ACTIONS(771), 1, - anon_sym_or, - ACTIONS(773), 1, + ACTIONS(860), 1, + sym_multstr_start, + ACTIONS(863), 1, + sym__str_start, + ACTIONS(866), 1, sym_quoted_enum_tag_start, - ACTIONS(871), 1, - anon_sym_if, - STATE(664), 1, - sym_quoted_enum_tag, - STATE(675), 1, + STATE(638), 1, sym_enum_tag, - ACTIONS(623), 2, + STATE(656), 1, + sym_quoted_enum_tag, + ACTIONS(857), 2, anon_sym_true, anon_sym_false, - STATE(677), 2, + STATE(591), 2, + sym_pattern_fun, + aux_sym_fun_expr_repeat1, + STATE(634), 2, sym_bool, sym_static_string, - STATE(719), 5, + STATE(632), 5, sym_constant_pattern, sym_record_pattern, sym_array_pattern, sym_enum_pattern_parens, sym_or_pattern_parens, - [43095] = 19, + [43068] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(795), 1, - sym_signed_num_literal, ACTIONS(797), 1, - sym_ident, + sym_signed_num_literal, ACTIONS(799), 1, + sym_ident, + ACTIONS(801), 1, sym_raw_enum_tag, - ACTIONS(803), 1, - anon_sym_LBRACE, ACTIONS(805), 1, - anon_sym_LPAREN, + anon_sym_LBRACE, ACTIONS(807), 1, - anon_sym_null, + anon_sym_LPAREN, ACTIONS(809), 1, - anon_sym_LBRACK, + anon_sym_null, ACTIONS(811), 1, + anon_sym_LBRACK, + ACTIONS(813), 1, anon_sym__, - ACTIONS(815), 1, - sym_multstr_start, ACTIONS(817), 1, - sym__str_start, + sym_multstr_start, ACTIONS(819), 1, + sym__str_start, + ACTIONS(821), 1, sym_quoted_enum_tag_start, - ACTIONS(873), 1, + ACTIONS(869), 1, anon_sym_EQ_GT, - STATE(631), 1, + STATE(638), 1, sym_enum_tag, - STATE(650), 1, + STATE(656), 1, sym_quoted_enum_tag, - ACTIONS(813), 2, + ACTIONS(815), 2, anon_sym_true, anon_sym_false, - STATE(589), 2, + STATE(591), 2, sym_pattern_fun, aux_sym_fun_expr_repeat1, - STATE(637), 2, + STATE(634), 2, sym_bool, sym_static_string, - STATE(660), 5, + STATE(632), 5, sym_constant_pattern, sym_record_pattern, sym_array_pattern, sym_enum_pattern_parens, sym_or_pattern_parens, - [43160] = 18, + [43133] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(795), 1, - sym_signed_num_literal, - ACTIONS(797), 1, + ACTIONS(871), 12, + sym_multstr_start, + sym__str_start, + sym_quoted_enum_tag_start, + sym_num_literal, + sym_raw_enum_tag, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PERCENT, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_LBRACK_PIPE, + ACTIONS(873), 13, sym_ident, + anon_sym_match, + anon_sym_import, + anon_sym_Array, + anon_sym_Dyn, + anon_sym_null, + anon_sym_LBRACK, + anon_sym__, + anon_sym_true, + anon_sym_false, + anon_sym_Number, + anon_sym_Bool, + anon_sym_String, + [43166] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(797), 1, + sym_signed_num_literal, ACTIONS(799), 1, + sym_ident, + ACTIONS(801), 1, sym_raw_enum_tag, - ACTIONS(803), 1, - anon_sym_LBRACE, ACTIONS(805), 1, - anon_sym_LPAREN, + anon_sym_LBRACE, ACTIONS(807), 1, - anon_sym_null, + anon_sym_LPAREN, ACTIONS(809), 1, - anon_sym_LBRACK, + anon_sym_null, ACTIONS(811), 1, + anon_sym_LBRACK, + ACTIONS(813), 1, anon_sym__, - ACTIONS(815), 1, - sym_multstr_start, ACTIONS(817), 1, - sym__str_start, + sym_multstr_start, ACTIONS(819), 1, + sym__str_start, + ACTIONS(821), 1, sym_quoted_enum_tag_start, - STATE(631), 1, + STATE(638), 1, sym_enum_tag, - STATE(650), 1, + STATE(656), 1, sym_quoted_enum_tag, - ACTIONS(813), 2, + ACTIONS(815), 2, anon_sym_true, anon_sym_false, - STATE(593), 2, + STATE(592), 2, sym_pattern_fun, aux_sym_fun_expr_repeat1, - STATE(637), 2, + STATE(634), 2, sym_bool, sym_static_string, - STATE(660), 5, + STATE(632), 5, sym_constant_pattern, sym_record_pattern, sym_array_pattern, sym_enum_pattern_parens, sym_or_pattern_parens, - [43222] = 18, + [43228] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(875), 1, - sym_signed_num_literal, - ACTIONS(881), 1, + ACTIONS(547), 11, + sym_multstr_start, + sym__str_start, + sym_quoted_enum_tag_start, + sym_num_literal, sym_raw_enum_tag, - ACTIONS(884), 1, anon_sym_LBRACE, - ACTIONS(887), 1, anon_sym_LPAREN, - ACTIONS(890), 1, + anon_sym_PERCENT, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_LBRACK_PIPE, + ACTIONS(875), 13, + sym_ident, + anon_sym_match, + anon_sym_import, + anon_sym_Array, + anon_sym_Dyn, + anon_sym_null, + anon_sym_LBRACK, + anon_sym__, + anon_sym_true, + anon_sym_false, + anon_sym_Number, + anon_sym_Bool, + anon_sym_String, + [43260] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(603), 1, + sym_signed_num_literal, + ACTIONS(609), 1, + anon_sym_LBRACE, + ACTIONS(613), 1, anon_sym_null, - ACTIONS(893), 1, + ACTIONS(615), 1, anon_sym_LBRACK, - ACTIONS(899), 1, + ACTIONS(625), 1, sym_multstr_start, - ACTIONS(902), 1, + ACTIONS(627), 1, sym__str_start, - ACTIONS(905), 1, + ACTIONS(761), 1, + sym_ident, + ACTIONS(763), 1, + sym_raw_enum_tag, + ACTIONS(767), 1, + anon_sym_LPAREN, + ACTIONS(769), 1, + anon_sym__, + ACTIONS(771), 1, + anon_sym_or, + ACTIONS(773), 1, sym_quoted_enum_tag_start, - STATE(595), 1, - aux_sym_or_pattern_unparens_repeat1, - STATE(664), 1, + STATE(668), 1, sym_quoted_enum_tag, - STATE(675), 1, + STATE(686), 1, sym_enum_tag, - STATE(1055), 1, - sym_pattern_or_branch, - ACTIONS(878), 2, - sym_ident, - anon_sym__, - ACTIONS(896), 2, + STATE(711), 1, + sym_pattern_fun, + ACTIONS(623), 2, anon_sym_true, anon_sym_false, - STATE(677), 2, + STATE(690), 2, sym_bool, sym_static_string, - STATE(698), 5, + STATE(712), 5, sym_constant_pattern, sym_record_pattern, sym_array_pattern, sym_enum_pattern_parens, sym_or_pattern_parens, - [43284] = 18, + [43324] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(795), 1, - sym_signed_num_literal, ACTIONS(797), 1, - sym_ident, + sym_signed_num_literal, ACTIONS(799), 1, + sym_ident, + ACTIONS(801), 1, sym_raw_enum_tag, - ACTIONS(803), 1, - anon_sym_LBRACE, ACTIONS(805), 1, - anon_sym_LPAREN, + anon_sym_LBRACE, ACTIONS(807), 1, - anon_sym_null, + anon_sym_LPAREN, ACTIONS(809), 1, - anon_sym_LBRACK, + anon_sym_null, ACTIONS(811), 1, + anon_sym_LBRACK, + ACTIONS(813), 1, anon_sym__, - ACTIONS(815), 1, - sym_multstr_start, ACTIONS(817), 1, - sym__str_start, + sym_multstr_start, ACTIONS(819), 1, + sym__str_start, + ACTIONS(821), 1, sym_quoted_enum_tag_start, - STATE(631), 1, + STATE(638), 1, sym_enum_tag, - STATE(650), 1, + STATE(656), 1, sym_quoted_enum_tag, - ACTIONS(813), 2, + ACTIONS(815), 2, anon_sym_true, anon_sym_false, - STATE(585), 2, + STATE(586), 2, sym_pattern_fun, aux_sym_fun_expr_repeat1, - STATE(637), 2, + STATE(634), 2, sym_bool, sym_static_string, - STATE(660), 5, + STATE(632), 5, sym_constant_pattern, sym_record_pattern, sym_array_pattern, sym_enum_pattern_parens, sym_or_pattern_parens, - [43346] = 18, + [43386] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(795), 1, + ACTIONS(877), 1, sym_signed_num_literal, - ACTIONS(797), 1, - sym_ident, - ACTIONS(799), 1, + ACTIONS(883), 1, sym_raw_enum_tag, - ACTIONS(803), 1, + ACTIONS(886), 1, anon_sym_LBRACE, - ACTIONS(805), 1, + ACTIONS(889), 1, anon_sym_LPAREN, - ACTIONS(807), 1, + ACTIONS(892), 1, anon_sym_null, - ACTIONS(809), 1, + ACTIONS(895), 1, anon_sym_LBRACK, - ACTIONS(811), 1, - anon_sym__, - ACTIONS(815), 1, + ACTIONS(901), 1, sym_multstr_start, - ACTIONS(817), 1, + ACTIONS(904), 1, sym__str_start, - ACTIONS(819), 1, + ACTIONS(907), 1, sym_quoted_enum_tag_start, - STATE(631), 1, - sym_enum_tag, - STATE(650), 1, + STATE(598), 1, + aux_sym_or_pattern_unparens_repeat1, + STATE(668), 1, sym_quoted_enum_tag, - ACTIONS(813), 2, + STATE(686), 1, + sym_enum_tag, + STATE(1039), 1, + sym_pattern_or_branch, + ACTIONS(880), 2, + sym_ident, + anon_sym__, + ACTIONS(898), 2, anon_sym_true, anon_sym_false, - STATE(590), 2, - sym_pattern_fun, - aux_sym_fun_expr_repeat1, - STATE(637), 2, + STATE(690), 2, sym_bool, sym_static_string, - STATE(660), 5, + STATE(697), 5, sym_constant_pattern, sym_record_pattern, sym_array_pattern, sym_enum_pattern_parens, sym_or_pattern_parens, - [43408] = 18, + [43448] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(795), 1, - sym_signed_num_literal, ACTIONS(797), 1, - sym_ident, + sym_signed_num_literal, ACTIONS(799), 1, + sym_ident, + ACTIONS(801), 1, sym_raw_enum_tag, - ACTIONS(803), 1, - anon_sym_LBRACE, ACTIONS(805), 1, - anon_sym_LPAREN, + anon_sym_LBRACE, ACTIONS(807), 1, - anon_sym_null, + anon_sym_LPAREN, ACTIONS(809), 1, - anon_sym_LBRACK, + anon_sym_null, ACTIONS(811), 1, + anon_sym_LBRACK, + ACTIONS(813), 1, anon_sym__, - ACTIONS(815), 1, - sym_multstr_start, ACTIONS(817), 1, - sym__str_start, + sym_multstr_start, ACTIONS(819), 1, + sym__str_start, + ACTIONS(821), 1, sym_quoted_enum_tag_start, - STATE(631), 1, + STATE(638), 1, sym_enum_tag, - STATE(650), 1, + STATE(656), 1, sym_quoted_enum_tag, - ACTIONS(813), 2, + ACTIONS(815), 2, anon_sym_true, anon_sym_false, - STATE(588), 2, + STATE(589), 2, sym_pattern_fun, aux_sym_fun_expr_repeat1, - STATE(637), 2, + STATE(634), 2, sym_bool, sym_static_string, - STATE(660), 5, + STATE(632), 5, sym_constant_pattern, sym_record_pattern, sym_array_pattern, sym_enum_pattern_parens, sym_or_pattern_parens, - [43470] = 3, + [43510] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(908), 11, - sym_multstr_start, - sym__str_start, - sym_quoted_enum_tag_start, - sym_num_literal, - sym_raw_enum_tag, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_PERCENT, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_LBRACK_PIPE, - ACTIONS(910), 13, - sym_ident, - anon_sym_match, - anon_sym_import, - anon_sym_Array, - anon_sym_Dyn, - anon_sym_null, - anon_sym_LBRACK, - anon_sym__, - anon_sym_true, - anon_sym_false, - anon_sym_Number, - anon_sym_Bool, - anon_sym_String, - [43502] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(549), 11, + ACTIONS(910), 11, sym_multstr_start, sym__str_start, sym_quoted_enum_tag_start, @@ -40986,7 +40987,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - [43534] = 3, + [43542] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(914), 11, @@ -41015,95 +41016,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - [43566] = 18, + [43574] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(603), 1, + ACTIONS(797), 1, sym_signed_num_literal, - ACTIONS(609), 1, + ACTIONS(799), 1, + sym_ident, + ACTIONS(801), 1, + sym_raw_enum_tag, + ACTIONS(805), 1, anon_sym_LBRACE, - ACTIONS(613), 1, + ACTIONS(807), 1, + anon_sym_LPAREN, + ACTIONS(809), 1, anon_sym_null, - ACTIONS(615), 1, + ACTIONS(811), 1, anon_sym_LBRACK, - ACTIONS(625), 1, + ACTIONS(813), 1, + anon_sym__, + ACTIONS(817), 1, sym_multstr_start, - ACTIONS(627), 1, + ACTIONS(819), 1, sym__str_start, - ACTIONS(763), 1, - sym_raw_enum_tag, - ACTIONS(767), 1, - anon_sym_LPAREN, - ACTIONS(773), 1, + ACTIONS(821), 1, sym_quoted_enum_tag_start, - STATE(595), 1, - aux_sym_or_pattern_unparens_repeat1, - STATE(664), 1, - sym_quoted_enum_tag, - STATE(675), 1, + STATE(638), 1, sym_enum_tag, - STATE(679), 1, - sym_pattern_or_branch, - ACTIONS(623), 2, + STATE(656), 1, + sym_quoted_enum_tag, + ACTIONS(815), 2, anon_sym_true, anon_sym_false, - ACTIONS(793), 2, - sym_ident, - anon_sym__, - STATE(677), 2, + STATE(588), 2, + sym_pattern_fun, + aux_sym_fun_expr_repeat1, + STATE(634), 2, sym_bool, sym_static_string, - STATE(698), 5, + STATE(632), 5, sym_constant_pattern, sym_record_pattern, sym_array_pattern, sym_enum_pattern_parens, sym_or_pattern_parens, - [43628] = 18, + [43636] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(795), 1, - sym_signed_num_literal, ACTIONS(797), 1, - sym_ident, + sym_signed_num_literal, ACTIONS(799), 1, + sym_ident, + ACTIONS(801), 1, sym_raw_enum_tag, - ACTIONS(803), 1, - anon_sym_LBRACE, ACTIONS(805), 1, - anon_sym_LPAREN, + anon_sym_LBRACE, ACTIONS(807), 1, - anon_sym_null, + anon_sym_LPAREN, ACTIONS(809), 1, - anon_sym_LBRACK, + anon_sym_null, ACTIONS(811), 1, + anon_sym_LBRACK, + ACTIONS(813), 1, anon_sym__, - ACTIONS(815), 1, - sym_multstr_start, ACTIONS(817), 1, - sym__str_start, + sym_multstr_start, ACTIONS(819), 1, + sym__str_start, + ACTIONS(821), 1, sym_quoted_enum_tag_start, - STATE(631), 1, + STATE(638), 1, sym_enum_tag, - STATE(650), 1, + STATE(656), 1, sym_quoted_enum_tag, - ACTIONS(813), 2, + ACTIONS(815), 2, anon_sym_true, anon_sym_false, - STATE(586), 2, + STATE(590), 2, sym_pattern_fun, aux_sym_fun_expr_repeat1, - STATE(637), 2, + STATE(634), 2, sym_bool, sym_static_string, - STATE(660), 5, + STATE(632), 5, sym_constant_pattern, sym_record_pattern, sym_array_pattern, sym_enum_pattern_parens, sym_or_pattern_parens, - [43690] = 3, + [43698] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(918), 11, @@ -41132,51 +41133,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - [43722] = 18, + [43730] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(795), 1, - sym_signed_num_literal, ACTIONS(797), 1, - sym_ident, + sym_signed_num_literal, ACTIONS(799), 1, + sym_ident, + ACTIONS(801), 1, sym_raw_enum_tag, - ACTIONS(803), 1, - anon_sym_LBRACE, ACTIONS(805), 1, - anon_sym_LPAREN, + anon_sym_LBRACE, ACTIONS(807), 1, - anon_sym_null, + anon_sym_LPAREN, ACTIONS(809), 1, - anon_sym_LBRACK, + anon_sym_null, ACTIONS(811), 1, + anon_sym_LBRACK, + ACTIONS(813), 1, anon_sym__, - ACTIONS(815), 1, - sym_multstr_start, ACTIONS(817), 1, - sym__str_start, + sym_multstr_start, ACTIONS(819), 1, + sym__str_start, + ACTIONS(821), 1, sym_quoted_enum_tag_start, - STATE(631), 1, + STATE(638), 1, sym_enum_tag, - STATE(650), 1, + STATE(656), 1, sym_quoted_enum_tag, - ACTIONS(813), 2, + ACTIONS(815), 2, anon_sym_true, anon_sym_false, - STATE(591), 2, + STATE(587), 2, sym_pattern_fun, aux_sym_fun_expr_repeat1, - STATE(637), 2, + STATE(634), 2, sym_bool, sym_static_string, - STATE(660), 5, + STATE(632), 5, sym_constant_pattern, sym_record_pattern, sym_array_pattern, sym_enum_pattern_parens, sym_or_pattern_parens, - [43784] = 3, + [43792] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(922), 11, @@ -41205,7 +41206,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - [43816] = 3, + [43824] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(926), 11, @@ -41234,7 +41235,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - [43848] = 3, + [43856] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(930), 11, @@ -41263,7 +41264,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - [43880] = 3, + [43888] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(603), 1, + sym_signed_num_literal, + ACTIONS(609), 1, + anon_sym_LBRACE, + ACTIONS(613), 1, + anon_sym_null, + ACTIONS(615), 1, + anon_sym_LBRACK, + ACTIONS(625), 1, + sym_multstr_start, + ACTIONS(627), 1, + sym__str_start, + ACTIONS(763), 1, + sym_raw_enum_tag, + ACTIONS(767), 1, + anon_sym_LPAREN, + ACTIONS(773), 1, + sym_quoted_enum_tag_start, + STATE(598), 1, + aux_sym_or_pattern_unparens_repeat1, + STATE(668), 1, + sym_quoted_enum_tag, + STATE(676), 1, + sym_pattern_or_branch, + STATE(686), 1, + sym_enum_tag, + ACTIONS(623), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(793), 2, + sym_ident, + anon_sym__, + STATE(690), 2, + sym_bool, + sym_static_string, + STATE(697), 5, + sym_constant_pattern, + sym_record_pattern, + sym_array_pattern, + sym_enum_pattern_parens, + sym_or_pattern_parens, + [43950] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(934), 11, @@ -41292,7 +41337,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Number, anon_sym_Bool, anon_sym_String, - [43912] = 18, + [43982] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(603), 1, @@ -41307,125 +41352,82 @@ static const uint16_t ts_small_parse_table[] = { sym_multstr_start, ACTIONS(627), 1, sym__str_start, - ACTIONS(761), 1, - sym_ident, ACTIONS(763), 1, sym_raw_enum_tag, ACTIONS(767), 1, anon_sym_LPAREN, - ACTIONS(769), 1, - anon_sym__, - ACTIONS(771), 1, - anon_sym_or, ACTIONS(773), 1, sym_quoted_enum_tag_start, - STATE(664), 1, + STATE(668), 1, sym_quoted_enum_tag, - STATE(675), 1, + STATE(686), 1, sym_enum_tag, ACTIONS(623), 2, anon_sym_true, anon_sym_false, - STATE(677), 2, - sym_bool, - sym_static_string, - STATE(719), 5, - sym_constant_pattern, - sym_record_pattern, - sym_array_pattern, - sym_enum_pattern_parens, - sym_or_pattern_parens, - [43973] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(795), 1, - sym_signed_num_literal, - ACTIONS(799), 1, - sym_raw_enum_tag, - ACTIONS(803), 1, - anon_sym_LBRACE, - ACTIONS(805), 1, - anon_sym_LPAREN, - ACTIONS(807), 1, - anon_sym_null, - ACTIONS(809), 1, - anon_sym_LBRACK, - ACTIONS(815), 1, - sym_multstr_start, - ACTIONS(817), 1, - sym__str_start, - ACTIONS(819), 1, - sym_quoted_enum_tag_start, - STATE(631), 1, - sym_enum_tag, - STATE(650), 1, - sym_quoted_enum_tag, - ACTIONS(813), 2, - anon_sym_true, - anon_sym_false, ACTIONS(938), 2, sym_ident, anon_sym__, - STATE(637), 2, + STATE(690), 2, sym_bool, sym_static_string, - STATE(653), 5, + STATE(728), 5, sym_constant_pattern, sym_record_pattern, sym_array_pattern, sym_enum_pattern_parens, sym_or_pattern_parens, - [44029] = 16, + [44038] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(603), 1, + ACTIONS(797), 1, sym_signed_num_literal, - ACTIONS(609), 1, + ACTIONS(801), 1, + sym_raw_enum_tag, + ACTIONS(805), 1, anon_sym_LBRACE, - ACTIONS(613), 1, + ACTIONS(807), 1, + anon_sym_LPAREN, + ACTIONS(809), 1, anon_sym_null, - ACTIONS(615), 1, + ACTIONS(811), 1, anon_sym_LBRACK, - ACTIONS(625), 1, + ACTIONS(817), 1, sym_multstr_start, - ACTIONS(627), 1, + ACTIONS(819), 1, sym__str_start, - ACTIONS(763), 1, - sym_raw_enum_tag, - ACTIONS(767), 1, - anon_sym_LPAREN, - ACTIONS(773), 1, + ACTIONS(821), 1, sym_quoted_enum_tag_start, - STATE(664), 1, - sym_quoted_enum_tag, - STATE(675), 1, + STATE(638), 1, sym_enum_tag, - ACTIONS(623), 2, + STATE(656), 1, + sym_quoted_enum_tag, + ACTIONS(815), 2, anon_sym_true, anon_sym_false, ACTIONS(940), 2, sym_ident, anon_sym__, - STATE(677), 2, + STATE(634), 2, sym_bool, sym_static_string, - STATE(723), 5, + STATE(629), 5, sym_constant_pattern, sym_record_pattern, sym_array_pattern, sym_enum_pattern_parens, sym_or_pattern_parens, - [44085] = 3, + [44094] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(485), 6, + ACTIONS(401), 6, sym_ident, anon_sym_null, anon_sym__, anon_sym_or, anon_sym_true, anon_sym_false, - ACTIONS(483), 14, + ACTIONS(399), 14, sym_multstr_start, sym__str_start, sym_quoted_enum_tag_start, @@ -41440,17 +41442,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_RBRACK, - [44113] = 3, + [44122] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(505), 6, + ACTIONS(457), 6, sym_ident, anon_sym_null, anon_sym__, anon_sym_or, anon_sym_true, anon_sym_false, - ACTIONS(503), 14, + ACTIONS(455), 14, sym_multstr_start, sym__str_start, sym_quoted_enum_tag_start, @@ -41465,17 +41467,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_RBRACK, - [44141] = 3, + [44150] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(453), 6, + ACTIONS(489), 6, sym_ident, anon_sym_null, anon_sym__, anon_sym_or, anon_sym_true, anon_sym_false, - ACTIONS(451), 14, + ACTIONS(487), 14, sym_multstr_start, sym__str_start, sym_quoted_enum_tag_start, @@ -41490,33 +41492,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_RBRACK, - [44169] = 3, + [44178] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(537), 1, - anon_sym_EQ, - ACTIONS(535), 15, - ts_builtin_sym_end, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_in, - anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(457), 7, + sym_ident, anon_sym_if, - anon_sym_then, - anon_sym_else, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, + anon_sym_null, + anon_sym__, anon_sym_or, - anon_sym_QMARK, - [44193] = 3, + anon_sym_true, + anon_sym_false, + ACTIONS(455), 9, + sym_multstr_start, + sym__str_start, + sym_quoted_enum_tag_start, + sym_signed_num_literal, + sym_raw_enum_tag, + anon_sym_EQ_GT, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_LBRACK, + [44202] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(521), 1, + ACTIONS(533), 1, anon_sym_EQ, - ACTIONS(519), 15, + ACTIONS(531), 15, ts_builtin_sym_end, anon_sym_PIPE, anon_sym_COLON, @@ -41532,10 +41534,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_or, anon_sym_QMARK, - [44217] = 3, + [44226] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(401), 7, + sym_ident, + anon_sym_if, + anon_sym_null, + anon_sym__, + anon_sym_or, + anon_sym_true, + anon_sym_false, + ACTIONS(399), 9, + sym_multstr_start, + sym__str_start, + sym_quoted_enum_tag_start, + sym_signed_num_literal, + sym_raw_enum_tag, + anon_sym_EQ_GT, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_LBRACK, + [44250] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(505), 7, + ACTIONS(489), 7, sym_ident, anon_sym_if, anon_sym_null, @@ -41543,7 +41566,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_true, anon_sym_false, - ACTIONS(503), 9, + ACTIONS(487), 9, sym_multstr_start, sym__str_start, sym_quoted_enum_tag_start, @@ -41553,18 +41576,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_LBRACK, - [44241] = 3, + [44274] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(485), 7, - sym_ident, + ACTIONS(529), 1, + anon_sym_EQ, + ACTIONS(527), 15, + ts_builtin_sym_end, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_in, + anon_sym_EQ_GT, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_if, + anon_sym_then, + anon_sym_else, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_or, + anon_sym_QMARK, + [44298] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(946), 1, + anon_sym_AT, + ACTIONS(944), 5, + sym_ident, anon_sym_null, anon_sym__, - anon_sym_or, anon_sym_true, anon_sym_false, - ACTIONS(483), 9, + ACTIONS(942), 9, sym_multstr_start, sym__str_start, sym_quoted_enum_tag_start, @@ -41574,219 +41618,228 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_LBRACK, - [44265] = 3, + [44323] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(453), 7, + ACTIONS(948), 5, sym_ident, - anon_sym_if, anon_sym_null, anon_sym__, - anon_sym_or, anon_sym_true, anon_sym_false, - ACTIONS(451), 9, + ACTIONS(674), 10, sym_multstr_start, sym__str_start, sym_quoted_enum_tag_start, sym_signed_num_literal, sym_raw_enum_tag, - anon_sym_EQ_GT, anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_LBRACK, - [44289] = 15, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [44346] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(942), 1, + ACTIONS(950), 1, sym_ident, - ACTIONS(944), 1, + ACTIONS(952), 1, anon_sym_RBRACE, - ACTIONS(946), 1, + ACTIONS(954), 1, anon_sym_SEMI, - ACTIONS(948), 1, + ACTIONS(956), 1, anon_sym_DOT_DOT, - ACTIONS(950), 1, + ACTIONS(958), 1, anon_sym__, - ACTIONS(952), 1, + ACTIONS(960), 1, sym_multstr_start, - ACTIONS(954), 1, + ACTIONS(962), 1, sym__str_start, - STATE(639), 1, + STATE(636), 1, aux_sym_uni_record_repeat1, - STATE(728), 1, + STATE(716), 1, sym_field_path, - STATE(731), 1, + STATE(740), 1, sym_field_path_elem, - STATE(793), 1, + STATE(789), 1, sym_str_chunks, - STATE(894), 1, + STATE(924), 1, sym_record_field, - STATE(976), 1, + STATE(944), 1, sym_record_last_field, - STATE(778), 2, + STATE(776), 2, sym_str_chunks_single, sym_str_chunks_multi, - [44336] = 15, + [44393] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(942), 1, + ACTIONS(950), 1, sym_ident, - ACTIONS(948), 1, + ACTIONS(956), 1, anon_sym_DOT_DOT, - ACTIONS(952), 1, + ACTIONS(960), 1, sym_multstr_start, - ACTIONS(954), 1, + ACTIONS(962), 1, sym__str_start, - ACTIONS(956), 1, + ACTIONS(964), 1, anon_sym_RBRACE, - ACTIONS(958), 1, + ACTIONS(966), 1, anon_sym_SEMI, - ACTIONS(960), 1, + ACTIONS(968), 1, anon_sym__, - STATE(646), 1, + STATE(630), 1, aux_sym_uni_record_repeat1, - STATE(728), 1, + STATE(716), 1, sym_field_path, - STATE(731), 1, + STATE(740), 1, sym_field_path_elem, - STATE(793), 1, + STATE(789), 1, sym_str_chunks, - STATE(894), 1, + STATE(924), 1, sym_record_field, - STATE(972), 1, + STATE(982), 1, sym_record_last_field, - STATE(778), 2, + STATE(776), 2, sym_str_chunks_single, sym_str_chunks_multi, - [44383] = 15, + [44440] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(942), 1, + ACTIONS(950), 1, sym_ident, - ACTIONS(948), 1, + ACTIONS(956), 1, anon_sym_DOT_DOT, - ACTIONS(952), 1, + ACTIONS(960), 1, sym_multstr_start, - ACTIONS(954), 1, - sym__str_start, ACTIONS(962), 1, + sym__str_start, + ACTIONS(970), 1, anon_sym_RBRACE, - ACTIONS(964), 1, + ACTIONS(972), 1, anon_sym_SEMI, - ACTIONS(966), 1, + ACTIONS(974), 1, anon_sym__, - STATE(642), 1, + STATE(635), 1, aux_sym_uni_record_repeat1, - STATE(728), 1, + STATE(716), 1, sym_field_path, - STATE(731), 1, + STATE(740), 1, sym_field_path_elem, - STATE(793), 1, + STATE(789), 1, sym_str_chunks, - STATE(894), 1, + STATE(924), 1, sym_record_field, - STATE(952), 1, + STATE(979), 1, sym_record_last_field, - STATE(778), 2, + STATE(776), 2, sym_str_chunks_single, sym_str_chunks_multi, - [44430] = 3, + [44487] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(968), 5, + ACTIONS(950), 1, sym_ident, - anon_sym_null, - anon_sym__, - anon_sym_true, - anon_sym_false, - ACTIONS(658), 10, + ACTIONS(956), 1, + anon_sym_DOT_DOT, + ACTIONS(960), 1, sym_multstr_start, + ACTIONS(962), 1, sym__str_start, - sym_quoted_enum_tag_start, - sym_signed_num_literal, - sym_raw_enum_tag, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [44453] = 15, + ACTIONS(976), 1, + anon_sym_RBRACE, + ACTIONS(978), 1, + anon_sym_SEMI, + ACTIONS(980), 1, + anon_sym__, + STATE(659), 1, + aux_sym_uni_record_repeat1, + STATE(716), 1, + sym_field_path, + STATE(740), 1, + sym_field_path_elem, + STATE(789), 1, + sym_str_chunks, + STATE(924), 1, + sym_record_field, + STATE(951), 1, + sym_record_last_field, + STATE(776), 2, + sym_str_chunks_single, + sym_str_chunks_multi, + [44534] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(942), 1, + ACTIONS(950), 1, sym_ident, - ACTIONS(948), 1, + ACTIONS(956), 1, anon_sym_DOT_DOT, - ACTIONS(952), 1, + ACTIONS(960), 1, sym_multstr_start, - ACTIONS(954), 1, + ACTIONS(962), 1, sym__str_start, - ACTIONS(970), 1, + ACTIONS(982), 1, anon_sym_RBRACE, - ACTIONS(972), 1, + ACTIONS(984), 1, anon_sym_SEMI, - ACTIONS(974), 1, + ACTIONS(986), 1, anon_sym__, - STATE(661), 1, + STATE(631), 1, aux_sym_uni_record_repeat1, - STATE(728), 1, + STATE(716), 1, sym_field_path, - STATE(731), 1, + STATE(740), 1, sym_field_path_elem, - STATE(793), 1, + STATE(789), 1, sym_str_chunks, - STATE(894), 1, + STATE(924), 1, sym_record_field, - STATE(950), 1, + STATE(963), 1, sym_record_last_field, - STATE(778), 2, + STATE(776), 2, sym_str_chunks_single, sym_str_chunks_multi, - [44500] = 15, + [44581] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(942), 1, + ACTIONS(950), 1, sym_ident, - ACTIONS(948), 1, + ACTIONS(956), 1, anon_sym_DOT_DOT, - ACTIONS(952), 1, + ACTIONS(960), 1, sym_multstr_start, - ACTIONS(954), 1, + ACTIONS(962), 1, sym__str_start, - ACTIONS(976), 1, + ACTIONS(988), 1, anon_sym_RBRACE, - ACTIONS(978), 1, + ACTIONS(990), 1, anon_sym_SEMI, - ACTIONS(980), 1, + ACTIONS(992), 1, anon_sym__, - STATE(654), 1, + STATE(660), 1, aux_sym_uni_record_repeat1, - STATE(728), 1, + STATE(716), 1, sym_field_path, - STATE(731), 1, + STATE(740), 1, sym_field_path_elem, - STATE(793), 1, + STATE(789), 1, sym_str_chunks, - STATE(894), 1, + STATE(924), 1, sym_record_field, - STATE(966), 1, + STATE(965), 1, sym_record_last_field, - STATE(778), 2, + STATE(776), 2, sym_str_chunks_single, sym_str_chunks_multi, - [44547] = 4, + [44628] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(986), 1, - anon_sym_AT, - ACTIONS(984), 5, + ACTIONS(996), 5, sym_ident, anon_sym_null, anon_sym__, anon_sym_true, anon_sym_false, - ACTIONS(982), 9, + ACTIONS(994), 9, sym_multstr_start, sym__str_start, sym_quoted_enum_tag_start, @@ -41796,48 +41849,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_LBRACK, - [44572] = 15, + [44650] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(942), 1, + ACTIONS(950), 1, sym_ident, - ACTIONS(948), 1, + ACTIONS(956), 1, anon_sym_DOT_DOT, - ACTIONS(952), 1, + ACTIONS(960), 1, sym_multstr_start, - ACTIONS(954), 1, + ACTIONS(962), 1, sym__str_start, - ACTIONS(988), 1, + ACTIONS(998), 1, anon_sym_RBRACE, - ACTIONS(990), 1, + ACTIONS(1000), 1, anon_sym_SEMI, - ACTIONS(992), 1, - anon_sym__, - STATE(638), 1, + STATE(663), 1, aux_sym_uni_record_repeat1, - STATE(728), 1, + STATE(716), 1, sym_field_path, - STATE(731), 1, + STATE(740), 1, sym_field_path_elem, - STATE(793), 1, + STATE(789), 1, sym_str_chunks, - STATE(894), 1, + STATE(924), 1, sym_record_field, - STATE(969), 1, + STATE(983), 1, sym_record_last_field, - STATE(778), 2, + STATE(776), 2, sym_str_chunks_single, sym_str_chunks_multi, - [44619] = 3, + [44694] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 5, + ACTIONS(950), 1, + sym_ident, + ACTIONS(956), 1, + anon_sym_DOT_DOT, + ACTIONS(960), 1, + sym_multstr_start, + ACTIONS(962), 1, + sym__str_start, + ACTIONS(1002), 1, + anon_sym_RBRACE, + ACTIONS(1004), 1, + anon_sym_SEMI, + STATE(663), 1, + aux_sym_uni_record_repeat1, + STATE(716), 1, + sym_field_path, + STATE(740), 1, + sym_field_path_elem, + STATE(789), 1, + sym_str_chunks, + STATE(924), 1, + sym_record_field, + STATE(981), 1, + sym_record_last_field, + STATE(776), 2, + sym_str_chunks_single, + sym_str_chunks_multi, + [44738] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(944), 5, sym_ident, anon_sym_null, anon_sym__, anon_sym_true, anon_sym_false, - ACTIONS(994), 9, + ACTIONS(942), 9, sym_multstr_start, sym__str_start, sym_quoted_enum_tag_start, @@ -41847,16 +41928,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_LBRACK, - [44641] = 3, + [44760] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1000), 5, + ACTIONS(529), 5, sym_ident, anon_sym_null, anon_sym__, anon_sym_true, anon_sym_false, - ACTIONS(998), 9, + ACTIONS(527), 9, sym_multstr_start, sym__str_start, sym_quoted_enum_tag_start, @@ -41866,16 +41947,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_LBRACK, - [44663] = 3, + [44782] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(771), 5, + ACTIONS(1008), 5, sym_ident, anon_sym_null, anon_sym__, anon_sym_true, anon_sym_false, - ACTIONS(1002), 9, + ACTIONS(1006), 9, sym_multstr_start, sym__str_start, sym_quoted_enum_tag_start, @@ -41885,31 +41966,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_LBRACK, - [44685] = 3, + [44804] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1006), 1, - anon_sym_EQ, - ACTIONS(1004), 13, - ts_builtin_sym_end, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_in, - anon_sym_EQ_GT, - anon_sym_COMMA, + ACTIONS(950), 1, + sym_ident, + ACTIONS(956), 1, + anon_sym_DOT_DOT, + ACTIONS(960), 1, + sym_multstr_start, + ACTIONS(962), 1, + sym__str_start, + ACTIONS(1010), 1, anon_sym_RBRACE, - anon_sym_then, - anon_sym_else, + ACTIONS(1012), 1, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_QMARK, - [44707] = 3, + STATE(663), 1, + aux_sym_uni_record_repeat1, + STATE(716), 1, + sym_field_path, + STATE(740), 1, + sym_field_path_elem, + STATE(789), 1, + sym_str_chunks, + STATE(924), 1, + sym_record_field, + STATE(958), 1, + sym_record_last_field, + STATE(776), 2, + sym_str_chunks_single, + sym_str_chunks_multi, + [44848] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1010), 1, + ACTIONS(950), 1, + sym_ident, + ACTIONS(956), 1, + anon_sym_DOT_DOT, + ACTIONS(960), 1, + sym_multstr_start, + ACTIONS(962), 1, + sym__str_start, + ACTIONS(1014), 1, + anon_sym_RBRACE, + ACTIONS(1016), 1, + anon_sym_SEMI, + STATE(663), 1, + aux_sym_uni_record_repeat1, + STATE(716), 1, + sym_field_path, + STATE(740), 1, + sym_field_path_elem, + STATE(789), 1, + sym_str_chunks, + STATE(924), 1, + sym_record_field, + STATE(952), 1, + sym_record_last_field, + STATE(776), 2, + sym_str_chunks_single, + sym_str_chunks_multi, + [44892] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1020), 1, anon_sym_EQ, - ACTIONS(1008), 13, + ACTIONS(1018), 13, ts_builtin_sym_end, anon_sym_PIPE, anon_sym_COLON, @@ -41923,12 +42045,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_QMARK, - [44729] = 3, + [44914] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1014), 1, + ACTIONS(771), 5, + sym_ident, + anon_sym_null, + anon_sym__, + anon_sym_true, + anon_sym_false, + ACTIONS(1022), 9, + sym_multstr_start, + sym__str_start, + sym_quoted_enum_tag_start, + sym_signed_num_literal, + sym_raw_enum_tag, + anon_sym_EQ_GT, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_LBRACK, + [44936] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1026), 1, anon_sym_EQ, - ACTIONS(1012), 13, + ACTIONS(1024), 13, ts_builtin_sym_end, anon_sym_PIPE, anon_sym_COLON, @@ -41942,12 +42083,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_QMARK, - [44751] = 3, + [44958] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1018), 1, + ACTIONS(1030), 1, anon_sym_EQ, - ACTIONS(1016), 13, + ACTIONS(1028), 13, ts_builtin_sym_end, anon_sym_PIPE, anon_sym_COLON, @@ -41961,35 +42102,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_QMARK, - [44773] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1022), 5, - sym_ident, - anon_sym_null, - anon_sym__, - anon_sym_true, - anon_sym_false, - ACTIONS(1020), 9, - sym_multstr_start, - sym__str_start, - sym_quoted_enum_tag_start, - sym_signed_num_literal, - sym_raw_enum_tag, - anon_sym_EQ_GT, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_LBRACK, - [44795] = 3, + [44980] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1026), 5, + ACTIONS(1034), 5, sym_ident, anon_sym_null, anon_sym__, anon_sym_true, anon_sym_false, - ACTIONS(1024), 9, + ACTIONS(1032), 9, sym_multstr_start, sym__str_start, sym_quoted_enum_tag_start, @@ -41999,67 +42121,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_LBRACK, - [44817] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(942), 1, - sym_ident, - ACTIONS(948), 1, - anon_sym_DOT_DOT, - ACTIONS(952), 1, - sym_multstr_start, - ACTIONS(954), 1, - sym__str_start, - ACTIONS(1028), 1, - anon_sym_RBRACE, - ACTIONS(1030), 1, - anon_sym_SEMI, - STATE(662), 1, - aux_sym_uni_record_repeat1, - STATE(728), 1, - sym_field_path, - STATE(731), 1, - sym_field_path_elem, - STATE(793), 1, - sym_str_chunks, - STATE(894), 1, - sym_record_field, - STATE(960), 1, - sym_record_last_field, - STATE(778), 2, - sym_str_chunks_single, - sym_str_chunks_multi, - [44861] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(942), 1, - sym_ident, - ACTIONS(948), 1, - anon_sym_DOT_DOT, - ACTIONS(952), 1, - sym_multstr_start, - ACTIONS(954), 1, - sym__str_start, - ACTIONS(1032), 1, - anon_sym_RBRACE, - ACTIONS(1034), 1, - anon_sym_SEMI, - STATE(662), 1, - aux_sym_uni_record_repeat1, - STATE(728), 1, - sym_field_path, - STATE(731), 1, - sym_field_path_elem, - STATE(793), 1, - sym_str_chunks, - STATE(894), 1, - sym_record_field, - STATE(980), 1, - sym_record_last_field, - STATE(778), 2, - sym_str_chunks_single, - sym_str_chunks_multi, - [44905] = 3, + [45002] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(595), 1, @@ -42078,7 +42140,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_QMARK, - [44927] = 3, + [45024] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1038), 1, @@ -42097,80 +42159,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_QMARK, - [44949] = 14, + [45046] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(942), 1, - sym_ident, - ACTIONS(948), 1, - anon_sym_DOT_DOT, - ACTIONS(952), 1, - sym_multstr_start, - ACTIONS(954), 1, - sym__str_start, - ACTIONS(1040), 1, - anon_sym_RBRACE, ACTIONS(1042), 1, - anon_sym_SEMI, - STATE(662), 1, - aux_sym_uni_record_repeat1, - STATE(728), 1, - sym_field_path, - STATE(731), 1, - sym_field_path_elem, - STATE(793), 1, - sym_str_chunks, - STATE(894), 1, - sym_record_field, - STATE(963), 1, - sym_record_last_field, - STATE(778), 2, - sym_str_chunks_single, - sym_str_chunks_multi, - [44993] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1046), 5, - sym_ident, - anon_sym_null, - anon_sym__, - anon_sym_true, - anon_sym_false, - ACTIONS(1044), 9, - sym_multstr_start, - sym__str_start, - sym_quoted_enum_tag_start, - sym_signed_num_literal, - sym_raw_enum_tag, - anon_sym_EQ_GT, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_LBRACK, - [45015] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(465), 5, - sym_ident, - anon_sym_null, - anon_sym__, - anon_sym_true, - anon_sym_false, - ACTIONS(463), 9, - sym_multstr_start, - sym__str_start, - sym_quoted_enum_tag_start, - sym_signed_num_literal, - sym_raw_enum_tag, - anon_sym_EQ_GT, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_LBRACK, - [45037] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1050), 1, anon_sym_EQ, - ACTIONS(1048), 13, + ACTIONS(1040), 13, ts_builtin_sym_end, anon_sym_PIPE, anon_sym_COLON, @@ -42184,46 +42178,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_QMARK, - [45059] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(942), 1, - sym_ident, - ACTIONS(948), 1, - anon_sym_DOT_DOT, - ACTIONS(952), 1, - sym_multstr_start, - ACTIONS(954), 1, - sym__str_start, - ACTIONS(1052), 1, - anon_sym_RBRACE, - ACTIONS(1054), 1, - anon_sym_SEMI, - STATE(662), 1, - aux_sym_uni_record_repeat1, - STATE(728), 1, - sym_field_path, - STATE(731), 1, - sym_field_path_elem, - STATE(793), 1, - sym_str_chunks, - STATE(894), 1, - sym_record_field, - STATE(970), 1, - sym_record_last_field, - STATE(778), 2, - sym_str_chunks_single, - sym_str_chunks_multi, - [45103] = 3, + [45068] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(453), 5, + ACTIONS(489), 5, sym_ident, anon_sym_null, anon_sym__, anon_sym_true, anon_sym_false, - ACTIONS(451), 9, + ACTIONS(487), 9, sym_multstr_start, sym__str_start, sym_quoted_enum_tag_start, @@ -42233,16 +42197,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_LBRACK, - [45125] = 3, + [45090] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1058), 5, + ACTIONS(1046), 5, sym_ident, anon_sym_null, anon_sym__, anon_sym_true, anon_sym_false, - ACTIONS(1056), 9, + ACTIONS(1044), 9, sym_multstr_start, sym__str_start, sym_quoted_enum_tag_start, @@ -42252,16 +42216,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_LBRACK, - [45147] = 3, + [45112] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(485), 5, + ACTIONS(1050), 5, sym_ident, anon_sym_null, anon_sym__, anon_sym_true, anon_sym_false, - ACTIONS(483), 9, + ACTIONS(1048), 9, sym_multstr_start, sym__str_start, sym_quoted_enum_tag_start, @@ -42271,16 +42235,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_LBRACK, - [45169] = 3, + [45134] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(505), 5, + ACTIONS(1054), 5, sym_ident, anon_sym_null, anon_sym__, anon_sym_true, anon_sym_false, - ACTIONS(503), 9, + ACTIONS(1052), 9, sym_multstr_start, sym__str_start, sym_quoted_enum_tag_start, @@ -42290,16 +42254,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_LBRACK, - [45191] = 3, + [45156] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1062), 5, + ACTIONS(1058), 5, sym_ident, anon_sym_null, anon_sym__, anon_sym_true, anon_sym_false, - ACTIONS(1060), 9, + ACTIONS(1056), 9, sym_multstr_start, sym__str_start, sym_quoted_enum_tag_start, @@ -42309,16 +42273,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_LBRACK, - [45213] = 3, + [45178] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1066), 5, + ACTIONS(1062), 1, + anon_sym_EQ, + ACTIONS(1060), 13, + ts_builtin_sym_end, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_in, + anon_sym_EQ_GT, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_then, + anon_sym_else, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_QMARK, + [45200] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(481), 5, sym_ident, anon_sym_null, anon_sym__, anon_sym_true, anon_sym_false, - ACTIONS(1064), 9, + ACTIONS(479), 9, sym_multstr_start, sym__str_start, sym_quoted_enum_tag_start, @@ -42328,16 +42311,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_LBRACK, - [45235] = 3, + [45222] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1070), 5, + ACTIONS(1066), 5, sym_ident, anon_sym_null, anon_sym__, anon_sym_true, anon_sym_false, - ACTIONS(1068), 9, + ACTIONS(1064), 9, sym_multstr_start, sym__str_start, sym_quoted_enum_tag_start, @@ -42347,46 +42330,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_LBRACK, - [45257] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(942), 1, - sym_ident, - ACTIONS(948), 1, - anon_sym_DOT_DOT, - ACTIONS(952), 1, - sym_multstr_start, - ACTIONS(954), 1, - sym__str_start, - ACTIONS(1072), 1, - anon_sym_RBRACE, - ACTIONS(1074), 1, - anon_sym_SEMI, - STATE(662), 1, - aux_sym_uni_record_repeat1, - STATE(728), 1, - sym_field_path, - STATE(731), 1, - sym_field_path_elem, - STATE(793), 1, - sym_str_chunks, - STATE(894), 1, - sym_record_field, - STATE(958), 1, - sym_record_last_field, - STATE(778), 2, - sym_str_chunks_single, - sym_str_chunks_multi, - [45301] = 3, + [45244] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1078), 5, + ACTIONS(1070), 5, sym_ident, anon_sym_null, anon_sym__, anon_sym_true, anon_sym_false, - ACTIONS(1076), 9, + ACTIONS(1068), 9, sym_multstr_start, sym__str_start, sym_quoted_enum_tag_start, @@ -42396,16 +42349,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_LBRACK, - [45323] = 3, + [45266] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(537), 5, + ACTIONS(1074), 5, sym_ident, anon_sym_null, anon_sym__, anon_sym_true, anon_sym_false, - ACTIONS(535), 9, + ACTIONS(1072), 9, sym_multstr_start, sym__str_start, sym_quoted_enum_tag_start, @@ -42415,16 +42368,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_LBRACK, - [45345] = 3, + [45288] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(521), 5, + ACTIONS(457), 5, sym_ident, anon_sym_null, anon_sym__, anon_sym_true, anon_sym_false, - ACTIONS(519), 9, + ACTIONS(455), 9, sym_multstr_start, sym__str_start, sym_quoted_enum_tag_start, @@ -42434,16 +42387,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_LBRACK, - [45367] = 3, + [45310] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1082), 5, + ACTIONS(401), 5, sym_ident, anon_sym_null, anon_sym__, anon_sym_true, anon_sym_false, - ACTIONS(1080), 9, + ACTIONS(399), 9, sym_multstr_start, sym__str_start, sym_quoted_enum_tag_start, @@ -42453,16 +42406,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_LBRACK, - [45389] = 3, + [45332] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1086), 5, + ACTIONS(1078), 5, sym_ident, anon_sym_null, anon_sym__, anon_sym_true, anon_sym_false, - ACTIONS(1084), 9, + ACTIONS(1076), 9, sym_multstr_start, sym__str_start, sym_quoted_enum_tag_start, @@ -42472,16 +42425,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_LBRACK, - [45411] = 3, + [45354] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(984), 5, + ACTIONS(533), 5, sym_ident, anon_sym_null, anon_sym__, anon_sym_true, anon_sym_false, - ACTIONS(982), 9, + ACTIONS(531), 9, sym_multstr_start, sym__str_start, sym_quoted_enum_tag_start, @@ -42491,72 +42444,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_LBRACK, - [45433] = 14, + [45376] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(942), 1, + ACTIONS(950), 1, sym_ident, - ACTIONS(948), 1, + ACTIONS(956), 1, anon_sym_DOT_DOT, - ACTIONS(952), 1, + ACTIONS(960), 1, sym_multstr_start, - ACTIONS(954), 1, + ACTIONS(962), 1, sym__str_start, - ACTIONS(1088), 1, + ACTIONS(1080), 1, anon_sym_RBRACE, - ACTIONS(1090), 1, + ACTIONS(1082), 1, anon_sym_SEMI, - STATE(662), 1, + STATE(663), 1, aux_sym_uni_record_repeat1, - STATE(728), 1, + STATE(716), 1, sym_field_path, - STATE(731), 1, + STATE(740), 1, sym_field_path_elem, - STATE(793), 1, + STATE(789), 1, sym_str_chunks, - STATE(894), 1, + STATE(924), 1, sym_record_field, - STATE(948), 1, + STATE(961), 1, sym_record_last_field, - STATE(778), 2, + STATE(776), 2, sym_str_chunks_single, sym_str_chunks_multi, - [45477] = 11, + [45420] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1092), 1, + ACTIONS(950), 1, sym_ident, - ACTIONS(1097), 1, + ACTIONS(956), 1, + anon_sym_DOT_DOT, + ACTIONS(960), 1, sym_multstr_start, - ACTIONS(1100), 1, + ACTIONS(962), 1, sym__str_start, - STATE(662), 1, + ACTIONS(1084), 1, + anon_sym_RBRACE, + ACTIONS(1086), 1, + anon_sym_SEMI, + STATE(663), 1, aux_sym_uni_record_repeat1, - STATE(728), 1, + STATE(716), 1, sym_field_path, - STATE(731), 1, + STATE(740), 1, sym_field_path_elem, - STATE(793), 1, + STATE(789), 1, sym_str_chunks, - STATE(1119), 1, + STATE(924), 1, sym_record_field, - STATE(778), 2, + STATE(957), 1, + sym_record_last_field, + STATE(776), 2, sym_str_chunks_single, sym_str_chunks_multi, - ACTIONS(1095), 3, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_DOT_DOT, - [45514] = 3, + [45464] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1090), 5, + sym_ident, + anon_sym_null, + anon_sym__, + anon_sym_true, + anon_sym_false, + ACTIONS(1088), 9, + sym_multstr_start, + sym__str_start, + sym_quoted_enum_tag_start, + sym_signed_num_literal, + sym_raw_enum_tag, + anon_sym_EQ_GT, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_LBRACK, + [45486] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1105), 5, + ACTIONS(1094), 5, sym_ident, anon_sym_null, anon_sym__, anon_sym_true, anon_sym_false, - ACTIONS(1103), 8, + ACTIONS(1092), 8, sym_multstr_start, sym__str_start, sym_quoted_enum_tag_start, @@ -42565,13 +42541,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_LBRACK, - [45535] = 3, + [45507] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1096), 1, + sym_ident, + ACTIONS(1101), 1, + sym_multstr_start, + ACTIONS(1104), 1, + sym__str_start, + STATE(663), 1, + aux_sym_uni_record_repeat1, + STATE(716), 1, + sym_field_path, + STATE(740), 1, + sym_field_path_elem, + STATE(789), 1, + sym_str_chunks, + STATE(1034), 1, + sym_record_field, + STATE(776), 2, + sym_str_chunks_single, + sym_str_chunks_multi, + ACTIONS(1099), 3, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_DOT_DOT, + [45544] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(505), 2, + ACTIONS(489), 2, anon_sym_PIPE, anon_sym_EQ, - ACTIONS(503), 10, + ACTIONS(487), 10, anon_sym_COLON, anon_sym_EQ_GT, anon_sym_COMMA, @@ -42582,13 +42584,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_or, anon_sym_PIPE_RBRACK, - [45555] = 3, + [45564] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(453), 2, + ACTIONS(457), 2, anon_sym_PIPE, anon_sym_EQ, - ACTIONS(451), 10, + ACTIONS(455), 10, anon_sym_COLON, anon_sym_EQ_GT, anon_sym_COMMA, @@ -42599,19 +42601,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_or, anon_sym_PIPE_RBRACK, - [45575] = 6, + [45584] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(563), 1, - anon_sym_COLON, ACTIONS(1107), 1, anon_sym_PIPE, - ACTIONS(1109), 1, + ACTIONS(1110), 1, + anon_sym_COLON, + ACTIONS(1113), 1, anon_sym_EQ, - STATE(667), 2, + STATE(666), 2, sym_annot_atom, aux_sym_annot_repeat1, - ACTIONS(1111), 7, + ACTIONS(1115), 7, anon_sym_EQ_GT, anon_sym_COMMA, anon_sym_RBRACE, @@ -42619,16 +42621,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_QMARK, - [45601] = 6, + [45610] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1113), 1, - anon_sym_PIPE, - ACTIONS(1116), 1, + ACTIONS(563), 1, anon_sym_COLON, + ACTIONS(1117), 1, + anon_sym_PIPE, ACTIONS(1119), 1, anon_sym_EQ, - STATE(667), 2, + STATE(666), 2, sym_annot_atom, aux_sym_annot_repeat1, ACTIONS(1121), 7, @@ -42639,13 +42641,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_QMARK, - [45627] = 3, + [45636] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(485), 2, + ACTIONS(401), 2, anon_sym_PIPE, anon_sym_EQ, - ACTIONS(483), 10, + ACTIONS(399), 10, anon_sym_COLON, anon_sym_EQ_GT, anon_sym_COMMA, @@ -42656,7 +42658,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_or, anon_sym_PIPE_RBRACK, - [45647] = 3, + [45656] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1125), 1, @@ -42672,12 +42674,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, - [45666] = 3, + [45675] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1129), 1, + ACTIONS(565), 1, anon_sym_EQ, - ACTIONS(1127), 10, + ACTIONS(567), 10, ts_builtin_sym_end, anon_sym_in, anon_sym_EQ_GT, @@ -42688,12 +42690,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, - [45685] = 3, + [45694] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1133), 1, + ACTIONS(1129), 1, anon_sym_EQ, - ACTIONS(1131), 10, + ACTIONS(1127), 10, ts_builtin_sym_end, anon_sym_in, anon_sym_EQ_GT, @@ -42704,12 +42706,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, - [45704] = 3, + [45713] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(565), 1, + ACTIONS(1133), 1, anon_sym_EQ, - ACTIONS(567), 10, + ACTIONS(1131), 10, ts_builtin_sym_end, anon_sym_in, anon_sym_EQ_GT, @@ -42720,7 +42722,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, - [45723] = 3, + [45732] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1137), 1, @@ -42736,7 +42738,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, - [45742] = 3, + [45751] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1141), 1, @@ -42752,12 +42754,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, - [45761] = 3, + [45770] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(771), 1, + ACTIONS(1078), 1, anon_sym_EQ, - ACTIONS(1002), 9, + ACTIONS(1076), 9, anon_sym_PIPE, anon_sym_COLON, anon_sym_EQ_GT, @@ -42767,31 +42769,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_or, - [45779] = 7, + [45788] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1143), 1, - anon_sym_PERCENT, + ACTIONS(1145), 1, + anon_sym_EQ, ACTIONS(1147), 1, - sym_multstr_end, + anon_sym_or, + ACTIONS(1143), 8, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_EQ_GT, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_if, + anon_sym_RPAREN, + anon_sym_RBRACK, + [45808] = 7, + ACTIONS(3), 1, + sym_comment, ACTIONS(1149), 1, + anon_sym_PERCENT, + ACTIONS(1153), 1, + sym_multstr_end, + ACTIONS(1155), 1, sym_interpolation_start, - STATE(805), 1, + STATE(818), 1, sym_percent, - ACTIONS(1145), 3, + ACTIONS(1151), 3, sym_double_quote, sym_mult_str_literal, sym_str_esc_char, - STATE(699), 3, + STATE(703), 3, sym_chunk_expr, sym_chunk_literal_multi, aux_sym_str_chunks_multi_repeat1, - [45805] = 3, + [45834] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1026), 1, + ACTIONS(1058), 1, anon_sym_EQ, - ACTIONS(1024), 9, + ACTIONS(1056), 9, anon_sym_PIPE, anon_sym_COLON, anon_sym_EQ_GT, @@ -42801,12 +42819,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_or, - [45823] = 3, + [45852] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1046), 1, + ACTIONS(1070), 1, anon_sym_EQ, - ACTIONS(1044), 9, + ACTIONS(1068), 9, anon_sym_PIPE, anon_sym_COLON, anon_sym_EQ_GT, @@ -42816,14 +42834,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_or, - [45841] = 4, + [45870] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1153), 1, - anon_sym_EQ, + ACTIONS(1149), 1, + anon_sym_PERCENT, ACTIONS(1155), 1, - anon_sym_or, - ACTIONS(1151), 8, + sym_interpolation_start, + ACTIONS(1157), 1, + sym_multstr_end, + STATE(818), 1, + sym_percent, + ACTIONS(1151), 3, + sym_double_quote, + sym_mult_str_literal, + sym_str_esc_char, + STATE(700), 3, + sym_chunk_expr, + sym_chunk_literal_multi, + aux_sym_str_chunks_multi_repeat1, + [45896] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1046), 1, + anon_sym_EQ, + ACTIONS(1044), 9, anon_sym_PIPE, anon_sym_COLON, anon_sym_EQ_GT, @@ -42832,33 +42867,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_RPAREN, anon_sym_RBRACK, - [45861] = 7, + anon_sym_or, + [45914] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1143), 1, - anon_sym_PERCENT, ACTIONS(1149), 1, + anon_sym_PERCENT, + ACTIONS(1155), 1, sym_interpolation_start, - ACTIONS(1157), 1, + ACTIONS(1159), 1, sym_multstr_end, - STATE(805), 1, + STATE(818), 1, sym_percent, - ACTIONS(1145), 3, + ACTIONS(1151), 3, sym_double_quote, sym_mult_str_literal, sym_str_esc_char, - STATE(699), 3, + STATE(700), 3, sym_chunk_expr, sym_chunk_literal_multi, aux_sym_str_chunks_multi_repeat1, - [45887] = 4, + [45940] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1161), 1, + ACTIONS(1054), 1, anon_sym_EQ, - ACTIONS(1163), 1, - anon_sym_AT, - ACTIONS(1159), 8, + ACTIONS(1052), 9, anon_sym_PIPE, anon_sym_COLON, anon_sym_EQ_GT, @@ -42867,12 +42901,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_RPAREN, anon_sym_RBRACK, - [45907] = 3, + anon_sym_or, + [45958] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(465), 1, + ACTIONS(1066), 1, anon_sym_EQ, - ACTIONS(463), 9, + ACTIONS(1064), 9, anon_sym_PIPE, anon_sym_COLON, anon_sym_EQ_GT, @@ -42882,18 +42917,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_or, - [45925] = 7, + [45976] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1143), 1, - anon_sym_PERCENT, ACTIONS(1149), 1, + anon_sym_PERCENT, + ACTIONS(1155), 1, sym_interpolation_start, - ACTIONS(1165), 1, + ACTIONS(1161), 1, sym_multstr_end, - STATE(805), 1, + STATE(818), 1, sym_percent, - ACTIONS(1145), 3, + ACTIONS(1151), 3, sym_double_quote, sym_mult_str_literal, sym_str_esc_char, @@ -42901,27 +42936,12 @@ static const uint16_t ts_small_parse_table[] = { sym_chunk_expr, sym_chunk_literal_multi, aux_sym_str_chunks_multi_repeat1, - [45951] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1078), 1, - anon_sym_EQ, - ACTIONS(1076), 9, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_if, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_or, - [45969] = 3, + [46002] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, + ACTIONS(771), 1, anon_sym_EQ, - ACTIONS(994), 9, + ACTIONS(1022), 9, anon_sym_PIPE, anon_sym_COLON, anon_sym_EQ_GT, @@ -42931,69 +42951,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_or, - [45987] = 7, + [46020] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1143), 1, - anon_sym_PERCENT, ACTIONS(1149), 1, + anon_sym_PERCENT, + ACTIONS(1155), 1, sym_interpolation_start, - ACTIONS(1167), 1, + ACTIONS(1163), 1, sym_multstr_end, - STATE(805), 1, + STATE(818), 1, sym_percent, - ACTIONS(1145), 3, + ACTIONS(1151), 3, sym_double_quote, sym_mult_str_literal, sym_str_esc_char, - STATE(695), 3, + STATE(700), 3, sym_chunk_expr, sym_chunk_literal_multi, aux_sym_str_chunks_multi_repeat1, - [46013] = 7, + [46046] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1143), 1, - anon_sym_PERCENT, ACTIONS(1149), 1, + anon_sym_PERCENT, + ACTIONS(1155), 1, sym_interpolation_start, - ACTIONS(1169), 1, + ACTIONS(1165), 1, sym_multstr_end, - STATE(805), 1, + STATE(818), 1, sym_percent, - ACTIONS(1145), 3, + ACTIONS(1151), 3, sym_double_quote, sym_mult_str_literal, sym_str_esc_char, - STATE(699), 3, + STATE(700), 3, sym_chunk_expr, sym_chunk_literal_multi, aux_sym_str_chunks_multi_repeat1, - [46039] = 7, + [46072] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1143), 1, - anon_sym_PERCENT, ACTIONS(1149), 1, + anon_sym_PERCENT, + ACTIONS(1155), 1, sym_interpolation_start, - ACTIONS(1171), 1, + ACTIONS(1167), 1, sym_multstr_end, - STATE(805), 1, + STATE(818), 1, sym_percent, - ACTIONS(1145), 3, + ACTIONS(1151), 3, sym_double_quote, sym_mult_str_literal, sym_str_esc_char, - STATE(699), 3, + STATE(682), 3, sym_chunk_expr, sym_chunk_literal_multi, aux_sym_str_chunks_multi_repeat1, - [46065] = 3, + [46098] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1022), 1, + ACTIONS(1008), 1, anon_sym_EQ, - ACTIONS(1020), 9, + ACTIONS(1006), 9, anon_sym_PIPE, anon_sym_COLON, anon_sym_EQ_GT, @@ -43003,111 +43023,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_or, - [46083] = 7, + [46116] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1143), 1, - anon_sym_PERCENT, - ACTIONS(1149), 1, - sym_interpolation_start, - ACTIONS(1173), 1, - sym_multstr_end, - STATE(805), 1, - sym_percent, - ACTIONS(1145), 3, - sym_double_quote, - sym_mult_str_literal, - sym_str_esc_char, - STATE(676), 3, - sym_chunk_expr, - sym_chunk_literal_multi, - aux_sym_str_chunks_multi_repeat1, - [46109] = 9, + ACTIONS(1090), 1, + anon_sym_EQ, + ACTIONS(1088), 9, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_EQ_GT, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_if, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_or, + [46134] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(563), 1, anon_sym_COLON, - ACTIONS(1107), 1, + ACTIONS(1117), 1, anon_sym_PIPE, - ACTIONS(1175), 1, + ACTIONS(1169), 1, anon_sym_EQ, - ACTIONS(1179), 1, + ACTIONS(1173), 1, anon_sym_QMARK, - STATE(836), 1, + STATE(826), 1, sym_annot, - STATE(930), 1, + STATE(884), 1, sym_default_annot, - ACTIONS(1177), 2, + ACTIONS(1171), 2, anon_sym_COMMA, anon_sym_RBRACE, - STATE(666), 2, + STATE(667), 2, sym_annot_atom, aux_sym_annot_repeat1, - [46139] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1143), 1, - anon_sym_PERCENT, - ACTIONS(1149), 1, - sym_interpolation_start, - ACTIONS(1181), 1, - sym_multstr_end, - STATE(805), 1, - sym_percent, - ACTIONS(1145), 3, - sym_double_quote, - sym_mult_str_literal, - sym_str_esc_char, - STATE(687), 3, - sym_chunk_expr, - sym_chunk_literal_multi, - aux_sym_str_chunks_multi_repeat1, - [46165] = 3, + [46164] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1000), 1, - anon_sym_EQ, - ACTIONS(998), 9, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_if, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_or, - [46183] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1143), 1, - anon_sym_PERCENT, ACTIONS(1149), 1, - sym_interpolation_start, - ACTIONS(1183), 1, - sym_multstr_end, - STATE(805), 1, - sym_percent, - ACTIONS(1145), 3, - sym_double_quote, - sym_mult_str_literal, - sym_str_esc_char, - STATE(680), 3, - sym_chunk_expr, - sym_chunk_literal_multi, - aux_sym_str_chunks_multi_repeat1, - [46209] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1143), 1, anon_sym_PERCENT, - ACTIONS(1149), 1, + ACTIONS(1155), 1, sym_interpolation_start, - ACTIONS(1185), 1, + ACTIONS(1175), 1, sym_multstr_end, - STATE(805), 1, + STATE(818), 1, sym_percent, - ACTIONS(1145), 3, + ACTIONS(1151), 3, sym_double_quote, sym_mult_str_literal, sym_str_esc_char, @@ -43115,12 +43078,12 @@ static const uint16_t ts_small_parse_table[] = { sym_chunk_expr, sym_chunk_literal_multi, aux_sym_str_chunks_multi_repeat1, - [46235] = 3, + [46190] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1062), 1, + ACTIONS(481), 1, anon_sym_EQ, - ACTIONS(1060), 9, + ACTIONS(479), 9, anon_sym_PIPE, anon_sym_COLON, anon_sym_EQ_GT, @@ -43130,12 +43093,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_or, - [46253] = 3, + [46208] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1086), 1, + ACTIONS(1074), 1, anon_sym_EQ, - ACTIONS(1084), 9, + ACTIONS(1072), 9, anon_sym_PIPE, anon_sym_COLON, anon_sym_EQ_GT, @@ -43145,12 +43108,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_or, - [46271] = 3, + [46226] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1189), 1, + ACTIONS(1149), 1, + anon_sym_PERCENT, + ACTIONS(1155), 1, + sym_interpolation_start, + ACTIONS(1177), 1, + sym_multstr_end, + STATE(818), 1, + sym_percent, + ACTIONS(1151), 3, + sym_double_quote, + sym_mult_str_literal, + sym_str_esc_char, + STATE(687), 3, + sym_chunk_expr, + sym_chunk_literal_multi, + aux_sym_str_chunks_multi_repeat1, + [46252] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1181), 1, anon_sym_EQ, - ACTIONS(1187), 9, + ACTIONS(1179), 9, anon_sym_PIPE, anon_sym_COLON, anon_sym_EQ_GT, @@ -43160,69 +43142,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_or, - [46289] = 7, + [46270] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1191), 1, + ACTIONS(1149), 1, anon_sym_PERCENT, - ACTIONS(1197), 1, - sym_multstr_end, - ACTIONS(1199), 1, + ACTIONS(1155), 1, sym_interpolation_start, - STATE(805), 1, + ACTIONS(1183), 1, + sym_multstr_end, + STATE(818), 1, sym_percent, - ACTIONS(1194), 3, + ACTIONS(1151), 3, sym_double_quote, sym_mult_str_literal, sym_str_esc_char, - STATE(699), 3, + STATE(705), 3, sym_chunk_expr, sym_chunk_literal_multi, aux_sym_str_chunks_multi_repeat1, - [46315] = 7, + [46296] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1143), 1, - anon_sym_PERCENT, ACTIONS(1149), 1, + anon_sym_PERCENT, + ACTIONS(1155), 1, sym_interpolation_start, - ACTIONS(1202), 1, + ACTIONS(1185), 1, sym_multstr_end, - STATE(805), 1, + STATE(818), 1, sym_percent, - ACTIONS(1145), 3, + ACTIONS(1151), 3, sym_double_quote, sym_mult_str_literal, sym_str_esc_char, - STATE(704), 3, + STATE(700), 3, sym_chunk_expr, sym_chunk_literal_multi, aux_sym_str_chunks_multi_repeat1, - [46341] = 7, + [46322] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1143), 1, + ACTIONS(1187), 1, anon_sym_PERCENT, + ACTIONS(1193), 1, + sym_multstr_end, + ACTIONS(1195), 1, + sym_interpolation_start, + STATE(818), 1, + sym_percent, + ACTIONS(1190), 3, + sym_double_quote, + sym_mult_str_literal, + sym_str_esc_char, + STATE(700), 3, + sym_chunk_expr, + sym_chunk_literal_multi, + aux_sym_str_chunks_multi_repeat1, + [46348] = 7, + ACTIONS(3), 1, + sym_comment, ACTIONS(1149), 1, + anon_sym_PERCENT, + ACTIONS(1155), 1, sym_interpolation_start, - ACTIONS(1204), 1, + ACTIONS(1198), 1, sym_multstr_end, - STATE(805), 1, + STATE(818), 1, sym_percent, - ACTIONS(1145), 3, + ACTIONS(1151), 3, sym_double_quote, sym_mult_str_literal, sym_str_esc_char, - STATE(699), 3, + STATE(680), 3, sym_chunk_expr, sym_chunk_literal_multi, aux_sym_str_chunks_multi_repeat1, - [46367] = 3, + [46374] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1066), 1, + ACTIONS(1034), 1, anon_sym_EQ, - ACTIONS(1064), 9, + ACTIONS(1032), 9, anon_sym_PIPE, anon_sym_COLON, anon_sym_EQ_GT, @@ -43231,51 +43232,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_RPAREN, anon_sym_RBRACK, - anon_sym_or, - [46385] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1143), 1, - anon_sym_PERCENT, - ACTIONS(1149), 1, - sym_interpolation_start, - ACTIONS(1206), 1, - sym_multstr_end, - STATE(805), 1, - sym_percent, - ACTIONS(1145), 3, - sym_double_quote, - sym_mult_str_literal, - sym_str_esc_char, - STATE(701), 3, - sym_chunk_expr, - sym_chunk_literal_multi, - aux_sym_str_chunks_multi_repeat1, - [46411] = 7, + anon_sym_or, + [46392] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1143), 1, - anon_sym_PERCENT, ACTIONS(1149), 1, + anon_sym_PERCENT, + ACTIONS(1155), 1, sym_interpolation_start, - ACTIONS(1208), 1, + ACTIONS(1200), 1, sym_multstr_end, - STATE(805), 1, + STATE(818), 1, sym_percent, - ACTIONS(1145), 3, + ACTIONS(1151), 3, sym_double_quote, sym_mult_str_literal, sym_str_esc_char, - STATE(699), 3, + STATE(700), 3, sym_chunk_expr, sym_chunk_literal_multi, aux_sym_str_chunks_multi_repeat1, - [46437] = 3, + [46418] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1082), 1, + ACTIONS(1050), 1, anon_sym_EQ, - ACTIONS(1080), 9, + ACTIONS(1048), 9, anon_sym_PIPE, anon_sym_COLON, anon_sym_EQ_GT, @@ -43285,12 +43267,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_or, - [46455] = 3, + [46436] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1058), 1, + ACTIONS(1149), 1, + anon_sym_PERCENT, + ACTIONS(1155), 1, + sym_interpolation_start, + ACTIONS(1202), 1, + sym_multstr_end, + STATE(818), 1, + sym_percent, + ACTIONS(1151), 3, + sym_double_quote, + sym_mult_str_literal, + sym_str_esc_char, + STATE(700), 3, + sym_chunk_expr, + sym_chunk_literal_multi, + aux_sym_str_chunks_multi_repeat1, + [46462] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(944), 1, anon_sym_EQ, - ACTIONS(1056), 9, + ACTIONS(1204), 1, + anon_sym_AT, + ACTIONS(942), 8, anon_sym_PIPE, anon_sym_COLON, anon_sym_EQ_GT, @@ -43299,110 +43302,118 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_RPAREN, anon_sym_RBRACK, - anon_sym_or, - [46473] = 8, + [46482] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1210), 1, + ACTIONS(1206), 1, anon_sym_PERCENT, - ACTIONS(1212), 1, + ACTIONS(1208), 1, sym_str_literal, - ACTIONS(1214), 1, + ACTIONS(1210), 1, sym_str_esc_char, - ACTIONS(1216), 1, + ACTIONS(1212), 1, sym__str_end, - ACTIONS(1218), 1, + ACTIONS(1214), 1, sym_interpolation_start, - STATE(827), 1, + STATE(830), 1, sym_percent, - STATE(708), 3, + STATE(725), 3, sym_chunk_expr, sym_chunk_literal_single, aux_sym_str_chunks_single_repeat1, - [46500] = 8, + [46509] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1220), 1, + ACTIONS(1206), 1, anon_sym_PERCENT, - ACTIONS(1223), 1, + ACTIONS(1208), 1, sym_str_literal, - ACTIONS(1226), 1, - sym_str_esc_char, - ACTIONS(1229), 1, - sym__str_end, - ACTIONS(1231), 1, - sym_interpolation_start, - STATE(827), 1, - sym_percent, - STATE(708), 3, - sym_chunk_expr, - sym_chunk_literal_single, - aux_sym_str_chunks_single_repeat1, - [46527] = 8, - ACTIONS(3), 1, - sym_comment, ACTIONS(1210), 1, - anon_sym_PERCENT, - ACTIONS(1212), 1, - sym_str_literal, - ACTIONS(1214), 1, sym_str_esc_char, - ACTIONS(1218), 1, + ACTIONS(1214), 1, sym_interpolation_start, - ACTIONS(1234), 1, + ACTIONS(1216), 1, sym__str_end, - STATE(827), 1, + STATE(830), 1, sym_percent, - STATE(708), 3, + STATE(717), 3, sym_chunk_expr, sym_chunk_literal_single, aux_sym_str_chunks_single_repeat1, - [46554] = 8, + [46536] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1210), 1, + ACTIONS(1206), 1, anon_sym_PERCENT, - ACTIONS(1212), 1, + ACTIONS(1208), 1, sym_str_literal, - ACTIONS(1214), 1, + ACTIONS(1210), 1, sym_str_esc_char, - ACTIONS(1218), 1, + ACTIONS(1214), 1, sym_interpolation_start, - ACTIONS(1236), 1, + ACTIONS(1218), 1, sym__str_end, - STATE(827), 1, + STATE(830), 1, sym_percent, - STATE(708), 3, + STATE(727), 3, sym_chunk_expr, sym_chunk_literal_single, aux_sym_str_chunks_single_repeat1, - [46581] = 8, + [46563] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1210), 1, + ACTIONS(1206), 1, anon_sym_PERCENT, - ACTIONS(1212), 1, + ACTIONS(1208), 1, sym_str_literal, - ACTIONS(1214), 1, + ACTIONS(1210), 1, sym_str_esc_char, - ACTIONS(1218), 1, + ACTIONS(1214), 1, sym_interpolation_start, - ACTIONS(1238), 1, + ACTIONS(1220), 1, sym__str_end, - STATE(827), 1, + STATE(830), 1, sym_percent, - STATE(713), 3, + STATE(709), 3, sym_chunk_expr, sym_chunk_literal_single, aux_sym_str_chunks_single_repeat1, - [46608] = 4, + [46590] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1187), 1, + ACTIONS(1224), 1, + anon_sym_EQ, + ACTIONS(1222), 8, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_EQ_GT, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_if, + anon_sym_RPAREN, + anon_sym_RBRACK, + [46607] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(944), 1, + anon_sym_EQ, + ACTIONS(942), 8, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_EQ_GT, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_if, + anon_sym_RPAREN, + anon_sym_RBRACK, + [46624] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1179), 1, anon_sym_or, - ACTIONS(1242), 1, + ACTIONS(1228), 1, anon_sym_EQ, - ACTIONS(1240), 7, + ACTIONS(1226), 7, anon_sym_PIPE, anon_sym_COLON, anon_sym_EQ_GT, @@ -43410,52 +43421,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_if, anon_sym_RBRACK, - [46627] = 8, + [46643] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1210), 1, + ACTIONS(1206), 1, anon_sym_PERCENT, - ACTIONS(1212), 1, + ACTIONS(1208), 1, sym_str_literal, - ACTIONS(1214), 1, + ACTIONS(1210), 1, sym_str_esc_char, - ACTIONS(1218), 1, + ACTIONS(1214), 1, sym_interpolation_start, - ACTIONS(1244), 1, + ACTIONS(1230), 1, sym__str_end, - STATE(827), 1, + STATE(830), 1, sym_percent, - STATE(708), 3, + STATE(727), 3, sym_chunk_expr, sym_chunk_literal_single, aux_sym_str_chunks_single_repeat1, - [46654] = 8, + [46670] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1210), 1, + ACTIONS(1032), 1, + anon_sym_or, + ACTIONS(1234), 1, + anon_sym_EQ, + ACTIONS(1232), 7, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_EQ_GT, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_if, + anon_sym_RBRACK, + [46689] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(563), 1, + anon_sym_COLON, + ACTIONS(1117), 1, + anon_sym_PIPE, + ACTIONS(1236), 1, + anon_sym_EQ, + STATE(843), 1, + sym_annot, + STATE(667), 2, + sym_annot_atom, + aux_sym_annot_repeat1, + ACTIONS(1238), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + [46714] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1206), 1, anon_sym_PERCENT, - ACTIONS(1212), 1, + ACTIONS(1208), 1, sym_str_literal, - ACTIONS(1214), 1, + ACTIONS(1210), 1, sym_str_esc_char, - ACTIONS(1218), 1, + ACTIONS(1214), 1, sym_interpolation_start, - ACTIONS(1246), 1, + ACTIONS(1240), 1, sym__str_end, - STATE(827), 1, + STATE(830), 1, sym_percent, - STATE(709), 3, + STATE(727), 3, sym_chunk_expr, sym_chunk_literal_single, aux_sym_str_chunks_single_repeat1, - [46681] = 4, + [46741] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1060), 1, + ACTIONS(1179), 1, anon_sym_or, - ACTIONS(1250), 1, + ACTIONS(1244), 1, anon_sym_EQ, - ACTIONS(1248), 7, + ACTIONS(1242), 7, anon_sym_PIPE, anon_sym_COLON, anon_sym_EQ_GT, @@ -43463,316 +43507,274 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_if, anon_sym_RBRACK, - [46700] = 8, + [46760] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1210), 1, + ACTIONS(1179), 1, + anon_sym_or, + ACTIONS(1248), 1, + anon_sym_EQ, + ACTIONS(1246), 7, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_EQ_GT, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_if, + anon_sym_RBRACK, + [46779] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1206), 1, anon_sym_PERCENT, - ACTIONS(1212), 1, + ACTIONS(1208), 1, sym_str_literal, + ACTIONS(1210), 1, + sym_str_esc_char, ACTIONS(1214), 1, + sym_interpolation_start, + ACTIONS(1250), 1, + sym__str_end, + STATE(830), 1, + sym_percent, + STATE(726), 3, + sym_chunk_expr, + sym_chunk_literal_single, + aux_sym_str_chunks_single_repeat1, + [46806] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1206), 1, + anon_sym_PERCENT, + ACTIONS(1208), 1, + sym_str_literal, + ACTIONS(1210), 1, sym_str_esc_char, - ACTIONS(1218), 1, + ACTIONS(1214), 1, sym_interpolation_start, ACTIONS(1252), 1, sym__str_end, - STATE(827), 1, + STATE(830), 1, sym_percent, - STATE(727), 3, + STATE(722), 3, sym_chunk_expr, sym_chunk_literal_single, aux_sym_str_chunks_single_repeat1, - [46727] = 8, + [46833] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1210), 1, + ACTIONS(1206), 1, anon_sym_PERCENT, - ACTIONS(1212), 1, + ACTIONS(1208), 1, sym_str_literal, - ACTIONS(1214), 1, + ACTIONS(1210), 1, sym_str_esc_char, - ACTIONS(1218), 1, + ACTIONS(1214), 1, sym_interpolation_start, ACTIONS(1254), 1, sym__str_end, - STATE(827), 1, + STATE(830), 1, sym_percent, - STATE(708), 3, + STATE(727), 3, sym_chunk_expr, sym_chunk_literal_single, aux_sym_str_chunks_single_repeat1, - [46754] = 8, + [46860] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1210), 1, + ACTIONS(1206), 1, anon_sym_PERCENT, - ACTIONS(1212), 1, + ACTIONS(1208), 1, sym_str_literal, - ACTIONS(1214), 1, + ACTIONS(1210), 1, sym_str_esc_char, - ACTIONS(1218), 1, + ACTIONS(1214), 1, sym_interpolation_start, ACTIONS(1256), 1, sym__str_end, - STATE(827), 1, + STATE(830), 1, sym_percent, - STATE(717), 3, + STATE(729), 3, sym_chunk_expr, sym_chunk_literal_single, aux_sym_str_chunks_single_repeat1, - [46781] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1161), 1, - anon_sym_EQ, - ACTIONS(1159), 8, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_if, - anon_sym_RPAREN, - anon_sym_RBRACK, - [46798] = 8, + [46887] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1210), 1, + ACTIONS(1206), 1, anon_sym_PERCENT, - ACTIONS(1212), 1, + ACTIONS(1208), 1, sym_str_literal, - ACTIONS(1214), 1, + ACTIONS(1210), 1, sym_str_esc_char, - ACTIONS(1218), 1, + ACTIONS(1214), 1, sym_interpolation_start, ACTIONS(1258), 1, sym__str_end, - STATE(827), 1, + STATE(830), 1, sym_percent, - STATE(710), 3, + STATE(714), 3, sym_chunk_expr, sym_chunk_literal_single, aux_sym_str_chunks_single_repeat1, - [46825] = 8, + [46914] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1210), 1, + ACTIONS(1206), 1, anon_sym_PERCENT, - ACTIONS(1212), 1, + ACTIONS(1208), 1, sym_str_literal, - ACTIONS(1214), 1, + ACTIONS(1210), 1, sym_str_esc_char, - ACTIONS(1218), 1, + ACTIONS(1214), 1, sym_interpolation_start, ACTIONS(1260), 1, sym__str_end, - STATE(827), 1, + STATE(830), 1, sym_percent, - STATE(708), 3, + STATE(727), 3, sym_chunk_expr, sym_chunk_literal_single, aux_sym_str_chunks_single_repeat1, - [46852] = 8, + [46941] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1210), 1, + ACTIONS(1206), 1, anon_sym_PERCENT, - ACTIONS(1212), 1, + ACTIONS(1208), 1, sym_str_literal, - ACTIONS(1214), 1, + ACTIONS(1210), 1, sym_str_esc_char, - ACTIONS(1218), 1, + ACTIONS(1214), 1, sym_interpolation_start, ACTIONS(1262), 1, sym__str_end, - STATE(827), 1, + STATE(830), 1, sym_percent, - STATE(707), 3, + STATE(727), 3, sym_chunk_expr, sym_chunk_literal_single, aux_sym_str_chunks_single_repeat1, - [46879] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1266), 1, - anon_sym_EQ, - ACTIONS(1264), 8, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_if, - anon_sym_RPAREN, - anon_sym_RBRACK, - [46896] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1187), 1, - anon_sym_or, - ACTIONS(1270), 1, - anon_sym_EQ, - ACTIONS(1268), 7, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_if, - anon_sym_RBRACK, - [46915] = 8, + [46968] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1210), 1, + ACTIONS(1264), 1, anon_sym_PERCENT, - ACTIONS(1212), 1, + ACTIONS(1267), 1, sym_str_literal, - ACTIONS(1214), 1, + ACTIONS(1270), 1, sym_str_esc_char, - ACTIONS(1218), 1, - sym_interpolation_start, - ACTIONS(1272), 1, + ACTIONS(1273), 1, sym__str_end, - STATE(827), 1, + ACTIONS(1275), 1, + sym_interpolation_start, + STATE(830), 1, sym_percent, - STATE(721), 3, + STATE(727), 3, sym_chunk_expr, sym_chunk_literal_single, aux_sym_str_chunks_single_repeat1, - [46942] = 4, + [46995] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1187), 1, - anon_sym_or, - ACTIONS(1276), 1, + ACTIONS(996), 1, anon_sym_EQ, - ACTIONS(1274), 7, + ACTIONS(994), 8, anon_sym_PIPE, anon_sym_COLON, anon_sym_EQ_GT, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_if, + anon_sym_RPAREN, anon_sym_RBRACK, - [46961] = 8, + [47012] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1210), 1, + ACTIONS(1206), 1, anon_sym_PERCENT, - ACTIONS(1212), 1, + ACTIONS(1208), 1, sym_str_literal, - ACTIONS(1214), 1, + ACTIONS(1210), 1, sym_str_esc_char, - ACTIONS(1218), 1, + ACTIONS(1214), 1, sym_interpolation_start, ACTIONS(1278), 1, sym__str_end, - STATE(827), 1, + STATE(830), 1, sym_percent, - STATE(708), 3, + STATE(727), 3, sym_chunk_expr, sym_chunk_literal_single, aux_sym_str_chunks_single_repeat1, - [46988] = 7, + [47039] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(563), 1, - anon_sym_COLON, - ACTIONS(1107), 1, - anon_sym_PIPE, ACTIONS(1280), 1, - anon_sym_EQ, - STATE(849), 1, - sym_annot, - STATE(666), 2, - sym_annot_atom, - aux_sym_annot_repeat1, - ACTIONS(1282), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - [47013] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1286), 1, - anon_sym_DOT, - STATE(743), 1, - aux_sym_field_path_repeat1, - ACTIONS(1284), 6, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - [47031] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1288), 1, anon_sym_PERCENT, - ACTIONS(1292), 1, + ACTIONS(1284), 1, sym_multstr_end, - STATE(832), 1, + STATE(837), 1, sym_percent, - STATE(741), 2, + STATE(751), 2, sym_chunk_literal_multi, aux_sym_static_string_repeat2, - ACTIONS(1290), 3, + ACTIONS(1282), 3, sym_double_quote, sym_mult_str_literal, sym_str_esc_char, - [47053] = 4, + [47061] = 4, ACTIONS(3), 1, sym_comment, + ACTIONS(1179), 1, + anon_sym_or, ACTIONS(1286), 1, - anon_sym_DOT, - STATE(729), 1, - aux_sym_field_path_repeat1, - ACTIONS(1294), 6, + anon_sym_AT, + ACTIONS(1246), 6, anon_sym_PIPE, anon_sym_COLON, anon_sym_EQ, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_SEMI, - [47071] = 6, + anon_sym_RBRACK, + [47079] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1288), 1, + ACTIONS(1280), 1, anon_sym_PERCENT, - ACTIONS(1296), 1, + ACTIONS(1288), 1, sym_multstr_end, - STATE(832), 1, + STATE(837), 1, sym_percent, - STATE(747), 2, + STATE(755), 2, sym_chunk_literal_multi, aux_sym_static_string_repeat2, - ACTIONS(1290), 3, + ACTIONS(1282), 3, sym_double_quote, sym_mult_str_literal, sym_str_esc_char, - [47093] = 6, + [47101] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1288), 1, + ACTIONS(1280), 1, anon_sym_PERCENT, - ACTIONS(1298), 1, + ACTIONS(1290), 1, sym_multstr_end, - STATE(832), 1, + STATE(837), 1, sym_percent, - STATE(737), 2, + STATE(736), 2, sym_chunk_literal_multi, aux_sym_static_string_repeat2, - ACTIONS(1290), 3, + ACTIONS(1282), 3, sym_double_quote, sym_mult_str_literal, sym_str_esc_char, - [47115] = 3, + [47123] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1276), 1, + ACTIONS(1248), 1, anon_sym_EQ, - ACTIONS(1274), 7, + ACTIONS(1246), 7, anon_sym_PIPE, anon_sym_COLON, anon_sym_EQ_GT, @@ -43780,290 +43782,288 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_if, anon_sym_RBRACK, - [47131] = 6, + [47139] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1288), 1, + ACTIONS(1294), 1, + anon_sym_DOT, + STATE(735), 1, + aux_sym_field_path_repeat1, + ACTIONS(1292), 6, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + [47157] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1280), 1, anon_sym_PERCENT, - ACTIONS(1300), 1, + ACTIONS(1297), 1, sym_multstr_end, - STATE(832), 1, + STATE(837), 1, sym_percent, - STATE(737), 2, + STATE(751), 2, sym_chunk_literal_multi, aux_sym_static_string_repeat2, - ACTIONS(1290), 3, + ACTIONS(1282), 3, sym_double_quote, sym_mult_str_literal, sym_str_esc_char, - [47153] = 6, + [47179] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1288), 1, + ACTIONS(1280), 1, anon_sym_PERCENT, - ACTIONS(1302), 1, + ACTIONS(1299), 1, sym_multstr_end, - STATE(832), 1, + STATE(837), 1, sym_percent, - STATE(737), 2, + STATE(751), 2, sym_chunk_literal_multi, aux_sym_static_string_repeat2, - ACTIONS(1290), 3, + ACTIONS(1282), 3, sym_double_quote, sym_mult_str_literal, sym_str_esc_char, - [47175] = 6, + [47201] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1304), 1, + ACTIONS(1280), 1, anon_sym_PERCENT, - ACTIONS(1310), 1, + ACTIONS(1301), 1, sym_multstr_end, - STATE(832), 1, + STATE(837), 1, sym_percent, - STATE(737), 2, + STATE(742), 2, sym_chunk_literal_multi, aux_sym_static_string_repeat2, - ACTIONS(1307), 3, + ACTIONS(1282), 3, sym_double_quote, sym_mult_str_literal, sym_str_esc_char, - [47197] = 3, + [47223] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1242), 1, - anon_sym_EQ, - ACTIONS(1240), 7, + ACTIONS(1305), 1, + anon_sym_DOT, + STATE(735), 1, + aux_sym_field_path_repeat1, + ACTIONS(1303), 6, anon_sym_PIPE, anon_sym_COLON, - anon_sym_EQ_GT, + anon_sym_EQ, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_if, - anon_sym_RBRACK, - [47213] = 3, + anon_sym_SEMI, + [47241] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1270), 1, - anon_sym_EQ, - ACTIONS(1268), 7, + ACTIONS(1305), 1, + anon_sym_DOT, + STATE(739), 1, + aux_sym_field_path_repeat1, + ACTIONS(1307), 6, anon_sym_PIPE, anon_sym_COLON, - anon_sym_EQ_GT, + anon_sym_EQ, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_if, - anon_sym_RBRACK, - [47229] = 6, + anon_sym_SEMI, + [47259] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1288), 1, + ACTIONS(1280), 1, anon_sym_PERCENT, - ACTIONS(1312), 1, + ACTIONS(1309), 1, sym_multstr_end, - STATE(832), 1, + STATE(837), 1, sym_percent, - STATE(736), 2, + STATE(751), 2, sym_chunk_literal_multi, aux_sym_static_string_repeat2, - ACTIONS(1290), 3, + ACTIONS(1282), 3, sym_double_quote, sym_mult_str_literal, sym_str_esc_char, - [47251] = 6, + [47281] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1288), 1, + ACTIONS(1280), 1, anon_sym_PERCENT, - ACTIONS(1314), 1, + ACTIONS(1311), 1, sym_multstr_end, - STATE(832), 1, + STATE(837), 1, sym_percent, - STATE(737), 2, + STATE(751), 2, sym_chunk_literal_multi, aux_sym_static_string_repeat2, - ACTIONS(1290), 3, + ACTIONS(1282), 3, sym_double_quote, sym_mult_str_literal, sym_str_esc_char, - [47273] = 6, + [47303] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1288), 1, + ACTIONS(1280), 1, anon_sym_PERCENT, - ACTIONS(1316), 1, + ACTIONS(1313), 1, sym_multstr_end, - STATE(832), 1, + STATE(837), 1, sym_percent, - STATE(735), 2, + STATE(737), 2, sym_chunk_literal_multi, aux_sym_static_string_repeat2, - ACTIONS(1290), 3, + ACTIONS(1282), 3, sym_double_quote, sym_mult_str_literal, sym_str_esc_char, - [47295] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1320), 1, - anon_sym_DOT, - STATE(743), 1, - aux_sym_field_path_repeat1, - ACTIONS(1318), 6, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - [47313] = 6, + [47325] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1288), 1, + ACTIONS(1280), 1, anon_sym_PERCENT, - ACTIONS(1323), 1, + ACTIONS(1315), 1, sym_multstr_end, - STATE(832), 1, + STATE(837), 1, sym_percent, - STATE(737), 2, + STATE(751), 2, sym_chunk_literal_multi, aux_sym_static_string_repeat2, - ACTIONS(1290), 3, + ACTIONS(1282), 3, sym_double_quote, sym_mult_str_literal, sym_str_esc_char, - [47335] = 6, + [47347] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1288), 1, + ACTIONS(1280), 1, anon_sym_PERCENT, - ACTIONS(1325), 1, + ACTIONS(1317), 1, sym_multstr_end, - STATE(832), 1, + STATE(837), 1, sym_percent, - STATE(746), 2, + STATE(741), 2, sym_chunk_literal_multi, aux_sym_static_string_repeat2, - ACTIONS(1290), 3, + ACTIONS(1282), 3, sym_double_quote, sym_mult_str_literal, sym_str_esc_char, - [47357] = 6, + [47369] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1288), 1, - anon_sym_PERCENT, - ACTIONS(1327), 1, - sym_multstr_end, - STATE(832), 1, - sym_percent, - STATE(737), 2, - sym_chunk_literal_multi, - aux_sym_static_string_repeat2, - ACTIONS(1290), 3, - sym_double_quote, - sym_mult_str_literal, - sym_str_esc_char, - [47379] = 6, + ACTIONS(795), 1, + anon_sym_EQ, + ACTIONS(765), 7, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_EQ_GT, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_if, + anon_sym_RBRACK, + [47385] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1288), 1, + ACTIONS(1244), 1, + anon_sym_EQ, + ACTIONS(1242), 7, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_EQ_GT, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_if, + anon_sym_RBRACK, + [47401] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1280), 1, anon_sym_PERCENT, - ACTIONS(1329), 1, + ACTIONS(1319), 1, sym_multstr_end, - STATE(832), 1, + STATE(837), 1, sym_percent, - STATE(737), 2, + STATE(750), 2, sym_chunk_literal_multi, aux_sym_static_string_repeat2, - ACTIONS(1290), 3, + ACTIONS(1282), 3, sym_double_quote, sym_mult_str_literal, sym_str_esc_char, - [47401] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1187), 1, - anon_sym_or, - ACTIONS(1331), 1, - anon_sym_AT, - ACTIONS(1240), 6, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RBRACK, - [47419] = 6, + [47423] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1288), 1, + ACTIONS(1280), 1, anon_sym_PERCENT, - ACTIONS(1333), 1, + ACTIONS(1321), 1, sym_multstr_end, - STATE(832), 1, + STATE(837), 1, sym_percent, - STATE(737), 2, + STATE(744), 2, sym_chunk_literal_multi, aux_sym_static_string_repeat2, - ACTIONS(1290), 3, + ACTIONS(1282), 3, sym_double_quote, sym_mult_str_literal, sym_str_esc_char, - [47441] = 6, + [47445] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1288), 1, + ACTIONS(1280), 1, anon_sym_PERCENT, - ACTIONS(1335), 1, + ACTIONS(1323), 1, sym_multstr_end, - STATE(832), 1, + STATE(837), 1, sym_percent, - STATE(749), 2, + STATE(751), 2, sym_chunk_literal_multi, aux_sym_static_string_repeat2, - ACTIONS(1290), 3, + ACTIONS(1282), 3, sym_double_quote, sym_mult_str_literal, sym_str_esc_char, - [47463] = 6, + [47467] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1288), 1, + ACTIONS(1325), 1, anon_sym_PERCENT, - ACTIONS(1337), 1, + ACTIONS(1331), 1, sym_multstr_end, - STATE(832), 1, + STATE(837), 1, sym_percent, - STATE(737), 2, + STATE(751), 2, sym_chunk_literal_multi, aux_sym_static_string_repeat2, - ACTIONS(1290), 3, + ACTIONS(1328), 3, sym_double_quote, sym_mult_str_literal, sym_str_esc_char, - [47485] = 6, + [47489] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1288), 1, + ACTIONS(1280), 1, anon_sym_PERCENT, - ACTIONS(1339), 1, + ACTIONS(1333), 1, sym_multstr_end, - STATE(832), 1, + STATE(837), 1, sym_percent, - STATE(751), 2, + STATE(756), 2, sym_chunk_literal_multi, aux_sym_static_string_repeat2, - ACTIONS(1290), 3, + ACTIONS(1282), 3, sym_double_quote, sym_mult_str_literal, sym_str_esc_char, - [47507] = 3, + [47511] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(871), 1, + ACTIONS(1228), 1, anon_sym_EQ, - ACTIONS(765), 7, + ACTIONS(1226), 7, anon_sym_PIPE, anon_sym_COLON, anon_sym_EQ_GT, @@ -44071,314 +44071,347 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_if, anon_sym_RBRACK, - [47523] = 6, + [47527] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1288), 1, + ACTIONS(1280), 1, anon_sym_PERCENT, - ACTIONS(1341), 1, + ACTIONS(1335), 1, sym_multstr_end, - STATE(832), 1, + STATE(837), 1, sym_percent, - STATE(733), 2, + STATE(730), 2, sym_chunk_literal_multi, aux_sym_static_string_repeat2, - ACTIONS(1290), 3, + ACTIONS(1282), 3, sym_double_quote, sym_mult_str_literal, sym_str_esc_char, - [47545] = 6, + [47549] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1288), 1, + ACTIONS(1280), 1, anon_sym_PERCENT, - ACTIONS(1343), 1, + ACTIONS(1337), 1, sym_multstr_end, - STATE(832), 1, + STATE(837), 1, sym_percent, - STATE(744), 2, + STATE(751), 2, + sym_chunk_literal_multi, + aux_sym_static_string_repeat2, + ACTIONS(1282), 3, + sym_double_quote, + sym_mult_str_literal, + sym_str_esc_char, + [47571] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1280), 1, + anon_sym_PERCENT, + ACTIONS(1339), 1, + sym_multstr_end, + STATE(837), 1, + sym_percent, + STATE(751), 2, sym_chunk_literal_multi, aux_sym_static_string_repeat2, - ACTIONS(1290), 3, + ACTIONS(1282), 3, sym_double_quote, sym_mult_str_literal, sym_str_esc_char, - [47567] = 7, + [47593] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1345), 1, - anon_sym_PERCENT, - ACTIONS(1347), 1, - sym_str_literal, - ACTIONS(1349), 1, - sym_str_esc_char, - ACTIONS(1351), 1, - sym__str_end, - STATE(855), 1, - sym_percent, - STATE(786), 2, - sym_chunk_literal_single, - aux_sym_static_string_repeat1, - [47590] = 7, + ACTIONS(451), 7, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_SEMI, + [47606] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1329), 1, - sym__str_end, - ACTIONS(1345), 1, + ACTIONS(1341), 1, anon_sym_PERCENT, - ACTIONS(1347), 1, + ACTIONS(1343), 1, sym_str_literal, - ACTIONS(1349), 1, + ACTIONS(1345), 1, sym_str_esc_char, + ACTIONS(1347), 1, + sym__str_end, STATE(855), 1, sym_percent, - STATE(799), 2, + STATE(792), 2, sym_chunk_literal_single, aux_sym_static_string_repeat1, - [47613] = 7, + [47629] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1343), 1, + ACTIONS(1284), 1, sym__str_end, - ACTIONS(1345), 1, + ACTIONS(1341), 1, anon_sym_PERCENT, - ACTIONS(1347), 1, + ACTIONS(1343), 1, sym_str_literal, - ACTIONS(1349), 1, + ACTIONS(1345), 1, sym_str_esc_char, STATE(855), 1, sym_percent, - STATE(776), 2, + STATE(798), 2, sym_chunk_literal_single, aux_sym_static_string_repeat1, - [47636] = 7, + [47652] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1345), 1, + ACTIONS(1341), 1, anon_sym_PERCENT, - ACTIONS(1347), 1, + ACTIONS(1343), 1, sym_str_literal, - ACTIONS(1349), 1, + ACTIONS(1345), 1, sym_str_esc_char, - ACTIONS(1353), 1, + ACTIONS(1349), 1, sym__str_end, STATE(855), 1, sym_percent, - STATE(799), 2, + STATE(798), 2, sym_chunk_literal_single, aux_sym_static_string_repeat1, - [47659] = 7, + [47675] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1345), 1, + ACTIONS(1290), 1, + sym__str_end, + ACTIONS(1341), 1, anon_sym_PERCENT, - ACTIONS(1347), 1, + ACTIONS(1343), 1, sym_str_literal, - ACTIONS(1349), 1, + ACTIONS(1345), 1, sym_str_esc_char, - ACTIONS(1355), 1, - sym__str_end, STATE(855), 1, sym_percent, - STATE(800), 2, + STATE(766), 2, sym_chunk_literal_single, aux_sym_static_string_repeat1, - [47682] = 7, + [47698] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1345), 1, + ACTIONS(1292), 7, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_SEMI, + [47711] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1341), 1, anon_sym_PERCENT, - ACTIONS(1347), 1, + ACTIONS(1343), 1, sym_str_literal, - ACTIONS(1349), 1, + ACTIONS(1345), 1, sym_str_esc_char, - ACTIONS(1357), 1, + ACTIONS(1351), 1, sym__str_end, STATE(855), 1, sym_percent, - STATE(799), 2, + STATE(798), 2, sym_chunk_literal_single, aux_sym_static_string_repeat1, - [47705] = 7, + [47734] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1345), 1, + ACTIONS(1333), 1, + sym__str_end, + ACTIONS(1341), 1, anon_sym_PERCENT, - ACTIONS(1347), 1, + ACTIONS(1343), 1, sym_str_literal, - ACTIONS(1349), 1, + ACTIONS(1345), 1, sym_str_esc_char, - ACTIONS(1359), 1, - sym__str_end, STATE(855), 1, sym_percent, - STATE(799), 2, + STATE(779), 2, sym_chunk_literal_single, aux_sym_static_string_repeat1, - [47728] = 7, + [47757] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1345), 1, + ACTIONS(1341), 1, anon_sym_PERCENT, - ACTIONS(1347), 1, + ACTIONS(1343), 1, sym_str_literal, - ACTIONS(1349), 1, + ACTIONS(1345), 1, sym_str_esc_char, - ACTIONS(1361), 1, + ACTIONS(1353), 1, sym__str_end, STATE(855), 1, sym_percent, - STATE(762), 2, + STATE(800), 2, sym_chunk_literal_single, aux_sym_static_string_repeat1, - [47751] = 7, + [47780] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1312), 1, + ACTIONS(1297), 1, sym__str_end, - ACTIONS(1345), 1, + ACTIONS(1341), 1, anon_sym_PERCENT, - ACTIONS(1347), 1, + ACTIONS(1343), 1, sym_str_literal, - ACTIONS(1349), 1, + ACTIONS(1345), 1, sym_str_esc_char, STATE(855), 1, sym_percent, STATE(798), 2, sym_chunk_literal_single, aux_sym_static_string_repeat1, - [47774] = 7, + [47803] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1300), 1, - sym__str_end, - ACTIONS(1345), 1, + ACTIONS(1341), 1, anon_sym_PERCENT, - ACTIONS(1347), 1, + ACTIONS(1343), 1, sym_str_literal, - ACTIONS(1349), 1, + ACTIONS(1345), 1, sym_str_esc_char, + ACTIONS(1355), 1, + sym__str_end, STATE(855), 1, sym_percent, - STATE(799), 2, + STATE(760), 2, sym_chunk_literal_single, aux_sym_static_string_repeat1, - [47797] = 7, + [47826] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1327), 1, + ACTIONS(1299), 1, sym__str_end, - ACTIONS(1345), 1, + ACTIONS(1341), 1, anon_sym_PERCENT, - ACTIONS(1347), 1, + ACTIONS(1343), 1, sym_str_literal, - ACTIONS(1349), 1, + ACTIONS(1345), 1, sym_str_esc_char, STATE(855), 1, sym_percent, - STATE(799), 2, + STATE(798), 2, sym_chunk_literal_single, aux_sym_static_string_repeat1, - [47820] = 7, + [47849] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1345), 1, + ACTIONS(1341), 1, anon_sym_PERCENT, - ACTIONS(1347), 1, + ACTIONS(1343), 1, sym_str_literal, - ACTIONS(1349), 1, + ACTIONS(1345), 1, sym_str_esc_char, - ACTIONS(1363), 1, + ACTIONS(1357), 1, sym__str_end, STATE(855), 1, sym_percent, - STATE(759), 2, + STATE(775), 2, sym_chunk_literal_single, aux_sym_static_string_repeat1, - [47843] = 7, + [47872] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1314), 1, - sym__str_end, - ACTIONS(1345), 1, + ACTIONS(475), 7, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_SEMI, + [47885] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1341), 1, anon_sym_PERCENT, - ACTIONS(1347), 1, + ACTIONS(1343), 1, sym_str_literal, - ACTIONS(1349), 1, + ACTIONS(1345), 1, sym_str_esc_char, + ACTIONS(1359), 1, + sym__str_end, STATE(855), 1, sym_percent, - STATE(799), 2, + STATE(773), 2, sym_chunk_literal_single, aux_sym_static_string_repeat1, - [47866] = 7, + [47908] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1292), 1, + ACTIONS(1309), 1, sym__str_end, - ACTIONS(1345), 1, + ACTIONS(1341), 1, anon_sym_PERCENT, - ACTIONS(1347), 1, + ACTIONS(1343), 1, sym_str_literal, - ACTIONS(1349), 1, + ACTIONS(1345), 1, sym_str_esc_char, STATE(855), 1, sym_percent, - STATE(768), 2, + STATE(798), 2, sym_chunk_literal_single, aux_sym_static_string_repeat1, - [47889] = 7, + [47931] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1345), 1, + ACTIONS(1341), 1, anon_sym_PERCENT, - ACTIONS(1347), 1, + ACTIONS(1343), 1, sym_str_literal, - ACTIONS(1349), 1, + ACTIONS(1345), 1, sym_str_esc_char, - ACTIONS(1365), 1, + ACTIONS(1361), 1, sym__str_end, STATE(855), 1, sym_percent, - STATE(799), 2, + STATE(798), 2, sym_chunk_literal_single, aux_sym_static_string_repeat1, - [47912] = 7, + [47954] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1345), 1, - anon_sym_PERCENT, - ACTIONS(1347), 1, - sym_str_literal, - ACTIONS(1349), 1, - sym_str_esc_char, - ACTIONS(1367), 1, - sym__str_end, - STATE(855), 1, - sym_percent, - STATE(770), 2, - sym_chunk_literal_single, - aux_sym_static_string_repeat1, - [47935] = 7, + ACTIONS(950), 1, + sym_ident, + ACTIONS(960), 1, + sym_multstr_start, + ACTIONS(962), 1, + sym__str_start, + STATE(762), 1, + sym_field_path_elem, + STATE(789), 1, + sym_str_chunks, + STATE(776), 2, + sym_str_chunks_single, + sym_str_chunks_multi, + [47977] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1333), 1, - sym__str_end, - ACTIONS(1345), 1, + ACTIONS(1341), 1, anon_sym_PERCENT, - ACTIONS(1347), 1, + ACTIONS(1343), 1, sym_str_literal, - ACTIONS(1349), 1, + ACTIONS(1345), 1, sym_str_esc_char, + ACTIONS(1363), 1, + sym__str_end, STATE(855), 1, sym_percent, - STATE(799), 2, + STATE(798), 2, sym_chunk_literal_single, aux_sym_static_string_repeat1, - [47958] = 2, + [48000] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1318), 7, + ACTIONS(395), 7, anon_sym_PIPE, anon_sym_COLON, anon_sym_EQ, @@ -44386,203 +44419,202 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_DOT, anon_sym_SEMI, - [47971] = 7, + [48013] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1335), 1, + ACTIONS(1317), 1, sym__str_end, - ACTIONS(1345), 1, + ACTIONS(1341), 1, anon_sym_PERCENT, - ACTIONS(1347), 1, + ACTIONS(1343), 1, sym_str_literal, - ACTIONS(1349), 1, + ACTIONS(1345), 1, sym_str_esc_char, STATE(855), 1, sym_percent, STATE(772), 2, sym_chunk_literal_single, aux_sym_static_string_repeat1, - [47994] = 7, + [48036] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1345), 1, + ACTIONS(1337), 1, + sym__str_end, + ACTIONS(1341), 1, anon_sym_PERCENT, - ACTIONS(1347), 1, + ACTIONS(1343), 1, sym_str_literal, - ACTIONS(1349), 1, + ACTIONS(1345), 1, sym_str_esc_char, - ACTIONS(1369), 1, - sym__str_end, STATE(855), 1, sym_percent, - STATE(761), 2, + STATE(798), 2, sym_chunk_literal_single, aux_sym_static_string_repeat1, - [48017] = 7, + [48059] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1323), 1, + ACTIONS(1339), 1, sym__str_end, - ACTIONS(1345), 1, + ACTIONS(1341), 1, anon_sym_PERCENT, - ACTIONS(1347), 1, + ACTIONS(1343), 1, sym_str_literal, - ACTIONS(1349), 1, + ACTIONS(1345), 1, sym_str_esc_char, STATE(855), 1, sym_percent, - STATE(799), 2, + STATE(798), 2, sym_chunk_literal_single, aux_sym_static_string_repeat1, - [48040] = 7, + [48082] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1316), 1, + ACTIONS(1301), 1, sym__str_end, - ACTIONS(1345), 1, + ACTIONS(1341), 1, anon_sym_PERCENT, - ACTIONS(1347), 1, + ACTIONS(1343), 1, sym_str_literal, - ACTIONS(1349), 1, + ACTIONS(1345), 1, sym_str_esc_char, STATE(855), 1, sym_percent, - STATE(765), 2, + STATE(787), 2, sym_chunk_literal_single, aux_sym_static_string_repeat1, - [48063] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(407), 7, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_SEMI, - [48076] = 7, + [48105] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1345), 1, + ACTIONS(1335), 1, + sym__str_end, + ACTIONS(1341), 1, anon_sym_PERCENT, - ACTIONS(1347), 1, + ACTIONS(1343), 1, sym_str_literal, - ACTIONS(1349), 1, + ACTIONS(1345), 1, sym_str_esc_char, - ACTIONS(1371), 1, - sym__str_end, STATE(855), 1, sym_percent, - STATE(799), 2, + STATE(759), 2, sym_chunk_literal_single, aux_sym_static_string_repeat1, - [48099] = 7, + [48128] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1325), 1, + ACTIONS(1313), 1, sym__str_end, - ACTIONS(1345), 1, + ACTIONS(1341), 1, anon_sym_PERCENT, - ACTIONS(1347), 1, + ACTIONS(1343), 1, sym_str_literal, - ACTIONS(1349), 1, + ACTIONS(1345), 1, sym_str_esc_char, STATE(855), 1, sym_percent, - STATE(766), 2, + STATE(768), 2, sym_chunk_literal_single, aux_sym_static_string_repeat1, - [48122] = 2, + [48151] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(471), 7, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_SEMI, - [48135] = 7, + ACTIONS(1315), 1, + sym__str_end, + ACTIONS(1341), 1, + anon_sym_PERCENT, + ACTIONS(1343), 1, + sym_str_literal, + ACTIONS(1345), 1, + sym_str_esc_char, + STATE(855), 1, + sym_percent, + STATE(798), 2, + sym_chunk_literal_single, + aux_sym_static_string_repeat1, + [48174] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1345), 1, + ACTIONS(1341), 1, anon_sym_PERCENT, - ACTIONS(1347), 1, + ACTIONS(1343), 1, sym_str_literal, - ACTIONS(1349), 1, + ACTIONS(1345), 1, sym_str_esc_char, - ACTIONS(1373), 1, + ACTIONS(1365), 1, sym__str_end, STATE(855), 1, sym_percent, - STATE(799), 2, + STATE(763), 2, sym_chunk_literal_single, aux_sym_static_string_repeat1, - [48158] = 7, + [48197] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1345), 1, + ACTIONS(1341), 1, anon_sym_PERCENT, - ACTIONS(1347), 1, + ACTIONS(1343), 1, sym_str_literal, - ACTIONS(1349), 1, + ACTIONS(1345), 1, sym_str_esc_char, - ACTIONS(1375), 1, + ACTIONS(1367), 1, sym__str_end, STATE(855), 1, sym_percent, - STATE(799), 2, + STATE(798), 2, sym_chunk_literal_single, aux_sym_static_string_repeat1, - [48181] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(455), 7, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_SEMI, - [48194] = 7, + [48220] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1345), 1, + ACTIONS(1341), 1, anon_sym_PERCENT, - ACTIONS(1347), 1, + ACTIONS(1343), 1, sym_str_literal, - ACTIONS(1349), 1, + ACTIONS(1345), 1, sym_str_esc_char, - ACTIONS(1377), 1, + ACTIONS(1369), 1, sym__str_end, STATE(855), 1, sym_percent, - STATE(782), 2, + STATE(798), 2, sym_chunk_literal_single, aux_sym_static_string_repeat1, - [48217] = 7, + [48243] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1345), 1, + ACTIONS(1311), 1, + sym__str_end, + ACTIONS(1341), 1, anon_sym_PERCENT, - ACTIONS(1347), 1, + ACTIONS(1343), 1, sym_str_literal, - ACTIONS(1349), 1, + ACTIONS(1345), 1, sym_str_esc_char, - ACTIONS(1379), 1, + STATE(855), 1, + sym_percent, + STATE(798), 2, + sym_chunk_literal_single, + aux_sym_static_string_repeat1, + [48266] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1288), 1, sym__str_end, + ACTIONS(1341), 1, + anon_sym_PERCENT, + ACTIONS(1343), 1, + sym_str_literal, + ACTIONS(1345), 1, + sym_str_esc_char, STATE(855), 1, sym_percent, - STATE(799), 2, + STATE(778), 2, sym_chunk_literal_single, aux_sym_static_string_repeat1, - [48240] = 2, + [48289] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(399), 7, + ACTIONS(1371), 7, anon_sym_PIPE, anon_sym_COLON, anon_sym_EQ, @@ -44590,74 +44622,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_DOT, anon_sym_SEMI, - [48253] = 7, + [48302] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1345), 1, + ACTIONS(1341), 1, anon_sym_PERCENT, - ACTIONS(1347), 1, + ACTIONS(1343), 1, sym_str_literal, - ACTIONS(1349), 1, + ACTIONS(1345), 1, sym_str_esc_char, - ACTIONS(1381), 1, + ACTIONS(1373), 1, sym__str_end, STATE(855), 1, sym_percent, - STATE(783), 2, + STATE(786), 2, sym_chunk_literal_single, aux_sym_static_string_repeat1, - [48276] = 7, + [48325] = 7, ACTIONS(3), 1, sym_comment, + ACTIONS(1321), 1, + sym__str_end, + ACTIONS(1341), 1, + anon_sym_PERCENT, + ACTIONS(1343), 1, + sym_str_literal, ACTIONS(1345), 1, + sym_str_esc_char, + STATE(855), 1, + sym_percent, + STATE(783), 2, + sym_chunk_literal_single, + aux_sym_static_string_repeat1, + [48348] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1341), 1, anon_sym_PERCENT, - ACTIONS(1347), 1, + ACTIONS(1343), 1, sym_str_literal, - ACTIONS(1349), 1, + ACTIONS(1345), 1, sym_str_esc_char, - ACTIONS(1383), 1, + ACTIONS(1375), 1, sym__str_end, STATE(855), 1, sym_percent, - STATE(779), 2, + STATE(798), 2, sym_chunk_literal_single, aux_sym_static_string_repeat1, - [48299] = 7, + [48371] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(1341), 1, - sym__str_end, - ACTIONS(1345), 1, anon_sym_PERCENT, - ACTIONS(1347), 1, + ACTIONS(1343), 1, sym_str_literal, - ACTIONS(1349), 1, + ACTIONS(1345), 1, sym_str_esc_char, + ACTIONS(1377), 1, + sym__str_end, STATE(855), 1, sym_percent, STATE(794), 2, sym_chunk_literal_single, aux_sym_static_string_repeat1, - [48322] = 7, + [48394] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1296), 1, - sym__str_end, + ACTIONS(1341), 1, + anon_sym_PERCENT, + ACTIONS(1343), 1, + sym_str_literal, ACTIONS(1345), 1, + sym_str_esc_char, + ACTIONS(1379), 1, + sym__str_end, + STATE(855), 1, + sym_percent, + STATE(798), 2, + sym_chunk_literal_single, + aux_sym_static_string_repeat1, + [48417] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1341), 1, anon_sym_PERCENT, - ACTIONS(1347), 1, + ACTIONS(1343), 1, sym_str_literal, - ACTIONS(1349), 1, + ACTIONS(1345), 1, sym_str_esc_char, + ACTIONS(1381), 1, + sym__str_end, STATE(855), 1, sym_percent, - STATE(757), 2, + STATE(785), 2, sym_chunk_literal_single, aux_sym_static_string_repeat1, - [48345] = 2, + [48440] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(495), 7, + ACTIONS(411), 7, anon_sym_PIPE, anon_sym_COLON, anon_sym_EQ, @@ -44665,10 +44729,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_DOT, anon_sym_SEMI, - [48358] = 2, + [48453] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1385), 7, + ACTIONS(419), 7, anon_sym_PIPE, anon_sym_COLON, anon_sym_EQ, @@ -44676,94 +44740,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_DOT, anon_sym_SEMI, - [48371] = 7, + [48466] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 1, - sym__str_end, - ACTIONS(1345), 1, + ACTIONS(1383), 1, anon_sym_PERCENT, - ACTIONS(1347), 1, + ACTIONS(1386), 1, sym_str_literal, - ACTIONS(1349), 1, + ACTIONS(1389), 1, sym_str_esc_char, - STATE(855), 1, - sym_percent, - STATE(799), 2, - sym_chunk_literal_single, - aux_sym_static_string_repeat1, - [48394] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1337), 1, + ACTIONS(1392), 1, sym__str_end, - ACTIONS(1345), 1, - anon_sym_PERCENT, - ACTIONS(1347), 1, - sym_str_literal, - ACTIONS(1349), 1, - sym_str_esc_char, STATE(855), 1, sym_percent, - STATE(799), 2, + STATE(798), 2, sym_chunk_literal_single, aux_sym_static_string_repeat1, - [48417] = 7, + [48489] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1339), 1, - sym__str_end, - ACTIONS(1345), 1, + ACTIONS(1341), 1, anon_sym_PERCENT, - ACTIONS(1347), 1, + ACTIONS(1343), 1, sym_str_literal, - ACTIONS(1349), 1, + ACTIONS(1345), 1, sym_str_esc_char, + ACTIONS(1394), 1, + sym__str_end, STATE(855), 1, sym_percent, - STATE(795), 2, + STATE(798), 2, sym_chunk_literal_single, aux_sym_static_string_repeat1, - [48440] = 7, + [48512] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1345), 1, + ACTIONS(1341), 1, anon_sym_PERCENT, - ACTIONS(1347), 1, + ACTIONS(1343), 1, sym_str_literal, - ACTIONS(1349), 1, + ACTIONS(1345), 1, sym_str_esc_char, - ACTIONS(1387), 1, + ACTIONS(1396), 1, sym__str_end, STATE(855), 1, sym_percent, - STATE(799), 2, + STATE(798), 2, sym_chunk_literal_single, aux_sym_static_string_repeat1, - [48463] = 7, + [48535] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 1, + ACTIONS(1319), 1, sym__str_end, - ACTIONS(1345), 1, + ACTIONS(1341), 1, anon_sym_PERCENT, - ACTIONS(1347), 1, + ACTIONS(1343), 1, sym_str_literal, - ACTIONS(1349), 1, + ACTIONS(1345), 1, sym_str_esc_char, STATE(855), 1, sym_percent, - STATE(799), 2, + STATE(803), 2, sym_chunk_literal_single, aux_sym_static_string_repeat1, - [48486] = 7, + [48558] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1389), 1, + ACTIONS(1341), 1, anon_sym_PERCENT, - ACTIONS(1392), 1, + ACTIONS(1343), 1, sym_str_literal, - ACTIONS(1395), 1, + ACTIONS(1345), 1, sym_str_esc_char, ACTIONS(1398), 1, sym__str_end, @@ -44772,554 +44820,531 @@ static const uint16_t ts_small_parse_table[] = { STATE(799), 2, sym_chunk_literal_single, aux_sym_static_string_repeat1, - [48509] = 7, + [48581] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1345), 1, + ACTIONS(1323), 1, + sym__str_end, + ACTIONS(1341), 1, anon_sym_PERCENT, - ACTIONS(1347), 1, + ACTIONS(1343), 1, sym_str_literal, - ACTIONS(1349), 1, + ACTIONS(1345), 1, sym_str_esc_char, - ACTIONS(1400), 1, - sym__str_end, STATE(855), 1, sym_percent, - STATE(799), 2, + STATE(798), 2, sym_chunk_literal_single, aux_sym_static_string_repeat1, - [48532] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(942), 1, - sym_ident, - ACTIONS(952), 1, - sym_multstr_start, - ACTIONS(954), 1, - sym__str_start, - STATE(773), 1, - sym_field_path_elem, - STATE(793), 1, - sym_str_chunks, - STATE(778), 2, - sym_str_chunks_single, - sym_str_chunks_multi, - [48555] = 7, + [48604] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1345), 1, + ACTIONS(1402), 2, + sym_multstr_end, + sym_interpolation_start, + ACTIONS(1400), 4, anon_sym_PERCENT, - ACTIONS(1347), 1, - sym_str_literal, - ACTIONS(1349), 1, + sym_double_quote, + sym_mult_str_literal, sym_str_esc_char, - ACTIONS(1402), 1, - sym__str_end, - STATE(855), 1, - sym_percent, - STATE(797), 2, - sym_chunk_literal_single, - aux_sym_static_string_repeat1, - [48578] = 7, + [48618] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(763), 1, + sym_raw_enum_tag, + ACTIONS(773), 1, + sym_quoted_enum_tag_start, + ACTIONS(1404), 1, + anon_sym_SEMI, + ACTIONS(1406), 1, + anon_sym_PIPE_RBRACK, + STATE(668), 1, + sym_quoted_enum_tag, + STATE(844), 1, + sym_enum_tag, + [48640] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1404), 1, + ACTIONS(563), 1, + anon_sym_COLON, + ACTIONS(1117), 1, + anon_sym_PIPE, + ACTIONS(1408), 1, + anon_sym_EQ, + STATE(1145), 1, + sym_annot, + STATE(667), 2, + sym_annot_atom, + aux_sym_annot_repeat1, + [48660] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1410), 1, sym_ident, - ACTIONS(1406), 1, + ACTIONS(1412), 1, anon_sym_RBRACE, - ACTIONS(1408), 1, + ACTIONS(1414), 1, anon_sym_DOT_DOT, - STATE(841), 1, + STATE(833), 1, aux_sym_record_pattern_repeat1, - STATE(946), 1, + STATE(968), 1, sym_field_pattern, - STATE(1147), 1, + STATE(1073), 1, sym_last_field_pat, - [48600] = 7, + [48682] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(763), 1, sym_raw_enum_tag, ACTIONS(773), 1, sym_quoted_enum_tag_start, - ACTIONS(1410), 1, + ACTIONS(1416), 1, anon_sym_SEMI, - ACTIONS(1412), 1, + ACTIONS(1418), 1, anon_sym_PIPE_RBRACK, - STATE(664), 1, + STATE(668), 1, sym_quoted_enum_tag, - STATE(846), 1, + STATE(851), 1, sym_enum_tag, - [48622] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1416), 2, - sym_multstr_end, - sym_interpolation_start, - ACTIONS(1414), 4, - anon_sym_PERCENT, - sym_double_quote, - sym_mult_str_literal, - sym_str_esc_char, - [48636] = 7, + [48704] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(763), 1, sym_raw_enum_tag, ACTIONS(773), 1, sym_quoted_enum_tag_start, - ACTIONS(1418), 1, - anon_sym_SEMI, ACTIONS(1420), 1, + anon_sym_SEMI, + ACTIONS(1422), 1, anon_sym_PIPE_RBRACK, - STATE(664), 1, + STATE(668), 1, sym_quoted_enum_tag, - STATE(848), 1, + STATE(847), 1, sym_enum_tag, - [48658] = 7, + [48726] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1426), 2, + sym_multstr_end, + sym_interpolation_start, + ACTIONS(1424), 4, + anon_sym_PERCENT, + sym_double_quote, + sym_mult_str_literal, + sym_str_esc_char, + [48740] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1410), 1, + sym_ident, + ACTIONS(1414), 1, + anon_sym_DOT_DOT, + ACTIONS(1428), 1, + anon_sym_RBRACE, + STATE(821), 1, + aux_sym_record_pattern_repeat1, + STATE(968), 1, + sym_field_pattern, + STATE(1087), 1, + sym_last_field_pat, + [48762] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(763), 1, sym_raw_enum_tag, ACTIONS(773), 1, sym_quoted_enum_tag_start, - ACTIONS(1422), 1, + ACTIONS(1430), 1, anon_sym_SEMI, - ACTIONS(1424), 1, + ACTIONS(1432), 1, anon_sym_PIPE_RBRACK, - STATE(664), 1, + STATE(668), 1, sym_quoted_enum_tag, - STATE(852), 1, + STATE(860), 1, sym_enum_tag, - [48680] = 7, + [48784] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(763), 1, sym_raw_enum_tag, ACTIONS(773), 1, sym_quoted_enum_tag_start, - ACTIONS(1426), 1, + ACTIONS(1434), 1, anon_sym_SEMI, - ACTIONS(1428), 1, + ACTIONS(1436), 1, anon_sym_PIPE_RBRACK, - STATE(664), 1, + STATE(668), 1, sym_quoted_enum_tag, - STATE(842), 1, + STATE(850), 1, sym_enum_tag, - [48702] = 7, + [48806] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1404), 1, + ACTIONS(1410), 1, sym_ident, - ACTIONS(1408), 1, + ACTIONS(1414), 1, anon_sym_DOT_DOT, - ACTIONS(1430), 1, + ACTIONS(1438), 1, anon_sym_RBRACE, - STATE(819), 1, + STATE(807), 1, aux_sym_record_pattern_repeat1, - STATE(946), 1, + STATE(968), 1, sym_field_pattern, - STATE(1135), 1, + STATE(1134), 1, sym_last_field_pat, - [48724] = 6, + [48828] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(213), 1, + ACTIONS(111), 1, sym_multstr_start, - ACTIONS(215), 1, + ACTIONS(113), 1, sym__str_start, - ACTIONS(1432), 1, + ACTIONS(1440), 1, sym_ident, - STATE(283), 1, + STATE(120), 1, sym_str_chunks, - STATE(251), 2, + STATE(96), 2, sym_str_chunks_single, sym_str_chunks_multi, - [48744] = 6, + [48848] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(339), 1, + ACTIONS(213), 1, sym_multstr_start, - ACTIONS(341), 1, + ACTIONS(215), 1, sym__str_start, - ACTIONS(1434), 1, + ACTIONS(1442), 1, sym_ident, - STATE(375), 1, + STATE(283), 1, sym_str_chunks, - STATE(406), 2, + STATE(252), 2, sym_str_chunks_single, sym_str_chunks_multi, - [48764] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1438), 2, - sym_multstr_end, - sym_interpolation_start, - ACTIONS(1436), 4, - anon_sym_PERCENT, - sym_double_quote, - sym_mult_str_literal, - sym_str_esc_char, - [48778] = 6, + [48868] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(255), 1, sym_multstr_start, ACTIONS(257), 1, sym__str_start, - ACTIONS(1440), 1, + ACTIONS(1444), 1, sym_ident, STATE(232), 1, sym_str_chunks, - STATE(332), 2, - sym_str_chunks_single, - sym_str_chunks_multi, - [48798] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(111), 1, - sym_multstr_start, - ACTIONS(113), 1, - sym__str_start, - ACTIONS(1442), 1, - sym_ident, - STATE(91), 1, - sym_str_chunks, - STATE(98), 2, + STATE(329), 2, sym_str_chunks_single, sym_str_chunks_multi, - [48818] = 6, + [48888] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(563), 1, - anon_sym_COLON, - ACTIONS(1107), 1, - anon_sym_PIPE, - ACTIONS(1444), 1, - anon_sym_EQ, - STATE(1005), 1, - sym_annot, - STATE(666), 2, - sym_annot_atom, - aux_sym_annot_repeat1, - [48838] = 6, + ACTIONS(1448), 2, + sym_multstr_end, + sym_interpolation_start, + ACTIONS(1446), 4, + anon_sym_PERCENT, + sym_double_quote, + sym_mult_str_literal, + sym_str_esc_char, + [48902] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(297), 1, sym_multstr_start, ACTIONS(299), 1, sym__str_start, - ACTIONS(1446), 1, + ACTIONS(1450), 1, sym_ident, STATE(395), 1, sym_str_chunks, STATE(417), 2, sym_str_chunks_single, sym_str_chunks_multi, - [48858] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - sym_multstr_start, - ACTIONS(47), 1, - sym__str_start, - ACTIONS(1448), 1, - sym_ident, - STATE(224), 1, - sym_str_chunks, - STATE(264), 2, - sym_str_chunks_single, - sym_str_chunks_multi, - [48878] = 2, + [48922] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1095), 6, + ACTIONS(1099), 6, sym_multstr_start, sym__str_start, sym_ident, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_DOT_DOT, - [48890] = 7, + [48934] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1404), 1, + ACTIONS(1410), 1, sym_ident, - ACTIONS(1408), 1, + ACTIONS(1414), 1, anon_sym_DOT_DOT, - ACTIONS(1450), 1, + ACTIONS(1452), 1, anon_sym_RBRACE, - STATE(841), 1, + STATE(833), 1, aux_sym_record_pattern_repeat1, - STATE(946), 1, + STATE(968), 1, sym_field_pattern, - STATE(1113), 1, + STATE(1072), 1, sym_last_field_pat, - [48912] = 3, + [48956] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1454), 2, - sym_multstr_end, - sym_interpolation_start, - ACTIONS(1452), 4, - anon_sym_PERCENT, - sym_double_quote, - sym_mult_str_literal, - sym_str_esc_char, - [48926] = 7, + ACTIONS(563), 1, + anon_sym_COLON, + ACTIONS(1117), 1, + anon_sym_PIPE, + ACTIONS(1454), 1, + anon_sym_EQ, + STATE(1088), 1, + sym_annot, + STATE(667), 2, + sym_annot_atom, + aux_sym_annot_repeat1, + [48976] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(763), 1, - sym_raw_enum_tag, - ACTIONS(773), 1, - sym_quoted_enum_tag_start, + ACTIONS(45), 1, + sym_multstr_start, + ACTIONS(47), 1, + sym__str_start, ACTIONS(1456), 1, - anon_sym_SEMI, - ACTIONS(1458), 1, - anon_sym_PIPE_RBRACK, - STATE(664), 1, - sym_quoted_enum_tag, - STATE(851), 1, - sym_enum_tag, - [48948] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1404), 1, sym_ident, - ACTIONS(1408), 1, - anon_sym_DOT_DOT, - ACTIONS(1460), 1, - anon_sym_RBRACE, - STATE(803), 1, - aux_sym_record_pattern_repeat1, - STATE(946), 1, - sym_field_pattern, - STATE(987), 1, - sym_last_field_pat, - [48970] = 7, + STATE(223), 1, + sym_str_chunks, + STATE(266), 2, + sym_str_chunks_single, + sym_str_chunks_multi, + [48996] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(763), 1, sym_raw_enum_tag, ACTIONS(773), 1, sym_quoted_enum_tag_start, - ACTIONS(1462), 1, + ACTIONS(1458), 1, anon_sym_SEMI, - ACTIONS(1464), 1, + ACTIONS(1460), 1, anon_sym_PIPE_RBRACK, - STATE(664), 1, + STATE(668), 1, sym_quoted_enum_tag, - STATE(844), 1, + STATE(845), 1, sym_enum_tag, - [48992] = 6, + [49018] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(563), 1, - anon_sym_COLON, - ACTIONS(1107), 1, - anon_sym_PIPE, - ACTIONS(1466), 1, + ACTIONS(339), 1, + sym_multstr_start, + ACTIONS(341), 1, + sym__str_start, + ACTIONS(1462), 1, + sym_ident, + STATE(375), 1, + sym_str_chunks, + STATE(406), 2, + sym_str_chunks_single, + sym_str_chunks_multi, + [49038] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1173), 1, + anon_sym_QMARK, + ACTIONS(1464), 1, anon_sym_EQ, - STATE(1091), 1, - sym_annot, - STATE(666), 2, - sym_annot_atom, - aux_sym_annot_repeat1, - [49012] = 5, + STATE(921), 1, + sym_default_annot, + ACTIONS(1466), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [49055] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(723), 1, + ACTIONS(707), 1, anon_sym_COLON, - ACTIONS(1111), 1, - anon_sym_in, + ACTIONS(1121), 1, + ts_builtin_sym_end, ACTIONS(1468), 1, anon_sym_PIPE, - STATE(833), 2, + STATE(831), 2, sym_annot_atom, aux_sym_annot_repeat1, - [49029] = 5, + [49072] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(677), 1, - anon_sym_COLON, - ACTIONS(1111), 1, - sym_interpolation_end, + ACTIONS(1115), 1, + anon_sym_then, ACTIONS(1470), 1, anon_sym_PIPE, - STATE(835), 2, + ACTIONS(1473), 1, + anon_sym_COLON, + STATE(828), 2, sym_annot_atom, aux_sym_annot_repeat1, - [49046] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1472), 2, - anon_sym_PERCENT, - sym_str_esc_char, - ACTIONS(1474), 3, - sym__str_end, - sym_interpolation_start, - sym_str_literal, - [49059] = 3, + [49089] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 2, + ACTIONS(1400), 2, anon_sym_PERCENT, sym_str_esc_char, - ACTIONS(1454), 3, + ACTIONS(1402), 3, sym__str_end, sym_interpolation_start, sym_str_literal, - [49072] = 3, + [49102] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1436), 2, + ACTIONS(1476), 2, anon_sym_PERCENT, sym_str_esc_char, - ACTIONS(1438), 3, + ACTIONS(1478), 3, sym__str_end, sym_interpolation_start, sym_str_literal, - [49085] = 5, + [49115] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(709), 1, - anon_sym_COLON, - ACTIONS(1111), 1, + ACTIONS(1115), 1, ts_builtin_sym_end, - ACTIONS(1476), 1, - anon_sym_PIPE, - STATE(840), 2, - sym_annot_atom, - aux_sym_annot_repeat1, - [49102] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1121), 1, - anon_sym_then, - ACTIONS(1478), 1, + ACTIONS(1480), 1, anon_sym_PIPE, - ACTIONS(1481), 1, + ACTIONS(1483), 1, anon_sym_COLON, STATE(831), 2, sym_annot_atom, aux_sym_annot_repeat1, - [49119] = 3, + [49132] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1416), 1, + ACTIONS(1402), 1, sym_multstr_end, - ACTIONS(1414), 4, + ACTIONS(1400), 4, anon_sym_PERCENT, sym_double_quote, sym_mult_str_literal, sym_str_esc_char, - [49132] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1121), 1, - anon_sym_in, - ACTIONS(1484), 1, - anon_sym_PIPE, - ACTIONS(1487), 1, - anon_sym_COLON, - STATE(833), 2, - sym_annot_atom, - aux_sym_annot_repeat1, - [49149] = 3, + [49145] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1438), 1, - sym_multstr_end, - ACTIONS(1436), 4, - anon_sym_PERCENT, - sym_double_quote, - sym_mult_str_literal, - sym_str_esc_char, + ACTIONS(1486), 1, + sym_ident, + STATE(833), 1, + aux_sym_record_pattern_repeat1, + STATE(1017), 1, + sym_field_pattern, + ACTIONS(1489), 2, + anon_sym_RBRACE, + anon_sym_DOT_DOT, [49162] = 5, ACTIONS(3), 1, sym_comment, + ACTIONS(639), 1, + anon_sym_COLON, ACTIONS(1121), 1, - sym_interpolation_end, - ACTIONS(1490), 1, + anon_sym_else, + ACTIONS(1491), 1, anon_sym_PIPE, - ACTIONS(1493), 1, - anon_sym_COLON, STATE(835), 2, sym_annot_atom, aux_sym_annot_repeat1, [49179] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1179), 1, - anon_sym_QMARK, + ACTIONS(1115), 1, + anon_sym_else, + ACTIONS(1493), 1, + anon_sym_PIPE, ACTIONS(1496), 1, - anon_sym_EQ, - STATE(867), 1, - sym_default_annot, - ACTIONS(1498), 2, - anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_COLON, + STATE(835), 2, + sym_annot_atom, + aux_sym_annot_repeat1, [49196] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(699), 1, + ACTIONS(717), 1, anon_sym_COLON, - ACTIONS(1111), 1, + ACTIONS(1121), 1, anon_sym_then, - ACTIONS(1500), 1, + ACTIONS(1499), 1, anon_sym_PIPE, - STATE(831), 2, + STATE(828), 2, sym_annot_atom, aux_sym_annot_repeat1, - [49213] = 5, + [49213] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1121), 1, - anon_sym_else, - ACTIONS(1502), 1, + ACTIONS(1448), 1, + sym_multstr_end, + ACTIONS(1446), 4, + anon_sym_PERCENT, + sym_double_quote, + sym_mult_str_literal, + sym_str_esc_char, + [49226] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1115), 1, + anon_sym_in, + ACTIONS(1501), 1, anon_sym_PIPE, - ACTIONS(1505), 1, + ACTIONS(1504), 1, anon_sym_COLON, STATE(838), 2, sym_annot_atom, aux_sym_annot_repeat1, - [49230] = 5, + [49243] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(683), 1, - anon_sym_COLON, - ACTIONS(1111), 1, - anon_sym_else, - ACTIONS(1508), 1, + ACTIONS(1115), 1, + sym_interpolation_end, + ACTIONS(1507), 1, anon_sym_PIPE, - STATE(838), 2, + ACTIONS(1510), 1, + anon_sym_COLON, + STATE(839), 2, sym_annot_atom, aux_sym_annot_repeat1, - [49247] = 5, + [49260] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1424), 2, + anon_sym_PERCENT, + sym_str_esc_char, + ACTIONS(1426), 3, + sym__str_end, + sym_interpolation_start, + sym_str_literal, + [49273] = 5, ACTIONS(3), 1, sym_comment, + ACTIONS(693), 1, + anon_sym_COLON, ACTIONS(1121), 1, - ts_builtin_sym_end, - ACTIONS(1510), 1, - anon_sym_PIPE, + sym_interpolation_end, ACTIONS(1513), 1, + anon_sym_PIPE, + STATE(839), 2, + sym_annot_atom, + aux_sym_annot_repeat1, + [49290] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(723), 1, anon_sym_COLON, - STATE(840), 2, + ACTIONS(1121), 1, + anon_sym_in, + ACTIONS(1515), 1, + anon_sym_PIPE, + STATE(838), 2, sym_annot_atom, aux_sym_annot_repeat1, - [49264] = 5, + [49307] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1516), 1, - sym_ident, - STATE(841), 1, - aux_sym_record_pattern_repeat1, - STATE(1042), 1, - sym_field_pattern, - ACTIONS(1519), 2, + ACTIONS(1517), 1, + anon_sym_EQ, + ACTIONS(1519), 3, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_DOT_DOT, - [49281] = 5, + anon_sym_SEMI, + [49319] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(1521), 1, @@ -45328,9 +45353,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, ACTIONS(1525), 1, anon_sym_PIPE_RBRACK, - STATE(843), 1, + STATE(858), 1, aux_sym_type_atom_repeat1, - [49297] = 5, + [49335] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(1521), 1, @@ -45339,9 +45364,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, ACTIONS(1529), 1, anon_sym_PIPE_RBRACK, - STATE(858), 1, + STATE(857), 1, aux_sym_type_atom_repeat1, - [49313] = 5, + [49351] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(1521), 1, @@ -45350,9 +45375,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, ACTIONS(1533), 1, anon_sym_PIPE_RBRACK, - STATE(856), 1, + STATE(849), 1, aux_sym_type_atom_repeat1, - [49329] = 5, + [49367] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(1521), 1, @@ -45361,9 +45386,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, ACTIONS(1537), 1, anon_sym_PIPE_RBRACK, - STATE(858), 1, + STATE(856), 1, aux_sym_type_atom_repeat1, - [49345] = 5, + [49383] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(1521), 1, @@ -45372,1923 +45397,1914 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, ACTIONS(1541), 1, anon_sym_PIPE_RBRACK, - STATE(854), 1, + STATE(849), 1, + aux_sym_type_atom_repeat1, + [49399] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1543), 1, + anon_sym_COMMA, + STATE(849), 1, aux_sym_type_atom_repeat1, - [49361] = 5, + ACTIONS(1546), 2, + anon_sym_SEMI, + anon_sym_PIPE_RBRACK, + [49413] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(1521), 1, anon_sym_COMMA, - ACTIONS(1543), 1, + ACTIONS(1548), 1, anon_sym_SEMI, - ACTIONS(1545), 1, + ACTIONS(1550), 1, anon_sym_PIPE_RBRACK, - STATE(858), 1, + STATE(848), 1, aux_sym_type_atom_repeat1, - [49377] = 5, + [49429] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(1521), 1, anon_sym_COMMA, - ACTIONS(1547), 1, + ACTIONS(1552), 1, anon_sym_SEMI, - ACTIONS(1549), 1, + ACTIONS(1554), 1, anon_sym_PIPE_RBRACK, - STATE(847), 1, + STATE(852), 1, aux_sym_type_atom_repeat1, - [49393] = 3, + [49445] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1551), 1, - anon_sym_EQ, - ACTIONS(1553), 3, + ACTIONS(1521), 1, anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(1556), 1, anon_sym_SEMI, - [49405] = 3, + ACTIONS(1558), 1, + anon_sym_PIPE_RBRACK, + STATE(849), 1, + aux_sym_type_atom_repeat1, + [49461] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(763), 1, + sym_raw_enum_tag, + ACTIONS(773), 1, + sym_quoted_enum_tag_start, + STATE(668), 1, + sym_quoted_enum_tag, + STATE(896), 1, + sym_enum_tag, + [49477] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1400), 2, + anon_sym_PERCENT, + sym_str_esc_char, + ACTIONS(1402), 2, + sym__str_end, + sym_str_literal, + [49489] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1436), 2, + ACTIONS(1476), 2, anon_sym_PERCENT, sym_str_esc_char, - ACTIONS(1438), 2, + ACTIONS(1478), 2, sym__str_end, sym_str_literal, - [49417] = 5, + [49501] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(1521), 1, anon_sym_COMMA, - ACTIONS(1555), 1, + ACTIONS(1560), 1, anon_sym_SEMI, - ACTIONS(1557), 1, + ACTIONS(1562), 1, anon_sym_PIPE_RBRACK, - STATE(853), 1, + STATE(849), 1, aux_sym_type_atom_repeat1, - [49433] = 5, + [49517] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(1521), 1, anon_sym_COMMA, - ACTIONS(1559), 1, + ACTIONS(1564), 1, anon_sym_SEMI, - ACTIONS(1561), 1, + ACTIONS(1566), 1, anon_sym_PIPE_RBRACK, - STATE(845), 1, + STATE(849), 1, aux_sym_type_atom_repeat1, - [49449] = 5, + [49533] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(1521), 1, anon_sym_COMMA, - ACTIONS(1563), 1, + ACTIONS(1568), 1, anon_sym_SEMI, - ACTIONS(1565), 1, + ACTIONS(1570), 1, anon_sym_PIPE_RBRACK, - STATE(858), 1, + STATE(849), 1, aux_sym_type_atom_repeat1, - [49465] = 5, + [49549] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1179), 1, + anon_sym_or, + ACTIONS(1572), 1, + anon_sym_AT, + ACTIONS(1246), 2, + anon_sym_EQ_GT, + anon_sym_if, + [49563] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(1521), 1, anon_sym_COMMA, - ACTIONS(1567), 1, + ACTIONS(1574), 1, anon_sym_SEMI, - ACTIONS(1569), 1, + ACTIONS(1576), 1, anon_sym_PIPE_RBRACK, - STATE(858), 1, + STATE(846), 1, aux_sym_type_atom_repeat1, - [49481] = 3, + [49579] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1472), 2, - anon_sym_PERCENT, - sym_str_esc_char, - ACTIONS(1474), 2, - sym__str_end, - sym_str_literal, - [49493] = 5, + ACTIONS(527), 3, + sym_interpolation_end, + anon_sym_PIPE, + anon_sym_COLON, + [49588] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1521), 1, + STATE(1029), 1, + sym_row_tail, + ACTIONS(1578), 2, + sym_ident, + anon_sym_Dyn, + [49599] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1580), 3, anon_sym_COMMA, - ACTIONS(1571), 1, + anon_sym_RBRACE, anon_sym_SEMI, - ACTIONS(1573), 1, - anon_sym_PIPE_RBRACK, - STATE(858), 1, - aux_sym_type_atom_repeat1, - [49509] = 5, + [49608] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(763), 1, - sym_raw_enum_tag, - ACTIONS(773), 1, - sym_quoted_enum_tag_start, - STATE(664), 1, - sym_quoted_enum_tag, - STATE(920), 1, - sym_enum_tag, - [49525] = 4, + ACTIONS(1582), 1, + sym_multstr_start, + ACTIONS(1584), 1, + sym__str_start, + STATE(901), 1, + sym_static_string, + [49621] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1575), 1, + ACTIONS(163), 1, + anon_sym_RBRACK, + ACTIONS(1586), 1, anon_sym_COMMA, - STATE(858), 1, - aux_sym_type_atom_repeat1, - ACTIONS(1578), 2, - anon_sym_SEMI, - anon_sym_PIPE_RBRACK, - [49539] = 4, + STATE(909), 1, + aux_sym_atom_repeat1, + [49634] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1187), 1, - anon_sym_or, - ACTIONS(1580), 1, - anon_sym_AT, - ACTIONS(1240), 2, + ACTIONS(1588), 1, anon_sym_EQ_GT, + ACTIONS(1590), 1, anon_sym_if, - [49553] = 4, + STATE(1050), 1, + sym_pattern_guard, + [49647] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(625), 1, + ACTIONS(753), 1, + anon_sym_RBRACE, + ACTIONS(1592), 1, + anon_sym_COMMA, + STATE(942), 1, + aux_sym_match_expr_repeat1, + [49660] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1594), 1, + anon_sym_COMMA, + ACTIONS(1596), 1, + anon_sym_RBRACE, + STATE(867), 1, + aux_sym_match_expr_repeat1, + [49673] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1598), 1, + anon_sym_COMMA, + ACTIONS(1600), 1, + anon_sym_RBRACK, + STATE(865), 1, + aux_sym_atom_repeat1, + [49686] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1602), 1, + sym_ident, + ACTIONS(1604), 1, + anon_sym_DOT, + STATE(897), 1, + aux_sym_forall_repeat1, + [49699] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1606), 1, + anon_sym_COMMA, + ACTIONS(1608), 1, + anon_sym_RBRACK, + STATE(904), 1, + aux_sym_atom_repeat1, + [49712] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1602), 1, + sym_ident, + ACTIONS(1610), 1, + anon_sym_DOT, + STATE(897), 1, + aux_sym_forall_repeat1, + [49725] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1612), 1, sym_multstr_start, - ACTIONS(627), 1, + ACTIONS(1614), 1, sym__str_start, - STATE(634), 1, + STATE(149), 1, sym_static_string, - [49566] = 4, + [49738] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1040), 3, + sym_interpolation_end, + anon_sym_PIPE, + anon_sym_COLON, + [49747] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1036), 3, + sym_interpolation_end, + anon_sym_PIPE, + anon_sym_COLON, + [49756] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1018), 3, + sym_interpolation_end, + anon_sym_PIPE, + anon_sym_COLON, + [49765] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(745), 1, + ACTIONS(737), 1, anon_sym_RBRACE, - ACTIONS(1582), 1, + ACTIONS(1616), 1, anon_sym_COMMA, - STATE(924), 1, + STATE(942), 1, aux_sym_match_expr_repeat1, - [49579] = 3, + [49778] = 2, ACTIONS(3), 1, sym_comment, - STATE(1101), 1, + ACTIONS(597), 3, + sym_interpolation_end, + anon_sym_PIPE, + anon_sym_COLON, + [49787] = 3, + ACTIONS(3), 1, + sym_comment, + STATE(1080), 1, + sym_row_tail, + ACTIONS(1578), 2, + sym_ident, + anon_sym_Dyn, + [49798] = 3, + ACTIONS(3), 1, + sym_comment, + STATE(1007), 1, sym_row_tail, - ACTIONS(1584), 2, + ACTIONS(1578), 2, sym_ident, anon_sym_Dyn, - [49590] = 3, + [49809] = 3, ACTIONS(3), 1, sym_comment, - STATE(1103), 1, + STATE(1068), 1, sym_row_tail, - ACTIONS(1584), 2, + ACTIONS(1578), 2, sym_ident, anon_sym_Dyn, - [49601] = 4, + [49820] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(735), 1, + ACTIONS(1489), 3, + sym_ident, anon_sym_RBRACE, - ACTIONS(1586), 1, - anon_sym_COMMA, - STATE(924), 1, - aux_sym_match_expr_repeat1, - [49614] = 3, + anon_sym_DOT_DOT, + [49829] = 3, ACTIONS(3), 1, sym_comment, - STATE(1126), 1, + STATE(1067), 1, sym_row_tail, - ACTIONS(1584), 2, + ACTIONS(1578), 2, sym_ident, anon_sym_Dyn, - [49625] = 4, + [49840] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(755), 1, + ACTIONS(1618), 1, + anon_sym_EQ, + ACTIONS(1620), 2, + anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(1588), 1, + [49851] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(165), 1, + anon_sym_RBRACK, + ACTIONS(1622), 1, anon_sym_COMMA, - STATE(924), 1, - aux_sym_match_expr_repeat1, - [49638] = 3, + STATE(909), 1, + aux_sym_atom_repeat1, + [49864] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1590), 1, - anon_sym_EQ, - ACTIONS(1592), 2, + ACTIONS(1624), 1, + sym_multstr_start, + ACTIONS(1626), 1, + sym__str_start, + STATE(439), 1, + sym_static_string, + [49877] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1628), 1, anon_sym_COMMA, + ACTIONS(1630), 1, anon_sym_RBRACE, - [49649] = 3, + STATE(923), 1, + aux_sym_match_expr_repeat1, + [49890] = 3, ACTIONS(3), 1, sym_comment, - STATE(1096), 1, + STATE(1063), 1, sym_row_tail, - ACTIONS(1584), 2, + ACTIONS(1578), 2, sym_ident, anon_sym_Dyn, - [49660] = 4, + [49901] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1594), 1, - anon_sym_COMMA, - ACTIONS(1596), 1, - anon_sym_RBRACE, - STATE(893), 1, - aux_sym_match_expr_repeat1, - [49673] = 4, + ACTIONS(1632), 1, + sym_multstr_start, + ACTIONS(1634), 1, + sym__str_start, + STATE(436), 1, + sym_static_string, + [49914] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(163), 1, + ACTIONS(175), 1, anon_sym_RBRACK, - ACTIONS(1598), 1, + ACTIONS(1636), 1, anon_sym_COMMA, - STATE(925), 1, + STATE(909), 1, aux_sym_atom_repeat1, - [49686] = 4, + [49927] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1600), 1, - anon_sym_EQ_GT, - ACTIONS(1602), 1, - anon_sym_if, - STATE(1089), 1, - sym_pattern_guard, - [49699] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1012), 3, + ACTIONS(1060), 3, sym_interpolation_end, anon_sym_PIPE, anon_sym_COLON, - [49708] = 4, + [49936] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1604), 1, + ACTIONS(1638), 1, anon_sym_COMMA, - ACTIONS(1606), 1, + ACTIONS(1640), 1, anon_sym_RBRACE, - STATE(866), 1, + STATE(877), 1, aux_sym_match_expr_repeat1, - [49721] = 4, + [49949] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1608), 1, + STATE(1035), 1, + sym_row_tail, + ACTIONS(1578), 2, sym_ident, - ACTIONS(1610), 1, - anon_sym_DOT, - STATE(909), 1, - aux_sym_forall_repeat1, - [49734] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1048), 3, - sym_interpolation_end, - anon_sym_PIPE, - anon_sym_COLON, - [49743] = 2, + anon_sym_Dyn, + [49960] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1036), 3, - sym_interpolation_end, - anon_sym_PIPE, - anon_sym_COLON, - [49752] = 3, + STATE(1052), 1, + sym_row_tail, + ACTIONS(1578), 2, + sym_ident, + anon_sym_Dyn, + [49971] = 3, ACTIONS(3), 1, sym_comment, - STATE(1080), 1, + STATE(1046), 1, sym_row_tail, - ACTIONS(1584), 2, + ACTIONS(1578), 2, sym_ident, anon_sym_Dyn, - [49763] = 4, + [49982] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1612), 1, + ACTIONS(1546), 3, anon_sym_COMMA, - ACTIONS(1614), 1, - anon_sym_RBRACK, - STATE(870), 1, - aux_sym_atom_repeat1, - [49776] = 2, + anon_sym_SEMI, + anon_sym_PIPE_RBRACK, + [49991] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1616), 3, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RBRACE, - [49785] = 3, + ACTIONS(1642), 1, + sym_ident, + ACTIONS(1645), 1, + anon_sym_DOT, + STATE(897), 1, + aux_sym_forall_repeat1, + [50004] = 3, ACTIONS(3), 1, sym_comment, - STATE(1065), 1, + STATE(1045), 1, sym_row_tail, - ACTIONS(1584), 2, + ACTIONS(1578), 2, sym_ident, anon_sym_Dyn, - [49796] = 4, + [50015] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1608), 1, + ACTIONS(1602), 1, sym_ident, - ACTIONS(1618), 1, + ACTIONS(1647), 1, anon_sym_DOT, - STATE(909), 1, + STATE(897), 1, aux_sym_forall_repeat1, - [49809] = 3, - ACTIONS(3), 1, - sym_comment, - STATE(1063), 1, - sym_row_tail, - ACTIONS(1584), 2, - sym_ident, - anon_sym_Dyn, - [49820] = 2, + [50028] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1016), 3, - sym_interpolation_end, - anon_sym_PIPE, - anon_sym_COLON, - [49829] = 2, + ACTIONS(745), 1, + anon_sym_RBRACE, + ACTIONS(1649), 1, + anon_sym_COMMA, + STATE(942), 1, + aux_sym_match_expr_repeat1, + [50041] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(597), 3, + ACTIONS(1024), 3, sym_interpolation_end, anon_sym_PIPE, anon_sym_COLON, - [49838] = 4, + [50050] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1620), 1, - sym_multstr_start, - ACTIONS(1622), 1, - sym__str_start, - STATE(440), 1, - sym_static_string, - [49851] = 2, + ACTIONS(1651), 1, + anon_sym_COMMA, + ACTIONS(1653), 1, + anon_sym_RBRACK, + STATE(915), 1, + aux_sym_atom_repeat1, + [50063] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1519), 3, + STATE(1041), 1, + sym_row_tail, + ACTIONS(1578), 2, sym_ident, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - [49860] = 4, + anon_sym_Dyn, + [50074] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(159), 1, + ACTIONS(167), 1, anon_sym_RBRACK, - ACTIONS(1624), 1, + ACTIONS(1655), 1, anon_sym_COMMA, - STATE(925), 1, + STATE(909), 1, aux_sym_atom_repeat1, - [49873] = 3, - ACTIONS(3), 1, - sym_comment, - STATE(1058), 1, - sym_row_tail, - ACTIONS(1584), 2, - sym_ident, - anon_sym_Dyn, - [49884] = 4, + [50087] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1626), 1, + ACTIONS(1657), 1, anon_sym_COMMA, - ACTIONS(1628), 1, + ACTIONS(1659), 1, anon_sym_RBRACK, - STATE(902), 1, + STATE(890), 1, aux_sym_atom_repeat1, - [49897] = 4, + [50100] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1608), 1, + ACTIONS(735), 1, + anon_sym_RBRACE, + ACTIONS(1661), 1, + anon_sym_COMMA, + STATE(942), 1, + aux_sym_match_expr_repeat1, + [50113] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1602), 1, sym_ident, - ACTIONS(1630), 1, + ACTIONS(1663), 1, anon_sym_DOT, - STATE(909), 1, + STATE(897), 1, aux_sym_forall_repeat1, - [49910] = 4, + [50126] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1632), 1, + ACTIONS(625), 1, sym_multstr_start, - ACTIONS(1634), 1, + ACTIONS(627), 1, sym__str_start, - STATE(133), 1, + STATE(639), 1, sym_static_string, - [49923] = 3, - ACTIONS(3), 1, - sym_comment, - STATE(1048), 1, - sym_row_tail, - ACTIONS(1584), 2, - sym_ident, - anon_sym_Dyn, - [49934] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(747), 1, - anon_sym_RBRACE, - ACTIONS(1636), 1, - anon_sym_COMMA, - STATE(924), 1, - aux_sym_match_expr_repeat1, - [49947] = 3, + [50139] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1638), 1, + ACTIONS(1665), 1, anon_sym_COMMA, - ACTIONS(1640), 2, - anon_sym_RBRACE, - anon_sym_SEMI, - [49958] = 4, + ACTIONS(1668), 1, + anon_sym_RBRACK, + STATE(909), 1, + aux_sym_atom_repeat1, + [50152] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1642), 1, + ACTIONS(1670), 1, sym_multstr_start, - ACTIONS(1644), 1, + ACTIONS(1672), 1, sym__str_start, - STATE(436), 1, + STATE(433), 1, sym_static_string, - [49971] = 4, + [50165] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1646), 1, + ACTIONS(1674), 1, anon_sym_COMMA, - ACTIONS(1648), 1, + ACTIONS(1676), 1, anon_sym_RBRACE, - STATE(864), 1, + STATE(927), 1, aux_sym_match_expr_repeat1, - [49984] = 3, + [50178] = 3, ACTIONS(3), 1, sym_comment, - STATE(986), 1, + STATE(1030), 1, sym_row_tail, - ACTIONS(1584), 2, + ACTIONS(1578), 2, sym_ident, anon_sym_Dyn, - [49995] = 4, + [50189] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1608), 1, - sym_ident, - ACTIONS(1650), 1, - anon_sym_DOT, - STATE(909), 1, - aux_sym_forall_repeat1, - [50008] = 3, + ACTIONS(1028), 3, + sym_interpolation_end, + anon_sym_PIPE, + anon_sym_COLON, + [50198] = 3, ACTIONS(3), 1, sym_comment, - STATE(1012), 1, + STATE(1022), 1, sym_row_tail, - ACTIONS(1584), 2, + ACTIONS(1578), 2, sym_ident, anon_sym_Dyn, - [50019] = 4, + [50209] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1652), 1, - anon_sym_COMMA, - ACTIONS(1654), 1, + ACTIONS(155), 1, anon_sym_RBRACK, - STATE(939), 1, - aux_sym_atom_repeat1, - [50032] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1656), 1, + ACTIONS(1678), 1, anon_sym_COMMA, - ACTIONS(1658), 1, - anon_sym_RBRACK, - STATE(914), 1, + STATE(909), 1, aux_sym_atom_repeat1, - [50045] = 4, + [50222] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(175), 1, - anon_sym_RBRACK, - ACTIONS(1660), 1, + ACTIONS(1680), 1, anon_sym_COMMA, - STATE(925), 1, - aux_sym_atom_repeat1, - [50058] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1004), 3, - sym_interpolation_end, - anon_sym_PIPE, - anon_sym_COLON, - [50067] = 3, - ACTIONS(3), 1, - sym_comment, - STATE(1040), 1, - sym_row_tail, - ACTIONS(1584), 2, - sym_ident, - anon_sym_Dyn, - [50078] = 2, + ACTIONS(1682), 1, + anon_sym_RBRACE, + STATE(900), 1, + aux_sym_match_expr_repeat1, + [50235] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(535), 3, + ACTIONS(531), 3, sym_interpolation_end, anon_sym_PIPE, anon_sym_COLON, - [50087] = 3, - ACTIONS(3), 1, - sym_comment, - STATE(1025), 1, - sym_row_tail, - ACTIONS(1584), 2, - sym_ident, - anon_sym_Dyn, - [50098] = 3, + [50244] = 3, ACTIONS(3), 1, sym_comment, - STATE(1024), 1, + STATE(1100), 1, sym_row_tail, - ACTIONS(1584), 2, + ACTIONS(1578), 2, sym_ident, anon_sym_Dyn, - [50109] = 3, + [50255] = 3, ACTIONS(3), 1, sym_comment, - STATE(1018), 1, + STATE(1042), 1, sym_row_tail, - ACTIONS(1584), 2, + ACTIONS(1578), 2, sym_ident, anon_sym_Dyn, - [50120] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1662), 1, - sym_ident, - ACTIONS(1665), 1, - anon_sym_DOT, - STATE(909), 1, - aux_sym_forall_repeat1, - [50133] = 4, + [50266] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1667), 1, + ACTIONS(1684), 3, + anon_sym_EQ, anon_sym_COMMA, - ACTIONS(1669), 1, anon_sym_RBRACE, - STATE(926), 1, - aux_sym_match_expr_repeat1, - [50146] = 4, + [50275] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1671), 1, - sym_multstr_start, - ACTIONS(1673), 1, - sym__str_start, - STATE(432), 1, - sym_static_string, - [50159] = 2, + ACTIONS(1686), 1, + anon_sym_EQ, + ACTIONS(1688), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [50286] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1675), 3, + ACTIONS(159), 1, + anon_sym_RBRACK, + ACTIONS(1690), 1, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - [50168] = 4, + STATE(909), 1, + aux_sym_atom_repeat1, + [50299] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(737), 1, + ACTIONS(749), 1, anon_sym_RBRACE, - ACTIONS(1677), 1, + ACTIONS(1692), 1, anon_sym_COMMA, - STATE(924), 1, + STATE(942), 1, aux_sym_match_expr_repeat1, - [50181] = 4, + [50312] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(155), 1, - anon_sym_RBRACK, - ACTIONS(1679), 1, + ACTIONS(1694), 1, anon_sym_COMMA, - STATE(925), 1, - aux_sym_atom_repeat1, - [50194] = 3, + ACTIONS(1696), 2, + anon_sym_RBRACE, + anon_sym_SEMI, + [50323] = 3, ACTIONS(3), 1, sym_comment, - STATE(1124), 1, + STATE(1048), 1, sym_row_tail, - ACTIONS(1584), 2, + ACTIONS(1578), 2, sym_ident, anon_sym_Dyn, - [50205] = 4, + [50334] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1681), 1, + ACTIONS(1698), 1, anon_sym_COMMA, - ACTIONS(1683), 1, - anon_sym_RBRACK, - STATE(887), 1, - aux_sym_atom_repeat1, - [50218] = 3, - ACTIONS(3), 1, - sym_comment, - STATE(996), 1, - sym_row_tail, - ACTIONS(1584), 2, - sym_ident, - anon_sym_Dyn, - [50229] = 3, + ACTIONS(1700), 1, + anon_sym_RBRACE, + STATE(906), 1, + aux_sym_match_expr_repeat1, + [50347] = 4, ACTIONS(3), 1, sym_comment, - STATE(1002), 1, - sym_row_tail, - ACTIONS(1584), 2, - sym_ident, - anon_sym_Dyn, - [50240] = 3, + ACTIONS(741), 1, + anon_sym_RBRACE, + ACTIONS(1702), 1, + anon_sym_COMMA, + STATE(942), 1, + aux_sym_match_expr_repeat1, + [50360] = 3, ACTIONS(3), 1, sym_comment, - STATE(1003), 1, + STATE(1008), 1, sym_row_tail, - ACTIONS(1584), 2, + ACTIONS(1578), 2, sym_ident, anon_sym_Dyn, - [50251] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1578), 3, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_PIPE_RBRACK, - [50260] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1608), 1, - sym_ident, - ACTIONS(1685), 1, - anon_sym_DOT, - STATE(909), 1, - aux_sym_forall_repeat1, - [50273] = 4, + [50371] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1608), 1, + ACTIONS(1602), 1, sym_ident, - ACTIONS(1687), 1, + ACTIONS(1704), 1, anon_sym_DOT, - STATE(909), 1, + STATE(897), 1, aux_sym_forall_repeat1, - [50286] = 3, + [50384] = 3, ACTIONS(3), 1, sym_comment, - STATE(1034), 1, + STATE(1009), 1, sym_row_tail, - ACTIONS(1584), 2, + ACTIONS(1578), 2, sym_ident, anon_sym_Dyn, - [50297] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1689), 1, - anon_sym_COMMA, - ACTIONS(1692), 1, - anon_sym_RBRACE, - STATE(924), 1, - aux_sym_match_expr_repeat1, - [50310] = 4, + [50395] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1694), 1, + ACTIONS(1706), 1, anon_sym_COMMA, - ACTIONS(1697), 1, + ACTIONS(1708), 1, anon_sym_RBRACK, - STATE(925), 1, + STATE(885), 1, aux_sym_atom_repeat1, - [50323] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(739), 1, - anon_sym_RBRACE, - ACTIONS(1699), 1, - anon_sym_COMMA, - STATE(924), 1, - aux_sym_match_expr_repeat1, - [50336] = 3, + [50408] = 3, ACTIONS(3), 1, sym_comment, - STATE(1029), 1, + STATE(999), 1, sym_row_tail, - ACTIONS(1584), 2, + ACTIONS(1578), 2, sym_ident, anon_sym_Dyn, - [50347] = 2, + [50419] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(519), 3, - sym_interpolation_end, - anon_sym_PIPE, - anon_sym_COLON, - [50356] = 4, + ACTIONS(1710), 1, + sym_multstr_start, + ACTIONS(1712), 1, + sym__str_start, + STATE(457), 1, + sym_static_string, + [50432] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(165), 1, - anon_sym_RBRACK, - ACTIONS(1701), 1, - anon_sym_COMMA, - STATE(925), 1, - aux_sym_atom_repeat1, - [50369] = 3, + STATE(1020), 1, + sym_row_tail, + ACTIONS(1578), 2, + sym_ident, + anon_sym_Dyn, + [50443] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1703), 1, - anon_sym_EQ, - ACTIONS(1705), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [50380] = 2, + ACTIONS(1714), 1, + sym_multstr_start, + ACTIONS(1716), 1, + sym__str_start, + STATE(429), 1, + sym_static_string, + [50456] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1707), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - [50389] = 3, + STATE(995), 1, + sym_row_tail, + ACTIONS(1578), 2, + sym_ident, + anon_sym_Dyn, + [50467] = 3, ACTIONS(3), 1, sym_comment, - STATE(1028), 1, + STATE(985), 1, sym_row_tail, - ACTIONS(1584), 2, + ACTIONS(1578), 2, sym_ident, anon_sym_Dyn, - [50400] = 4, + [50478] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1709), 1, - anon_sym_COMMA, - ACTIONS(1711), 1, - anon_sym_RBRACE, - STATE(861), 1, - aux_sym_match_expr_repeat1, - [50413] = 3, + STATE(986), 1, + sym_row_tail, + ACTIONS(1578), 2, + sym_ident, + anon_sym_Dyn, + [50489] = 3, ACTIONS(3), 1, sym_comment, - STATE(1007), 1, + STATE(991), 1, sym_row_tail, - ACTIONS(1584), 2, + ACTIONS(1578), 2, sym_ident, anon_sym_Dyn, - [50424] = 4, + [50500] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1713), 1, + ACTIONS(1718), 1, anon_sym_COMMA, - ACTIONS(1715), 1, + ACTIONS(1720), 1, anon_sym_RBRACK, - STATE(929), 1, + STATE(922), 1, aux_sym_atom_repeat1, - [50437] = 4, + [50513] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1717), 1, + ACTIONS(1602), 1, + sym_ident, + ACTIONS(1722), 1, + anon_sym_DOT, + STATE(897), 1, + aux_sym_forall_repeat1, + [50526] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1724), 1, anon_sym_COMMA, - ACTIONS(1719), 1, + ACTIONS(1727), 1, anon_sym_RBRACE, - STATE(913), 1, + STATE(942), 1, aux_sym_match_expr_repeat1, - [50450] = 4, + [50539] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1721), 1, - sym_multstr_start, - ACTIONS(1723), 1, - sym__str_start, - STATE(872), 1, - sym_static_string, - [50463] = 3, + ACTIONS(1729), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + [50548] = 3, ACTIONS(3), 1, sym_comment, - STATE(1019), 1, - sym_row_tail, - ACTIONS(1584), 2, - sym_ident, - anon_sym_Dyn, - [50474] = 4, + ACTIONS(1731), 1, + anon_sym_RBRACE, + ACTIONS(1733), 1, + anon_sym_SEMI, + [50558] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(173), 1, - anon_sym_RBRACK, - ACTIONS(1725), 1, + ACTIONS(1727), 2, anon_sym_COMMA, - STATE(925), 1, - aux_sym_atom_repeat1, - [50487] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1008), 3, - sym_interpolation_end, - anon_sym_PIPE, - anon_sym_COLON, - [50496] = 4, + anon_sym_RBRACE, + [50566] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1727), 1, - sym_multstr_start, - ACTIONS(1729), 1, - sym__str_start, - STATE(457), 1, - sym_static_string, - [50509] = 4, + ACTIONS(1735), 1, + sym_ident, + STATE(872), 1, + aux_sym_forall_repeat1, + [50576] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1731), 1, - sym_multstr_start, - ACTIONS(1733), 1, - sym__str_start, - STATE(429), 1, - sym_static_string, - [50522] = 3, + ACTIONS(1737), 1, + sym_ident, + STATE(941), 1, + aux_sym_forall_repeat1, + [50586] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1735), 1, - sym_ident, - ACTIONS(1737), 1, - anon_sym_RBRACK, - [50532] = 3, + ACTIONS(1739), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [50594] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1739), 1, + ACTIONS(1741), 1, sym_ident, - STATE(922), 1, + STATE(929), 1, aux_sym_forall_repeat1, - [50542] = 2, + [50604] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1741), 2, - anon_sym_default, - anon_sym_force, - [50550] = 3, + ACTIONS(910), 1, + anon_sym_RPAREN, + ACTIONS(1743), 1, + sym_ident, + [50614] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1743), 1, - anon_sym_COMMA, ACTIONS(1745), 1, anon_sym_RBRACE, - [50560] = 3, - ACTIONS(3), 1, - sym_comment, ACTIONS(1747), 1, - sym_ident, - STATE(874), 1, - aux_sym_forall_repeat1, - [50570] = 3, + anon_sym_SEMI, + [50624] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1749), 1, anon_sym_RBRACE, ACTIONS(1751), 1, anon_sym_SEMI, - [50580] = 2, + [50634] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1697), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [50588] = 3, + ACTIONS(1753), 2, + anon_sym_PIPE, + anon_sym_COLON, + [50642] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1753), 1, + ACTIONS(1696), 2, anon_sym_RBRACE, - ACTIONS(1755), 1, anon_sym_SEMI, - [50598] = 2, + [50650] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1692), 2, + ACTIONS(1755), 2, anon_sym_COMMA, anon_sym_RBRACE, - [50606] = 3, + [50658] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1757), 1, + ACTIONS(1757), 2, + anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(1759), 1, - anon_sym_SEMI, - [50616] = 2, + [50666] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1761), 2, - anon_sym_PIPE, - anon_sym_COLON, - [50624] = 3, + ACTIONS(1759), 1, + anon_sym_RBRACE, + ACTIONS(1761), 1, + anon_sym_SEMI, + [50676] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(908), 1, - anon_sym_RPAREN, ACTIONS(1763), 1, - sym_ident, - [50634] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1765), 2, - anon_sym_COMMA, anon_sym_RBRACE, - [50642] = 2, + ACTIONS(1765), 1, + anon_sym_SEMI, + [50686] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1767), 2, - anon_sym_PIPE, - anon_sym_COLON, - [50650] = 3, + anon_sym_COMMA, + anon_sym_RBRACE, + [50694] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1769), 1, - sym_ident, - STATE(898), 1, - aux_sym_forall_repeat1, - [50660] = 3, + ACTIONS(1769), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [50702] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1771), 1, anon_sym_RBRACE, ACTIONS(1773), 1, anon_sym_SEMI, - [50670] = 2, + [50712] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1775), 2, - anon_sym_PIPE, - anon_sym_COLON, - [50678] = 3, + anon_sym_COMMA, + anon_sym_RBRACE, + [50720] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1777), 1, anon_sym_RBRACE, ACTIONS(1779), 1, anon_sym_SEMI, - [50688] = 3, + [50730] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1781), 1, sym_ident, - STATE(921), 1, + STATE(899), 1, aux_sym_forall_repeat1, - [50698] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1783), 2, - anon_sym_PIPE, - anon_sym_COLON, - [50706] = 3, + [50740] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1785), 1, + ACTIONS(1783), 1, anon_sym_RBRACE, - ACTIONS(1787), 1, + ACTIONS(1785), 1, anon_sym_SEMI, - [50716] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1789), 2, - anon_sym_PIPE, - anon_sym_COLON, - [50724] = 2, + [50750] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1640), 2, + ACTIONS(1787), 1, + sym_ident, + ACTIONS(1789), 1, anon_sym_RBRACE, - anon_sym_SEMI, - [50732] = 3, + [50760] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1791), 1, + sym_ident, + STATE(870), 1, + aux_sym_forall_repeat1, + [50770] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1789), 1, anon_sym_RBRACE, ACTIONS(1793), 1, - anon_sym_SEMI, - [50742] = 2, + anon_sym_COMMA, + [50780] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1668), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [50788] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1795), 2, anon_sym_PIPE, anon_sym_COLON, - [50750] = 3, + [50796] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1745), 1, - anon_sym_RBRACE, - ACTIONS(1797), 1, - sym_ident, - [50760] = 3, + ACTIONS(1797), 2, + anon_sym_PIPE, + anon_sym_COLON, + [50804] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1799), 1, - anon_sym_RBRACE, - ACTIONS(1801), 1, - anon_sym_SEMI, - [50770] = 3, + ACTIONS(1799), 2, + anon_sym_default, + anon_sym_force, + [50812] = 3, ACTIONS(3), 1, sym_comment, + ACTIONS(1801), 1, + sym_ident, ACTIONS(1803), 1, - anon_sym_RBRACE, - ACTIONS(1805), 1, - anon_sym_SEMI, - [50780] = 2, + anon_sym_RBRACK, + [50822] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1807), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [50788] = 3, + ACTIONS(1805), 2, + anon_sym_PIPE, + anon_sym_COLON, + [50830] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1809), 1, - anon_sym_RBRACE, - ACTIONS(1811), 1, - anon_sym_SEMI, - [50798] = 2, + ACTIONS(1803), 1, + anon_sym_RBRACK, + ACTIONS(1807), 1, + anon_sym_COMMA, + [50840] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1813), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [50806] = 2, + ACTIONS(1809), 2, + anon_sym_PIPE, + anon_sym_COLON, + [50848] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1815), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [50814] = 2, + ACTIONS(1811), 2, + anon_sym_PIPE, + anon_sym_COLON, + [50856] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1817), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [50822] = 3, + ACTIONS(1813), 2, + anon_sym_default, + anon_sym_force, + [50864] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1819), 1, + ACTIONS(1815), 1, anon_sym_RBRACE, - ACTIONS(1821), 1, + ACTIONS(1817), 1, anon_sym_SEMI, - [50832] = 3, + [50874] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, - anon_sym_RBRACK, - ACTIONS(1823), 1, - anon_sym_COMMA, - [50842] = 2, + ACTIONS(1819), 1, + sym_ident, + STATE(907), 1, + aux_sym_forall_repeat1, + [50884] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1825), 2, - anon_sym_COMMA, + ACTIONS(1821), 1, anon_sym_RBRACE, - [50850] = 3, + ACTIONS(1823), 1, + anon_sym_SEMI, + [50894] = 3, ACTIONS(3), 1, sym_comment, + ACTIONS(1825), 1, + anon_sym_RBRACE, ACTIONS(1827), 1, - sym_ident, - STATE(881), 1, - aux_sym_forall_repeat1, - [50860] = 3, + anon_sym_SEMI, + [50904] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1829), 1, anon_sym_RBRACE, ACTIONS(1831), 1, anon_sym_SEMI, - [50870] = 3, + [50914] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1640), 1, + anon_sym_RBRACE, + [50921] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1833), 1, - sym_ident, - STATE(890), 1, - aux_sym_forall_repeat1, - [50880] = 2, + anon_sym_RBRACE, + [50928] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1835), 2, - anon_sym_default, - anon_sym_force, - [50888] = 2, + ACTIONS(1835), 1, + anon_sym_RBRACE, + [50935] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1837), 1, - anon_sym_RPAREN, - [50895] = 2, + anon_sym_else, + [50942] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1807), 1, + anon_sym_COMMA, + [50949] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1839), 1, anon_sym_PIPE_RBRACK, - [50902] = 2, + [50956] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1123), 1, + sym_interpolation_end, + [50963] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1841), 1, - anon_sym_RBRACK, - [50909] = 2, + anon_sym_RBRACE, + [50970] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1843), 1, + anon_sym_PIPE_RBRACK, + [50977] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1700), 1, anon_sym_RBRACE, - [50916] = 2, + [50984] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1845), 1, - anon_sym_RBRACE, - [50923] = 2, + anon_sym_in, + [50991] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1847), 1, - anon_sym_PIPE_RBRACK, - [50930] = 2, + anon_sym_RBRACE, + [50998] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(567), 1, + sym_interpolation_end, + [51005] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1849), 1, - anon_sym_RPAREN, - [50937] = 2, + anon_sym_PIPE_RBRACK, + [51012] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1851), 1, - anon_sym_RPAREN, - [50944] = 2, + anon_sym_RBRACE, + [51019] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1853), 1, - anon_sym_RPAREN, - [50951] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1683), 1, - anon_sym_RBRACK, - [50958] = 2, + anon_sym_RBRACE, + [51026] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1855), 1, - anon_sym_PERCENT, - [50965] = 2, + anon_sym_PIPE_RBRACK, + [51033] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1857), 1, - anon_sym_in, - [50972] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1648), 1, - anon_sym_RBRACE, - [50979] = 2, + anon_sym_EQ_GT, + [51040] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1859), 1, - anon_sym_RBRACE, - [50986] = 2, + anon_sym_in, + [51047] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1861), 1, + anon_sym_RPAREN, + [51054] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1720), 1, anon_sym_RBRACK, - [50993] = 2, + [51061] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1863), 1, anon_sym_PIPE_RBRACK, - [51000] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1139), 1, - sym_interpolation_end, - [51007] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(567), 1, - sym_interpolation_end, - [51014] = 2, + [51068] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1865), 1, - anon_sym_RBRACE, - [51021] = 2, + anon_sym_PERCENT, + [51075] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1867), 1, anon_sym_RBRACE, - [51028] = 2, + [51082] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1869), 1, anon_sym_RBRACE, - [51035] = 2, + [51089] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1871), 1, - anon_sym_else, - [51042] = 2, + anon_sym_RBRACE, + [51096] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1873), 1, - anon_sym_EQ, - [51049] = 2, + anon_sym_RPAREN, + [51103] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1608), 1, + anon_sym_RBRACK, + [51110] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1875), 1, anon_sym_PIPE_RBRACK, - [51056] = 2, + [51117] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1877), 1, - anon_sym_RBRACE, - [51063] = 2, + anon_sym_PERCENT, + [51124] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1879), 1, - anon_sym_PIPE_RBRACK, - [51070] = 2, + anon_sym_else, + [51131] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1881), 1, - anon_sym_RPAREN, - [51077] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1596), 1, anon_sym_RBRACE, - [51084] = 2, + [51138] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1883), 1, - anon_sym_RBRACE, - [51091] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1885), 1, - anon_sym_RBRACE, - [51098] = 2, + anon_sym_PIPE_RBRACK, + [51145] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1887), 1, - anon_sym_RPAREN, - [51105] = 2, + ACTIONS(1793), 1, + anon_sym_COMMA, + [51152] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1715), 1, - anon_sym_RBRACK, - [51112] = 2, + ACTIONS(1682), 1, + anon_sym_RBRACE, + [51159] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1889), 1, - anon_sym_PERCENT, - [51119] = 2, + ACTIONS(1885), 1, + anon_sym_in, + [51166] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1123), 1, - sym_interpolation_end, - [51126] = 2, + ACTIONS(1887), 1, + anon_sym_RBRACE, + [51173] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1711), 1, + ACTIONS(1889), 1, anon_sym_RBRACE, - [51133] = 2, + [51180] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1891), 1, anon_sym_RBRACE, - [51140] = 2, + [51187] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1893), 1, + ACTIONS(1676), 1, anon_sym_RBRACE, - [51147] = 2, + [51194] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1628), 1, - anon_sym_RBRACK, - [51154] = 2, + ACTIONS(1893), 1, + anon_sym_PIPE_RBRACK, + [51201] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1895), 1, - anon_sym_PIPE_RBRACK, - [51161] = 2, + sym_ident, + [51208] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1897), 1, - anon_sym_else, - [51168] = 2, + anon_sym_PERCENT, + [51215] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1653), 1, + anon_sym_RBRACK, + [51222] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1899), 1, - anon_sym_PIPE_RBRACK, - [51175] = 2, + anon_sym_RBRACE, + [51229] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1901), 1, anon_sym_RBRACE, - [51182] = 2, + [51236] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1903), 1, anon_sym_RBRACE, - [51189] = 2, + [51243] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1905), 1, - anon_sym_RBRACE, - [51196] = 2, + anon_sym_else, + [51250] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1907), 1, - anon_sym_RBRACE, - [51203] = 2, + anon_sym_RPAREN, + [51257] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1909), 1, - anon_sym_RBRACE, - [51210] = 2, + anon_sym_PIPE_RBRACK, + [51264] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1694), 1, + anon_sym_COMMA, + [51271] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1911), 1, anon_sym_RBRACE, - [51217] = 2, + [51278] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1913), 1, - anon_sym_else, - [51224] = 2, + anon_sym_PIPE_RBRACK, + [51285] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1915), 1, - anon_sym_EQ_GT, - [51231] = 2, + anon_sym_PIPE_RBRACK, + [51292] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1917), 1, - anon_sym_PIPE_RBRACK, - [51238] = 2, + anon_sym_else, + [51299] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1147), 1, + anon_sym_or, + [51306] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1919), 1, - anon_sym_in, - [51245] = 2, + anon_sym_PIPE_RBRACK, + [51313] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1921), 1, anon_sym_RBRACE, - [51252] = 2, + [51320] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1923), 1, - anon_sym_PIPE_RBRACK, - [51259] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1823), 1, - anon_sym_COMMA, - [51266] = 2, + anon_sym_RBRACE, + [51327] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1925), 1, - anon_sym_in, - [51273] = 2, + anon_sym_PIPE_RBRACK, + [51334] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1927), 1, - anon_sym_PIPE_RBRACK, - [51280] = 2, + anon_sym_else, + [51341] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1929), 1, - sym_interpolation_end, - [51287] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1931), 1, anon_sym_RBRACE, - [51294] = 2, + [51348] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1669), 1, + ACTIONS(1931), 1, anon_sym_RBRACE, - [51301] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1743), 1, - anon_sym_COMMA, - [51308] = 2, + [51355] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1933), 1, - anon_sym_PERCENT, - [51315] = 2, + anon_sym_RBRACE, + [51362] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1935), 1, - anon_sym_PIPE_RBRACK, - [51322] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1658), 1, - anon_sym_RBRACK, - [51329] = 2, + anon_sym_RBRACE, + [51369] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1937), 1, - anon_sym_RPAREN, - [51336] = 2, + anon_sym_RBRACE, + [51376] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1939), 1, - anon_sym_PERCENT, - [51343] = 2, + anon_sym_EQ_GT, + [51383] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1941), 1, - anon_sym_RBRACE, - [51350] = 2, + anon_sym_PIPE_RBRACK, + [51390] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1943), 1, - anon_sym_RPAREN, - [51357] = 2, + anon_sym_RBRACE, + [51397] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1945), 1, - sym_ident, - [51364] = 2, + ACTIONS(1596), 1, + anon_sym_RBRACE, + [51404] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(547), 1, - anon_sym_RPAREN, - [51371] = 2, + ACTIONS(1945), 1, + anon_sym_PERCENT, + [51411] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1947), 1, + ACTIONS(1600), 1, anon_sym_RBRACK, - [51378] = 2, + [51418] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1949), 1, + ACTIONS(1947), 1, anon_sym_RPAREN, - [51385] = 2, + [51425] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1951), 1, - anon_sym_RPAREN, - [51392] = 2, + ACTIONS(1127), 1, + sym_interpolation_end, + [51432] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1155), 1, - anon_sym_or, - [51399] = 2, + ACTIONS(1949), 1, + anon_sym_in, + [51439] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1951), 1, + anon_sym_RBRACK, + [51446] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1953), 1, - sym_signed_num_literal, - [51406] = 2, + anon_sym_RBRACK, + [51453] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1955), 1, anon_sym_PIPE_RBRACK, - [51413] = 2, + [51460] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1957), 1, - anon_sym_RBRACE, - [51420] = 2, + anon_sym_LBRACE, + [51467] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1959), 1, - anon_sym_PIPE_RBRACK, - [51427] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(918), 1, - anon_sym_RPAREN, - [51434] = 2, + anon_sym_RBRACE, + [51474] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1961), 1, - anon_sym_LBRACE, - [51441] = 2, + anon_sym_PIPE_RBRACK, + [51481] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1963), 1, - anon_sym_else, - [51448] = 2, + sym_ident, + [51488] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1965), 1, - anon_sym_RBRACE, - [51455] = 2, + anon_sym_else, + [51495] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1967), 1, - sym_ident, - [51462] = 2, + anon_sym_RBRACE, + [51502] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1969), 1, anon_sym_RBRACE, - [51469] = 2, + [51509] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1971), 1, anon_sym_RBRACE, - [51476] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(922), 1, - anon_sym_RPAREN, - [51483] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(930), 1, - anon_sym_RPAREN, - [51490] = 2, + [51516] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1973), 1, sym_ident, - [51497] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(934), 1, - anon_sym_RPAREN, - [51504] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(914), 1, - anon_sym_RPAREN, - [51511] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(549), 1, - anon_sym_RPAREN, - [51518] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(908), 1, - anon_sym_RPAREN, - [51525] = 2, + [51523] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1975), 1, - sym_ident, - [51532] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(926), 1, - anon_sym_RPAREN, - [51539] = 2, + anon_sym_RBRACK, + [51530] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1977), 1, - sym_ident, - [51546] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1135), 1, - sym_interpolation_end, - [51553] = 2, + anon_sym_RBRACE, + [51537] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1979), 1, - anon_sym_LBRACE, - [51560] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1981), 1, - anon_sym_PIPE_RBRACK, - [51567] = 2, + anon_sym_RBRACE, + [51544] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1983), 1, + ACTIONS(1630), 1, anon_sym_RBRACE, - [51574] = 2, + [51551] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1763), 1, + ACTIONS(1981), 1, sym_ident, - [51581] = 2, + [51558] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1606), 1, - anon_sym_RBRACE, - [51588] = 2, + ACTIONS(1983), 1, + sym_signed_num_literal, + [51565] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1985), 1, sym_ident, - [51595] = 2, + [51572] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1987), 1, - anon_sym_PERCENT, - [51602] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1614), 1, - anon_sym_RBRACK, - [51609] = 2, + anon_sym_PIPE_RBRACK, + [51579] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1989), 1, - anon_sym_RPAREN, - [51616] = 2, + anon_sym_LBRACE, + [51586] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1991), 1, - anon_sym_then, - [51623] = 2, + anon_sym_RBRACE, + [51593] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1993), 1, + anon_sym_RBRACE, + [51600] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1743), 1, sym_ident, - [51630] = 2, + [51607] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1995), 1, - anon_sym_EQ_GT, - [51637] = 2, + anon_sym_RPAREN, + [51614] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1997), 1, sym_ident, - [51644] = 2, + [51621] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1999), 1, - anon_sym_EQ, - [51651] = 2, + anon_sym_RBRACK, + [51628] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2001), 1, - anon_sym_LBRACE, - [51658] = 2, + anon_sym_RPAREN, + [51635] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2003), 1, - anon_sym_in, - [51665] = 2, + anon_sym_RBRACE, + [51642] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2005), 1, - anon_sym_PIPE_RBRACK, - [51672] = 2, + anon_sym_EQ, + [51649] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2007), 1, sym_ident, - [51679] = 2, + [51656] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2009), 1, - anon_sym_RBRACE, - [51686] = 2, + sym_interpolation_end, + [51663] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2011), 1, sym_ident, - [51693] = 2, + [51670] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2013), 1, - ts_builtin_sym_end, - [51700] = 2, + anon_sym_PERCENT, + [51677] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2015), 1, - anon_sym_PIPE_RBRACK, - [51707] = 2, + anon_sym_LBRACE, + [51684] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1659), 1, + anon_sym_RBRACK, + [51691] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2017), 1, - anon_sym_else, - [51714] = 2, + anon_sym_RPAREN, + [51698] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2019), 1, - anon_sym_RBRACE, - [51721] = 2, + sym_ident, + [51705] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1139), 1, + sym_interpolation_end, + [51712] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2021), 1, sym_ident, - [51728] = 2, + [51719] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2023), 1, - anon_sym_RBRACE, - [51735] = 2, + ts_builtin_sym_end, + [51726] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2025), 1, - sym_ident, - [51742] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1127), 1, - sym_interpolation_end, - [51749] = 2, + anon_sym_RBRACE, + [51733] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2027), 1, - anon_sym_LBRACE, - [51756] = 2, + anon_sym_then, + [51740] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2029), 1, - anon_sym_RBRACE, - [51763] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1131), 1, - sym_interpolation_end, - [51770] = 2, + anon_sym_RPAREN, + [51747] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2031), 1, sym_ident, - [51777] = 2, + [51754] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(926), 1, + anon_sym_RPAREN, + [51761] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2033), 1, - anon_sym_RBRACK, - [51784] = 2, + sym_ident, + [51768] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(910), 1, + anon_sym_RPAREN, + [51775] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2035), 1, - sym_ident, - [51791] = 2, + anon_sym_LBRACE, + [51782] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(547), 1, + anon_sym_RPAREN, + [51789] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1131), 1, + sym_interpolation_end, + [51796] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2037), 1, sym_ident, - [51798] = 2, + [51803] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(914), 1, + anon_sym_RPAREN, + [51810] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2039), 1, - anon_sym_RBRACE, - [51805] = 2, + sym_ident, + [51817] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2041), 1, sym_ident, - [51812] = 2, + [51824] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(934), 1, + anon_sym_RPAREN, + [51831] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(930), 1, + anon_sym_RPAREN, + [51838] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1135), 1, + sym_interpolation_end, + [51845] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2043), 1, - anon_sym_PIPE_RBRACK, - [51819] = 2, + sym_ident, + [51852] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(922), 1, + anon_sym_RPAREN, + [51859] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2045), 1, sym_ident, - [51826] = 2, + [51866] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2047), 1, - anon_sym_else, - [51833] = 2, + ACTIONS(918), 1, + anon_sym_RPAREN, + [51873] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2049), 1, - sym_ident, - [51840] = 2, + ACTIONS(2047), 1, + anon_sym_LBRACE, + [51880] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1638), 1, - anon_sym_COMMA, - [51847] = 2, + ACTIONS(2049), 1, + anon_sym_RPAREN, + [51887] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2051), 1, - anon_sym_LBRACE, - [51854] = 2, + anon_sym_RPAREN, + [51894] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2053), 1, - sym_signed_num_literal, - [51861] = 2, + sym_ident, + [51901] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(549), 1, + anon_sym_RPAREN, + [51908] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2055), 1, - anon_sym_PIPE_RBRACK, - [51868] = 2, + sym_ident, + [51915] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2057), 1, - sym_ident, - [51875] = 2, + anon_sym_RPAREN, + [51922] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1708), 1, + anon_sym_RBRACK, + [51929] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2059), 1, - anon_sym_RBRACE, - [51882] = 2, + anon_sym_PERCENT, + [51936] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2061), 1, sym_ident, - [51889] = 2, + [51943] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2063), 1, - anon_sym_RBRACE, - [51896] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1719), 1, - anon_sym_RBRACE, - [51903] = 2, + sym_ident, + [51950] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2065), 1, - anon_sym_RPAREN, - [51910] = 2, + sym_interpolation_end, + [51957] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2067), 1, - anon_sym_RBRACE, - [51917] = 2, + sym_ident, + [51964] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2069), 1, - sym_ident, - [51924] = 2, + anon_sym_RBRACE, + [51971] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2071), 1, - anon_sym_RBRACK, - [51931] = 2, + anon_sym_then, + [51978] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2073), 1, - sym_ident, - [51938] = 2, + anon_sym_RPAREN, + [51985] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2075), 1, - anon_sym_RPAREN, - [51945] = 2, + anon_sym_then, + [51992] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2077), 1, - anon_sym_then, - [51952] = 2, + anon_sym_RPAREN, + [51999] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2079), 1, - anon_sym_RBRACE, - [51959] = 2, + anon_sym_then, + [52006] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2081), 1, - anon_sym_then, - [51966] = 2, + anon_sym_RBRACK, + [52013] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2083), 1, - anon_sym_RBRACE, - [51973] = 2, + anon_sym_then, + [52020] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2085), 1, - anon_sym_then, - [51980] = 2, + anon_sym_PIPE_RBRACK, + [52027] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2087), 1, - sym_interpolation_end, - [51987] = 2, + anon_sym_then, + [52034] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2089), 1, - anon_sym_then, - [51994] = 2, + anon_sym_LBRACE, + [52041] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2091), 1, - anon_sym_PERCENT, - [52001] = 2, + anon_sym_EQ, + [52048] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2093), 1, - anon_sym_then, - [52008] = 2, + sym_ident, + [52055] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2095), 1, - anon_sym_LBRACE, - [52015] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1654), 1, - anon_sym_RBRACK, - [52022] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2097), 1, anon_sym_RPAREN, - [52029] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2099), 1, - sym_ident, - [52036] = 2, + [52062] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2101), 1, - anon_sym_RBRACE, + ACTIONS(2097), 1, + sym_signed_num_literal, }; static const uint32_t ts_small_parse_table_map[] = { @@ -47356,85 +47372,85 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(69)] = 8250, [SMALL_STATE(70)] = 8385, [SMALL_STATE(71)] = 8520, - [SMALL_STATE(72)] = 8651, - [SMALL_STATE(73)] = 8752, - [SMALL_STATE(74)] = 8883, - [SMALL_STATE(75)] = 9014, + [SMALL_STATE(72)] = 8621, + [SMALL_STATE(73)] = 8722, + [SMALL_STATE(74)] = 8853, + [SMALL_STATE(75)] = 8984, [SMALL_STATE(76)] = 9115, [SMALL_STATE(77)] = 9216, [SMALL_STATE(78)] = 9347, - [SMALL_STATE(79)] = 9448, - [SMALL_STATE(80)] = 9579, - [SMALL_STATE(81)] = 9680, + [SMALL_STATE(79)] = 9478, + [SMALL_STATE(80)] = 9609, + [SMALL_STATE(81)] = 9710, [SMALL_STATE(82)] = 9811, [SMALL_STATE(83)] = 9909, [SMALL_STATE(84)] = 10007, [SMALL_STATE(85)] = 10105, [SMALL_STATE(86)] = 10203, [SMALL_STATE(87)] = 10301, - [SMALL_STATE(88)] = 10356, - [SMALL_STATE(89)] = 10411, - [SMALL_STATE(90)] = 10466, + [SMALL_STATE(88)] = 10358, + [SMALL_STATE(89)] = 10413, + [SMALL_STATE(90)] = 10468, [SMALL_STATE(91)] = 10523, - [SMALL_STATE(92)] = 10578, - [SMALL_STATE(93)] = 10633, - [SMALL_STATE(94)] = 10688, - [SMALL_STATE(95)] = 10743, + [SMALL_STATE(92)] = 10580, + [SMALL_STATE(93)] = 10635, + [SMALL_STATE(94)] = 10690, + [SMALL_STATE(95)] = 10745, [SMALL_STATE(96)] = 10800, [SMALL_STATE(97)] = 10855, - [SMALL_STATE(98)] = 10912, - [SMALL_STATE(99)] = 10967, - [SMALL_STATE(100)] = 11022, - [SMALL_STATE(101)] = 11077, - [SMALL_STATE(102)] = 11134, - [SMALL_STATE(103)] = 11189, - [SMALL_STATE(104)] = 11244, - [SMALL_STATE(105)] = 11299, - [SMALL_STATE(106)] = 11354, - [SMALL_STATE(107)] = 11409, - [SMALL_STATE(108)] = 11464, - [SMALL_STATE(109)] = 11519, - [SMALL_STATE(110)] = 11574, - [SMALL_STATE(111)] = 11629, - [SMALL_STATE(112)] = 11684, - [SMALL_STATE(113)] = 11739, - [SMALL_STATE(114)] = 11794, - [SMALL_STATE(115)] = 11849, - [SMALL_STATE(116)] = 11904, - [SMALL_STATE(117)] = 11959, - [SMALL_STATE(118)] = 12014, - [SMALL_STATE(119)] = 12069, - [SMALL_STATE(120)] = 12124, - [SMALL_STATE(121)] = 12179, - [SMALL_STATE(122)] = 12234, - [SMALL_STATE(123)] = 12289, - [SMALL_STATE(124)] = 12344, + [SMALL_STATE(98)] = 10910, + [SMALL_STATE(99)] = 10965, + [SMALL_STATE(100)] = 11020, + [SMALL_STATE(101)] = 11075, + [SMALL_STATE(102)] = 11130, + [SMALL_STATE(103)] = 11185, + [SMALL_STATE(104)] = 11240, + [SMALL_STATE(105)] = 11295, + [SMALL_STATE(106)] = 11352, + [SMALL_STATE(107)] = 11407, + [SMALL_STATE(108)] = 11462, + [SMALL_STATE(109)] = 11517, + [SMALL_STATE(110)] = 11572, + [SMALL_STATE(111)] = 11627, + [SMALL_STATE(112)] = 11682, + [SMALL_STATE(113)] = 11737, + [SMALL_STATE(114)] = 11792, + [SMALL_STATE(115)] = 11847, + [SMALL_STATE(116)] = 11902, + [SMALL_STATE(117)] = 11957, + [SMALL_STATE(118)] = 12012, + [SMALL_STATE(119)] = 12067, + [SMALL_STATE(120)] = 12122, + [SMALL_STATE(121)] = 12177, + [SMALL_STATE(122)] = 12232, + [SMALL_STATE(123)] = 12287, + [SMALL_STATE(124)] = 12342, [SMALL_STATE(125)] = 12399, [SMALL_STATE(126)] = 12454, [SMALL_STATE(127)] = 12509, [SMALL_STATE(128)] = 12625, [SMALL_STATE(129)] = 12741, - [SMALL_STATE(130)] = 12795, - [SMALL_STATE(131)] = 12911, - [SMALL_STATE(132)] = 13027, - [SMALL_STATE(133)] = 13143, - [SMALL_STATE(134)] = 13197, - [SMALL_STATE(135)] = 13251, - [SMALL_STATE(136)] = 13367, - [SMALL_STATE(137)] = 13421, - [SMALL_STATE(138)] = 13537, - [SMALL_STATE(139)] = 13653, - [SMALL_STATE(140)] = 13769, - [SMALL_STATE(141)] = 13823, - [SMALL_STATE(142)] = 13939, - [SMALL_STATE(143)] = 14055, - [SMALL_STATE(144)] = 14109, - [SMALL_STATE(145)] = 14225, - [SMALL_STATE(146)] = 14341, - [SMALL_STATE(147)] = 14457, - [SMALL_STATE(148)] = 14573, - [SMALL_STATE(149)] = 14689, - [SMALL_STATE(150)] = 14743, + [SMALL_STATE(130)] = 12857, + [SMALL_STATE(131)] = 12973, + [SMALL_STATE(132)] = 13089, + [SMALL_STATE(133)] = 13205, + [SMALL_STATE(134)] = 13321, + [SMALL_STATE(135)] = 13375, + [SMALL_STATE(136)] = 13491, + [SMALL_STATE(137)] = 13545, + [SMALL_STATE(138)] = 13661, + [SMALL_STATE(139)] = 13777, + [SMALL_STATE(140)] = 13893, + [SMALL_STATE(141)] = 13947, + [SMALL_STATE(142)] = 14063, + [SMALL_STATE(143)] = 14117, + [SMALL_STATE(144)] = 14233, + [SMALL_STATE(145)] = 14349, + [SMALL_STATE(146)] = 14403, + [SMALL_STATE(147)] = 14519, + [SMALL_STATE(148)] = 14635, + [SMALL_STATE(149)] = 14751, + [SMALL_STATE(150)] = 14805, [SMALL_STATE(151)] = 14859, [SMALL_STATE(152)] = 14913, [SMALL_STATE(153)] = 15029, @@ -47536,10 +47552,10 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(249)] = 23661, [SMALL_STATE(250)] = 23709, [SMALL_STATE(251)] = 23757, - [SMALL_STATE(252)] = 23805, + [SMALL_STATE(252)] = 23807, [SMALL_STATE(253)] = 23855, [SMALL_STATE(254)] = 23903, - [SMALL_STATE(255)] = 23953, + [SMALL_STATE(255)] = 23951, [SMALL_STATE(256)] = 24001, [SMALL_STATE(257)] = 24049, [SMALL_STATE(258)] = 24097, @@ -47604,22 +47620,22 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(317)] = 26929, [SMALL_STATE(318)] = 26977, [SMALL_STATE(319)] = 27025, - [SMALL_STATE(320)] = 27075, - [SMALL_STATE(321)] = 27125, - [SMALL_STATE(322)] = 27173, - [SMALL_STATE(323)] = 27223, - [SMALL_STATE(324)] = 27271, - [SMALL_STATE(325)] = 27319, + [SMALL_STATE(320)] = 27073, + [SMALL_STATE(321)] = 27123, + [SMALL_STATE(322)] = 27171, + [SMALL_STATE(323)] = 27219, + [SMALL_STATE(324)] = 27269, + [SMALL_STATE(325)] = 27317, [SMALL_STATE(326)] = 27367, [SMALL_STATE(327)] = 27415, [SMALL_STATE(328)] = 27463, - [SMALL_STATE(329)] = 27513, - [SMALL_STATE(330)] = 27561, + [SMALL_STATE(329)] = 27511, + [SMALL_STATE(330)] = 27559, [SMALL_STATE(331)] = 27609, [SMALL_STATE(332)] = 27657, [SMALL_STATE(333)] = 27705, - [SMALL_STATE(334)] = 27755, - [SMALL_STATE(335)] = 27803, + [SMALL_STATE(334)] = 27753, + [SMALL_STATE(335)] = 27801, [SMALL_STATE(336)] = 27851, [SMALL_STATE(337)] = 27899, [SMALL_STATE(338)] = 27947, @@ -47634,7 +47650,7 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(347)] = 28385, [SMALL_STATE(348)] = 28433, [SMALL_STATE(349)] = 28481, - [SMALL_STATE(350)] = 28529, + [SMALL_STATE(350)] = 28531, [SMALL_STATE(351)] = 28579, [SMALL_STATE(352)] = 28629, [SMALL_STATE(353)] = 28677, @@ -47647,8 +47663,8 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(360)] = 29013, [SMALL_STATE(361)] = 29061, [SMALL_STATE(362)] = 29109, - [SMALL_STATE(363)] = 29157, - [SMALL_STATE(364)] = 29207, + [SMALL_STATE(363)] = 29159, + [SMALL_STATE(364)] = 29209, [SMALL_STATE(365)] = 29257, [SMALL_STATE(366)] = 29305, [SMALL_STATE(367)] = 29353, @@ -47747,14 +47763,14 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(460)] = 33784, [SMALL_STATE(461)] = 33831, [SMALL_STATE(462)] = 33923, - [SMALL_STATE(463)] = 33993, - [SMALL_STATE(464)] = 34075, - [SMALL_STATE(465)] = 34157, - [SMALL_STATE(466)] = 34217, - [SMALL_STATE(467)] = 34283, - [SMALL_STATE(468)] = 34343, - [SMALL_STATE(469)] = 34405, - [SMALL_STATE(470)] = 34469, + [SMALL_STATE(463)] = 33989, + [SMALL_STATE(464)] = 34071, + [SMALL_STATE(465)] = 34153, + [SMALL_STATE(466)] = 34213, + [SMALL_STATE(467)] = 34279, + [SMALL_STATE(468)] = 34339, + [SMALL_STATE(469)] = 34401, + [SMALL_STATE(470)] = 34465, [SMALL_STATE(471)] = 34535, [SMALL_STATE(472)] = 34609, [SMALL_STATE(473)] = 34685, @@ -47763,19 +47779,19 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(476)] = 34949, [SMALL_STATE(477)] = 35042, [SMALL_STATE(478)] = 35135, - [SMALL_STATE(479)] = 35223, - [SMALL_STATE(480)] = 35307, - [SMALL_STATE(481)] = 35383, - [SMALL_STATE(482)] = 35467, - [SMALL_STATE(483)] = 35557, - [SMALL_STATE(484)] = 35633, - [SMALL_STATE(485)] = 35717, - [SMALL_STATE(486)] = 35807, - [SMALL_STATE(487)] = 35883, - [SMALL_STATE(488)] = 35959, - [SMALL_STATE(489)] = 36043, - [SMALL_STATE(490)] = 36119, - [SMALL_STATE(491)] = 36209, + [SMALL_STATE(479)] = 35211, + [SMALL_STATE(480)] = 35287, + [SMALL_STATE(481)] = 35371, + [SMALL_STATE(482)] = 35461, + [SMALL_STATE(483)] = 35537, + [SMALL_STATE(484)] = 35625, + [SMALL_STATE(485)] = 35709, + [SMALL_STATE(486)] = 35799, + [SMALL_STATE(487)] = 35875, + [SMALL_STATE(488)] = 35965, + [SMALL_STATE(489)] = 36049, + [SMALL_STATE(490)] = 36125, + [SMALL_STATE(491)] = 36215, [SMALL_STATE(492)] = 36299, [SMALL_STATE(493)] = 36375, [SMALL_STATE(494)] = 36459, @@ -47794,644 +47810,645 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(507)] = 37596, [SMALL_STATE(508)] = 37683, [SMALL_STATE(509)] = 37767, - [SMALL_STATE(510)] = 37851, - [SMALL_STATE(511)] = 37910, - [SMALL_STATE(512)] = 37969, - [SMALL_STATE(513)] = 38032, - [SMALL_STATE(514)] = 38099, - [SMALL_STATE(515)] = 38168, - [SMALL_STATE(516)] = 38223, - [SMALL_STATE(517)] = 38294, - [SMALL_STATE(518)] = 38369, - [SMALL_STATE(519)] = 38428, - [SMALL_STATE(520)] = 38503, - [SMALL_STATE(521)] = 38556, - [SMALL_STATE(522)] = 38631, - [SMALL_STATE(523)] = 38686, - [SMALL_STATE(524)] = 38743, - [SMALL_STATE(525)] = 38802, - [SMALL_STATE(526)] = 38877, - [SMALL_STATE(527)] = 38936, - [SMALL_STATE(528)] = 38989, - [SMALL_STATE(529)] = 39042, - [SMALL_STATE(530)] = 39099, - [SMALL_STATE(531)] = 39158, - [SMALL_STATE(532)] = 39211, - [SMALL_STATE(533)] = 39286, - [SMALL_STATE(534)] = 39339, - [SMALL_STATE(535)] = 39394, - [SMALL_STATE(536)] = 39453, - [SMALL_STATE(537)] = 39520, - [SMALL_STATE(538)] = 39577, - [SMALL_STATE(539)] = 39646, - [SMALL_STATE(540)] = 39717, - [SMALL_STATE(541)] = 39788, - [SMALL_STATE(542)] = 39857, - [SMALL_STATE(543)] = 39924, - [SMALL_STATE(544)] = 39983, - [SMALL_STATE(545)] = 40046, - [SMALL_STATE(546)] = 40109, - [SMALL_STATE(547)] = 40166, - [SMALL_STATE(548)] = 40221, - [SMALL_STATE(549)] = 40288, - [SMALL_STATE(550)] = 40341, - [SMALL_STATE(551)] = 40422, - [SMALL_STATE(552)] = 40481, - [SMALL_STATE(553)] = 40534, - [SMALL_STATE(554)] = 40603, - [SMALL_STATE(555)] = 40674, - [SMALL_STATE(556)] = 40755, - [SMALL_STATE(557)] = 40830, - [SMALL_STATE(558)] = 40901, - [SMALL_STATE(559)] = 40970, - [SMALL_STATE(560)] = 41037, - [SMALL_STATE(561)] = 41100, - [SMALL_STATE(562)] = 41159, - [SMALL_STATE(563)] = 41216, - [SMALL_STATE(564)] = 41271, - [SMALL_STATE(565)] = 41340, - [SMALL_STATE(566)] = 41393, - [SMALL_STATE(567)] = 41474, - [SMALL_STATE(568)] = 41527, - [SMALL_STATE(569)] = 41602, - [SMALL_STATE(570)] = 41677, - [SMALL_STATE(571)] = 41740, - [SMALL_STATE(572)] = 41815, - [SMALL_STATE(573)] = 41896, - [SMALL_STATE(574)] = 41971, - [SMALL_STATE(575)] = 42052, - [SMALL_STATE(576)] = 42105, - [SMALL_STATE(577)] = 42141, - [SMALL_STATE(578)] = 42177, - [SMALL_STATE(579)] = 42213, - [SMALL_STATE(580)] = 42249, - [SMALL_STATE(581)] = 42325, - [SMALL_STATE(582)] = 42401, - [SMALL_STATE(583)] = 42469, - [SMALL_STATE(584)] = 42537, - [SMALL_STATE(585)] = 42605, - [SMALL_STATE(586)] = 42670, - [SMALL_STATE(587)] = 42735, - [SMALL_STATE(588)] = 42768, - [SMALL_STATE(589)] = 42833, - [SMALL_STATE(590)] = 42898, - [SMALL_STATE(591)] = 42963, - [SMALL_STATE(592)] = 43028, - [SMALL_STATE(593)] = 43095, - [SMALL_STATE(594)] = 43160, - [SMALL_STATE(595)] = 43222, - [SMALL_STATE(596)] = 43284, - [SMALL_STATE(597)] = 43346, - [SMALL_STATE(598)] = 43408, - [SMALL_STATE(599)] = 43470, - [SMALL_STATE(600)] = 43502, - [SMALL_STATE(601)] = 43534, - [SMALL_STATE(602)] = 43566, - [SMALL_STATE(603)] = 43628, - [SMALL_STATE(604)] = 43690, - [SMALL_STATE(605)] = 43722, - [SMALL_STATE(606)] = 43784, - [SMALL_STATE(607)] = 43816, - [SMALL_STATE(608)] = 43848, - [SMALL_STATE(609)] = 43880, - [SMALL_STATE(610)] = 43912, - [SMALL_STATE(611)] = 43973, - [SMALL_STATE(612)] = 44029, - [SMALL_STATE(613)] = 44085, - [SMALL_STATE(614)] = 44113, - [SMALL_STATE(615)] = 44141, - [SMALL_STATE(616)] = 44169, - [SMALL_STATE(617)] = 44193, - [SMALL_STATE(618)] = 44217, - [SMALL_STATE(619)] = 44241, - [SMALL_STATE(620)] = 44265, - [SMALL_STATE(621)] = 44289, - [SMALL_STATE(622)] = 44336, - [SMALL_STATE(623)] = 44383, - [SMALL_STATE(624)] = 44430, - [SMALL_STATE(625)] = 44453, - [SMALL_STATE(626)] = 44500, - [SMALL_STATE(627)] = 44547, - [SMALL_STATE(628)] = 44572, - [SMALL_STATE(629)] = 44619, - [SMALL_STATE(630)] = 44641, - [SMALL_STATE(631)] = 44663, - [SMALL_STATE(632)] = 44685, - [SMALL_STATE(633)] = 44707, - [SMALL_STATE(634)] = 44729, - [SMALL_STATE(635)] = 44751, - [SMALL_STATE(636)] = 44773, - [SMALL_STATE(637)] = 44795, - [SMALL_STATE(638)] = 44817, - [SMALL_STATE(639)] = 44861, - [SMALL_STATE(640)] = 44905, - [SMALL_STATE(641)] = 44927, - [SMALL_STATE(642)] = 44949, - [SMALL_STATE(643)] = 44993, - [SMALL_STATE(644)] = 45015, - [SMALL_STATE(645)] = 45037, - [SMALL_STATE(646)] = 45059, - [SMALL_STATE(647)] = 45103, - [SMALL_STATE(648)] = 45125, - [SMALL_STATE(649)] = 45147, - [SMALL_STATE(650)] = 45169, - [SMALL_STATE(651)] = 45191, - [SMALL_STATE(652)] = 45213, - [SMALL_STATE(653)] = 45235, - [SMALL_STATE(654)] = 45257, - [SMALL_STATE(655)] = 45301, - [SMALL_STATE(656)] = 45323, - [SMALL_STATE(657)] = 45345, - [SMALL_STATE(658)] = 45367, - [SMALL_STATE(659)] = 45389, - [SMALL_STATE(660)] = 45411, - [SMALL_STATE(661)] = 45433, - [SMALL_STATE(662)] = 45477, - [SMALL_STATE(663)] = 45514, - [SMALL_STATE(664)] = 45535, - [SMALL_STATE(665)] = 45555, - [SMALL_STATE(666)] = 45575, - [SMALL_STATE(667)] = 45601, - [SMALL_STATE(668)] = 45627, - [SMALL_STATE(669)] = 45647, - [SMALL_STATE(670)] = 45666, - [SMALL_STATE(671)] = 45685, - [SMALL_STATE(672)] = 45704, - [SMALL_STATE(673)] = 45723, - [SMALL_STATE(674)] = 45742, - [SMALL_STATE(675)] = 45761, - [SMALL_STATE(676)] = 45779, - [SMALL_STATE(677)] = 45805, - [SMALL_STATE(678)] = 45823, - [SMALL_STATE(679)] = 45841, - [SMALL_STATE(680)] = 45861, - [SMALL_STATE(681)] = 45887, - [SMALL_STATE(682)] = 45907, - [SMALL_STATE(683)] = 45925, - [SMALL_STATE(684)] = 45951, - [SMALL_STATE(685)] = 45969, - [SMALL_STATE(686)] = 45987, - [SMALL_STATE(687)] = 46013, - [SMALL_STATE(688)] = 46039, - [SMALL_STATE(689)] = 46065, - [SMALL_STATE(690)] = 46083, - [SMALL_STATE(691)] = 46109, - [SMALL_STATE(692)] = 46139, - [SMALL_STATE(693)] = 46165, - [SMALL_STATE(694)] = 46183, - [SMALL_STATE(695)] = 46209, - [SMALL_STATE(696)] = 46235, - [SMALL_STATE(697)] = 46253, - [SMALL_STATE(698)] = 46271, - [SMALL_STATE(699)] = 46289, - [SMALL_STATE(700)] = 46315, - [SMALL_STATE(701)] = 46341, - [SMALL_STATE(702)] = 46367, - [SMALL_STATE(703)] = 46385, - [SMALL_STATE(704)] = 46411, - [SMALL_STATE(705)] = 46437, - [SMALL_STATE(706)] = 46455, - [SMALL_STATE(707)] = 46473, - [SMALL_STATE(708)] = 46500, - [SMALL_STATE(709)] = 46527, - [SMALL_STATE(710)] = 46554, - [SMALL_STATE(711)] = 46581, - [SMALL_STATE(712)] = 46608, - [SMALL_STATE(713)] = 46627, - [SMALL_STATE(714)] = 46654, - [SMALL_STATE(715)] = 46681, - [SMALL_STATE(716)] = 46700, - [SMALL_STATE(717)] = 46727, - [SMALL_STATE(718)] = 46754, - [SMALL_STATE(719)] = 46781, - [SMALL_STATE(720)] = 46798, - [SMALL_STATE(721)] = 46825, - [SMALL_STATE(722)] = 46852, - [SMALL_STATE(723)] = 46879, - [SMALL_STATE(724)] = 46896, - [SMALL_STATE(725)] = 46915, - [SMALL_STATE(726)] = 46942, - [SMALL_STATE(727)] = 46961, - [SMALL_STATE(728)] = 46988, - [SMALL_STATE(729)] = 47013, - [SMALL_STATE(730)] = 47031, - [SMALL_STATE(731)] = 47053, - [SMALL_STATE(732)] = 47071, - [SMALL_STATE(733)] = 47093, - [SMALL_STATE(734)] = 47115, - [SMALL_STATE(735)] = 47131, - [SMALL_STATE(736)] = 47153, - [SMALL_STATE(737)] = 47175, - [SMALL_STATE(738)] = 47197, - [SMALL_STATE(739)] = 47213, - [SMALL_STATE(740)] = 47229, - [SMALL_STATE(741)] = 47251, - [SMALL_STATE(742)] = 47273, - [SMALL_STATE(743)] = 47295, - [SMALL_STATE(744)] = 47313, - [SMALL_STATE(745)] = 47335, - [SMALL_STATE(746)] = 47357, - [SMALL_STATE(747)] = 47379, + [SMALL_STATE(510)] = 37839, + [SMALL_STATE(511)] = 37923, + [SMALL_STATE(512)] = 37980, + [SMALL_STATE(513)] = 38049, + [SMALL_STATE(514)] = 38102, + [SMALL_STATE(515)] = 38161, + [SMALL_STATE(516)] = 38236, + [SMALL_STATE(517)] = 38311, + [SMALL_STATE(518)] = 38364, + [SMALL_STATE(519)] = 38417, + [SMALL_STATE(520)] = 38492, + [SMALL_STATE(521)] = 38551, + [SMALL_STATE(522)] = 38626, + [SMALL_STATE(523)] = 38679, + [SMALL_STATE(524)] = 38732, + [SMALL_STATE(525)] = 38807, + [SMALL_STATE(526)] = 38864, + [SMALL_STATE(527)] = 38923, + [SMALL_STATE(528)] = 38986, + [SMALL_STATE(529)] = 39053, + [SMALL_STATE(530)] = 39122, + [SMALL_STATE(531)] = 39193, + [SMALL_STATE(532)] = 39268, + [SMALL_STATE(533)] = 39327, + [SMALL_STATE(534)] = 39408, + [SMALL_STATE(535)] = 39463, + [SMALL_STATE(536)] = 39516, + [SMALL_STATE(537)] = 39591, + [SMALL_STATE(538)] = 39666, + [SMALL_STATE(539)] = 39719, + [SMALL_STATE(540)] = 39774, + [SMALL_STATE(541)] = 39829, + [SMALL_STATE(542)] = 39888, + [SMALL_STATE(543)] = 39945, + [SMALL_STATE(544)] = 40004, + [SMALL_STATE(545)] = 40067, + [SMALL_STATE(546)] = 40134, + [SMALL_STATE(547)] = 40205, + [SMALL_STATE(548)] = 40268, + [SMALL_STATE(549)] = 40325, + [SMALL_STATE(550)] = 40384, + [SMALL_STATE(551)] = 40451, + [SMALL_STATE(552)] = 40514, + [SMALL_STATE(553)] = 40567, + [SMALL_STATE(554)] = 40626, + [SMALL_STATE(555)] = 40681, + [SMALL_STATE(556)] = 40762, + [SMALL_STATE(557)] = 40815, + [SMALL_STATE(558)] = 40874, + [SMALL_STATE(559)] = 40929, + [SMALL_STATE(560)] = 40982, + [SMALL_STATE(561)] = 41049, + [SMALL_STATE(562)] = 41118, + [SMALL_STATE(563)] = 41187, + [SMALL_STATE(564)] = 41258, + [SMALL_STATE(565)] = 41339, + [SMALL_STATE(566)] = 41410, + [SMALL_STATE(567)] = 41491, + [SMALL_STATE(568)] = 41548, + [SMALL_STATE(569)] = 41619, + [SMALL_STATE(570)] = 41694, + [SMALL_STATE(571)] = 41769, + [SMALL_STATE(572)] = 41838, + [SMALL_STATE(573)] = 41905, + [SMALL_STATE(574)] = 41968, + [SMALL_STATE(575)] = 42027, + [SMALL_STATE(576)] = 42108, + [SMALL_STATE(577)] = 42144, + [SMALL_STATE(578)] = 42180, + [SMALL_STATE(579)] = 42216, + [SMALL_STATE(580)] = 42252, + [SMALL_STATE(581)] = 42328, + [SMALL_STATE(582)] = 42404, + [SMALL_STATE(583)] = 42472, + [SMALL_STATE(584)] = 42540, + [SMALL_STATE(585)] = 42610, + [SMALL_STATE(586)] = 42678, + [SMALL_STATE(587)] = 42743, + [SMALL_STATE(588)] = 42808, + [SMALL_STATE(589)] = 42873, + [SMALL_STATE(590)] = 42938, + [SMALL_STATE(591)] = 43003, + [SMALL_STATE(592)] = 43068, + [SMALL_STATE(593)] = 43133, + [SMALL_STATE(594)] = 43166, + [SMALL_STATE(595)] = 43228, + [SMALL_STATE(596)] = 43260, + [SMALL_STATE(597)] = 43324, + [SMALL_STATE(598)] = 43386, + [SMALL_STATE(599)] = 43448, + [SMALL_STATE(600)] = 43510, + [SMALL_STATE(601)] = 43542, + [SMALL_STATE(602)] = 43574, + [SMALL_STATE(603)] = 43636, + [SMALL_STATE(604)] = 43698, + [SMALL_STATE(605)] = 43730, + [SMALL_STATE(606)] = 43792, + [SMALL_STATE(607)] = 43824, + [SMALL_STATE(608)] = 43856, + [SMALL_STATE(609)] = 43888, + [SMALL_STATE(610)] = 43950, + [SMALL_STATE(611)] = 43982, + [SMALL_STATE(612)] = 44038, + [SMALL_STATE(613)] = 44094, + [SMALL_STATE(614)] = 44122, + [SMALL_STATE(615)] = 44150, + [SMALL_STATE(616)] = 44178, + [SMALL_STATE(617)] = 44202, + [SMALL_STATE(618)] = 44226, + [SMALL_STATE(619)] = 44250, + [SMALL_STATE(620)] = 44274, + [SMALL_STATE(621)] = 44298, + [SMALL_STATE(622)] = 44323, + [SMALL_STATE(623)] = 44346, + [SMALL_STATE(624)] = 44393, + [SMALL_STATE(625)] = 44440, + [SMALL_STATE(626)] = 44487, + [SMALL_STATE(627)] = 44534, + [SMALL_STATE(628)] = 44581, + [SMALL_STATE(629)] = 44628, + [SMALL_STATE(630)] = 44650, + [SMALL_STATE(631)] = 44694, + [SMALL_STATE(632)] = 44738, + [SMALL_STATE(633)] = 44760, + [SMALL_STATE(634)] = 44782, + [SMALL_STATE(635)] = 44804, + [SMALL_STATE(636)] = 44848, + [SMALL_STATE(637)] = 44892, + [SMALL_STATE(638)] = 44914, + [SMALL_STATE(639)] = 44936, + [SMALL_STATE(640)] = 44958, + [SMALL_STATE(641)] = 44980, + [SMALL_STATE(642)] = 45002, + [SMALL_STATE(643)] = 45024, + [SMALL_STATE(644)] = 45046, + [SMALL_STATE(645)] = 45068, + [SMALL_STATE(646)] = 45090, + [SMALL_STATE(647)] = 45112, + [SMALL_STATE(648)] = 45134, + [SMALL_STATE(649)] = 45156, + [SMALL_STATE(650)] = 45178, + [SMALL_STATE(651)] = 45200, + [SMALL_STATE(652)] = 45222, + [SMALL_STATE(653)] = 45244, + [SMALL_STATE(654)] = 45266, + [SMALL_STATE(655)] = 45288, + [SMALL_STATE(656)] = 45310, + [SMALL_STATE(657)] = 45332, + [SMALL_STATE(658)] = 45354, + [SMALL_STATE(659)] = 45376, + [SMALL_STATE(660)] = 45420, + [SMALL_STATE(661)] = 45464, + [SMALL_STATE(662)] = 45486, + [SMALL_STATE(663)] = 45507, + [SMALL_STATE(664)] = 45544, + [SMALL_STATE(665)] = 45564, + [SMALL_STATE(666)] = 45584, + [SMALL_STATE(667)] = 45610, + [SMALL_STATE(668)] = 45636, + [SMALL_STATE(669)] = 45656, + [SMALL_STATE(670)] = 45675, + [SMALL_STATE(671)] = 45694, + [SMALL_STATE(672)] = 45713, + [SMALL_STATE(673)] = 45732, + [SMALL_STATE(674)] = 45751, + [SMALL_STATE(675)] = 45770, + [SMALL_STATE(676)] = 45788, + [SMALL_STATE(677)] = 45808, + [SMALL_STATE(678)] = 45834, + [SMALL_STATE(679)] = 45852, + [SMALL_STATE(680)] = 45870, + [SMALL_STATE(681)] = 45896, + [SMALL_STATE(682)] = 45914, + [SMALL_STATE(683)] = 45940, + [SMALL_STATE(684)] = 45958, + [SMALL_STATE(685)] = 45976, + [SMALL_STATE(686)] = 46002, + [SMALL_STATE(687)] = 46020, + [SMALL_STATE(688)] = 46046, + [SMALL_STATE(689)] = 46072, + [SMALL_STATE(690)] = 46098, + [SMALL_STATE(691)] = 46116, + [SMALL_STATE(692)] = 46134, + [SMALL_STATE(693)] = 46164, + [SMALL_STATE(694)] = 46190, + [SMALL_STATE(695)] = 46208, + [SMALL_STATE(696)] = 46226, + [SMALL_STATE(697)] = 46252, + [SMALL_STATE(698)] = 46270, + [SMALL_STATE(699)] = 46296, + [SMALL_STATE(700)] = 46322, + [SMALL_STATE(701)] = 46348, + [SMALL_STATE(702)] = 46374, + [SMALL_STATE(703)] = 46392, + [SMALL_STATE(704)] = 46418, + [SMALL_STATE(705)] = 46436, + [SMALL_STATE(706)] = 46462, + [SMALL_STATE(707)] = 46482, + [SMALL_STATE(708)] = 46509, + [SMALL_STATE(709)] = 46536, + [SMALL_STATE(710)] = 46563, + [SMALL_STATE(711)] = 46590, + [SMALL_STATE(712)] = 46607, + [SMALL_STATE(713)] = 46624, + [SMALL_STATE(714)] = 46643, + [SMALL_STATE(715)] = 46670, + [SMALL_STATE(716)] = 46689, + [SMALL_STATE(717)] = 46714, + [SMALL_STATE(718)] = 46741, + [SMALL_STATE(719)] = 46760, + [SMALL_STATE(720)] = 46779, + [SMALL_STATE(721)] = 46806, + [SMALL_STATE(722)] = 46833, + [SMALL_STATE(723)] = 46860, + [SMALL_STATE(724)] = 46887, + [SMALL_STATE(725)] = 46914, + [SMALL_STATE(726)] = 46941, + [SMALL_STATE(727)] = 46968, + [SMALL_STATE(728)] = 46995, + [SMALL_STATE(729)] = 47012, + [SMALL_STATE(730)] = 47039, + [SMALL_STATE(731)] = 47061, + [SMALL_STATE(732)] = 47079, + [SMALL_STATE(733)] = 47101, + [SMALL_STATE(734)] = 47123, + [SMALL_STATE(735)] = 47139, + [SMALL_STATE(736)] = 47157, + [SMALL_STATE(737)] = 47179, + [SMALL_STATE(738)] = 47201, + [SMALL_STATE(739)] = 47223, + [SMALL_STATE(740)] = 47241, + [SMALL_STATE(741)] = 47259, + [SMALL_STATE(742)] = 47281, + [SMALL_STATE(743)] = 47303, + [SMALL_STATE(744)] = 47325, + [SMALL_STATE(745)] = 47347, + [SMALL_STATE(746)] = 47369, + [SMALL_STATE(747)] = 47385, [SMALL_STATE(748)] = 47401, - [SMALL_STATE(749)] = 47419, - [SMALL_STATE(750)] = 47441, - [SMALL_STATE(751)] = 47463, - [SMALL_STATE(752)] = 47485, - [SMALL_STATE(753)] = 47507, - [SMALL_STATE(754)] = 47523, - [SMALL_STATE(755)] = 47545, - [SMALL_STATE(756)] = 47567, - [SMALL_STATE(757)] = 47590, - [SMALL_STATE(758)] = 47613, - [SMALL_STATE(759)] = 47636, - [SMALL_STATE(760)] = 47659, - [SMALL_STATE(761)] = 47682, - [SMALL_STATE(762)] = 47705, - [SMALL_STATE(763)] = 47728, - [SMALL_STATE(764)] = 47751, - [SMALL_STATE(765)] = 47774, - [SMALL_STATE(766)] = 47797, - [SMALL_STATE(767)] = 47820, - [SMALL_STATE(768)] = 47843, - [SMALL_STATE(769)] = 47866, - [SMALL_STATE(770)] = 47889, - [SMALL_STATE(771)] = 47912, - [SMALL_STATE(772)] = 47935, - [SMALL_STATE(773)] = 47958, - [SMALL_STATE(774)] = 47971, - [SMALL_STATE(775)] = 47994, - [SMALL_STATE(776)] = 48017, - [SMALL_STATE(777)] = 48040, - [SMALL_STATE(778)] = 48063, - [SMALL_STATE(779)] = 48076, - [SMALL_STATE(780)] = 48099, - [SMALL_STATE(781)] = 48122, - [SMALL_STATE(782)] = 48135, - [SMALL_STATE(783)] = 48158, - [SMALL_STATE(784)] = 48181, - [SMALL_STATE(785)] = 48194, - [SMALL_STATE(786)] = 48217, - [SMALL_STATE(787)] = 48240, - [SMALL_STATE(788)] = 48253, - [SMALL_STATE(789)] = 48276, - [SMALL_STATE(790)] = 48299, - [SMALL_STATE(791)] = 48322, - [SMALL_STATE(792)] = 48345, - [SMALL_STATE(793)] = 48358, - [SMALL_STATE(794)] = 48371, - [SMALL_STATE(795)] = 48394, - [SMALL_STATE(796)] = 48417, - [SMALL_STATE(797)] = 48440, - [SMALL_STATE(798)] = 48463, - [SMALL_STATE(799)] = 48486, - [SMALL_STATE(800)] = 48509, - [SMALL_STATE(801)] = 48532, - [SMALL_STATE(802)] = 48555, - [SMALL_STATE(803)] = 48578, - [SMALL_STATE(804)] = 48600, - [SMALL_STATE(805)] = 48622, - [SMALL_STATE(806)] = 48636, - [SMALL_STATE(807)] = 48658, - [SMALL_STATE(808)] = 48680, - [SMALL_STATE(809)] = 48702, - [SMALL_STATE(810)] = 48724, - [SMALL_STATE(811)] = 48744, - [SMALL_STATE(812)] = 48764, - [SMALL_STATE(813)] = 48778, - [SMALL_STATE(814)] = 48798, - [SMALL_STATE(815)] = 48818, - [SMALL_STATE(816)] = 48838, - [SMALL_STATE(817)] = 48858, - [SMALL_STATE(818)] = 48878, - [SMALL_STATE(819)] = 48890, - [SMALL_STATE(820)] = 48912, - [SMALL_STATE(821)] = 48926, - [SMALL_STATE(822)] = 48948, - [SMALL_STATE(823)] = 48970, - [SMALL_STATE(824)] = 48992, - [SMALL_STATE(825)] = 49012, - [SMALL_STATE(826)] = 49029, - [SMALL_STATE(827)] = 49046, - [SMALL_STATE(828)] = 49059, - [SMALL_STATE(829)] = 49072, - [SMALL_STATE(830)] = 49085, - [SMALL_STATE(831)] = 49102, - [SMALL_STATE(832)] = 49119, - [SMALL_STATE(833)] = 49132, - [SMALL_STATE(834)] = 49149, - [SMALL_STATE(835)] = 49162, - [SMALL_STATE(836)] = 49179, - [SMALL_STATE(837)] = 49196, - [SMALL_STATE(838)] = 49213, - [SMALL_STATE(839)] = 49230, - [SMALL_STATE(840)] = 49247, - [SMALL_STATE(841)] = 49264, - [SMALL_STATE(842)] = 49281, - [SMALL_STATE(843)] = 49297, - [SMALL_STATE(844)] = 49313, - [SMALL_STATE(845)] = 49329, - [SMALL_STATE(846)] = 49345, - [SMALL_STATE(847)] = 49361, - [SMALL_STATE(848)] = 49377, - [SMALL_STATE(849)] = 49393, - [SMALL_STATE(850)] = 49405, - [SMALL_STATE(851)] = 49417, - [SMALL_STATE(852)] = 49433, - [SMALL_STATE(853)] = 49449, - [SMALL_STATE(854)] = 49465, - [SMALL_STATE(855)] = 49481, - [SMALL_STATE(856)] = 49493, - [SMALL_STATE(857)] = 49509, - [SMALL_STATE(858)] = 49525, - [SMALL_STATE(859)] = 49539, - [SMALL_STATE(860)] = 49553, - [SMALL_STATE(861)] = 49566, - [SMALL_STATE(862)] = 49579, - [SMALL_STATE(863)] = 49590, - [SMALL_STATE(864)] = 49601, - [SMALL_STATE(865)] = 49614, - [SMALL_STATE(866)] = 49625, - [SMALL_STATE(867)] = 49638, - [SMALL_STATE(868)] = 49649, - [SMALL_STATE(869)] = 49660, - [SMALL_STATE(870)] = 49673, - [SMALL_STATE(871)] = 49686, - [SMALL_STATE(872)] = 49699, - [SMALL_STATE(873)] = 49708, - [SMALL_STATE(874)] = 49721, - [SMALL_STATE(875)] = 49734, - [SMALL_STATE(876)] = 49743, - [SMALL_STATE(877)] = 49752, - [SMALL_STATE(878)] = 49763, - [SMALL_STATE(879)] = 49776, - [SMALL_STATE(880)] = 49785, - [SMALL_STATE(881)] = 49796, - [SMALL_STATE(882)] = 49809, - [SMALL_STATE(883)] = 49820, - [SMALL_STATE(884)] = 49829, - [SMALL_STATE(885)] = 49838, - [SMALL_STATE(886)] = 49851, - [SMALL_STATE(887)] = 49860, - [SMALL_STATE(888)] = 49873, - [SMALL_STATE(889)] = 49884, - [SMALL_STATE(890)] = 49897, - [SMALL_STATE(891)] = 49910, - [SMALL_STATE(892)] = 49923, - [SMALL_STATE(893)] = 49934, - [SMALL_STATE(894)] = 49947, - [SMALL_STATE(895)] = 49958, - [SMALL_STATE(896)] = 49971, - [SMALL_STATE(897)] = 49984, - [SMALL_STATE(898)] = 49995, - [SMALL_STATE(899)] = 50008, - [SMALL_STATE(900)] = 50019, - [SMALL_STATE(901)] = 50032, - [SMALL_STATE(902)] = 50045, - [SMALL_STATE(903)] = 50058, - [SMALL_STATE(904)] = 50067, - [SMALL_STATE(905)] = 50078, - [SMALL_STATE(906)] = 50087, - [SMALL_STATE(907)] = 50098, - [SMALL_STATE(908)] = 50109, - [SMALL_STATE(909)] = 50120, - [SMALL_STATE(910)] = 50133, - [SMALL_STATE(911)] = 50146, - [SMALL_STATE(912)] = 50159, - [SMALL_STATE(913)] = 50168, - [SMALL_STATE(914)] = 50181, - [SMALL_STATE(915)] = 50194, - [SMALL_STATE(916)] = 50205, - [SMALL_STATE(917)] = 50218, - [SMALL_STATE(918)] = 50229, - [SMALL_STATE(919)] = 50240, - [SMALL_STATE(920)] = 50251, - [SMALL_STATE(921)] = 50260, - [SMALL_STATE(922)] = 50273, - [SMALL_STATE(923)] = 50286, - [SMALL_STATE(924)] = 50297, - [SMALL_STATE(925)] = 50310, - [SMALL_STATE(926)] = 50323, - [SMALL_STATE(927)] = 50336, - [SMALL_STATE(928)] = 50347, - [SMALL_STATE(929)] = 50356, - [SMALL_STATE(930)] = 50369, - [SMALL_STATE(931)] = 50380, - [SMALL_STATE(932)] = 50389, - [SMALL_STATE(933)] = 50400, - [SMALL_STATE(934)] = 50413, - [SMALL_STATE(935)] = 50424, - [SMALL_STATE(936)] = 50437, - [SMALL_STATE(937)] = 50450, - [SMALL_STATE(938)] = 50463, - [SMALL_STATE(939)] = 50474, - [SMALL_STATE(940)] = 50487, - [SMALL_STATE(941)] = 50496, - [SMALL_STATE(942)] = 50509, - [SMALL_STATE(943)] = 50522, - [SMALL_STATE(944)] = 50532, - [SMALL_STATE(945)] = 50542, - [SMALL_STATE(946)] = 50550, - [SMALL_STATE(947)] = 50560, - [SMALL_STATE(948)] = 50570, - [SMALL_STATE(949)] = 50580, - [SMALL_STATE(950)] = 50588, - [SMALL_STATE(951)] = 50598, - [SMALL_STATE(952)] = 50606, - [SMALL_STATE(953)] = 50616, - [SMALL_STATE(954)] = 50624, - [SMALL_STATE(955)] = 50634, - [SMALL_STATE(956)] = 50642, - [SMALL_STATE(957)] = 50650, - [SMALL_STATE(958)] = 50660, - [SMALL_STATE(959)] = 50670, - [SMALL_STATE(960)] = 50678, - [SMALL_STATE(961)] = 50688, - [SMALL_STATE(962)] = 50698, - [SMALL_STATE(963)] = 50706, - [SMALL_STATE(964)] = 50716, - [SMALL_STATE(965)] = 50724, - [SMALL_STATE(966)] = 50732, - [SMALL_STATE(967)] = 50742, - [SMALL_STATE(968)] = 50750, - [SMALL_STATE(969)] = 50760, - [SMALL_STATE(970)] = 50770, - [SMALL_STATE(971)] = 50780, - [SMALL_STATE(972)] = 50788, - [SMALL_STATE(973)] = 50798, - [SMALL_STATE(974)] = 50806, - [SMALL_STATE(975)] = 50814, - [SMALL_STATE(976)] = 50822, - [SMALL_STATE(977)] = 50832, - [SMALL_STATE(978)] = 50842, - [SMALL_STATE(979)] = 50850, - [SMALL_STATE(980)] = 50860, - [SMALL_STATE(981)] = 50870, - [SMALL_STATE(982)] = 50880, - [SMALL_STATE(983)] = 50888, - [SMALL_STATE(984)] = 50895, - [SMALL_STATE(985)] = 50902, - [SMALL_STATE(986)] = 50909, - [SMALL_STATE(987)] = 50916, - [SMALL_STATE(988)] = 50923, - [SMALL_STATE(989)] = 50930, - [SMALL_STATE(990)] = 50937, - [SMALL_STATE(991)] = 50944, - [SMALL_STATE(992)] = 50951, - [SMALL_STATE(993)] = 50958, - [SMALL_STATE(994)] = 50965, - [SMALL_STATE(995)] = 50972, - [SMALL_STATE(996)] = 50979, - [SMALL_STATE(997)] = 50986, - [SMALL_STATE(998)] = 50993, - [SMALL_STATE(999)] = 51000, - [SMALL_STATE(1000)] = 51007, - [SMALL_STATE(1001)] = 51014, - [SMALL_STATE(1002)] = 51021, - [SMALL_STATE(1003)] = 51028, - [SMALL_STATE(1004)] = 51035, - [SMALL_STATE(1005)] = 51042, - [SMALL_STATE(1006)] = 51049, - [SMALL_STATE(1007)] = 51056, - [SMALL_STATE(1008)] = 51063, - [SMALL_STATE(1009)] = 51070, - [SMALL_STATE(1010)] = 51077, - [SMALL_STATE(1011)] = 51084, - [SMALL_STATE(1012)] = 51091, - [SMALL_STATE(1013)] = 51098, - [SMALL_STATE(1014)] = 51105, - [SMALL_STATE(1015)] = 51112, - [SMALL_STATE(1016)] = 51119, - [SMALL_STATE(1017)] = 51126, - [SMALL_STATE(1018)] = 51133, - [SMALL_STATE(1019)] = 51140, - [SMALL_STATE(1020)] = 51147, - [SMALL_STATE(1021)] = 51154, - [SMALL_STATE(1022)] = 51161, - [SMALL_STATE(1023)] = 51168, - [SMALL_STATE(1024)] = 51175, - [SMALL_STATE(1025)] = 51182, - [SMALL_STATE(1026)] = 51189, - [SMALL_STATE(1027)] = 51196, - [SMALL_STATE(1028)] = 51203, - [SMALL_STATE(1029)] = 51210, - [SMALL_STATE(1030)] = 51217, - [SMALL_STATE(1031)] = 51224, - [SMALL_STATE(1032)] = 51231, - [SMALL_STATE(1033)] = 51238, - [SMALL_STATE(1034)] = 51245, - [SMALL_STATE(1035)] = 51252, - [SMALL_STATE(1036)] = 51259, - [SMALL_STATE(1037)] = 51266, - [SMALL_STATE(1038)] = 51273, - [SMALL_STATE(1039)] = 51280, - [SMALL_STATE(1040)] = 51287, - [SMALL_STATE(1041)] = 51294, - [SMALL_STATE(1042)] = 51301, - [SMALL_STATE(1043)] = 51308, - [SMALL_STATE(1044)] = 51315, - [SMALL_STATE(1045)] = 51322, - [SMALL_STATE(1046)] = 51329, - [SMALL_STATE(1047)] = 51336, - [SMALL_STATE(1048)] = 51343, - [SMALL_STATE(1049)] = 51350, - [SMALL_STATE(1050)] = 51357, - [SMALL_STATE(1051)] = 51364, - [SMALL_STATE(1052)] = 51371, - [SMALL_STATE(1053)] = 51378, - [SMALL_STATE(1054)] = 51385, - [SMALL_STATE(1055)] = 51392, - [SMALL_STATE(1056)] = 51399, - [SMALL_STATE(1057)] = 51406, - [SMALL_STATE(1058)] = 51413, - [SMALL_STATE(1059)] = 51420, - [SMALL_STATE(1060)] = 51427, - [SMALL_STATE(1061)] = 51434, - [SMALL_STATE(1062)] = 51441, - [SMALL_STATE(1063)] = 51448, - [SMALL_STATE(1064)] = 51455, - [SMALL_STATE(1065)] = 51462, - [SMALL_STATE(1066)] = 51469, - [SMALL_STATE(1067)] = 51476, - [SMALL_STATE(1068)] = 51483, - [SMALL_STATE(1069)] = 51490, - [SMALL_STATE(1070)] = 51497, - [SMALL_STATE(1071)] = 51504, - [SMALL_STATE(1072)] = 51511, - [SMALL_STATE(1073)] = 51518, - [SMALL_STATE(1074)] = 51525, - [SMALL_STATE(1075)] = 51532, - [SMALL_STATE(1076)] = 51539, - [SMALL_STATE(1077)] = 51546, - [SMALL_STATE(1078)] = 51553, - [SMALL_STATE(1079)] = 51560, - [SMALL_STATE(1080)] = 51567, - [SMALL_STATE(1081)] = 51574, - [SMALL_STATE(1082)] = 51581, - [SMALL_STATE(1083)] = 51588, - [SMALL_STATE(1084)] = 51595, - [SMALL_STATE(1085)] = 51602, - [SMALL_STATE(1086)] = 51609, - [SMALL_STATE(1087)] = 51616, - [SMALL_STATE(1088)] = 51623, - [SMALL_STATE(1089)] = 51630, - [SMALL_STATE(1090)] = 51637, - [SMALL_STATE(1091)] = 51644, - [SMALL_STATE(1092)] = 51651, - [SMALL_STATE(1093)] = 51658, - [SMALL_STATE(1094)] = 51665, - [SMALL_STATE(1095)] = 51672, - [SMALL_STATE(1096)] = 51679, - [SMALL_STATE(1097)] = 51686, - [SMALL_STATE(1098)] = 51693, - [SMALL_STATE(1099)] = 51700, - [SMALL_STATE(1100)] = 51707, - [SMALL_STATE(1101)] = 51714, - [SMALL_STATE(1102)] = 51721, - [SMALL_STATE(1103)] = 51728, - [SMALL_STATE(1104)] = 51735, - [SMALL_STATE(1105)] = 51742, - [SMALL_STATE(1106)] = 51749, - [SMALL_STATE(1107)] = 51756, - [SMALL_STATE(1108)] = 51763, - [SMALL_STATE(1109)] = 51770, - [SMALL_STATE(1110)] = 51777, - [SMALL_STATE(1111)] = 51784, - [SMALL_STATE(1112)] = 51791, - [SMALL_STATE(1113)] = 51798, - [SMALL_STATE(1114)] = 51805, - [SMALL_STATE(1115)] = 51812, - [SMALL_STATE(1116)] = 51819, - [SMALL_STATE(1117)] = 51826, - [SMALL_STATE(1118)] = 51833, - [SMALL_STATE(1119)] = 51840, - [SMALL_STATE(1120)] = 51847, - [SMALL_STATE(1121)] = 51854, - [SMALL_STATE(1122)] = 51861, - [SMALL_STATE(1123)] = 51868, - [SMALL_STATE(1124)] = 51875, - [SMALL_STATE(1125)] = 51882, - [SMALL_STATE(1126)] = 51889, - [SMALL_STATE(1127)] = 51896, - [SMALL_STATE(1128)] = 51903, - [SMALL_STATE(1129)] = 51910, - [SMALL_STATE(1130)] = 51917, - [SMALL_STATE(1131)] = 51924, - [SMALL_STATE(1132)] = 51931, - [SMALL_STATE(1133)] = 51938, - [SMALL_STATE(1134)] = 51945, - [SMALL_STATE(1135)] = 51952, - [SMALL_STATE(1136)] = 51959, - [SMALL_STATE(1137)] = 51966, - [SMALL_STATE(1138)] = 51973, - [SMALL_STATE(1139)] = 51980, - [SMALL_STATE(1140)] = 51987, - [SMALL_STATE(1141)] = 51994, - [SMALL_STATE(1142)] = 52001, - [SMALL_STATE(1143)] = 52008, - [SMALL_STATE(1144)] = 52015, - [SMALL_STATE(1145)] = 52022, - [SMALL_STATE(1146)] = 52029, - [SMALL_STATE(1147)] = 52036, + [SMALL_STATE(749)] = 47423, + [SMALL_STATE(750)] = 47445, + [SMALL_STATE(751)] = 47467, + [SMALL_STATE(752)] = 47489, + [SMALL_STATE(753)] = 47511, + [SMALL_STATE(754)] = 47527, + [SMALL_STATE(755)] = 47549, + [SMALL_STATE(756)] = 47571, + [SMALL_STATE(757)] = 47593, + [SMALL_STATE(758)] = 47606, + [SMALL_STATE(759)] = 47629, + [SMALL_STATE(760)] = 47652, + [SMALL_STATE(761)] = 47675, + [SMALL_STATE(762)] = 47698, + [SMALL_STATE(763)] = 47711, + [SMALL_STATE(764)] = 47734, + [SMALL_STATE(765)] = 47757, + [SMALL_STATE(766)] = 47780, + [SMALL_STATE(767)] = 47803, + [SMALL_STATE(768)] = 47826, + [SMALL_STATE(769)] = 47849, + [SMALL_STATE(770)] = 47872, + [SMALL_STATE(771)] = 47885, + [SMALL_STATE(772)] = 47908, + [SMALL_STATE(773)] = 47931, + [SMALL_STATE(774)] = 47954, + [SMALL_STATE(775)] = 47977, + [SMALL_STATE(776)] = 48000, + [SMALL_STATE(777)] = 48013, + [SMALL_STATE(778)] = 48036, + [SMALL_STATE(779)] = 48059, + [SMALL_STATE(780)] = 48082, + [SMALL_STATE(781)] = 48105, + [SMALL_STATE(782)] = 48128, + [SMALL_STATE(783)] = 48151, + [SMALL_STATE(784)] = 48174, + [SMALL_STATE(785)] = 48197, + [SMALL_STATE(786)] = 48220, + [SMALL_STATE(787)] = 48243, + [SMALL_STATE(788)] = 48266, + [SMALL_STATE(789)] = 48289, + [SMALL_STATE(790)] = 48302, + [SMALL_STATE(791)] = 48325, + [SMALL_STATE(792)] = 48348, + [SMALL_STATE(793)] = 48371, + [SMALL_STATE(794)] = 48394, + [SMALL_STATE(795)] = 48417, + [SMALL_STATE(796)] = 48440, + [SMALL_STATE(797)] = 48453, + [SMALL_STATE(798)] = 48466, + [SMALL_STATE(799)] = 48489, + [SMALL_STATE(800)] = 48512, + [SMALL_STATE(801)] = 48535, + [SMALL_STATE(802)] = 48558, + [SMALL_STATE(803)] = 48581, + [SMALL_STATE(804)] = 48604, + [SMALL_STATE(805)] = 48618, + [SMALL_STATE(806)] = 48640, + [SMALL_STATE(807)] = 48660, + [SMALL_STATE(808)] = 48682, + [SMALL_STATE(809)] = 48704, + [SMALL_STATE(810)] = 48726, + [SMALL_STATE(811)] = 48740, + [SMALL_STATE(812)] = 48762, + [SMALL_STATE(813)] = 48784, + [SMALL_STATE(814)] = 48806, + [SMALL_STATE(815)] = 48828, + [SMALL_STATE(816)] = 48848, + [SMALL_STATE(817)] = 48868, + [SMALL_STATE(818)] = 48888, + [SMALL_STATE(819)] = 48902, + [SMALL_STATE(820)] = 48922, + [SMALL_STATE(821)] = 48934, + [SMALL_STATE(822)] = 48956, + [SMALL_STATE(823)] = 48976, + [SMALL_STATE(824)] = 48996, + [SMALL_STATE(825)] = 49018, + [SMALL_STATE(826)] = 49038, + [SMALL_STATE(827)] = 49055, + [SMALL_STATE(828)] = 49072, + [SMALL_STATE(829)] = 49089, + [SMALL_STATE(830)] = 49102, + [SMALL_STATE(831)] = 49115, + [SMALL_STATE(832)] = 49132, + [SMALL_STATE(833)] = 49145, + [SMALL_STATE(834)] = 49162, + [SMALL_STATE(835)] = 49179, + [SMALL_STATE(836)] = 49196, + [SMALL_STATE(837)] = 49213, + [SMALL_STATE(838)] = 49226, + [SMALL_STATE(839)] = 49243, + [SMALL_STATE(840)] = 49260, + [SMALL_STATE(841)] = 49273, + [SMALL_STATE(842)] = 49290, + [SMALL_STATE(843)] = 49307, + [SMALL_STATE(844)] = 49319, + [SMALL_STATE(845)] = 49335, + [SMALL_STATE(846)] = 49351, + [SMALL_STATE(847)] = 49367, + [SMALL_STATE(848)] = 49383, + [SMALL_STATE(849)] = 49399, + [SMALL_STATE(850)] = 49413, + [SMALL_STATE(851)] = 49429, + [SMALL_STATE(852)] = 49445, + [SMALL_STATE(853)] = 49461, + [SMALL_STATE(854)] = 49477, + [SMALL_STATE(855)] = 49489, + [SMALL_STATE(856)] = 49501, + [SMALL_STATE(857)] = 49517, + [SMALL_STATE(858)] = 49533, + [SMALL_STATE(859)] = 49549, + [SMALL_STATE(860)] = 49563, + [SMALL_STATE(861)] = 49579, + [SMALL_STATE(862)] = 49588, + [SMALL_STATE(863)] = 49599, + [SMALL_STATE(864)] = 49608, + [SMALL_STATE(865)] = 49621, + [SMALL_STATE(866)] = 49634, + [SMALL_STATE(867)] = 49647, + [SMALL_STATE(868)] = 49660, + [SMALL_STATE(869)] = 49673, + [SMALL_STATE(870)] = 49686, + [SMALL_STATE(871)] = 49699, + [SMALL_STATE(872)] = 49712, + [SMALL_STATE(873)] = 49725, + [SMALL_STATE(874)] = 49738, + [SMALL_STATE(875)] = 49747, + [SMALL_STATE(876)] = 49756, + [SMALL_STATE(877)] = 49765, + [SMALL_STATE(878)] = 49778, + [SMALL_STATE(879)] = 49787, + [SMALL_STATE(880)] = 49798, + [SMALL_STATE(881)] = 49809, + [SMALL_STATE(882)] = 49820, + [SMALL_STATE(883)] = 49829, + [SMALL_STATE(884)] = 49840, + [SMALL_STATE(885)] = 49851, + [SMALL_STATE(886)] = 49864, + [SMALL_STATE(887)] = 49877, + [SMALL_STATE(888)] = 49890, + [SMALL_STATE(889)] = 49901, + [SMALL_STATE(890)] = 49914, + [SMALL_STATE(891)] = 49927, + [SMALL_STATE(892)] = 49936, + [SMALL_STATE(893)] = 49949, + [SMALL_STATE(894)] = 49960, + [SMALL_STATE(895)] = 49971, + [SMALL_STATE(896)] = 49982, + [SMALL_STATE(897)] = 49991, + [SMALL_STATE(898)] = 50004, + [SMALL_STATE(899)] = 50015, + [SMALL_STATE(900)] = 50028, + [SMALL_STATE(901)] = 50041, + [SMALL_STATE(902)] = 50050, + [SMALL_STATE(903)] = 50063, + [SMALL_STATE(904)] = 50074, + [SMALL_STATE(905)] = 50087, + [SMALL_STATE(906)] = 50100, + [SMALL_STATE(907)] = 50113, + [SMALL_STATE(908)] = 50126, + [SMALL_STATE(909)] = 50139, + [SMALL_STATE(910)] = 50152, + [SMALL_STATE(911)] = 50165, + [SMALL_STATE(912)] = 50178, + [SMALL_STATE(913)] = 50189, + [SMALL_STATE(914)] = 50198, + [SMALL_STATE(915)] = 50209, + [SMALL_STATE(916)] = 50222, + [SMALL_STATE(917)] = 50235, + [SMALL_STATE(918)] = 50244, + [SMALL_STATE(919)] = 50255, + [SMALL_STATE(920)] = 50266, + [SMALL_STATE(921)] = 50275, + [SMALL_STATE(922)] = 50286, + [SMALL_STATE(923)] = 50299, + [SMALL_STATE(924)] = 50312, + [SMALL_STATE(925)] = 50323, + [SMALL_STATE(926)] = 50334, + [SMALL_STATE(927)] = 50347, + [SMALL_STATE(928)] = 50360, + [SMALL_STATE(929)] = 50371, + [SMALL_STATE(930)] = 50384, + [SMALL_STATE(931)] = 50395, + [SMALL_STATE(932)] = 50408, + [SMALL_STATE(933)] = 50419, + [SMALL_STATE(934)] = 50432, + [SMALL_STATE(935)] = 50443, + [SMALL_STATE(936)] = 50456, + [SMALL_STATE(937)] = 50467, + [SMALL_STATE(938)] = 50478, + [SMALL_STATE(939)] = 50489, + [SMALL_STATE(940)] = 50500, + [SMALL_STATE(941)] = 50513, + [SMALL_STATE(942)] = 50526, + [SMALL_STATE(943)] = 50539, + [SMALL_STATE(944)] = 50548, + [SMALL_STATE(945)] = 50558, + [SMALL_STATE(946)] = 50566, + [SMALL_STATE(947)] = 50576, + [SMALL_STATE(948)] = 50586, + [SMALL_STATE(949)] = 50594, + [SMALL_STATE(950)] = 50604, + [SMALL_STATE(951)] = 50614, + [SMALL_STATE(952)] = 50624, + [SMALL_STATE(953)] = 50634, + [SMALL_STATE(954)] = 50642, + [SMALL_STATE(955)] = 50650, + [SMALL_STATE(956)] = 50658, + [SMALL_STATE(957)] = 50666, + [SMALL_STATE(958)] = 50676, + [SMALL_STATE(959)] = 50686, + [SMALL_STATE(960)] = 50694, + [SMALL_STATE(961)] = 50702, + [SMALL_STATE(962)] = 50712, + [SMALL_STATE(963)] = 50720, + [SMALL_STATE(964)] = 50730, + [SMALL_STATE(965)] = 50740, + [SMALL_STATE(966)] = 50750, + [SMALL_STATE(967)] = 50760, + [SMALL_STATE(968)] = 50770, + [SMALL_STATE(969)] = 50780, + [SMALL_STATE(970)] = 50788, + [SMALL_STATE(971)] = 50796, + [SMALL_STATE(972)] = 50804, + [SMALL_STATE(973)] = 50812, + [SMALL_STATE(974)] = 50822, + [SMALL_STATE(975)] = 50830, + [SMALL_STATE(976)] = 50840, + [SMALL_STATE(977)] = 50848, + [SMALL_STATE(978)] = 50856, + [SMALL_STATE(979)] = 50864, + [SMALL_STATE(980)] = 50874, + [SMALL_STATE(981)] = 50884, + [SMALL_STATE(982)] = 50894, + [SMALL_STATE(983)] = 50904, + [SMALL_STATE(984)] = 50914, + [SMALL_STATE(985)] = 50921, + [SMALL_STATE(986)] = 50928, + [SMALL_STATE(987)] = 50935, + [SMALL_STATE(988)] = 50942, + [SMALL_STATE(989)] = 50949, + [SMALL_STATE(990)] = 50956, + [SMALL_STATE(991)] = 50963, + [SMALL_STATE(992)] = 50970, + [SMALL_STATE(993)] = 50977, + [SMALL_STATE(994)] = 50984, + [SMALL_STATE(995)] = 50991, + [SMALL_STATE(996)] = 50998, + [SMALL_STATE(997)] = 51005, + [SMALL_STATE(998)] = 51012, + [SMALL_STATE(999)] = 51019, + [SMALL_STATE(1000)] = 51026, + [SMALL_STATE(1001)] = 51033, + [SMALL_STATE(1002)] = 51040, + [SMALL_STATE(1003)] = 51047, + [SMALL_STATE(1004)] = 51054, + [SMALL_STATE(1005)] = 51061, + [SMALL_STATE(1006)] = 51068, + [SMALL_STATE(1007)] = 51075, + [SMALL_STATE(1008)] = 51082, + [SMALL_STATE(1009)] = 51089, + [SMALL_STATE(1010)] = 51096, + [SMALL_STATE(1011)] = 51103, + [SMALL_STATE(1012)] = 51110, + [SMALL_STATE(1013)] = 51117, + [SMALL_STATE(1014)] = 51124, + [SMALL_STATE(1015)] = 51131, + [SMALL_STATE(1016)] = 51138, + [SMALL_STATE(1017)] = 51145, + [SMALL_STATE(1018)] = 51152, + [SMALL_STATE(1019)] = 51159, + [SMALL_STATE(1020)] = 51166, + [SMALL_STATE(1021)] = 51173, + [SMALL_STATE(1022)] = 51180, + [SMALL_STATE(1023)] = 51187, + [SMALL_STATE(1024)] = 51194, + [SMALL_STATE(1025)] = 51201, + [SMALL_STATE(1026)] = 51208, + [SMALL_STATE(1027)] = 51215, + [SMALL_STATE(1028)] = 51222, + [SMALL_STATE(1029)] = 51229, + [SMALL_STATE(1030)] = 51236, + [SMALL_STATE(1031)] = 51243, + [SMALL_STATE(1032)] = 51250, + [SMALL_STATE(1033)] = 51257, + [SMALL_STATE(1034)] = 51264, + [SMALL_STATE(1035)] = 51271, + [SMALL_STATE(1036)] = 51278, + [SMALL_STATE(1037)] = 51285, + [SMALL_STATE(1038)] = 51292, + [SMALL_STATE(1039)] = 51299, + [SMALL_STATE(1040)] = 51306, + [SMALL_STATE(1041)] = 51313, + [SMALL_STATE(1042)] = 51320, + [SMALL_STATE(1043)] = 51327, + [SMALL_STATE(1044)] = 51334, + [SMALL_STATE(1045)] = 51341, + [SMALL_STATE(1046)] = 51348, + [SMALL_STATE(1047)] = 51355, + [SMALL_STATE(1048)] = 51362, + [SMALL_STATE(1049)] = 51369, + [SMALL_STATE(1050)] = 51376, + [SMALL_STATE(1051)] = 51383, + [SMALL_STATE(1052)] = 51390, + [SMALL_STATE(1053)] = 51397, + [SMALL_STATE(1054)] = 51404, + [SMALL_STATE(1055)] = 51411, + [SMALL_STATE(1056)] = 51418, + [SMALL_STATE(1057)] = 51425, + [SMALL_STATE(1058)] = 51432, + [SMALL_STATE(1059)] = 51439, + [SMALL_STATE(1060)] = 51446, + [SMALL_STATE(1061)] = 51453, + [SMALL_STATE(1062)] = 51460, + [SMALL_STATE(1063)] = 51467, + [SMALL_STATE(1064)] = 51474, + [SMALL_STATE(1065)] = 51481, + [SMALL_STATE(1066)] = 51488, + [SMALL_STATE(1067)] = 51495, + [SMALL_STATE(1068)] = 51502, + [SMALL_STATE(1069)] = 51509, + [SMALL_STATE(1070)] = 51516, + [SMALL_STATE(1071)] = 51523, + [SMALL_STATE(1072)] = 51530, + [SMALL_STATE(1073)] = 51537, + [SMALL_STATE(1074)] = 51544, + [SMALL_STATE(1075)] = 51551, + [SMALL_STATE(1076)] = 51558, + [SMALL_STATE(1077)] = 51565, + [SMALL_STATE(1078)] = 51572, + [SMALL_STATE(1079)] = 51579, + [SMALL_STATE(1080)] = 51586, + [SMALL_STATE(1081)] = 51593, + [SMALL_STATE(1082)] = 51600, + [SMALL_STATE(1083)] = 51607, + [SMALL_STATE(1084)] = 51614, + [SMALL_STATE(1085)] = 51621, + [SMALL_STATE(1086)] = 51628, + [SMALL_STATE(1087)] = 51635, + [SMALL_STATE(1088)] = 51642, + [SMALL_STATE(1089)] = 51649, + [SMALL_STATE(1090)] = 51656, + [SMALL_STATE(1091)] = 51663, + [SMALL_STATE(1092)] = 51670, + [SMALL_STATE(1093)] = 51677, + [SMALL_STATE(1094)] = 51684, + [SMALL_STATE(1095)] = 51691, + [SMALL_STATE(1096)] = 51698, + [SMALL_STATE(1097)] = 51705, + [SMALL_STATE(1098)] = 51712, + [SMALL_STATE(1099)] = 51719, + [SMALL_STATE(1100)] = 51726, + [SMALL_STATE(1101)] = 51733, + [SMALL_STATE(1102)] = 51740, + [SMALL_STATE(1103)] = 51747, + [SMALL_STATE(1104)] = 51754, + [SMALL_STATE(1105)] = 51761, + [SMALL_STATE(1106)] = 51768, + [SMALL_STATE(1107)] = 51775, + [SMALL_STATE(1108)] = 51782, + [SMALL_STATE(1109)] = 51789, + [SMALL_STATE(1110)] = 51796, + [SMALL_STATE(1111)] = 51803, + [SMALL_STATE(1112)] = 51810, + [SMALL_STATE(1113)] = 51817, + [SMALL_STATE(1114)] = 51824, + [SMALL_STATE(1115)] = 51831, + [SMALL_STATE(1116)] = 51838, + [SMALL_STATE(1117)] = 51845, + [SMALL_STATE(1118)] = 51852, + [SMALL_STATE(1119)] = 51859, + [SMALL_STATE(1120)] = 51866, + [SMALL_STATE(1121)] = 51873, + [SMALL_STATE(1122)] = 51880, + [SMALL_STATE(1123)] = 51887, + [SMALL_STATE(1124)] = 51894, + [SMALL_STATE(1125)] = 51901, + [SMALL_STATE(1126)] = 51908, + [SMALL_STATE(1127)] = 51915, + [SMALL_STATE(1128)] = 51922, + [SMALL_STATE(1129)] = 51929, + [SMALL_STATE(1130)] = 51936, + [SMALL_STATE(1131)] = 51943, + [SMALL_STATE(1132)] = 51950, + [SMALL_STATE(1133)] = 51957, + [SMALL_STATE(1134)] = 51964, + [SMALL_STATE(1135)] = 51971, + [SMALL_STATE(1136)] = 51978, + [SMALL_STATE(1137)] = 51985, + [SMALL_STATE(1138)] = 51992, + [SMALL_STATE(1139)] = 51999, + [SMALL_STATE(1140)] = 52006, + [SMALL_STATE(1141)] = 52013, + [SMALL_STATE(1142)] = 52020, + [SMALL_STATE(1143)] = 52027, + [SMALL_STATE(1144)] = 52034, + [SMALL_STATE(1145)] = 52041, + [SMALL_STATE(1146)] = 52048, + [SMALL_STATE(1147)] = 52055, + [SMALL_STATE(1148)] = 52062, }; static const TSParseActionEntry ts_parse_actions[] = { @@ -48442,439 +48459,439 @@ static const TSParseActionEntry ts_parse_actions[] = { [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(366), [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(508), - [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(596), - [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1143), - [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), + [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(599), + [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1144), + [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(56), - [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(947), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(942), + [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(949), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(935), [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(489), [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(231), [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14), [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(240), [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(247), - [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), + [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), - [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), - [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), - [45] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), - [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), - [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), - [51] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(102), - [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), - [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(605), - [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1078), - [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), - [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(62), - [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(979), - [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(983), - [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(891), - [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(480), - [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(100), - [75] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), + [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), + [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), + [45] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), + [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), + [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), + [51] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(88), + [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(603), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1079), + [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), + [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(63), + [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(967), + [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1102), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(873), + [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(482), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(99), + [75] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(15), - [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), - [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(99), - [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(113), - [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), - [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), - [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1072), - [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(587), - [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1071), - [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), - [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1070), - [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), - [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), - [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), - [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), - [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), - [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), - [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), - [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), + [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), + [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(98), + [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(117), + [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), + [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), + [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1108), + [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(593), + [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1111), + [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), + [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1114), + [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), + [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), + [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), + [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), + [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), + [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), + [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), + [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), [117] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_atom, 1), [119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_atom, 1), - [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), + [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), [123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_infix_expr, 1), [125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_infix_expr, 1), - [127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), + [127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), [129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), - [131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), - [133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), - [135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), - [137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), + [131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), + [135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), [139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), - [143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), + [141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), + [143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), [147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), - [149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), - [151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), - [153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), + [151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), [155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), [157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), [159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), - [161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), - [165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), - [167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), - [169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), - [171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), - [173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), - [175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), + [163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), + [165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), + [171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), + [173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), [177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), [179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(357), [181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), - [183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(603), - [185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1092), - [187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), - [189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(68), - [191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(957), - [193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(885), - [195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(483), + [183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(605), + [185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1093), + [187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), + [189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(62), + [191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(964), + [193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(886), + [195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(479), [197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(355), - [199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), + [199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), [201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11), [203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(354), - [205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(313), - [207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), - [209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), - [213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), - [215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), - [217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), + [205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(316), + [207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), + [209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), + [213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), + [215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), + [217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), [219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), [221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(260), - [223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), - [225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(598), - [227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1106), + [223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), + [225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(602), + [227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1107), [229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), - [231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(49), - [233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(944), - [235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(941), - [237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(487), - [239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(258), + [231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(54), + [233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(947), + [235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(933), + [237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(486), + [239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(259), [241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), [243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12), - [245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(257), + [245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(258), [247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(409), - [249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), - [251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), - [255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), - [257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), + [249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), + [251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), + [255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), + [257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), [259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), - [261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(321), + [261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), + [263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(318), [265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(594), - [269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1061), - [271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), + [267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(597), + [269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1062), + [271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), [273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(60), - [275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(981), - [277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(911), + [275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(980), + [277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(910), [279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(492), - [281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(324), - [283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), + [281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(321), + [283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), [285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13), - [287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(325), + [287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(322), [289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(353), - [291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), + [291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), [293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), - [297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), - [299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), - [301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), - [303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(310), - [307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(597), - [311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1120), + [295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), + [297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), + [299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), + [301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), + [303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(309), + [307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(594), + [311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1121), [313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), [315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(42), - [317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(961), - [319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(895), - [321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(486), - [323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(311), + [317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(946), + [319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(889), + [321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(478), + [323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(312), [325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), [327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10), - [329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(312), + [329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(314), [331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(340), - [333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), - [335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), - [339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), - [341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), - [343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), - [345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(875), - [347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1121), - [349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(937), - [351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(945), - [353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(645), - [355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1056), - [357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(860), - [359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(982), - [361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_atom, 6, .production_id = 62), - [363] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_atom, 6, .production_id = 62), - [365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_atom, 3, .production_id = 19), - [367] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_atom, 3, .production_id = 19), - [369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_atom, 2), - [371] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_atom, 2), - [373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_array, 2), - [375] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_array, 2), - [377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(814), - [379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_operation_chain, 3, .production_id = 22), - [381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_operation_chain, 3, .production_id = 22), - [383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_uni_record, 2), - [385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_uni_record, 2), - [387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_uni_record, 4, .production_id = 32), - [389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_uni_record, 4, .production_id = 32), - [391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_operand, 1), - [393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_operand, 1), - [395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_applicative, 1), - [397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_applicative, 1), - [399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_str_chunks_multi, 2, .production_id = 1), - [401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_str_chunks_multi, 2, .production_id = 1), - [403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 2, .production_id = 8), - [405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant, 2, .production_id = 8), - [407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_str_chunks, 1), - [409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_str_chunks, 1), - [411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_atom, 1), - [413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_atom, 1), - [415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_builtin, 1), - [417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_builtin, 1), - [419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_applicative, 2, .production_id = 7), - [421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_applicative, 2, .production_id = 7), - [423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_uni_record, 3, .production_id = 16), - [425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_uni_record, 3, .production_id = 16), - [427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_atom, 4, .production_id = 32), - [429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_atom, 4, .production_id = 32), - [431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_atom, 4, .production_id = 37), - [433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_atom, 4, .production_id = 37), - [435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_uni_record, 3, .production_id = 18), - [437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_uni_record, 3, .production_id = 18), - [439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_atom, 5, .production_id = 48), - [441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_atom, 5, .production_id = 48), - [443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_uni_record, 5, .production_id = 49), - [445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_uni_record, 5, .production_id = 49), - [447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_uni_record, 5, .production_id = 51), - [449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_uni_record, 5, .production_id = 51), - [451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoted_enum_tag, 3), - [453] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoted_enum_tag, 3), - [455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_str_chunks_single, 3, .production_id = 12), - [457] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_str_chunks_single, 3, .production_id = 12), - [459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_atom, 3), - [461] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_atom, 3), - [463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bool, 1), - [465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bool, 1), - [467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_uni_record, 4, .production_id = 34), - [469] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_uni_record, 4, .production_id = 34), - [471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_str_chunks_single, 2), - [473] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_str_chunks_single, 2), - [475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_atom, 2), - [477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_atom, 2), - [479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_uni_record, 6, .production_id = 60), - [481] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_uni_record, 6, .production_id = 60), - [483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoted_enum_tag, 2), - [485] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoted_enum_tag, 2), - [487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_atom, 5, .production_id = 53), - [489] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_atom, 5, .production_id = 53), - [491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_builtin, 3), - [493] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_builtin, 3), - [495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_str_chunks_multi, 3, .production_id = 11), - [497] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_str_chunks_multi, 3, .production_id = 11), - [499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_operation_chain, 3, .production_id = 21), - [501] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_operation_chain, 3, .production_id = 21), - [503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_tag, 1), - [505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_tag, 1), - [507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_atom, 4, .production_id = 36), - [509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_atom, 4, .production_id = 36), - [511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_atom, 5, .production_id = 52), - [513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_atom, 5, .production_id = 52), - [515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_atom, 3, .production_id = 20), - [517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_atom, 3, .production_id = 20), - [519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_string, 3), - [521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_string, 3), - [523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_applicative, 2, .production_id = 4), - [525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_applicative, 2, .production_id = 4), - [527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expr, 6, .production_id = 59), - [529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_expr, 6, .production_id = 59), - [531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expr, 4, .production_id = 31), - [533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_expr, 4, .production_id = 31), - [535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_string, 2), - [537] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_string, 2), - [539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expr, 5, .production_id = 47), - [541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_expr, 5, .production_id = 47), + [333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), + [335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), + [339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), + [341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), + [343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), + [345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(644), + [347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1148), + [349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(908), + [351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(978), + [353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(874), + [355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1076), + [357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(864), + [359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(972), + [361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_applicative, 1), + [363] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_applicative, 1), + [365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(815), + [367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_atom, 2), + [369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_atom, 2), + [371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_atom, 2), + [373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_atom, 2), + [375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_array, 2), + [377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_array, 2), + [379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_uni_record, 2), + [381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_uni_record, 2), + [383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_uni_record, 4, .production_id = 32), + [385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_uni_record, 4, .production_id = 32), + [387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_operand, 1), + [389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_operand, 1), + [391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_atom, 3, .production_id = 19), + [393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_atom, 3, .production_id = 19), + [395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_str_chunks, 1), + [397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_str_chunks, 1), + [399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_tag, 1), + [401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_tag, 1), + [403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_atom, 1), + [405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_atom, 1), + [407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_builtin, 1), + [409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_builtin, 1), + [411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_str_chunks_multi, 3, .production_id = 11), + [413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_str_chunks_multi, 3, .production_id = 11), + [415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_atom, 5, .production_id = 47), + [417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_atom, 5, .production_id = 47), + [419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_str_chunks_single, 2), + [421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_str_chunks_single, 2), + [423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_atom, 4, .production_id = 32), + [425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_atom, 4, .production_id = 32), + [427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_atom, 4, .production_id = 37), + [429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_atom, 4, .production_id = 37), + [431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_applicative, 2, .production_id = 7), + [433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_applicative, 2, .production_id = 7), + [435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_uni_record, 3, .production_id = 16), + [437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_uni_record, 3, .production_id = 16), + [439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_uni_record, 3, .production_id = 18), + [441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_uni_record, 3, .production_id = 18), + [443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_uni_record, 5, .production_id = 50), + [445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_uni_record, 5, .production_id = 50), + [447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_atom, 5, .production_id = 51), + [449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_atom, 5, .production_id = 51), + [451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_str_chunks_single, 3, .production_id = 12), + [453] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_str_chunks_single, 3, .production_id = 12), + [455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoted_enum_tag, 3), + [457] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoted_enum_tag, 3), + [459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_uni_record, 5, .production_id = 48), + [461] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_uni_record, 5, .production_id = 48), + [463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_uni_record, 4, .production_id = 34), + [465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_uni_record, 4, .production_id = 34), + [467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_atom, 6, .production_id = 61), + [469] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_atom, 6, .production_id = 61), + [471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_atom, 3), + [473] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_atom, 3), + [475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_str_chunks_multi, 2, .production_id = 1), + [477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_str_chunks_multi, 2, .production_id = 1), + [479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bool, 1), + [481] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bool, 1), + [483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_uni_record, 6, .production_id = 59), + [485] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_uni_record, 6, .production_id = 59), + [487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoted_enum_tag, 2), + [489] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoted_enum_tag, 2), + [491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_operation_chain, 3, .production_id = 22), + [493] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_operation_chain, 3, .production_id = 22), + [495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_operation_chain, 3, .production_id = 21), + [497] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_operation_chain, 3, .production_id = 21), + [499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_atom, 4, .production_id = 36), + [501] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_atom, 4, .production_id = 36), + [503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_atom, 3, .production_id = 20), + [505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_atom, 3, .production_id = 20), + [507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 2, .production_id = 8), + [509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant, 2, .production_id = 8), + [511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_atom, 5, .production_id = 52), + [513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_atom, 5, .production_id = 52), + [515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_builtin, 3), + [517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_builtin, 3), + [519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expr, 6, .production_id = 58), + [521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_expr, 6, .production_id = 58), + [523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expr, 4, .production_id = 31), + [525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_expr, 4, .production_id = 31), + [527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_string, 3), + [529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_string, 3), + [531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_string, 2), + [533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_string, 2), + [535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expr, 5, .production_id = 46), + [537] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_expr, 5, .production_id = 46), + [539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_applicative, 2, .production_id = 4), + [541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_applicative, 2, .production_id = 4), [543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expr, 3), [545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_expr, 3), - [547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_infix_u_op_or_lazy_b_op, 1), - [549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_infix_b_op_4, 1), - [551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(813), - [553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(817), - [555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(811), - [557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(810), - [559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(816), + [547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_infix_b_op_4, 1), + [549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_infix_u_op_or_lazy_b_op, 1), + [551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(817), + [553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(823), + [555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(825), + [557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(816), + [559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(819), [561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(73), - [563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), [565] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_uni_term, 1), [567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_uni_term, 1), [569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), - [571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), - [573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(600), + [571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), + [573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(595), [575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(601), [577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), - [579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(609), - [581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), + [579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(610), + [581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), [583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), [585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), [587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), - [589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), [591] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_infix_expr, 3, .production_id = 24), [593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_infix_expr, 3, .production_id = 24), [595] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_types, 1), [597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_types, 1), [599] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_infix_expr, 2, .production_id = 5), [601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_infix_expr, 2, .production_id = 5), - [603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), - [605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(748), - [607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), - [609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), + [603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), + [605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(731), + [607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), + [609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), [611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), - [613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(677), + [613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(690), [615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), - [617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), - [619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), - [621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(712), - [623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(682), - [625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), - [627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), - [629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), - [631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), - [633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), - [635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), - [637] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 2), SHIFT_REPEAT(677), - [640] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_array_pattern_repeat1, 2), SHIFT_REPEAT(748), - [643] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 2), SHIFT_REPEAT(614), - [646] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 2), SHIFT_REPEAT(822), - [649] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 2), SHIFT_REPEAT(582), - [652] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_array_pattern_repeat1, 2), SHIFT_REPEAT(677), - [655] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 2), SHIFT_REPEAT(477), - [658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 2), - [660] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_array_pattern_repeat1, 2), SHIFT_REPEAT(712), - [663] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_array_pattern_repeat1, 2), SHIFT_REPEAT(682), - [666] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 2), SHIFT_REPEAT(740), - [669] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 2), SHIFT_REPEAT(764), - [672] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 2), SHIFT_REPEAT(775), - [675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(71), - [677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(81), - [683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(859), - [689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), - [691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), - [693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), - [695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), - [697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(77), - [699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), - [705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), - [707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(74), - [709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), - [711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), - [715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), - [719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), - [721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(79), - [723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), + [619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), + [621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(719), + [623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(694), + [625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), + [627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), + [629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), + [631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), + [633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), + [635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), + [637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(78), + [639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(859), + [645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), + [647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), + [649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), + [651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), + [653] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 2), SHIFT_REPEAT(690), + [656] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_array_pattern_repeat1, 2), SHIFT_REPEAT(731), + [659] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 2), SHIFT_REPEAT(613), + [662] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 2), SHIFT_REPEAT(814), + [665] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 2), SHIFT_REPEAT(582), + [668] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_array_pattern_repeat1, 2), SHIFT_REPEAT(690), + [671] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 2), SHIFT_REPEAT(477), + [674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 2), + [676] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_array_pattern_repeat1, 2), SHIFT_REPEAT(719), + [679] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_array_pattern_repeat1, 2), SHIFT_REPEAT(694), + [682] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 2), SHIFT_REPEAT(748), + [685] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 2), SHIFT_REPEAT(801), + [688] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 2), SHIFT_REPEAT(784), + [691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(79), + [693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), + [699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), + [701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), + [703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), + [705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(74), + [707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), + [713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(77), + [717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), + [719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(75), + [723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), [725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), - [727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), + [727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), [729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), - [731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), + [731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), [733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), [735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), [737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), - [739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), - [741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), + [739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), + [741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), [743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), [745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), - [747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), - [749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), - [751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), - [755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), - [757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), - [759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(555), - [761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(681), - [763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), + [747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), + [749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(564), + [761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(706), + [763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), [765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_pattern, 1), [767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), - [769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(719), + [769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(712), [771] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_pattern_parens, 1), - [773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), + [773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), [775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_in_block, 5, .production_id = 44), [777] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_in_block, 5, .production_id = 44), - [779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_in_block, 6, .production_id = 54), - [781] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_in_block, 6, .production_id = 54), - [783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_in_block, 6, .production_id = 57), - [785] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_in_block, 6, .production_id = 57), - [787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_in_block, 7, .production_id = 63), - [789] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_in_block, 7, .production_id = 63), - [791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(724), - [793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(698), - [795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), - [797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(627), - [799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), - [801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), - [803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), - [805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), - [807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(637), - [809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), - [811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(660), - [813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(644), - [815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), - [817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), - [819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), - [821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_infix_u_op_5, 1), - [825] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_infix_u_op_5, 1), - [827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [829] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fun_expr_repeat1, 2), SHIFT_REPEAT(637), - [832] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_fun_expr_repeat1, 2), SHIFT_REPEAT(627), - [835] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fun_expr_repeat1, 2), SHIFT_REPEAT(650), - [838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_fun_expr_repeat1, 2), - [840] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fun_expr_repeat1, 2), SHIFT_REPEAT(809), - [843] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fun_expr_repeat1, 2), SHIFT_REPEAT(584), - [846] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_fun_expr_repeat1, 2), SHIFT_REPEAT(637), - [849] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fun_expr_repeat1, 2), SHIFT_REPEAT(475), - [852] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_fun_expr_repeat1, 2), SHIFT_REPEAT(660), - [855] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_fun_expr_repeat1, 2), SHIFT_REPEAT(644), - [858] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fun_expr_repeat1, 2), SHIFT_REPEAT(755), - [861] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fun_expr_repeat1, 2), SHIFT_REPEAT(758), - [864] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fun_expr_repeat1, 2), SHIFT_REPEAT(789), - [867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), - [869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), - [871] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_pattern, 1), - [873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [875] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_or_pattern_unparens_repeat1, 2), SHIFT_REPEAT(677), - [878] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_or_pattern_unparens_repeat1, 2), SHIFT_REPEAT(698), - [881] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_or_pattern_unparens_repeat1, 2), SHIFT_REPEAT(664), - [884] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_or_pattern_unparens_repeat1, 2), SHIFT_REPEAT(822), - [887] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_or_pattern_unparens_repeat1, 2), SHIFT_REPEAT(583), - [890] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_or_pattern_unparens_repeat1, 2), SHIFT_REPEAT(677), - [893] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_or_pattern_unparens_repeat1, 2), SHIFT_REPEAT(477), - [896] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_or_pattern_unparens_repeat1, 2), SHIFT_REPEAT(682), - [899] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_or_pattern_unparens_repeat1, 2), SHIFT_REPEAT(740), - [902] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_or_pattern_unparens_repeat1, 2), SHIFT_REPEAT(764), - [905] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_or_pattern_unparens_repeat1, 2), SHIFT_REPEAT(767), - [908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_infix_b_op_3, 1), - [910] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_infix_b_op_3, 1), - [912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_infix_b_op_4, 1), + [779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_in_block, 6, .production_id = 53), + [781] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_in_block, 6, .production_id = 53), + [783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_in_block, 6, .production_id = 56), + [785] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_in_block, 6, .production_id = 56), + [787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_in_block, 7, .production_id = 62), + [789] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_in_block, 7, .production_id = 62), + [791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(713), + [793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(697), + [795] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_pattern, 1), + [797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), + [799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(621), + [801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), + [803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), + [807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), + [809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(634), + [811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), + [813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(632), + [815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(651), + [817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), + [819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), + [821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), + [823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), + [829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), + [831] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fun_expr_repeat1, 2), SHIFT_REPEAT(634), + [834] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_fun_expr_repeat1, 2), SHIFT_REPEAT(621), + [837] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fun_expr_repeat1, 2), SHIFT_REPEAT(656), + [840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_fun_expr_repeat1, 2), + [842] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fun_expr_repeat1, 2), SHIFT_REPEAT(811), + [845] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fun_expr_repeat1, 2), SHIFT_REPEAT(585), + [848] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_fun_expr_repeat1, 2), SHIFT_REPEAT(634), + [851] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fun_expr_repeat1, 2), SHIFT_REPEAT(475), + [854] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_fun_expr_repeat1, 2), SHIFT_REPEAT(632), + [857] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_fun_expr_repeat1, 2), SHIFT_REPEAT(651), + [860] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fun_expr_repeat1, 2), SHIFT_REPEAT(752), + [863] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fun_expr_repeat1, 2), SHIFT_REPEAT(764), + [866] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fun_expr_repeat1, 2), SHIFT_REPEAT(790), + [869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_infix_u_op_5, 1), + [873] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_infix_u_op_5, 1), + [875] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_infix_b_op_4, 1), + [877] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_or_pattern_unparens_repeat1, 2), SHIFT_REPEAT(690), + [880] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_or_pattern_unparens_repeat1, 2), SHIFT_REPEAT(697), + [883] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_or_pattern_unparens_repeat1, 2), SHIFT_REPEAT(668), + [886] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_or_pattern_unparens_repeat1, 2), SHIFT_REPEAT(814), + [889] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_or_pattern_unparens_repeat1, 2), SHIFT_REPEAT(583), + [892] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_or_pattern_unparens_repeat1, 2), SHIFT_REPEAT(690), + [895] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_or_pattern_unparens_repeat1, 2), SHIFT_REPEAT(477), + [898] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_or_pattern_unparens_repeat1, 2), SHIFT_REPEAT(694), + [901] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_or_pattern_unparens_repeat1, 2), SHIFT_REPEAT(748), + [904] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_or_pattern_unparens_repeat1, 2), SHIFT_REPEAT(801), + [907] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_or_pattern_unparens_repeat1, 2), SHIFT_REPEAT(802), + [910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_infix_b_op_3, 1), + [912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_infix_b_op_3, 1), [914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_infix_b_op_6, 1), [916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_infix_b_op_6, 1), [918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_infix_lazy_b_op_10, 1), @@ -48887,572 +48904,570 @@ static const TSParseActionEntry ts_parse_actions[] = { [932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_infix_b_op_8, 1), [934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_infix_b_op_7, 1), [936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_infix_b_op_7, 1), - [938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(653), - [940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(723), - [942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), - [944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), - [948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), - [950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(956), - [952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), - [954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), - [956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), - [960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(953), - [962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), - [966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(962), - [968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_array_pattern_repeat1, 2), + [938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(728), + [940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(629), + [942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_fun, 1, .production_id = 2), + [944] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern_fun, 1, .production_id = 2), + [946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), + [948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_array_pattern_repeat1, 2), + [950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), + [952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), + [956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), + [958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(976), + [960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), + [962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), + [964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(971), [970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), - [972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), - [974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(964), - [976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), - [978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), - [980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(959), - [982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_fun, 1, .production_id = 2), - [984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern_fun, 1, .production_id = 2), - [986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), - [988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), - [990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), - [992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(967), - [994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 3, .production_id = 29), - [996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_pattern, 3, .production_id = 29), - [998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_or_pattern_parens, 3), - [1000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_or_pattern_parens, 3), - [1002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_pattern_parens, 1), - [1004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_forall, 4, .production_id = 35), - [1006] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_forall, 4, .production_id = 35), - [1008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annot_atom, 3, .production_id = 38), - [1010] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annot_atom, 3, .production_id = 38), - [1012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annot_atom, 3, .production_id = 39), - [1014] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annot_atom, 3, .production_id = 39), - [1016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annot_atom, 3), - [1018] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annot_atom, 3), - [1020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_pattern, 2), - [1022] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_pattern, 2), - [1024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_pattern, 1), - [1026] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_pattern, 1), - [1028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), - [1030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), - [1032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [1034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), + [972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), + [974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(977), + [976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), + [980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(953), + [982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), + [984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), + [986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(970), + [988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), + [992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(974), + [994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_fun, 3, .production_id = 26), + [996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern_fun, 3, .production_id = 26), + [998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [1000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), + [1002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), + [1004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), + [1006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_pattern, 1), + [1008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_pattern, 1), + [1010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [1012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), + [1014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [1016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), + [1018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annot_atom, 3), + [1020] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annot_atom, 3), + [1022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_pattern_parens, 1), + [1024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annot_atom, 3, .production_id = 39), + [1026] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annot_atom, 3, .production_id = 39), + [1028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annot_atom, 3, .production_id = 38), + [1030] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annot_atom, 3, .production_id = 38), + [1032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_pattern_parens, 3), + [1034] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_pattern_parens, 3), [1036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annot_atom, 2, .production_id = 23), [1038] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annot_atom, 2, .production_id = 23), - [1040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [1042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), - [1044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 3, .production_id = 16), - [1046] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_pattern, 3, .production_id = 16), - [1048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annot_atom, 2), - [1050] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annot_atom, 2), - [1052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), - [1054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), - [1056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_pattern, 3, .production_id = 29), - [1058] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_pattern, 3, .production_id = 29), - [1060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_pattern_parens, 3), - [1062] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_pattern_parens, 3), - [1064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_pattern, 3, .production_id = 16), - [1066] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_pattern, 3, .production_id = 16), - [1068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_fun, 3, .production_id = 26), - [1070] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern_fun, 3, .production_id = 26), - [1072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), - [1074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), - [1076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 2), - [1078] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_pattern, 2), - [1080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_pattern, 4, .production_id = 43), - [1082] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_pattern, 4, .production_id = 43), - [1084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 4, .production_id = 43), - [1086] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_pattern, 4, .production_id = 43), - [1088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [1090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), - [1092] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_uni_record_repeat1, 2), SHIFT_REPEAT(793), - [1095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_uni_record_repeat1, 2), - [1097] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_uni_record_repeat1, 2), SHIFT_REPEAT(683), - [1100] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_uni_record_repeat1, 2), SHIFT_REPEAT(720), - [1103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_or_pattern_unparens_repeat1, 2), - [1105] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_or_pattern_unparens_repeat1, 2), - [1107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), - [1109] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annot, 1, .production_id = 10), - [1111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annot, 1, .production_id = 10), - [1113] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_annot_repeat1, 2), SHIFT_REPEAT(73), - [1116] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_annot_repeat1, 2), SHIFT_REPEAT(130), - [1119] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_annot_repeat1, 2), - [1121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_annot_repeat1, 2), - [1123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ite_expr, 6, .production_id = 61), - [1125] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ite_expr, 6, .production_id = 61), - [1127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_expr, 2, .production_id = 6), - [1129] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_expr, 2, .production_id = 6), - [1131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotated_infix_expr, 2, .production_id = 9), - [1133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotated_infix_expr, 2, .production_id = 9), - [1135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fun_expr, 4, .production_id = 30), - [1137] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fun_expr, 4, .production_id = 30), - [1139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_term, 1), - [1141] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_term, 1), - [1143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(812), - [1145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(805), - [1147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [1149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [1151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_or_pattern_unparens, 2, .production_id = 15), - [1153] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_or_pattern_unparens, 2, .production_id = 15), - [1155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), - [1157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), - [1159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_pattern, 2, .production_id = 14), - [1161] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_pattern, 2, .production_id = 14), - [1163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), - [1165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), - [1167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [1169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [1171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), - [1173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [1175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), - [1177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 1, .production_id = 13), - [1179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), - [1181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), - [1183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), - [1185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), - [1187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_or_branch, 1), - [1189] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern_or_branch, 1), - [1191] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_str_chunks_multi_repeat1, 2), SHIFT_REPEAT(812), - [1194] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_str_chunks_multi_repeat1, 2), SHIFT_REPEAT(805), - [1197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_str_chunks_multi_repeat1, 2), - [1199] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_str_chunks_multi_repeat1, 2), SHIFT_REPEAT(37), - [1202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), - [1204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [1206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), - [1208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), - [1210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(829), - [1212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), - [1214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(827), - [1216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), - [1218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), - [1220] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_str_chunks_single_repeat1, 2), SHIFT_REPEAT(829), - [1223] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_str_chunks_single_repeat1, 2), SHIFT_REPEAT(827), - [1226] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_str_chunks_single_repeat1, 2), SHIFT_REPEAT(827), - [1229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_str_chunks_single_repeat1, 2), - [1231] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_str_chunks_single_repeat1, 2), SHIFT_REPEAT(28), - [1234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), - [1236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), - [1238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), - [1240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, .production_id = 2), - [1242] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 1, .production_id = 2), - [1244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), - [1246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), - [1248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_pattern, 3), - [1250] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_pattern, 3), - [1252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), - [1254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [1256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [1258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), - [1260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), - [1262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [1264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_pattern, 4, .production_id = 45), - [1266] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_pattern, 4, .production_id = 45), - [1268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 3, .production_id = 26), - [1270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 3, .production_id = 26), - [1272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), - [1274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_or_pattern, 1), - [1276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_or_pattern, 1), - [1278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), - [1280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), - [1282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_field, 1, .production_id = 3), - [1284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_path, 2), - [1286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), - [1288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(834), - [1290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(832), - [1292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), - [1294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_path, 1), - [1296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), - [1298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), - [1300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), - [1302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), - [1304] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_static_string_repeat2, 2), SHIFT_REPEAT(834), - [1307] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_static_string_repeat2, 2), SHIFT_REPEAT(832), - [1310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_static_string_repeat2, 2), - [1312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), - [1314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), - [1316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), - [1318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_path_repeat1, 2), - [1320] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_path_repeat1, 2), SHIFT_REPEAT(801), - [1323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), - [1325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [1327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), - [1329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), - [1331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), - [1333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), - [1335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), - [1337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), - [1339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), - [1341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), - [1343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), - [1345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(850), - [1347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), - [1349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(855), - [1351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), - [1353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), - [1355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), - [1357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), - [1359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [1361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), - [1363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), - [1365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), - [1367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [1369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), - [1371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), - [1373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), - [1375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [1377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), - [1379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), - [1381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), - [1383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), - [1385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_path_elem, 1), - [1387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), - [1389] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_static_string_repeat1, 2), SHIFT_REPEAT(850), - [1392] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_static_string_repeat1, 2), SHIFT_REPEAT(855), - [1395] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_static_string_repeat1, 2), SHIFT_REPEAT(855), - [1398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_static_string_repeat1, 2), - [1400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [1402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [1404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), - [1406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), - [1408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), - [1410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), - [1412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), - [1414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_chunk_literal_multi, 1), - [1416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_chunk_literal_multi, 1), - [1418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), - [1420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [1422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), - [1424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [1426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), - [1428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), - [1430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), - [1432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), - [1434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), - [1436] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_percent, 1), - [1438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_percent, 1), - [1440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [1442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [1444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), - [1446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [1448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), - [1450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), - [1452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_chunk_expr, 3, .production_id = 25), - [1454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_chunk_expr, 3, .production_id = 25), - [1456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), - [1458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [1460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), - [1462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), - [1464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), - [1466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), - [1468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [1470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [1472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_chunk_literal_single, 1), - [1474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_chunk_literal_single, 1), - [1476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), - [1478] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_annot_repeat1, 2), SHIFT_REPEAT(77), - [1481] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_annot_repeat1, 2), SHIFT_REPEAT(150), - [1484] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_annot_repeat1, 2), SHIFT_REPEAT(79), - [1487] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_annot_repeat1, 2), SHIFT_REPEAT(148), - [1490] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_annot_repeat1, 2), SHIFT_REPEAT(71), - [1493] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_annot_repeat1, 2), SHIFT_REPEAT(152), - [1496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), - [1498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 2, .production_id = 27), - [1500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), - [1502] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_annot_repeat1, 2), SHIFT_REPEAT(81), - [1505] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_annot_repeat1, 2), SHIFT_REPEAT(147), - [1508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), - [1510] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_annot_repeat1, 2), SHIFT_REPEAT(74), - [1513] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_annot_repeat1, 2), SHIFT_REPEAT(137), - [1516] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_pattern_repeat1, 2), SHIFT_REPEAT(691), - [1519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_record_pattern_repeat1, 2), - [1521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), - [1523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), - [1525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), - [1527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), - [1529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [1531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), - [1533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), - [1535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), - [1537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), - [1539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), - [1541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [1543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), - [1545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), - [1547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), - [1549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [1551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [1553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_field, 2, .production_id = 17), - [1555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), - [1557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), - [1559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), - [1561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), - [1563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), - [1565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), - [1567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), - [1569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), - [1571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), - [1573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [1575] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_atom_repeat1, 2), SHIFT_REPEAT(857), - [1578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_atom_repeat1, 2), - [1580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), - [1582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [1584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1011), - [1586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), - [1588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), - [1590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), - [1592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 3, .production_id = 42), - [1594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [1596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), - [1598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), - [1600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [1602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), - [1604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), - [1606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), - [1608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), - [1610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [1612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [1614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [1616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_annot, 2, .production_id = 41), - [1618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [1620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), - [1622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), - [1624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [1626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), - [1628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), - [1630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), - [1632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), - [1634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), - [1636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), - [1638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), - [1640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_last_field, 1), - [1642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), - [1644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), - [1646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), - [1648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), - [1650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [1652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [1654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), - [1656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), - [1658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), - [1660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), - [1662] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_forall_repeat1, 2), SHIFT_REPEAT(909), - [1665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_forall_repeat1, 2), - [1667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), - [1669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), - [1671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), - [1673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), - [1675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_field, 3, .production_id = 33), - [1677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), - [1679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), - [1681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), - [1683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [1685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), - [1687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), - [1689] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_expr_repeat1, 2), SHIFT_REPEAT(509), - [1692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_expr_repeat1, 2), - [1694] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_atom_repeat1, 2), SHIFT_REPEAT(39), - [1697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_atom_repeat1, 2), - [1699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), - [1701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [1703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), - [1705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 2, .production_id = 28), - [1707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_field, 4, .production_id = 50), - [1709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), - [1711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), - [1713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [1715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [1717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), - [1719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), - [1721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), - [1723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), - [1725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [1727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), - [1729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), - [1731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), - [1733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), - [1735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), - [1737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_elem_pat, 1), - [1739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), - [1741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), - [1743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), - [1745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_field_pat, 1), - [1747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), - [1749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), - [1751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), - [1753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), - [1755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), - [1757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), - [1759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), - [1761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), - [1763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), - [1765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_branch, 3, .production_id = 46), - [1767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [1769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), - [1771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), - [1773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), - [1775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [1777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [1779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), - [1781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), - [1783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [1785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [1787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), - [1789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), - [1791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), - [1793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), - [1795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [1797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), - [1799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), - [1801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), - [1803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), - [1805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), - [1807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 3, .production_id = 40), - [1809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), - [1811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), - [1813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 4, .production_id = 55), - [1815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 4, .production_id = 56), - [1817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_branch, 4, .production_id = 58), - [1819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [1821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), - [1823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), - [1825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 5, .production_id = 64), - [1827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), - [1829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [1831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), - [1833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), - [1835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), - [1837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_curried_op, 1), - [1839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [1841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), - [1843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [1845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), - [1847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), - [1849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), - [1851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), - [1853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), - [1855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), - [1857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), - [1859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), - [1861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), - [1863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), - [1865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), - [1867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), - [1869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), - [1871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [1873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), - [1875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), - [1877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [1879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), - [1881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), - [1883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_row_tail, 1), - [1885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [1887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), - [1889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), - [1891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), - [1893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), - [1895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), - [1897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), - [1899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [1901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [1903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [1905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), - [1907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), - [1909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), - [1911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), - [1913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), - [1915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_guard, 2), - [1917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), - [1919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), - [1921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), - [1923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), - [1925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), - [1927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), - [1929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), - [1931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), - [1933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [1935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [1937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), - [1939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), - [1941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), - [1943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_infix_op, 1), - [1945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), - [1947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_elem_pat, 2), - [1949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_infix_b_op, 1), - [1951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), - [1953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), - [1955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [1957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), - [1959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), - [1961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), - [1963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), - [1965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), - [1967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), - [1969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [1971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [1973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), - [1975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), - [1977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), - [1979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), - [1981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [1983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [1985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), - [1987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), - [1989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [1991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), - [1993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), - [1995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), - [1997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), - [1999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [2001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), - [2003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), - [2005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [1040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annot_atom, 2), + [1042] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annot_atom, 2), + [1044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 4, .production_id = 43), + [1046] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_pattern, 4, .production_id = 43), + [1048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 3, .production_id = 29), + [1050] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_pattern, 3, .production_id = 29), + [1052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 2), + [1054] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_pattern, 2), + [1056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 3, .production_id = 16), + [1058] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_pattern, 3, .production_id = 16), + [1060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_forall, 4, .production_id = 35), + [1062] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_forall, 4, .production_id = 35), + [1064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_or_pattern_parens, 3), + [1066] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_or_pattern_parens, 3), + [1068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_pattern, 4, .production_id = 43), + [1070] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_pattern, 4, .production_id = 43), + [1072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_pattern, 3, .production_id = 29), + [1074] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_pattern, 3, .production_id = 29), + [1076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_pattern, 3, .production_id = 16), + [1078] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_pattern, 3, .production_id = 16), + [1080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [1082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), + [1084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [1086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), + [1088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_pattern, 2), + [1090] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_pattern, 2), + [1092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_or_pattern_unparens_repeat1, 2), + [1094] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_or_pattern_unparens_repeat1, 2), + [1096] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_uni_record_repeat1, 2), SHIFT_REPEAT(789), + [1099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_uni_record_repeat1, 2), + [1101] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_uni_record_repeat1, 2), SHIFT_REPEAT(693), + [1104] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_uni_record_repeat1, 2), SHIFT_REPEAT(721), + [1107] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_annot_repeat1, 2), SHIFT_REPEAT(73), + [1110] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_annot_repeat1, 2), SHIFT_REPEAT(131), + [1113] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_annot_repeat1, 2), + [1115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_annot_repeat1, 2), + [1117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [1119] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annot, 1, .production_id = 10), + [1121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annot, 1, .production_id = 10), + [1123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_term, 1), + [1125] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_term, 1), + [1127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fun_expr, 4, .production_id = 30), + [1129] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fun_expr, 4, .production_id = 30), + [1131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_expr, 2, .production_id = 6), + [1133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_expr, 2, .production_id = 6), + [1135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotated_infix_expr, 2, .production_id = 9), + [1137] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotated_infix_expr, 2, .production_id = 9), + [1139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ite_expr, 6, .production_id = 60), + [1141] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ite_expr, 6, .production_id = 60), + [1143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_or_pattern_unparens, 2, .production_id = 15), + [1145] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_or_pattern_unparens, 2, .production_id = 15), + [1147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), + [1149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(804), + [1151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(818), + [1153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [1155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [1157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [1159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [1161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [1163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [1165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [1167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [1169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), + [1171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 1, .production_id = 13), + [1173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), + [1175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), + [1177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [1179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_or_branch, 1), + [1181] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern_or_branch, 1), + [1183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [1185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), + [1187] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_str_chunks_multi_repeat1, 2), SHIFT_REPEAT(804), + [1190] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_str_chunks_multi_repeat1, 2), SHIFT_REPEAT(818), + [1193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_str_chunks_multi_repeat1, 2), + [1195] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_str_chunks_multi_repeat1, 2), SHIFT_REPEAT(37), + [1198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [1200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), + [1202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [1204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), + [1206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(829), + [1208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), + [1210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(830), + [1212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [1214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [1216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [1218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [1220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [1222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_pattern, 2, .production_id = 14), + [1224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_pattern, 2, .production_id = 14), + [1226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 3, .production_id = 26), + [1228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 3, .production_id = 26), + [1230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [1232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_pattern, 3), + [1234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_pattern, 3), + [1236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [1238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_field, 1, .production_id = 3), + [1240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [1242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_or_pattern, 1), + [1244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_or_pattern, 1), + [1246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, .production_id = 2), + [1248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 1, .production_id = 2), + [1250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [1252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), + [1254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), + [1256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [1258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [1260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), + [1262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [1264] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_str_chunks_single_repeat1, 2), SHIFT_REPEAT(829), + [1267] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_str_chunks_single_repeat1, 2), SHIFT_REPEAT(830), + [1270] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_str_chunks_single_repeat1, 2), SHIFT_REPEAT(830), + [1273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_str_chunks_single_repeat1, 2), + [1275] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_str_chunks_single_repeat1, 2), SHIFT_REPEAT(28), + [1278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [1280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(832), + [1282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(837), + [1284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), + [1286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), + [1288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [1290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [1292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_path_repeat1, 2), + [1294] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_path_repeat1, 2), SHIFT_REPEAT(774), + [1297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), + [1299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), + [1301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), + [1303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_path, 2), + [1305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), + [1307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_path, 1), + [1309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), + [1311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), + [1313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [1315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), + [1317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), + [1319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), + [1321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), + [1323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), + [1325] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_static_string_repeat2, 2), SHIFT_REPEAT(832), + [1328] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_static_string_repeat2, 2), SHIFT_REPEAT(837), + [1331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_static_string_repeat2, 2), + [1333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), + [1335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), + [1337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [1339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), + [1341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(854), + [1343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), + [1345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(855), + [1347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [1349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), + [1351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), + [1353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [1355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), + [1357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [1359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [1361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [1363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [1365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), + [1367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [1369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), + [1371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_path_elem, 1), + [1373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), + [1375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [1377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [1379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [1381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), + [1383] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_static_string_repeat1, 2), SHIFT_REPEAT(854), + [1386] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_static_string_repeat1, 2), SHIFT_REPEAT(855), + [1389] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_static_string_repeat1, 2), SHIFT_REPEAT(855), + [1392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_static_string_repeat1, 2), + [1394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), + [1396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [1398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), + [1400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_percent, 1), + [1402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_percent, 1), + [1404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), + [1406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [1408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [1410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), + [1412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), + [1414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), + [1416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), + [1418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [1420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), + [1422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [1424] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_chunk_expr, 3, .production_id = 25), + [1426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_chunk_expr, 3, .production_id = 25), + [1428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), + [1430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), + [1432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [1434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), + [1436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [1438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), + [1440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [1442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [1444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [1446] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_chunk_literal_multi, 1), + [1448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_chunk_literal_multi, 1), + [1450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [1452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), + [1454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [1456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [1458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), + [1460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [1462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), + [1464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), + [1466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 2, .production_id = 27), + [1468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [1470] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_annot_repeat1, 2), SHIFT_REPEAT(77), + [1473] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_annot_repeat1, 2), SHIFT_REPEAT(135), + [1476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_chunk_literal_single, 1), + [1478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_chunk_literal_single, 1), + [1480] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_annot_repeat1, 2), SHIFT_REPEAT(74), + [1483] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_annot_repeat1, 2), SHIFT_REPEAT(141), + [1486] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_pattern_repeat1, 2), SHIFT_REPEAT(692), + [1489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_record_pattern_repeat1, 2), + [1491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), + [1493] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_annot_repeat1, 2), SHIFT_REPEAT(78), + [1496] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_annot_repeat1, 2), SHIFT_REPEAT(146), + [1499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [1501] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_annot_repeat1, 2), SHIFT_REPEAT(75), + [1504] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_annot_repeat1, 2), SHIFT_REPEAT(147), + [1507] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_annot_repeat1, 2), SHIFT_REPEAT(79), + [1510] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_annot_repeat1, 2), SHIFT_REPEAT(152), + [1513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [1515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [1517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), + [1519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_field, 2, .production_id = 17), + [1521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), + [1523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), + [1525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [1527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), + [1529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [1531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), + [1533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [1535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), + [1537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [1539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), + [1541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), + [1543] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_atom_repeat1, 2), SHIFT_REPEAT(853), + [1546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_atom_repeat1, 2), + [1548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), + [1550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [1552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), + [1554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [1556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), + [1558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), + [1560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), + [1562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [1564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), + [1566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [1568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), + [1570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), + [1572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), + [1574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), + [1576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [1578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1081), + [1580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_field, 3, .production_id = 33), + [1582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), + [1584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), + [1586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), + [1588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [1590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [1592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [1594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [1596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [1598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [1600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [1602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), + [1604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [1606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [1608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [1610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [1612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), + [1614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), + [1616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), + [1618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), + [1620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 2, .production_id = 28), + [1622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [1624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), + [1626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), + [1628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [1630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), + [1632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), + [1634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), + [1636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [1638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), + [1640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), + [1642] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_forall_repeat1, 2), SHIFT_REPEAT(897), + [1645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_forall_repeat1, 2), + [1647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [1649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), + [1651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), + [1653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [1655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [1657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [1659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), + [1661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), + [1663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [1665] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_atom_repeat1, 2), SHIFT_REPEAT(39), + [1668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_atom_repeat1, 2), + [1670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), + [1672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), + [1674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), + [1676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), + [1678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [1680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [1682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), + [1684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_annot, 2, .production_id = 41), + [1686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), + [1688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 3, .production_id = 42), + [1690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), + [1692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [1694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), + [1696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_last_field, 1), + [1698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), + [1700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), + [1702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [1704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [1706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), + [1708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [1710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), + [1712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), + [1714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), + [1716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), + [1718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [1720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [1722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [1724] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_expr_repeat1, 2), SHIFT_REPEAT(510), + [1727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_expr_repeat1, 2), + [1729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_field, 4, .production_id = 49), + [1731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [1733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), + [1735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), + [1737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), + [1739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_branch, 3, .production_id = 45), + [1741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), + [1743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), + [1745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), + [1747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), + [1749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [1751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), + [1753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [1755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 3, .production_id = 40), + [1757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 4, .production_id = 54), + [1759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [1761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), + [1763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [1765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), + [1767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 4, .production_id = 55), + [1769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_branch, 4, .production_id = 57), + [1771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [1773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), + [1775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 5, .production_id = 63), + [1777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [1779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), + [1781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), + [1783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [1785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), + [1787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), + [1789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_field_pat, 1), + [1791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), + [1793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), + [1795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [1797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [1799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), + [1801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), + [1803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_elem_pat, 1), + [1805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [1807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), + [1809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), + [1811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [1813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), + [1815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), + [1817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), + [1819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), + [1821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), + [1823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), + [1825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [1827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), + [1829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), + [1831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), + [1833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [1835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [1837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [1839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [1841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [1843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [1845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), + [1847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [1849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [1851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [1853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [1855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [1857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_guard, 2), + [1859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), + [1861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [1863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [1865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [1867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [1869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [1871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [1873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [1875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [1877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [1879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [1881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [1883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [1885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), + [1887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [1889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_field_pat, 2), + [1891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [1893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), + [1895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), + [1897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [1899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [1901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), + [1903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), + [1905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [1907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [1909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), + [1911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), + [1913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), + [1915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [1917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [1919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [1921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [1923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [1925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [1927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [1929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [1931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [1933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [1935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [1937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [1939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [1941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [1943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [1945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [1947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [1949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), + [1951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), + [1953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_elem_pat, 2), + [1955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [1957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), + [1959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [1961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), + [1963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), + [1965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), + [1967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [1969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [1971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [1973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), + [1975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), + [1977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), + [1979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), + [1981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), + [1983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), + [1985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), + [1987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [1989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), + [1991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [1993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_row_tail, 1), + [1995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), + [1997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), + [1999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), + [2001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), + [2003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), + [2005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), [2007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), - [2009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), - [2011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), - [2013] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [2015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), - [2017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), - [2019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), - [2021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), - [2023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), - [2025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), - [2027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), - [2029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), - [2031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), - [2033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), - [2035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), - [2037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), - [2039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), - [2041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), - [2043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [2045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), - [2047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [2049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), - [2051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), - [2053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), - [2055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), - [2057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), - [2059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), - [2061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), - [2063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), - [2065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), - [2067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_field_pat, 2), - [2069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), - [2071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), - [2073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), - [2075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), - [2077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [2079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), - [2081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), - [2083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [2085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [2087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), - [2089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), - [2091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), - [2093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [2095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), - [2097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), - [2099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), - [2101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), + [2009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), + [2011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), + [2013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), + [2015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), + [2017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), + [2019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), + [2021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), + [2023] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [2025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [2027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [2029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_curried_op, 1), + [2031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), + [2033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), + [2035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), + [2037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), + [2039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), + [2041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), + [2043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), + [2045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), + [2047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), + [2049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [2051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_infix_b_op, 1), + [2053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), + [2055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), + [2057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_infix_op, 1), + [2059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [2061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), + [2063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), + [2065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), + [2067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), + [2069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), + [2071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [2073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), + [2075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [2077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), + [2079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [2081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), + [2083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [2085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [2087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [2089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), + [2091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [2093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), + [2095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), + [2097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), }; #ifdef __cplusplus