From cc0a1401cf11db943345347d859afceb15b4597e Mon Sep 17 00:00:00 2001 From: Stephan Seitz Date: Sat, 3 Apr 2021 02:31:47 +0200 Subject: [PATCH] Add loop test --- grammar.js | 6 +- src/grammar.json | 145 +- src/node-types.json | 76 + src/parser.c | 26542 ++++++++++++++++++++-------------------- test.lisp | 4 +- test/corpus/basic.txt | 9 + 6 files changed, 13566 insertions(+), 13216 deletions(-) diff --git a/grammar.js b/grammar.js index ce1aadbd3..53c1d11e7 100644 --- a/grammar.js +++ b/grammar.js @@ -23,7 +23,7 @@ module.exports = grammar(clojure, { name: 'commonlisp', extras: ($, original) => [...original, $.block_comment], - conflicts: ($, original) => [...original, [$.for_clause]], + conflicts: ($, original) => [...original, [$.for_clause], [$.accumulation_clause]], rules: { block_comment: _ => token(seq('#|', repeat(choice(/[^|]/, /\|[^#]/)), '|#')), @@ -61,13 +61,13 @@ module.exports = grammar(clojure, { accumulation_verb: _ => /(collect|append|nconc|count|sum|maximize|minimize)(ing)?/, - for_clause: $ => seq(choice('for', 'and'), optional($._gap), field('variable', $.sym_lit), + for_clause: $ => seq(choice('for', 'and'), optional($._gap), field('variable', $._form), $._for_part, optional($._for_part)), with_clause: $ => prec.left(seq('with', optional($._gap), $._form, optional($._gap), "=", optional($._gap), $._form)), do_clause: $ => prec.left(seq('do', optional($._gap), $._form)), condition_clause: $ => prec.left(seq(choice('when', 'if', 'unless', 'always', 'thereis', 'never'), optional($._gap), $._form)), - accumulation_clause: $ => prec.left(seq($.accumulation_verb, optional($._gap), $._form, optional($._gap), optional(seq('into', optional($._gap), $._form)))), + accumulation_clause: $ => seq($.accumulation_verb, optional($._gap), $._form, optional(seq(optional($._gap), 'into', optional($._gap), $._form))), termination_clause: $ => prec.left(seq(choice('finally', 'return', 'initially'), optional($._gap), $._form)), diff --git a/src/grammar.json b/src/grammar.json index acd13da4f..473608716 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -1907,7 +1907,7 @@ "name": "variable", "content": { "type": "SYMBOL", - "name": "sym_lit" + "name": "_form" } }, { @@ -2073,78 +2073,74 @@ } }, "accumulation_clause": { - "type": "PREC_LEFT", - "value": 0, - "content": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "accumulation_verb" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_gap" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "SYMBOL", - "name": "_form" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_gap" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "into" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_gap" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "SYMBOL", - "name": "_form" - } - ] - }, - { - "type": "BLANK" - } - ] - } - ] - } + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "accumulation_verb" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_gap" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "SYMBOL", + "name": "_form" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_gap" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": "into" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_gap" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "SYMBOL", + "name": "_form" + } + ] + }, + { + "type": "BLANK" + } + ] + } + ] }, "termination_clause": { "type": "PREC_LEFT", @@ -2354,6 +2350,9 @@ "conflicts": [ [ "for_clause" + ], + [ + "accumulation_clause" ] ], "precedences": [], diff --git a/src/node-types.json b/src/node-types.json index 31beab772..29f403ace 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -904,9 +904,85 @@ "multiple": false, "required": true, "types": [ + { + "type": "char_lit", + "named": true + }, + { + "type": "derefing_lit", + "named": true + }, + { + "type": "evaling_lit", + "named": true + }, + { + "type": "fancy_literal", + "named": true + }, + { + "type": "kwd_lit", + "named": true + }, + { + "type": "list_lit", + "named": true + }, + { + "type": "nil_lit", + "named": true + }, + { + "type": "num_lit", + "named": true + }, + { + "type": "quoting_lit", + "named": true + }, + { + "type": "read_cond_lit", + "named": true + }, + { + "type": "set_lit", + "named": true + }, + { + "type": "splicing_read_cond_lit", + "named": true + }, + { + "type": "str_lit", + "named": true + }, { "type": "sym_lit", "named": true + }, + { + "type": "sym_val_lit", + "named": true + }, + { + "type": "syn_quoting_lit", + "named": true + }, + { + "type": "unquote_splicing_lit", + "named": true + }, + { + "type": "unquoting_lit", + "named": true + }, + { + "type": "var_quoting_lit", + "named": true + }, + { + "type": "vec_lit", + "named": true } ] } diff --git a/src/parser.c b/src/parser.c index 53e414b14..ff7d7355a 100644 --- a/src/parser.c +++ b/src/parser.c @@ -2925,7 +2925,7 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [215] = {.lex_state = 201}, [216] = {.lex_state = 201}, [217] = {.lex_state = 201}, - [218] = {.lex_state = 6}, + [218] = {.lex_state = 201}, [219] = {.lex_state = 6}, [220] = {.lex_state = 6}, [221] = {.lex_state = 6}, @@ -2940,8 +2940,8 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [230] = {.lex_state = 6}, [231] = {.lex_state = 6}, [232] = {.lex_state = 6}, - [233] = {.lex_state = 0}, - [234] = {.lex_state = 0}, + [233] = {.lex_state = 6}, + [234] = {.lex_state = 6}, [235] = {.lex_state = 0}, [236] = {.lex_state = 0}, [237] = {.lex_state = 0}, @@ -3005,8 +3005,8 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [295] = {.lex_state = 0}, [296] = {.lex_state = 0}, [297] = {.lex_state = 0}, - [298] = {.lex_state = 5}, - [299] = {.lex_state = 5}, + [298] = {.lex_state = 0}, + [299] = {.lex_state = 0}, [300] = {.lex_state = 5}, [301] = {.lex_state = 5}, [302] = {.lex_state = 5}, @@ -3074,129 +3074,129 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [364] = {.lex_state = 5}, [365] = {.lex_state = 5}, [366] = {.lex_state = 5}, - [367] = {.lex_state = 201}, - [368] = {.lex_state = 201}, + [367] = {.lex_state = 5}, + [368] = {.lex_state = 5}, [369] = {.lex_state = 201}, - [370] = {.lex_state = 201}, + [370] = {.lex_state = 10}, [371] = {.lex_state = 201}, - [372] = {.lex_state = 10}, + [372] = {.lex_state = 201}, [373] = {.lex_state = 201}, [374] = {.lex_state = 10}, - [375] = {.lex_state = 10}, - [376] = {.lex_state = 10}, + [375] = {.lex_state = 201}, + [376] = {.lex_state = 201}, [377] = {.lex_state = 10}, - [378] = {.lex_state = 201}, - [379] = {.lex_state = 201}, + [378] = {.lex_state = 10}, + [379] = {.lex_state = 10}, [380] = {.lex_state = 201}, - [381] = {.lex_state = 201}, - [382] = {.lex_state = 10}, + [381] = {.lex_state = 10}, + [382] = {.lex_state = 201}, [383] = {.lex_state = 201}, [384] = {.lex_state = 201}, [385] = {.lex_state = 201}, [386] = {.lex_state = 201}, [387] = {.lex_state = 10}, - [388] = {.lex_state = 201}, + [388] = {.lex_state = 10}, [389] = {.lex_state = 201}, [390] = {.lex_state = 201}, [391] = {.lex_state = 201}, [392] = {.lex_state = 201}, - [393] = {.lex_state = 10}, - [394] = {.lex_state = 201}, - [395] = {.lex_state = 10}, - [396] = {.lex_state = 201}, + [393] = {.lex_state = 201}, + [394] = {.lex_state = 10}, + [395] = {.lex_state = 201}, + [396] = {.lex_state = 10}, [397] = {.lex_state = 201}, - [398] = {.lex_state = 10}, + [398] = {.lex_state = 201}, [399] = {.lex_state = 201}, [400] = {.lex_state = 201}, - [401] = {.lex_state = 10}, + [401] = {.lex_state = 201}, [402] = {.lex_state = 201}, [403] = {.lex_state = 201}, [404] = {.lex_state = 201}, [405] = {.lex_state = 10}, [406] = {.lex_state = 201}, - [407] = {.lex_state = 10}, + [407] = {.lex_state = 201}, [408] = {.lex_state = 201}, [409] = {.lex_state = 10}, [410] = {.lex_state = 201}, [411] = {.lex_state = 201}, [412] = {.lex_state = 201}, - [413] = {.lex_state = 10}, - [414] = {.lex_state = 201}, + [413] = {.lex_state = 201}, + [414] = {.lex_state = 10}, [415] = {.lex_state = 201}, [416] = {.lex_state = 201}, [417] = {.lex_state = 201}, [418] = {.lex_state = 201}, [419] = {.lex_state = 10}, - [420] = {.lex_state = 201}, - [421] = {.lex_state = 10}, + [420] = {.lex_state = 10}, + [421] = {.lex_state = 201}, [422] = {.lex_state = 201}, [423] = {.lex_state = 201}, - [424] = {.lex_state = 10}, - [425] = {.lex_state = 201}, + [424] = {.lex_state = 201}, + [425] = {.lex_state = 10}, [426] = {.lex_state = 10}, [427] = {.lex_state = 201}, - [428] = {.lex_state = 10}, + [428] = {.lex_state = 201}, [429] = {.lex_state = 201}, [430] = {.lex_state = 201}, [431] = {.lex_state = 201}, - [432] = {.lex_state = 10}, + [432] = {.lex_state = 201}, [433] = {.lex_state = 10}, - [434] = {.lex_state = 201}, - [435] = {.lex_state = 201}, + [434] = {.lex_state = 10}, + [435] = {.lex_state = 10}, [436] = {.lex_state = 201}, - [437] = {.lex_state = 10}, - [438] = {.lex_state = 10}, + [437] = {.lex_state = 201}, + [438] = {.lex_state = 201}, [439] = {.lex_state = 201}, [440] = {.lex_state = 10}, [441] = {.lex_state = 201}, - [442] = {.lex_state = 201}, - [443] = {.lex_state = 201}, + [442] = {.lex_state = 10}, + [443] = {.lex_state = 10}, [444] = {.lex_state = 201}, [445] = {.lex_state = 201}, - [446] = {.lex_state = 10}, + [446] = {.lex_state = 201}, [447] = {.lex_state = 10}, [448] = {.lex_state = 201}, - [449] = {.lex_state = 201}, + [449] = {.lex_state = 10}, [450] = {.lex_state = 10}, [451] = {.lex_state = 201}, [452] = {.lex_state = 201}, [453] = {.lex_state = 201}, [454] = {.lex_state = 201}, - [455] = {.lex_state = 201}, + [455] = {.lex_state = 10}, [456] = {.lex_state = 201}, - [457] = {.lex_state = 201}, - [458] = {.lex_state = 10}, - [459] = {.lex_state = 201}, + [457] = {.lex_state = 10}, + [458] = {.lex_state = 201}, + [459] = {.lex_state = 10}, [460] = {.lex_state = 201}, [461] = {.lex_state = 201}, [462] = {.lex_state = 201}, [463] = {.lex_state = 201}, [464] = {.lex_state = 201}, - [465] = {.lex_state = 6}, - [466] = {.lex_state = 6}, - [467] = {.lex_state = 6}, + [465] = {.lex_state = 201}, + [466] = {.lex_state = 201}, + [467] = {.lex_state = 7}, [468] = {.lex_state = 6}, [469] = {.lex_state = 6}, - [470] = {.lex_state = 7}, - [471] = {.lex_state = 6}, - [472] = {.lex_state = 7}, + [470] = {.lex_state = 6}, + [471] = {.lex_state = 7}, + [472] = {.lex_state = 6}, [473] = {.lex_state = 6}, - [474] = {.lex_state = 12}, + [474] = {.lex_state = 6}, [475] = {.lex_state = 7}, [476] = {.lex_state = 6}, - [477] = {.lex_state = 12}, - [478] = {.lex_state = 12}, + [477] = {.lex_state = 7}, + [478] = {.lex_state = 6}, [479] = {.lex_state = 7}, [480] = {.lex_state = 6}, - [481] = {.lex_state = 6}, + [481] = {.lex_state = 7}, [482] = {.lex_state = 6}, - [483] = {.lex_state = 7}, + [483] = {.lex_state = 6}, [484] = {.lex_state = 6}, - [485] = {.lex_state = 7}, + [485] = {.lex_state = 6}, [486] = {.lex_state = 6}, [487] = {.lex_state = 6}, [488] = {.lex_state = 6}, - [489] = {.lex_state = 7}, + [489] = {.lex_state = 6}, [490] = {.lex_state = 6}, [491] = {.lex_state = 6}, [492] = {.lex_state = 6}, @@ -3208,51 +3208,51 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [498] = {.lex_state = 6}, [499] = {.lex_state = 6}, [500] = {.lex_state = 6}, - [501] = {.lex_state = 6}, - [502] = {.lex_state = 7}, + [501] = {.lex_state = 12}, + [502] = {.lex_state = 6}, [503] = {.lex_state = 6}, [504] = {.lex_state = 12}, - [505] = {.lex_state = 12}, + [505] = {.lex_state = 6}, [506] = {.lex_state = 6}, [507] = {.lex_state = 6}, [508] = {.lex_state = 6}, [509] = {.lex_state = 6}, - [510] = {.lex_state = 7}, + [510] = {.lex_state = 12}, [511] = {.lex_state = 6}, [512] = {.lex_state = 6}, [513] = {.lex_state = 6}, [514] = {.lex_state = 6}, [515] = {.lex_state = 6}, - [516] = {.lex_state = 6}, + [516] = {.lex_state = 12}, [517] = {.lex_state = 6}, [518] = {.lex_state = 6}, [519] = {.lex_state = 6}, [520] = {.lex_state = 6}, [521] = {.lex_state = 6}, - [522] = {.lex_state = 6}, + [522] = {.lex_state = 7}, [523] = {.lex_state = 6}, [524] = {.lex_state = 6}, [525] = {.lex_state = 6}, [526] = {.lex_state = 6}, - [527] = {.lex_state = 12}, - [528] = {.lex_state = 6}, + [527] = {.lex_state = 6}, + [528] = {.lex_state = 12}, [529] = {.lex_state = 6}, [530] = {.lex_state = 6}, - [531] = {.lex_state = 12}, + [531] = {.lex_state = 6}, [532] = {.lex_state = 6}, - [533] = {.lex_state = 6}, + [533] = {.lex_state = 7}, [534] = {.lex_state = 6}, - [535] = {.lex_state = 6}, - [536] = {.lex_state = 6}, + [535] = {.lex_state = 7}, + [536] = {.lex_state = 12}, [537] = {.lex_state = 6}, [538] = {.lex_state = 6}, [539] = {.lex_state = 6}, [540] = {.lex_state = 6}, - [541] = {.lex_state = 6}, + [541] = {.lex_state = 12}, [542] = {.lex_state = 6}, - [543] = {.lex_state = 7}, - [544] = {.lex_state = 7}, - [545] = {.lex_state = 10}, + [543] = {.lex_state = 6}, + [544] = {.lex_state = 6}, + [545] = {.lex_state = 7}, [546] = {.lex_state = 7}, [547] = {.lex_state = 7}, [548] = {.lex_state = 7}, @@ -3260,9 +3260,9 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [550] = {.lex_state = 7}, [551] = {.lex_state = 7}, [552] = {.lex_state = 7}, - [553] = {.lex_state = 7}, - [554] = {.lex_state = 7}, - [555] = {.lex_state = 10}, + [553] = {.lex_state = 10}, + [554] = {.lex_state = 10}, + [555] = {.lex_state = 7}, [556] = {.lex_state = 7}, [557] = {.lex_state = 7}, [558] = {.lex_state = 7}, @@ -3280,21 +3280,21 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [570] = {.lex_state = 7}, [571] = {.lex_state = 7}, [572] = {.lex_state = 7}, - [573] = {.lex_state = 10}, - [574] = {.lex_state = 10}, - [575] = {.lex_state = 11}, - [576] = {.lex_state = 11}, - [577] = {.lex_state = 7}, - [578] = {.lex_state = 7}, - [579] = {.lex_state = 10}, - [580] = {.lex_state = 10}, - [581] = {.lex_state = 10}, - [582] = {.lex_state = 10}, + [573] = {.lex_state = 7}, + [574] = {.lex_state = 7}, + [575] = {.lex_state = 10}, + [576] = {.lex_state = 10}, + [577] = {.lex_state = 11}, + [578] = {.lex_state = 11}, + [579] = {.lex_state = 7}, + [580] = {.lex_state = 7}, + [581] = {.lex_state = 7}, + [582] = {.lex_state = 7}, [583] = {.lex_state = 10}, - [584] = {.lex_state = 7}, + [584] = {.lex_state = 10}, [585] = {.lex_state = 10}, [586] = {.lex_state = 10}, - [587] = {.lex_state = 7}, + [587] = {.lex_state = 10}, [588] = {.lex_state = 10}, [589] = {.lex_state = 10}, [590] = {.lex_state = 10}, @@ -3348,8 +3348,8 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [638] = {.lex_state = 10}, [639] = {.lex_state = 10}, [640] = {.lex_state = 10}, - [641] = {.lex_state = 7}, - [642] = {.lex_state = 7}, + [641] = {.lex_state = 10}, + [642] = {.lex_state = 10}, [643] = {.lex_state = 7}, [644] = {.lex_state = 7}, [645] = {.lex_state = 7}, @@ -3358,7 +3358,7 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [648] = {.lex_state = 7}, [649] = {.lex_state = 7}, [650] = {.lex_state = 7}, - [651] = {.lex_state = 10}, + [651] = {.lex_state = 7}, [652] = {.lex_state = 7}, [653] = {.lex_state = 7}, [654] = {.lex_state = 7}, @@ -3370,7 +3370,7 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [660] = {.lex_state = 7}, [661] = {.lex_state = 7}, [662] = {.lex_state = 7}, - [663] = {.lex_state = 10}, + [663] = {.lex_state = 7}, [664] = {.lex_state = 7}, [665] = {.lex_state = 7}, [666] = {.lex_state = 7}, @@ -3423,7 +3423,7 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [713] = {.lex_state = 10}, [714] = {.lex_state = 10}, [715] = {.lex_state = 10}, - [716] = {.lex_state = 12}, + [716] = {.lex_state = 10}, [717] = {.lex_state = 10}, [718] = {.lex_state = 10}, [719] = {.lex_state = 10}, @@ -3432,118 +3432,118 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [722] = {.lex_state = 10}, [723] = {.lex_state = 10}, [724] = {.lex_state = 10}, - [725] = {.lex_state = 10}, - [726] = {.lex_state = 0}, - [727] = {.lex_state = 7}, - [728] = {.lex_state = 0}, - [729] = {.lex_state = 0}, - [730] = {.lex_state = 7}, + [725] = {.lex_state = 12}, + [726] = {.lex_state = 11}, + [727] = {.lex_state = 11}, + [728] = {.lex_state = 11}, + [729] = {.lex_state = 11}, + [730] = {.lex_state = 11}, [731] = {.lex_state = 11}, - [732] = {.lex_state = 0}, - [733] = {.lex_state = 0}, + [732] = {.lex_state = 11}, + [733] = {.lex_state = 11}, [734] = {.lex_state = 11}, - [735] = {.lex_state = 7}, - [736] = {.lex_state = 7}, - [737] = {.lex_state = 0}, - [738] = {.lex_state = 7}, - [739] = {.lex_state = 7}, - [740] = {.lex_state = 0}, - [741] = {.lex_state = 0}, - [742] = {.lex_state = 0}, - [743] = {.lex_state = 0}, - [744] = {.lex_state = 0}, - [745] = {.lex_state = 0}, - [746] = {.lex_state = 0}, - [747] = {.lex_state = 7}, - [748] = {.lex_state = 7}, + [735] = {.lex_state = 11}, + [736] = {.lex_state = 11}, + [737] = {.lex_state = 11}, + [738] = {.lex_state = 11}, + [739] = {.lex_state = 11}, + [740] = {.lex_state = 11}, + [741] = {.lex_state = 11}, + [742] = {.lex_state = 11}, + [743] = {.lex_state = 11}, + [744] = {.lex_state = 11}, + [745] = {.lex_state = 11}, + [746] = {.lex_state = 11}, + [747] = {.lex_state = 11}, + [748] = {.lex_state = 0}, [749] = {.lex_state = 0}, [750] = {.lex_state = 0}, - [751] = {.lex_state = 0}, - [752] = {.lex_state = 0}, + [751] = {.lex_state = 11}, + [752] = {.lex_state = 11}, [753] = {.lex_state = 0}, - [754] = {.lex_state = 7}, + [754] = {.lex_state = 11}, [755] = {.lex_state = 11}, [756] = {.lex_state = 11}, [757] = {.lex_state = 11}, - [758] = {.lex_state = 11}, + [758] = {.lex_state = 0}, [759] = {.lex_state = 11}, - [760] = {.lex_state = 0}, - [761] = {.lex_state = 12}, + [760] = {.lex_state = 11}, + [761] = {.lex_state = 0}, [762] = {.lex_state = 11}, - [763] = {.lex_state = 7}, + [763] = {.lex_state = 11}, [764] = {.lex_state = 7}, [765] = {.lex_state = 7}, - [766] = {.lex_state = 7}, + [766] = {.lex_state = 11}, [767] = {.lex_state = 11}, - [768] = {.lex_state = 7}, + [768] = {.lex_state = 11}, [769] = {.lex_state = 7}, - [770] = {.lex_state = 11}, - [771] = {.lex_state = 11}, - [772] = {.lex_state = 11}, - [773] = {.lex_state = 11}, - [774] = {.lex_state = 11}, + [770] = {.lex_state = 0}, + [771] = {.lex_state = 0}, + [772] = {.lex_state = 7}, + [773] = {.lex_state = 0}, + [774] = {.lex_state = 0}, [775] = {.lex_state = 11}, [776] = {.lex_state = 11}, [777] = {.lex_state = 11}, [778] = {.lex_state = 11}, - [779] = {.lex_state = 7}, + [779] = {.lex_state = 11}, [780] = {.lex_state = 11}, [781] = {.lex_state = 11}, [782] = {.lex_state = 11}, - [783] = {.lex_state = 11}, - [784] = {.lex_state = 7}, + [783] = {.lex_state = 7}, + [784] = {.lex_state = 11}, [785] = {.lex_state = 11}, - [786] = {.lex_state = 7}, + [786] = {.lex_state = 11}, [787] = {.lex_state = 11}, [788] = {.lex_state = 11}, [789] = {.lex_state = 11}, [790] = {.lex_state = 11}, [791] = {.lex_state = 11}, - [792] = {.lex_state = 11}, + [792] = {.lex_state = 7}, [793] = {.lex_state = 0}, - [794] = {.lex_state = 11}, - [795] = {.lex_state = 0}, - [796] = {.lex_state = 11}, + [794] = {.lex_state = 0}, + [795] = {.lex_state = 7}, + [796] = {.lex_state = 0}, [797] = {.lex_state = 11}, - [798] = {.lex_state = 11}, - [799] = {.lex_state = 7}, + [798] = {.lex_state = 0}, + [799] = {.lex_state = 11}, [800] = {.lex_state = 11}, - [801] = {.lex_state = 11}, - [802] = {.lex_state = 7}, - [803] = {.lex_state = 7}, - [804] = {.lex_state = 11}, - [805] = {.lex_state = 0}, - [806] = {.lex_state = 7}, + [801] = {.lex_state = 7}, + [802] = {.lex_state = 11}, + [803] = {.lex_state = 0}, + [804] = {.lex_state = 0}, + [805] = {.lex_state = 11}, + [806] = {.lex_state = 11}, [807] = {.lex_state = 11}, [808] = {.lex_state = 0}, [809] = {.lex_state = 0}, [810] = {.lex_state = 11}, [811] = {.lex_state = 11}, - [812] = {.lex_state = 11}, - [813] = {.lex_state = 11}, + [812] = {.lex_state = 0}, + [813] = {.lex_state = 7}, [814] = {.lex_state = 11}, - [815] = {.lex_state = 11}, - [816] = {.lex_state = 11}, - [817] = {.lex_state = 11}, - [818] = {.lex_state = 11}, - [819] = {.lex_state = 11}, - [820] = {.lex_state = 11}, - [821] = {.lex_state = 11}, - [822] = {.lex_state = 11}, - [823] = {.lex_state = 0}, - [824] = {.lex_state = 11}, + [815] = {.lex_state = 7}, + [816] = {.lex_state = 7}, + [817] = {.lex_state = 7}, + [818] = {.lex_state = 7}, + [819] = {.lex_state = 7}, + [820] = {.lex_state = 7}, + [821] = {.lex_state = 0}, + [822] = {.lex_state = 0}, + [823] = {.lex_state = 7}, + [824] = {.lex_state = 7}, [825] = {.lex_state = 11}, - [826] = {.lex_state = 11}, - [827] = {.lex_state = 11}, - [828] = {.lex_state = 11}, - [829] = {.lex_state = 11}, - [830] = {.lex_state = 11}, - [831] = {.lex_state = 11}, + [826] = {.lex_state = 7}, + [827] = {.lex_state = 7}, + [828] = {.lex_state = 0}, + [829] = {.lex_state = 12}, + [830] = {.lex_state = 0}, + [831] = {.lex_state = 7}, [832] = {.lex_state = 11}, - [833] = {.lex_state = 11}, - [834] = {.lex_state = 11}, - [835] = {.lex_state = 11}, - [836] = {.lex_state = 11}, + [833] = {.lex_state = 7}, + [834] = {.lex_state = 0}, + [835] = {.lex_state = 0}, + [836] = {.lex_state = 7}, [837] = {.lex_state = 11}, [838] = {.lex_state = 7}, [839] = {.lex_state = 7}, @@ -3552,36 +3552,36 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [842] = {.lex_state = 7}, [843] = {.lex_state = 7}, [844] = {.lex_state = 7}, - [845] = {.lex_state = 7}, + [845] = {.lex_state = 0}, [846] = {.lex_state = 0}, [847] = {.lex_state = 0}, [848] = {.lex_state = 0}, [849] = {.lex_state = 0}, [850] = {.lex_state = 0}, [851] = {.lex_state = 0}, - [852] = {.lex_state = 0}, + [852] = {.lex_state = 7}, [853] = {.lex_state = 0}, [854] = {.lex_state = 0}, [855] = {.lex_state = 0}, [856] = {.lex_state = 0}, [857] = {.lex_state = 0}, - [858] = {.lex_state = 7}, - [859] = {.lex_state = 0}, + [858] = {.lex_state = 0}, + [859] = {.lex_state = 7}, [860] = {.lex_state = 0}, - [861] = {.lex_state = 7}, + [861] = {.lex_state = 0}, [862] = {.lex_state = 0}, [863] = {.lex_state = 0}, [864] = {.lex_state = 0}, - [865] = {.lex_state = 0}, + [865] = {.lex_state = 7}, [866] = {.lex_state = 7}, - [867] = {.lex_state = 0}, + [867] = {.lex_state = 7}, [868] = {.lex_state = 7}, - [869] = {.lex_state = 7}, + [869] = {.lex_state = 0}, [870] = {.lex_state = 7}, [871] = {.lex_state = 7}, [872] = {.lex_state = 7}, - [873] = {.lex_state = 7}, - [874] = {.lex_state = 7}, + [873] = {.lex_state = 0}, + [874] = {.lex_state = 0}, [875] = {.lex_state = 0}, [876] = {.lex_state = 0}, [877] = {.lex_state = 0}, @@ -3648,10 +3648,10 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [938] = {.lex_state = 0}, [939] = {.lex_state = 0}, [940] = {.lex_state = 0}, - [941] = {.lex_state = 0}, + [941] = {.lex_state = 10}, [942] = {.lex_state = 0}, [943] = {.lex_state = 0}, - [944] = {.lex_state = 0}, + [944] = {.lex_state = 10}, [945] = {.lex_state = 0}, }; @@ -3722,21 +3722,21 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_A] = ACTIONS(1), }, [1] = { - [sym_source] = STATE(941), + [sym_source] = STATE(939), [sym__gap] = STATE(29), [sym_dis_expr] = STATE(29), [sym__form] = STATE(29), [sym_str_lit] = STATE(29), [sym_sym_lit] = STATE(29), - [sym__metadata_lit] = STATE(761), - [sym_meta_lit] = STATE(587), - [sym_old_meta_lit] = STATE(584), + [sym__metadata_lit] = STATE(829), + [sym_meta_lit] = STATE(582), + [sym_old_meta_lit] = STATE(581), [sym_list_lit] = STATE(29), - [sym__bare_list_lit] = STATE(379), + [sym__bare_list_lit] = STATE(376), [sym_vec_lit] = STATE(29), - [sym__bare_vec_lit] = STATE(384), + [sym__bare_vec_lit] = STATE(375), [sym_set_lit] = STATE(29), - [sym__bare_set_lit] = STATE(390), + [sym__bare_set_lit] = STATE(372), [sym_read_cond_lit] = STATE(29), [sym_splicing_read_cond_lit] = STATE(29), [sym_var_quoting_lit] = STATE(29), @@ -3747,10 +3747,10 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_syn_quoting_lit] = STATE(29), [sym_unquote_splicing_lit] = STATE(29), [sym_unquoting_lit] = STATE(29), - [sym_defun] = STATE(379), - [sym_loop_macro] = STATE(379), + [sym_defun] = STATE(376), + [sym_loop_macro] = STATE(376), [aux_sym_source_repeat1] = STATE(29), - [aux_sym_sym_lit_repeat1] = STATE(505), + [aux_sym_sym_lit_repeat1] = STATE(541), [ts_builtin_sym_end] = ACTIONS(5), [sym__ws] = ACTIONS(7), [sym_comment] = ACTIONS(7), @@ -3780,36 +3780,36 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_fancy_literal] = ACTIONS(13), }, [2] = { - [sym__gap] = STATE(303), - [sym_dis_expr] = STATE(303), - [sym__form] = STATE(459), - [sym_str_lit] = STATE(459), - [sym_sym_lit] = STATE(459), - [sym__metadata_lit] = STATE(761), - [sym_meta_lit] = STATE(587), - [sym_old_meta_lit] = STATE(584), - [sym_list_lit] = STATE(459), - [sym__bare_list_lit] = STATE(379), - [sym_vec_lit] = STATE(459), - [sym__bare_vec_lit] = STATE(384), - [sym_set_lit] = STATE(459), - [sym__bare_set_lit] = STATE(390), - [sym_read_cond_lit] = STATE(459), - [sym_splicing_read_cond_lit] = STATE(459), - [sym_var_quoting_lit] = STATE(459), - [sym_sym_val_lit] = STATE(459), - [sym_evaling_lit] = STATE(459), - [sym_derefing_lit] = STATE(459), - [sym_quoting_lit] = STATE(459), - [sym_syn_quoting_lit] = STATE(459), - [sym_unquote_splicing_lit] = STATE(459), - [sym_unquoting_lit] = STATE(459), - [sym_defun] = STATE(379), - [sym_loop_macro] = STATE(379), - [sym_defun_keyword] = STATE(112), - [sym_defun_header] = STATE(13), - [aux_sym_sym_lit_repeat1] = STATE(505), - [aux_sym__bare_list_lit_repeat1] = STATE(15), + [sym__gap] = STATE(300), + [sym_dis_expr] = STATE(300), + [sym__form] = STATE(461), + [sym_str_lit] = STATE(461), + [sym_sym_lit] = STATE(461), + [sym__metadata_lit] = STATE(829), + [sym_meta_lit] = STATE(582), + [sym_old_meta_lit] = STATE(581), + [sym_list_lit] = STATE(461), + [sym__bare_list_lit] = STATE(376), + [sym_vec_lit] = STATE(461), + [sym__bare_vec_lit] = STATE(375), + [sym_set_lit] = STATE(461), + [sym__bare_set_lit] = STATE(372), + [sym_read_cond_lit] = STATE(461), + [sym_splicing_read_cond_lit] = STATE(461), + [sym_var_quoting_lit] = STATE(461), + [sym_sym_val_lit] = STATE(461), + [sym_evaling_lit] = STATE(461), + [sym_derefing_lit] = STATE(461), + [sym_quoting_lit] = STATE(461), + [sym_syn_quoting_lit] = STATE(461), + [sym_unquote_splicing_lit] = STATE(461), + [sym_unquoting_lit] = STATE(461), + [sym_defun] = STATE(376), + [sym_loop_macro] = STATE(376), + [sym_defun_keyword] = STATE(178), + [sym_defun_header] = STATE(14), + [aux_sym_sym_lit_repeat1] = STATE(541), + [aux_sym__bare_list_lit_repeat1] = STATE(16), [sym__ws] = ACTIONS(47), [sym_comment] = ACTIONS(47), [anon_sym_POUND_] = ACTIONS(49), @@ -3842,36 +3842,36 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_defmacro] = ACTIONS(59), }, [3] = { - [sym__gap] = STATE(301), - [sym_dis_expr] = STATE(301), - [sym__form] = STATE(459), - [sym_str_lit] = STATE(459), - [sym_sym_lit] = STATE(459), - [sym__metadata_lit] = STATE(761), - [sym_meta_lit] = STATE(587), - [sym_old_meta_lit] = STATE(584), - [sym_list_lit] = STATE(459), - [sym__bare_list_lit] = STATE(379), - [sym_vec_lit] = STATE(459), - [sym__bare_vec_lit] = STATE(384), - [sym_set_lit] = STATE(459), - [sym__bare_set_lit] = STATE(390), - [sym_read_cond_lit] = STATE(459), - [sym_splicing_read_cond_lit] = STATE(459), - [sym_var_quoting_lit] = STATE(459), - [sym_sym_val_lit] = STATE(459), - [sym_evaling_lit] = STATE(459), - [sym_derefing_lit] = STATE(459), - [sym_quoting_lit] = STATE(459), - [sym_syn_quoting_lit] = STATE(459), - [sym_unquote_splicing_lit] = STATE(459), - [sym_unquoting_lit] = STATE(459), - [sym_defun] = STATE(379), - [sym_loop_macro] = STATE(379), - [sym_defun_keyword] = STATE(112), - [sym_defun_header] = STATE(44), - [aux_sym_sym_lit_repeat1] = STATE(505), - [aux_sym__bare_list_lit_repeat1] = STATE(45), + [sym__gap] = STATE(303), + [sym_dis_expr] = STATE(303), + [sym__form] = STATE(461), + [sym_str_lit] = STATE(461), + [sym_sym_lit] = STATE(461), + [sym__metadata_lit] = STATE(829), + [sym_meta_lit] = STATE(582), + [sym_old_meta_lit] = STATE(581), + [sym_list_lit] = STATE(461), + [sym__bare_list_lit] = STATE(376), + [sym_vec_lit] = STATE(461), + [sym__bare_vec_lit] = STATE(375), + [sym_set_lit] = STATE(461), + [sym__bare_set_lit] = STATE(372), + [sym_read_cond_lit] = STATE(461), + [sym_splicing_read_cond_lit] = STATE(461), + [sym_var_quoting_lit] = STATE(461), + [sym_sym_val_lit] = STATE(461), + [sym_evaling_lit] = STATE(461), + [sym_derefing_lit] = STATE(461), + [sym_quoting_lit] = STATE(461), + [sym_syn_quoting_lit] = STATE(461), + [sym_unquote_splicing_lit] = STATE(461), + [sym_unquoting_lit] = STATE(461), + [sym_defun] = STATE(376), + [sym_loop_macro] = STATE(376), + [sym_defun_keyword] = STATE(178), + [sym_defun_header] = STATE(49), + [aux_sym_sym_lit_repeat1] = STATE(541), + [aux_sym__bare_list_lit_repeat1] = STATE(47), [sym__ws] = ACTIONS(61), [sym_comment] = ACTIONS(61), [anon_sym_POUND_] = ACTIONS(49), @@ -3904,36 +3904,36 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_defmacro] = ACTIONS(59), }, [4] = { - [sym__gap] = STATE(299), - [sym_dis_expr] = STATE(299), - [sym__form] = STATE(459), - [sym_str_lit] = STATE(459), - [sym_sym_lit] = STATE(459), - [sym__metadata_lit] = STATE(761), - [sym_meta_lit] = STATE(587), - [sym_old_meta_lit] = STATE(584), - [sym_list_lit] = STATE(459), - [sym__bare_list_lit] = STATE(379), - [sym_vec_lit] = STATE(459), - [sym__bare_vec_lit] = STATE(384), - [sym_set_lit] = STATE(459), - [sym__bare_set_lit] = STATE(390), - [sym_read_cond_lit] = STATE(459), - [sym_splicing_read_cond_lit] = STATE(459), - [sym_var_quoting_lit] = STATE(459), - [sym_sym_val_lit] = STATE(459), - [sym_evaling_lit] = STATE(459), - [sym_derefing_lit] = STATE(459), - [sym_quoting_lit] = STATE(459), - [sym_syn_quoting_lit] = STATE(459), - [sym_unquote_splicing_lit] = STATE(459), - [sym_unquoting_lit] = STATE(459), - [sym_defun] = STATE(379), - [sym_loop_macro] = STATE(379), - [sym_defun_keyword] = STATE(112), - [sym_defun_header] = STATE(14), - [aux_sym_sym_lit_repeat1] = STATE(505), - [aux_sym__bare_list_lit_repeat1] = STATE(18), + [sym__gap] = STATE(304), + [sym_dis_expr] = STATE(304), + [sym__form] = STATE(461), + [sym_str_lit] = STATE(461), + [sym_sym_lit] = STATE(461), + [sym__metadata_lit] = STATE(829), + [sym_meta_lit] = STATE(582), + [sym_old_meta_lit] = STATE(581), + [sym_list_lit] = STATE(461), + [sym__bare_list_lit] = STATE(376), + [sym_vec_lit] = STATE(461), + [sym__bare_vec_lit] = STATE(375), + [sym_set_lit] = STATE(461), + [sym__bare_set_lit] = STATE(372), + [sym_read_cond_lit] = STATE(461), + [sym_splicing_read_cond_lit] = STATE(461), + [sym_var_quoting_lit] = STATE(461), + [sym_sym_val_lit] = STATE(461), + [sym_evaling_lit] = STATE(461), + [sym_derefing_lit] = STATE(461), + [sym_quoting_lit] = STATE(461), + [sym_syn_quoting_lit] = STATE(461), + [sym_unquote_splicing_lit] = STATE(461), + [sym_unquoting_lit] = STATE(461), + [sym_defun] = STATE(376), + [sym_loop_macro] = STATE(376), + [sym_defun_keyword] = STATE(178), + [sym_defun_header] = STATE(55), + [aux_sym_sym_lit_repeat1] = STATE(541), + [aux_sym__bare_list_lit_repeat1] = STATE(50), [sym__ws] = ACTIONS(67), [sym_comment] = ACTIONS(67), [anon_sym_POUND_] = ACTIONS(49), @@ -3966,36 +3966,36 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_defmacro] = ACTIONS(59), }, [5] = { - [sym__gap] = STATE(302), - [sym_dis_expr] = STATE(302), - [sym__form] = STATE(459), - [sym_str_lit] = STATE(459), - [sym_sym_lit] = STATE(459), - [sym__metadata_lit] = STATE(761), - [sym_meta_lit] = STATE(587), - [sym_old_meta_lit] = STATE(584), - [sym_list_lit] = STATE(459), - [sym__bare_list_lit] = STATE(379), - [sym_vec_lit] = STATE(459), - [sym__bare_vec_lit] = STATE(384), - [sym_set_lit] = STATE(459), - [sym__bare_set_lit] = STATE(390), - [sym_read_cond_lit] = STATE(459), - [sym_splicing_read_cond_lit] = STATE(459), - [sym_var_quoting_lit] = STATE(459), - [sym_sym_val_lit] = STATE(459), - [sym_evaling_lit] = STATE(459), - [sym_derefing_lit] = STATE(459), - [sym_quoting_lit] = STATE(459), - [sym_syn_quoting_lit] = STATE(459), - [sym_unquote_splicing_lit] = STATE(459), - [sym_unquoting_lit] = STATE(459), - [sym_defun] = STATE(379), - [sym_loop_macro] = STATE(379), - [sym_defun_keyword] = STATE(112), - [sym_defun_header] = STATE(30), - [aux_sym_sym_lit_repeat1] = STATE(505), - [aux_sym__bare_list_lit_repeat1] = STATE(28), + [sym__gap] = STATE(301), + [sym_dis_expr] = STATE(301), + [sym__form] = STATE(461), + [sym_str_lit] = STATE(461), + [sym_sym_lit] = STATE(461), + [sym__metadata_lit] = STATE(829), + [sym_meta_lit] = STATE(582), + [sym_old_meta_lit] = STATE(581), + [sym_list_lit] = STATE(461), + [sym__bare_list_lit] = STATE(376), + [sym_vec_lit] = STATE(461), + [sym__bare_vec_lit] = STATE(375), + [sym_set_lit] = STATE(461), + [sym__bare_set_lit] = STATE(372), + [sym_read_cond_lit] = STATE(461), + [sym_splicing_read_cond_lit] = STATE(461), + [sym_var_quoting_lit] = STATE(461), + [sym_sym_val_lit] = STATE(461), + [sym_evaling_lit] = STATE(461), + [sym_derefing_lit] = STATE(461), + [sym_quoting_lit] = STATE(461), + [sym_syn_quoting_lit] = STATE(461), + [sym_unquote_splicing_lit] = STATE(461), + [sym_unquoting_lit] = STATE(461), + [sym_defun] = STATE(376), + [sym_loop_macro] = STATE(376), + [sym_defun_keyword] = STATE(178), + [sym_defun_header] = STATE(13), + [aux_sym_sym_lit_repeat1] = STATE(541), + [aux_sym__bare_list_lit_repeat1] = STATE(15), [sym__ws] = ACTIONS(73), [sym_comment] = ACTIONS(73), [anon_sym_POUND_] = ACTIONS(49), @@ -4028,36 +4028,36 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_defmacro] = ACTIONS(59), }, [6] = { - [sym__gap] = STATE(298), - [sym_dis_expr] = STATE(298), - [sym__form] = STATE(459), - [sym_str_lit] = STATE(459), - [sym_sym_lit] = STATE(459), - [sym__metadata_lit] = STATE(761), - [sym_meta_lit] = STATE(587), - [sym_old_meta_lit] = STATE(584), - [sym_list_lit] = STATE(459), - [sym__bare_list_lit] = STATE(379), - [sym_vec_lit] = STATE(459), - [sym__bare_vec_lit] = STATE(384), - [sym_set_lit] = STATE(459), - [sym__bare_set_lit] = STATE(390), - [sym_read_cond_lit] = STATE(459), - [sym_splicing_read_cond_lit] = STATE(459), - [sym_var_quoting_lit] = STATE(459), - [sym_sym_val_lit] = STATE(459), - [sym_evaling_lit] = STATE(459), - [sym_derefing_lit] = STATE(459), - [sym_quoting_lit] = STATE(459), - [sym_syn_quoting_lit] = STATE(459), - [sym_unquote_splicing_lit] = STATE(459), - [sym_unquoting_lit] = STATE(459), - [sym_defun] = STATE(379), - [sym_loop_macro] = STATE(379), - [sym_defun_keyword] = STATE(112), - [sym_defun_header] = STATE(49), - [aux_sym_sym_lit_repeat1] = STATE(505), - [aux_sym__bare_list_lit_repeat1] = STATE(47), + [sym__gap] = STATE(306), + [sym_dis_expr] = STATE(306), + [sym__form] = STATE(461), + [sym_str_lit] = STATE(461), + [sym_sym_lit] = STATE(461), + [sym__metadata_lit] = STATE(829), + [sym_meta_lit] = STATE(582), + [sym_old_meta_lit] = STATE(581), + [sym_list_lit] = STATE(461), + [sym__bare_list_lit] = STATE(376), + [sym_vec_lit] = STATE(461), + [sym__bare_vec_lit] = STATE(375), + [sym_set_lit] = STATE(461), + [sym__bare_set_lit] = STATE(372), + [sym_read_cond_lit] = STATE(461), + [sym_splicing_read_cond_lit] = STATE(461), + [sym_var_quoting_lit] = STATE(461), + [sym_sym_val_lit] = STATE(461), + [sym_evaling_lit] = STATE(461), + [sym_derefing_lit] = STATE(461), + [sym_quoting_lit] = STATE(461), + [sym_syn_quoting_lit] = STATE(461), + [sym_unquote_splicing_lit] = STATE(461), + [sym_unquoting_lit] = STATE(461), + [sym_defun] = STATE(376), + [sym_loop_macro] = STATE(376), + [sym_defun_keyword] = STATE(178), + [sym_defun_header] = STATE(44), + [aux_sym_sym_lit_repeat1] = STATE(541), + [aux_sym__bare_list_lit_repeat1] = STATE(45), [sym__ws] = ACTIONS(79), [sym_comment] = ACTIONS(79), [anon_sym_POUND_] = ACTIONS(49), @@ -4090,36 +4090,36 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_defmacro] = ACTIONS(59), }, [7] = { - [sym__gap] = STATE(304), - [sym_dis_expr] = STATE(304), - [sym__form] = STATE(459), - [sym_str_lit] = STATE(459), - [sym_sym_lit] = STATE(459), - [sym__metadata_lit] = STATE(761), - [sym_meta_lit] = STATE(587), - [sym_old_meta_lit] = STATE(584), - [sym_list_lit] = STATE(459), - [sym__bare_list_lit] = STATE(379), - [sym_vec_lit] = STATE(459), - [sym__bare_vec_lit] = STATE(384), - [sym_set_lit] = STATE(459), - [sym__bare_set_lit] = STATE(390), - [sym_read_cond_lit] = STATE(459), - [sym_splicing_read_cond_lit] = STATE(459), - [sym_var_quoting_lit] = STATE(459), - [sym_sym_val_lit] = STATE(459), - [sym_evaling_lit] = STATE(459), - [sym_derefing_lit] = STATE(459), - [sym_quoting_lit] = STATE(459), - [sym_syn_quoting_lit] = STATE(459), - [sym_unquote_splicing_lit] = STATE(459), - [sym_unquoting_lit] = STATE(459), - [sym_defun] = STATE(379), - [sym_loop_macro] = STATE(379), - [sym_defun_keyword] = STATE(112), - [sym_defun_header] = STATE(53), - [aux_sym_sym_lit_repeat1] = STATE(505), - [aux_sym__bare_list_lit_repeat1] = STATE(61), + [sym__gap] = STATE(305), + [sym_dis_expr] = STATE(305), + [sym__form] = STATE(461), + [sym_str_lit] = STATE(461), + [sym_sym_lit] = STATE(461), + [sym__metadata_lit] = STATE(829), + [sym_meta_lit] = STATE(582), + [sym_old_meta_lit] = STATE(581), + [sym_list_lit] = STATE(461), + [sym__bare_list_lit] = STATE(376), + [sym_vec_lit] = STATE(461), + [sym__bare_vec_lit] = STATE(375), + [sym_set_lit] = STATE(461), + [sym__bare_set_lit] = STATE(372), + [sym_read_cond_lit] = STATE(461), + [sym_splicing_read_cond_lit] = STATE(461), + [sym_var_quoting_lit] = STATE(461), + [sym_sym_val_lit] = STATE(461), + [sym_evaling_lit] = STATE(461), + [sym_derefing_lit] = STATE(461), + [sym_quoting_lit] = STATE(461), + [sym_syn_quoting_lit] = STATE(461), + [sym_unquote_splicing_lit] = STATE(461), + [sym_unquoting_lit] = STATE(461), + [sym_defun] = STATE(376), + [sym_loop_macro] = STATE(376), + [sym_defun_keyword] = STATE(178), + [sym_defun_header] = STATE(30), + [aux_sym_sym_lit_repeat1] = STATE(541), + [aux_sym__bare_list_lit_repeat1] = STATE(18), [sym__ws] = ACTIONS(85), [sym_comment] = ACTIONS(85), [anon_sym_POUND_] = ACTIONS(49), @@ -4152,36 +4152,36 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_defmacro] = ACTIONS(59), }, [8] = { - [sym__gap] = STATE(300), - [sym_dis_expr] = STATE(300), - [sym__form] = STATE(459), - [sym_str_lit] = STATE(459), - [sym_sym_lit] = STATE(459), - [sym__metadata_lit] = STATE(761), - [sym_meta_lit] = STATE(587), - [sym_old_meta_lit] = STATE(584), - [sym_list_lit] = STATE(459), - [sym__bare_list_lit] = STATE(379), - [sym_vec_lit] = STATE(459), - [sym__bare_vec_lit] = STATE(384), - [sym_set_lit] = STATE(459), - [sym__bare_set_lit] = STATE(390), - [sym_read_cond_lit] = STATE(459), - [sym_splicing_read_cond_lit] = STATE(459), - [sym_var_quoting_lit] = STATE(459), - [sym_sym_val_lit] = STATE(459), - [sym_evaling_lit] = STATE(459), - [sym_derefing_lit] = STATE(459), - [sym_quoting_lit] = STATE(459), - [sym_syn_quoting_lit] = STATE(459), - [sym_unquote_splicing_lit] = STATE(459), - [sym_unquoting_lit] = STATE(459), - [sym_defun] = STATE(379), - [sym_loop_macro] = STATE(379), - [sym_defun_keyword] = STATE(112), - [sym_defun_header] = STATE(35), - [aux_sym_sym_lit_repeat1] = STATE(505), - [aux_sym__bare_list_lit_repeat1] = STATE(11), + [sym__gap] = STATE(302), + [sym_dis_expr] = STATE(302), + [sym__form] = STATE(461), + [sym_str_lit] = STATE(461), + [sym_sym_lit] = STATE(461), + [sym__metadata_lit] = STATE(829), + [sym_meta_lit] = STATE(582), + [sym_old_meta_lit] = STATE(581), + [sym_list_lit] = STATE(461), + [sym__bare_list_lit] = STATE(376), + [sym_vec_lit] = STATE(461), + [sym__bare_vec_lit] = STATE(375), + [sym_set_lit] = STATE(461), + [sym__bare_set_lit] = STATE(372), + [sym_read_cond_lit] = STATE(461), + [sym_splicing_read_cond_lit] = STATE(461), + [sym_var_quoting_lit] = STATE(461), + [sym_sym_val_lit] = STATE(461), + [sym_evaling_lit] = STATE(461), + [sym_derefing_lit] = STATE(461), + [sym_quoting_lit] = STATE(461), + [sym_syn_quoting_lit] = STATE(461), + [sym_unquote_splicing_lit] = STATE(461), + [sym_unquoting_lit] = STATE(461), + [sym_defun] = STATE(376), + [sym_loop_macro] = STATE(376), + [sym_defun_keyword] = STATE(178), + [sym_defun_header] = STATE(34), + [aux_sym_sym_lit_repeat1] = STATE(541), + [aux_sym__bare_list_lit_repeat1] = STATE(35), [sym__ws] = ACTIONS(91), [sym_comment] = ACTIONS(91), [anon_sym_POUND_] = ACTIONS(49), @@ -4255,17 +4255,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA_AT, ACTIONS(159), 1, anon_sym_COMMA, - STATE(384), 1, - sym__bare_vec_lit, - STATE(390), 1, + STATE(372), 1, sym__bare_set_lit, - STATE(505), 1, + STATE(375), 1, + sym__bare_vec_lit, + STATE(541), 1, aux_sym_sym_lit_repeat1, - STATE(584), 1, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(761), 1, + STATE(829), 1, sym__metadata_lit, ACTIONS(97), 2, sym__ws, @@ -4284,11 +4284,11 @@ static uint16_t ts_small_parse_table[] = { sym__gap, sym_dis_expr, aux_sym__bare_list_lit_repeat1, - STATE(379), 3, + STATE(376), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(459), 16, + STATE(461), 16, sym__form, sym_str_lit, sym_sym_lit, @@ -4345,18 +4345,18 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(45), 1, anon_sym_COMMA, ACTIONS(164), 1, - anon_sym_RPAREN, - STATE(384), 1, - sym__bare_vec_lit, - STATE(390), 1, + anon_sym_RBRACE, + STATE(372), 1, sym__bare_set_lit, - STATE(505), 1, + STATE(375), 1, + sym__bare_vec_lit, + STATE(541), 1, aux_sym_sym_lit_repeat1, - STATE(584), 1, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(761), 1, + STATE(829), 1, sym__metadata_lit, ACTIONS(53), 2, sym_nil_lit, @@ -4368,15 +4368,15 @@ static uint16_t ts_small_parse_table[] = { sym_num_lit, sym_kwd_lit, sym_char_lit, - STATE(9), 3, + STATE(26), 3, sym__gap, sym_dis_expr, aux_sym__bare_list_lit_repeat1, - STATE(379), 3, + STATE(376), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(459), 16, + STATE(461), 16, sym__form, sym_str_lit, sym_sym_lit, @@ -4432,39 +4432,39 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA_AT, ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(166), 1, - anon_sym_RPAREN, - STATE(384), 1, - sym__bare_vec_lit, - STATE(390), 1, + ACTIONS(168), 1, + anon_sym_RBRACE, + STATE(372), 1, sym__bare_set_lit, - STATE(505), 1, + STATE(375), 1, + sym__bare_vec_lit, + STATE(541), 1, aux_sym_sym_lit_repeat1, - STATE(584), 1, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(761), 1, + STATE(829), 1, sym__metadata_lit, ACTIONS(53), 2, sym_nil_lit, sym_fancy_literal, - ACTIONS(162), 2, + ACTIONS(166), 2, sym__ws, sym_comment, ACTIONS(51), 3, sym_num_lit, sym_kwd_lit, sym_char_lit, - STATE(9), 3, + STATE(40), 3, sym__gap, sym_dis_expr, aux_sym__bare_list_lit_repeat1, - STATE(379), 3, + STATE(376), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(459), 16, + STATE(461), 16, sym__form, sym_str_lit, sym_sym_lit, @@ -4520,24 +4520,24 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA_AT, ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(168), 1, + ACTIONS(172), 1, anon_sym_RBRACE, - STATE(384), 1, - sym__bare_vec_lit, - STATE(390), 1, + STATE(372), 1, sym__bare_set_lit, - STATE(505), 1, + STATE(375), 1, + sym__bare_vec_lit, + STATE(541), 1, aux_sym_sym_lit_repeat1, - STATE(584), 1, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(761), 1, + STATE(829), 1, sym__metadata_lit, ACTIONS(53), 2, sym_nil_lit, sym_fancy_literal, - ACTIONS(162), 2, + ACTIONS(170), 2, sym__ws, sym_comment, ACTIONS(51), 3, @@ -4548,11 +4548,11 @@ static uint16_t ts_small_parse_table[] = { sym__gap, sym_dis_expr, aux_sym__bare_list_lit_repeat1, - STATE(379), 3, + STATE(376), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(459), 16, + STATE(461), 16, sym__form, sym_str_lit, sym_sym_lit, @@ -4608,39 +4608,39 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA_AT, ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(172), 1, + ACTIONS(176), 1, anon_sym_RPAREN, - STATE(384), 1, - sym__bare_vec_lit, - STATE(390), 1, + STATE(372), 1, sym__bare_set_lit, - STATE(505), 1, + STATE(375), 1, + sym__bare_vec_lit, + STATE(541), 1, aux_sym_sym_lit_repeat1, - STATE(584), 1, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(761), 1, + STATE(829), 1, sym__metadata_lit, ACTIONS(53), 2, sym_nil_lit, sym_fancy_literal, - ACTIONS(170), 2, + ACTIONS(174), 2, sym__ws, sym_comment, ACTIONS(51), 3, sym_num_lit, sym_kwd_lit, sym_char_lit, - STATE(54), 3, + STATE(51), 3, sym__gap, sym_dis_expr, aux_sym__bare_list_lit_repeat1, - STATE(379), 3, + STATE(376), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(459), 16, + STATE(461), 16, sym__form, sym_str_lit, sym_sym_lit, @@ -4696,39 +4696,39 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA_AT, ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(176), 1, + ACTIONS(180), 1, anon_sym_RPAREN, - STATE(384), 1, - sym__bare_vec_lit, - STATE(390), 1, + STATE(372), 1, sym__bare_set_lit, - STATE(505), 1, + STATE(375), 1, + sym__bare_vec_lit, + STATE(541), 1, aux_sym_sym_lit_repeat1, - STATE(584), 1, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(761), 1, + STATE(829), 1, sym__metadata_lit, ACTIONS(53), 2, sym_nil_lit, sym_fancy_literal, - ACTIONS(174), 2, + ACTIONS(178), 2, sym__ws, sym_comment, ACTIONS(51), 3, sym_num_lit, sym_kwd_lit, sym_char_lit, - STATE(26), 3, + STATE(23), 3, sym__gap, sym_dis_expr, aux_sym__bare_list_lit_repeat1, - STATE(379), 3, + STATE(376), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(459), 16, + STATE(461), 16, sym__form, sym_str_lit, sym_sym_lit, @@ -4784,24 +4784,24 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA_AT, ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(178), 1, + ACTIONS(182), 1, anon_sym_RPAREN, - STATE(384), 1, - sym__bare_vec_lit, - STATE(390), 1, + STATE(372), 1, sym__bare_set_lit, - STATE(505), 1, + STATE(375), 1, + sym__bare_vec_lit, + STATE(541), 1, aux_sym_sym_lit_repeat1, - STATE(584), 1, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(761), 1, + STATE(829), 1, sym__metadata_lit, ACTIONS(53), 2, sym_nil_lit, sym_fancy_literal, - ACTIONS(162), 2, + ACTIONS(170), 2, sym__ws, sym_comment, ACTIONS(51), 3, @@ -4812,11 +4812,11 @@ static uint16_t ts_small_parse_table[] = { sym__gap, sym_dis_expr, aux_sym__bare_list_lit_repeat1, - STATE(379), 3, + STATE(376), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(459), 16, + STATE(461), 16, sym__form, sym_str_lit, sym_sym_lit, @@ -4872,39 +4872,39 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA_AT, ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(182), 1, - anon_sym_RBRACE, - STATE(384), 1, - sym__bare_vec_lit, - STATE(390), 1, + ACTIONS(184), 1, + anon_sym_RPAREN, + STATE(372), 1, sym__bare_set_lit, - STATE(505), 1, + STATE(375), 1, + sym__bare_vec_lit, + STATE(541), 1, aux_sym_sym_lit_repeat1, - STATE(584), 1, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(761), 1, + STATE(829), 1, sym__metadata_lit, ACTIONS(53), 2, sym_nil_lit, sym_fancy_literal, - ACTIONS(180), 2, + ACTIONS(170), 2, sym__ws, sym_comment, ACTIONS(51), 3, sym_num_lit, sym_kwd_lit, sym_char_lit, - STATE(52), 3, + STATE(9), 3, sym__gap, sym_dis_expr, aux_sym__bare_list_lit_repeat1, - STATE(379), 3, + STATE(376), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(459), 16, + STATE(461), 16, sym__form, sym_str_lit, sym_sym_lit, @@ -4962,37 +4962,37 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, ACTIONS(186), 1, anon_sym_RPAREN, - STATE(384), 1, - sym__bare_vec_lit, - STATE(390), 1, + STATE(372), 1, sym__bare_set_lit, - STATE(505), 1, + STATE(375), 1, + sym__bare_vec_lit, + STATE(541), 1, aux_sym_sym_lit_repeat1, - STATE(584), 1, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(761), 1, + STATE(829), 1, sym__metadata_lit, ACTIONS(53), 2, sym_nil_lit, sym_fancy_literal, - ACTIONS(184), 2, + ACTIONS(170), 2, sym__ws, sym_comment, ACTIONS(51), 3, sym_num_lit, sym_kwd_lit, sym_char_lit, - STATE(20), 3, + STATE(9), 3, sym__gap, sym_dis_expr, aux_sym__bare_list_lit_repeat1, - STATE(379), 3, + STATE(376), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(459), 16, + STATE(461), 16, sym__form, sym_str_lit, sym_sym_lit, @@ -5050,22 +5050,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, ACTIONS(188), 1, anon_sym_RPAREN, - STATE(384), 1, - sym__bare_vec_lit, - STATE(390), 1, + STATE(372), 1, sym__bare_set_lit, - STATE(505), 1, + STATE(375), 1, + sym__bare_vec_lit, + STATE(541), 1, aux_sym_sym_lit_repeat1, - STATE(584), 1, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(761), 1, + STATE(829), 1, sym__metadata_lit, ACTIONS(53), 2, sym_nil_lit, sym_fancy_literal, - ACTIONS(162), 2, + ACTIONS(170), 2, sym__ws, sym_comment, ACTIONS(51), 3, @@ -5076,11 +5076,11 @@ static uint16_t ts_small_parse_table[] = { sym__gap, sym_dis_expr, aux_sym__bare_list_lit_repeat1, - STATE(379), 3, + STATE(376), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(459), 16, + STATE(461), 16, sym__form, sym_str_lit, sym_sym_lit, @@ -5136,39 +5136,39 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA_AT, ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(192), 1, - anon_sym_RBRACE, - STATE(384), 1, - sym__bare_vec_lit, - STATE(390), 1, + ACTIONS(190), 1, + anon_sym_RPAREN, + STATE(372), 1, sym__bare_set_lit, - STATE(505), 1, + STATE(375), 1, + sym__bare_vec_lit, + STATE(541), 1, aux_sym_sym_lit_repeat1, - STATE(584), 1, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(761), 1, + STATE(829), 1, sym__metadata_lit, ACTIONS(53), 2, sym_nil_lit, sym_fancy_literal, - ACTIONS(190), 2, + ACTIONS(170), 2, sym__ws, sym_comment, ACTIONS(51), 3, sym_num_lit, sym_kwd_lit, sym_char_lit, - STATE(27), 3, + STATE(9), 3, sym__gap, sym_dis_expr, aux_sym__bare_list_lit_repeat1, - STATE(379), 3, + STATE(376), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(459), 16, + STATE(461), 16, sym__form, sym_str_lit, sym_sym_lit, @@ -5225,38 +5225,38 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(45), 1, anon_sym_COMMA, ACTIONS(194), 1, - anon_sym_RPAREN, - STATE(384), 1, - sym__bare_vec_lit, - STATE(390), 1, + anon_sym_RBRACE, + STATE(372), 1, sym__bare_set_lit, - STATE(505), 1, + STATE(375), 1, + sym__bare_vec_lit, + STATE(541), 1, aux_sym_sym_lit_repeat1, - STATE(584), 1, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(761), 1, + STATE(829), 1, sym__metadata_lit, ACTIONS(53), 2, sym_nil_lit, sym_fancy_literal, - ACTIONS(162), 2, + ACTIONS(192), 2, sym__ws, sym_comment, ACTIONS(51), 3, sym_num_lit, sym_kwd_lit, sym_char_lit, - STATE(9), 3, + STATE(60), 3, sym__gap, sym_dis_expr, aux_sym__bare_list_lit_repeat1, - STATE(379), 3, + STATE(376), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(459), 16, + STATE(461), 16, sym__form, sym_str_lit, sym_sym_lit, @@ -5314,17 +5314,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, ACTIONS(198), 1, anon_sym_RPAREN, - STATE(384), 1, - sym__bare_vec_lit, - STATE(390), 1, + STATE(372), 1, sym__bare_set_lit, - STATE(505), 1, + STATE(375), 1, + sym__bare_vec_lit, + STATE(541), 1, aux_sym_sym_lit_repeat1, - STATE(584), 1, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(761), 1, + STATE(829), 1, sym__metadata_lit, ACTIONS(53), 2, sym_nil_lit, @@ -5336,15 +5336,15 @@ static uint16_t ts_small_parse_table[] = { sym_num_lit, sym_kwd_lit, sym_char_lit, - STATE(10), 3, + STATE(28), 3, sym__gap, sym_dis_expr, aux_sym__bare_list_lit_repeat1, - STATE(379), 3, + STATE(376), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(459), 16, + STATE(461), 16, sym__form, sym_str_lit, sym_sym_lit, @@ -5402,22 +5402,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, ACTIONS(200), 1, anon_sym_RPAREN, - STATE(384), 1, - sym__bare_vec_lit, - STATE(390), 1, + STATE(372), 1, sym__bare_set_lit, - STATE(505), 1, + STATE(375), 1, + sym__bare_vec_lit, + STATE(541), 1, aux_sym_sym_lit_repeat1, - STATE(584), 1, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(761), 1, + STATE(829), 1, sym__metadata_lit, ACTIONS(53), 2, sym_nil_lit, sym_fancy_literal, - ACTIONS(162), 2, + ACTIONS(170), 2, sym__ws, sym_comment, ACTIONS(51), 3, @@ -5428,11 +5428,11 @@ static uint16_t ts_small_parse_table[] = { sym__gap, sym_dis_expr, aux_sym__bare_list_lit_repeat1, - STATE(379), 3, + STATE(376), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(459), 16, + STATE(461), 16, sym__form, sym_str_lit, sym_sym_lit, @@ -5488,39 +5488,39 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA_AT, ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(204), 1, - anon_sym_RBRACE, - STATE(384), 1, - sym__bare_vec_lit, - STATE(390), 1, + ACTIONS(202), 1, + anon_sym_RPAREN, + STATE(372), 1, sym__bare_set_lit, - STATE(505), 1, + STATE(375), 1, + sym__bare_vec_lit, + STATE(541), 1, aux_sym_sym_lit_repeat1, - STATE(584), 1, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(761), 1, + STATE(829), 1, sym__metadata_lit, ACTIONS(53), 2, sym_nil_lit, sym_fancy_literal, - ACTIONS(202), 2, + ACTIONS(170), 2, sym__ws, sym_comment, ACTIONS(51), 3, sym_num_lit, sym_kwd_lit, sym_char_lit, - STATE(12), 3, + STATE(9), 3, sym__gap, sym_dis_expr, aux_sym__bare_list_lit_repeat1, - STATE(379), 3, + STATE(376), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(459), 16, + STATE(461), 16, sym__form, sym_str_lit, sym_sym_lit, @@ -5576,24 +5576,24 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA_AT, ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(206), 1, + ACTIONS(204), 1, anon_sym_RBRACE, - STATE(384), 1, - sym__bare_vec_lit, - STATE(390), 1, + STATE(372), 1, sym__bare_set_lit, - STATE(505), 1, + STATE(375), 1, + sym__bare_vec_lit, + STATE(541), 1, aux_sym_sym_lit_repeat1, - STATE(584), 1, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(761), 1, + STATE(829), 1, sym__metadata_lit, ACTIONS(53), 2, sym_nil_lit, sym_fancy_literal, - ACTIONS(162), 2, + ACTIONS(170), 2, sym__ws, sym_comment, ACTIONS(51), 3, @@ -5604,11 +5604,11 @@ static uint16_t ts_small_parse_table[] = { sym__gap, sym_dis_expr, aux_sym__bare_list_lit_repeat1, - STATE(379), 3, + STATE(376), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(459), 16, + STATE(461), 16, sym__form, sym_str_lit, sym_sym_lit, @@ -5664,24 +5664,112 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA_AT, ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(208), 1, + ACTIONS(206), 1, anon_sym_RPAREN, - STATE(384), 1, + STATE(372), 1, + sym__bare_set_lit, + STATE(375), 1, sym__bare_vec_lit, - STATE(390), 1, + STATE(541), 1, + aux_sym_sym_lit_repeat1, + STATE(581), 1, + sym_old_meta_lit, + STATE(582), 1, + sym_meta_lit, + STATE(829), 1, + sym__metadata_lit, + ACTIONS(53), 2, + sym_nil_lit, + sym_fancy_literal, + ACTIONS(170), 2, + sym__ws, + sym_comment, + ACTIONS(51), 3, + sym_num_lit, + sym_kwd_lit, + sym_char_lit, + STATE(9), 3, + sym__gap, + sym_dis_expr, + aux_sym__bare_list_lit_repeat1, + STATE(376), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(461), 16, + sym__form, + sym_str_lit, + sym_sym_lit, + sym_list_lit, + sym_vec_lit, + sym_set_lit, + sym_read_cond_lit, + sym_splicing_read_cond_lit, + sym_var_quoting_lit, + sym_sym_val_lit, + sym_evaling_lit, + sym_derefing_lit, + sym_quoting_lit, + sym_syn_quoting_lit, + sym_unquote_splicing_lit, + sym_unquoting_lit, + [2041] = 32, + ACTIONS(3), 1, + sym_block_comment, + ACTIONS(9), 1, + anon_sym_POUND_, + ACTIONS(11), 1, + aux_sym_str_lit_token1, + ACTIONS(15), 1, + aux_sym_sym_lit_token1, + ACTIONS(17), 1, + anon_sym_CARET, + ACTIONS(19), 1, + anon_sym_POUND_CARET, + ACTIONS(21), 1, + anon_sym_LPAREN, + ACTIONS(23), 1, + anon_sym_POUND0A, + ACTIONS(25), 1, + anon_sym_POUND, + ACTIONS(27), 1, + anon_sym_POUND_QMARK, + ACTIONS(29), 1, + anon_sym_POUND_QMARK_AT, + ACTIONS(31), 1, + anon_sym_POUND_SQUOTE, + ACTIONS(33), 1, + anon_sym_POUND_POUND, + ACTIONS(35), 1, + anon_sym_POUND_EQ, + ACTIONS(37), 1, + anon_sym_AT, + ACTIONS(39), 1, + anon_sym_SQUOTE, + ACTIONS(41), 1, + anon_sym_BQUOTE, + ACTIONS(43), 1, + anon_sym_COMMA_AT, + ACTIONS(45), 1, + anon_sym_COMMA, + ACTIONS(208), 1, + anon_sym_RBRACE, + STATE(372), 1, sym__bare_set_lit, - STATE(505), 1, + STATE(375), 1, + sym__bare_vec_lit, + STATE(541), 1, aux_sym_sym_lit_repeat1, - STATE(584), 1, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(761), 1, + STATE(829), 1, sym__metadata_lit, ACTIONS(53), 2, sym_nil_lit, sym_fancy_literal, - ACTIONS(162), 2, + ACTIONS(170), 2, sym__ws, sym_comment, ACTIONS(51), 3, @@ -5692,11 +5780,11 @@ static uint16_t ts_small_parse_table[] = { sym__gap, sym_dis_expr, aux_sym__bare_list_lit_repeat1, - STATE(379), 3, + STATE(376), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(459), 16, + STATE(461), 16, sym__form, sym_str_lit, sym_sym_lit, @@ -5713,7 +5801,7 @@ static uint16_t ts_small_parse_table[] = { sym_syn_quoting_lit, sym_unquote_splicing_lit, sym_unquoting_lit, - [2041] = 32, + [2161] = 32, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, @@ -5752,39 +5840,39 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA_AT, ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(210), 1, + ACTIONS(212), 1, anon_sym_RPAREN, - STATE(384), 1, - sym__bare_vec_lit, - STATE(390), 1, + STATE(372), 1, sym__bare_set_lit, - STATE(505), 1, + STATE(375), 1, + sym__bare_vec_lit, + STATE(541), 1, aux_sym_sym_lit_repeat1, - STATE(584), 1, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(761), 1, + STATE(829), 1, sym__metadata_lit, ACTIONS(53), 2, sym_nil_lit, sym_fancy_literal, - ACTIONS(162), 2, + ACTIONS(210), 2, sym__ws, sym_comment, ACTIONS(51), 3, sym_num_lit, sym_kwd_lit, sym_char_lit, - STATE(9), 3, + STATE(43), 3, sym__gap, sym_dis_expr, aux_sym__bare_list_lit_repeat1, - STATE(379), 3, + STATE(376), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(459), 16, + STATE(461), 16, sym__form, sym_str_lit, sym_sym_lit, @@ -5801,7 +5889,7 @@ static uint16_t ts_small_parse_table[] = { sym_syn_quoting_lit, sym_unquote_splicing_lit, sym_unquoting_lit, - [2161] = 32, + [2281] = 32, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, @@ -5840,24 +5928,24 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA_AT, ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(212), 1, - anon_sym_RBRACE, - STATE(384), 1, - sym__bare_vec_lit, - STATE(390), 1, + ACTIONS(214), 1, + anon_sym_RPAREN, + STATE(372), 1, sym__bare_set_lit, - STATE(505), 1, + STATE(375), 1, + sym__bare_vec_lit, + STATE(541), 1, aux_sym_sym_lit_repeat1, - STATE(584), 1, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(761), 1, + STATE(829), 1, sym__metadata_lit, ACTIONS(53), 2, sym_nil_lit, sym_fancy_literal, - ACTIONS(162), 2, + ACTIONS(170), 2, sym__ws, sym_comment, ACTIONS(51), 3, @@ -5868,11 +5956,11 @@ static uint16_t ts_small_parse_table[] = { sym__gap, sym_dis_expr, aux_sym__bare_list_lit_repeat1, - STATE(379), 3, + STATE(376), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(459), 16, + STATE(461), 16, sym__form, sym_str_lit, sym_sym_lit, @@ -5889,7 +5977,7 @@ static uint16_t ts_small_parse_table[] = { sym_syn_quoting_lit, sym_unquote_splicing_lit, sym_unquoting_lit, - [2281] = 32, + [2401] = 30, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, @@ -5928,39 +6016,36 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA_AT, ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(214), 1, - anon_sym_RPAREN, - STATE(384), 1, - sym__bare_vec_lit, - STATE(390), 1, + ACTIONS(216), 1, + ts_builtin_sym_end, + STATE(372), 1, sym__bare_set_lit, - STATE(505), 1, + STATE(375), 1, + sym__bare_vec_lit, + STATE(541), 1, aux_sym_sym_lit_repeat1, - STATE(584), 1, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(761), 1, + STATE(829), 1, sym__metadata_lit, - ACTIONS(53), 2, + ACTIONS(220), 2, sym_nil_lit, sym_fancy_literal, - ACTIONS(162), 2, + STATE(376), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + ACTIONS(218), 5, sym__ws, sym_comment, - ACTIONS(51), 3, sym_num_lit, sym_kwd_lit, sym_char_lit, - STATE(9), 3, + STATE(61), 19, sym__gap, sym_dis_expr, - aux_sym__bare_list_lit_repeat1, - STATE(379), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(459), 16, sym__form, sym_str_lit, sym_sym_lit, @@ -5977,7 +6062,8 @@ static uint16_t ts_small_parse_table[] = { sym_syn_quoting_lit, sym_unquote_splicing_lit, sym_unquoting_lit, - [2401] = 30, + aux_sym_source_repeat1, + [2517] = 32, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, @@ -6016,36 +6102,39 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA_AT, ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(216), 1, - ts_builtin_sym_end, - STATE(384), 1, - sym__bare_vec_lit, - STATE(390), 1, + ACTIONS(224), 1, + anon_sym_RPAREN, + STATE(372), 1, sym__bare_set_lit, - STATE(505), 1, + STATE(375), 1, + sym__bare_vec_lit, + STATE(541), 1, aux_sym_sym_lit_repeat1, - STATE(584), 1, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(761), 1, + STATE(829), 1, sym__metadata_lit, - ACTIONS(220), 2, + ACTIONS(53), 2, sym_nil_lit, sym_fancy_literal, - STATE(379), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - ACTIONS(218), 5, + ACTIONS(222), 2, sym__ws, sym_comment, + ACTIONS(51), 3, sym_num_lit, sym_kwd_lit, sym_char_lit, - STATE(51), 19, + STATE(37), 3, sym__gap, sym_dis_expr, + aux_sym__bare_list_lit_repeat1, + STATE(376), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(461), 16, sym__form, sym_str_lit, sym_sym_lit, @@ -6062,8 +6151,7 @@ static uint16_t ts_small_parse_table[] = { sym_syn_quoting_lit, sym_unquote_splicing_lit, sym_unquoting_lit, - aux_sym_source_repeat1, - [2517] = 32, + [2637] = 32, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, @@ -6102,39 +6190,39 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA_AT, ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(224), 1, + ACTIONS(228), 1, anon_sym_RPAREN, - STATE(384), 1, - sym__bare_vec_lit, - STATE(390), 1, + STATE(372), 1, sym__bare_set_lit, - STATE(505), 1, + STATE(375), 1, + sym__bare_vec_lit, + STATE(541), 1, aux_sym_sym_lit_repeat1, - STATE(584), 1, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(761), 1, + STATE(829), 1, sym__metadata_lit, ACTIONS(53), 2, sym_nil_lit, sym_fancy_literal, - ACTIONS(222), 2, + ACTIONS(226), 2, sym__ws, sym_comment, ACTIONS(51), 3, sym_num_lit, sym_kwd_lit, sym_char_lit, - STATE(37), 3, + STATE(22), 3, sym__gap, sym_dis_expr, aux_sym__bare_list_lit_repeat1, - STATE(379), 3, + STATE(376), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(459), 16, + STATE(461), 16, sym__form, sym_str_lit, sym_sym_lit, @@ -6151,7 +6239,7 @@ static uint16_t ts_small_parse_table[] = { sym_syn_quoting_lit, sym_unquote_splicing_lit, sym_unquoting_lit, - [2637] = 32, + [2757] = 32, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, @@ -6190,39 +6278,39 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA_AT, ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(228), 1, - anon_sym_RPAREN, - STATE(384), 1, - sym__bare_vec_lit, - STATE(390), 1, + ACTIONS(232), 1, + anon_sym_RBRACE, + STATE(372), 1, sym__bare_set_lit, - STATE(505), 1, + STATE(375), 1, + sym__bare_vec_lit, + STATE(541), 1, aux_sym_sym_lit_repeat1, - STATE(584), 1, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(761), 1, + STATE(829), 1, sym__metadata_lit, ACTIONS(53), 2, sym_nil_lit, sym_fancy_literal, - ACTIONS(226), 2, + ACTIONS(230), 2, sym__ws, sym_comment, ACTIONS(51), 3, sym_num_lit, sym_kwd_lit, sym_char_lit, - STATE(22), 3, + STATE(56), 3, sym__gap, sym_dis_expr, aux_sym__bare_list_lit_repeat1, - STATE(379), 3, + STATE(376), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(459), 16, + STATE(461), 16, sym__form, sym_str_lit, sym_sym_lit, @@ -6239,7 +6327,7 @@ static uint16_t ts_small_parse_table[] = { sym_syn_quoting_lit, sym_unquote_splicing_lit, sym_unquoting_lit, - [2757] = 32, + [2877] = 32, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, @@ -6278,39 +6366,39 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA_AT, ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(232), 1, - anon_sym_RBRACE, - STATE(384), 1, - sym__bare_vec_lit, - STATE(390), 1, + ACTIONS(234), 1, + anon_sym_RPAREN, + STATE(372), 1, sym__bare_set_lit, - STATE(505), 1, + STATE(375), 1, + sym__bare_vec_lit, + STATE(541), 1, aux_sym_sym_lit_repeat1, - STATE(584), 1, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(761), 1, + STATE(829), 1, sym__metadata_lit, ACTIONS(53), 2, sym_nil_lit, sym_fancy_literal, - ACTIONS(230), 2, + ACTIONS(170), 2, sym__ws, sym_comment, ACTIONS(51), 3, sym_num_lit, sym_kwd_lit, sym_char_lit, - STATE(57), 3, + STATE(9), 3, sym__gap, sym_dis_expr, aux_sym__bare_list_lit_repeat1, - STATE(379), 3, + STATE(376), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(459), 16, + STATE(461), 16, sym__form, sym_str_lit, sym_sym_lit, @@ -6327,7 +6415,7 @@ static uint16_t ts_small_parse_table[] = { sym_syn_quoting_lit, sym_unquote_splicing_lit, sym_unquoting_lit, - [2877] = 32, + [2997] = 32, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, @@ -6366,39 +6454,39 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA_AT, ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(234), 1, + ACTIONS(238), 1, anon_sym_RPAREN, - STATE(384), 1, - sym__bare_vec_lit, - STATE(390), 1, + STATE(372), 1, sym__bare_set_lit, - STATE(505), 1, + STATE(375), 1, + sym__bare_vec_lit, + STATE(541), 1, aux_sym_sym_lit_repeat1, - STATE(584), 1, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(761), 1, + STATE(829), 1, sym__metadata_lit, ACTIONS(53), 2, sym_nil_lit, sym_fancy_literal, - ACTIONS(162), 2, + ACTIONS(236), 2, sym__ws, sym_comment, ACTIONS(51), 3, sym_num_lit, sym_kwd_lit, sym_char_lit, - STATE(9), 3, + STATE(39), 3, sym__gap, sym_dis_expr, aux_sym__bare_list_lit_repeat1, - STATE(379), 3, + STATE(376), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(459), 16, + STATE(461), 16, sym__form, sym_str_lit, sym_sym_lit, @@ -6415,7 +6503,7 @@ static uint16_t ts_small_parse_table[] = { sym_syn_quoting_lit, sym_unquote_splicing_lit, sym_unquoting_lit, - [2997] = 32, + [3117] = 32, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, @@ -6454,39 +6542,39 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA_AT, ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(238), 1, + ACTIONS(240), 1, anon_sym_RPAREN, - STATE(384), 1, - sym__bare_vec_lit, - STATE(390), 1, + STATE(372), 1, sym__bare_set_lit, - STATE(505), 1, + STATE(375), 1, + sym__bare_vec_lit, + STATE(541), 1, aux_sym_sym_lit_repeat1, - STATE(584), 1, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(761), 1, + STATE(829), 1, sym__metadata_lit, ACTIONS(53), 2, sym_nil_lit, sym_fancy_literal, - ACTIONS(236), 2, + ACTIONS(170), 2, sym__ws, sym_comment, ACTIONS(51), 3, sym_num_lit, sym_kwd_lit, sym_char_lit, - STATE(58), 3, + STATE(9), 3, sym__gap, sym_dis_expr, aux_sym__bare_list_lit_repeat1, - STATE(379), 3, + STATE(376), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(459), 16, + STATE(461), 16, sym__form, sym_str_lit, sym_sym_lit, @@ -6503,7 +6591,7 @@ static uint16_t ts_small_parse_table[] = { sym_syn_quoting_lit, sym_unquote_splicing_lit, sym_unquoting_lit, - [3117] = 32, + [3237] = 32, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, @@ -6542,39 +6630,39 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA_AT, ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(242), 1, - anon_sym_RPAREN, - STATE(384), 1, - sym__bare_vec_lit, - STATE(390), 1, + ACTIONS(244), 1, + anon_sym_RBRACE, + STATE(372), 1, sym__bare_set_lit, - STATE(505), 1, + STATE(375), 1, + sym__bare_vec_lit, + STATE(541), 1, aux_sym_sym_lit_repeat1, - STATE(584), 1, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(761), 1, + STATE(829), 1, sym__metadata_lit, ACTIONS(53), 2, sym_nil_lit, sym_fancy_literal, - ACTIONS(240), 2, + ACTIONS(242), 2, sym__ws, sym_comment, ACTIONS(51), 3, sym_num_lit, sym_kwd_lit, sym_char_lit, - STATE(40), 3, + STATE(24), 3, sym__gap, sym_dis_expr, aux_sym__bare_list_lit_repeat1, - STATE(379), 3, + STATE(376), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(459), 16, + STATE(461), 16, sym__form, sym_str_lit, sym_sym_lit, @@ -6591,7 +6679,7 @@ static uint16_t ts_small_parse_table[] = { sym_syn_quoting_lit, sym_unquote_splicing_lit, sym_unquoting_lit, - [3237] = 32, + [3357] = 32, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, @@ -6631,38 +6719,38 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(45), 1, anon_sym_COMMA, ACTIONS(246), 1, - anon_sym_RBRACE, - STATE(384), 1, - sym__bare_vec_lit, - STATE(390), 1, + anon_sym_RPAREN, + STATE(372), 1, sym__bare_set_lit, - STATE(505), 1, + STATE(375), 1, + sym__bare_vec_lit, + STATE(541), 1, aux_sym_sym_lit_repeat1, - STATE(584), 1, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(761), 1, + STATE(829), 1, sym__metadata_lit, ACTIONS(53), 2, sym_nil_lit, sym_fancy_literal, - ACTIONS(244), 2, + ACTIONS(170), 2, sym__ws, sym_comment, ACTIONS(51), 3, sym_num_lit, sym_kwd_lit, sym_char_lit, - STATE(24), 3, + STATE(9), 3, sym__gap, sym_dis_expr, aux_sym__bare_list_lit_repeat1, - STATE(379), 3, + STATE(376), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(459), 16, + STATE(461), 16, sym__form, sym_str_lit, sym_sym_lit, @@ -6679,7 +6767,7 @@ static uint16_t ts_small_parse_table[] = { sym_syn_quoting_lit, sym_unquote_splicing_lit, sym_unquoting_lit, - [3357] = 32, + [3477] = 32, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, @@ -6718,39 +6806,39 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA_AT, ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(248), 1, + ACTIONS(250), 1, anon_sym_RPAREN, - STATE(384), 1, - sym__bare_vec_lit, - STATE(390), 1, + STATE(372), 1, sym__bare_set_lit, - STATE(505), 1, + STATE(375), 1, + sym__bare_vec_lit, + STATE(541), 1, aux_sym_sym_lit_repeat1, - STATE(584), 1, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(761), 1, + STATE(829), 1, sym__metadata_lit, ACTIONS(53), 2, sym_nil_lit, sym_fancy_literal, - ACTIONS(162), 2, + ACTIONS(248), 2, sym__ws, sym_comment, ACTIONS(51), 3, sym_num_lit, sym_kwd_lit, sym_char_lit, - STATE(9), 3, + STATE(17), 3, sym__gap, sym_dis_expr, aux_sym__bare_list_lit_repeat1, - STATE(379), 3, + STATE(376), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(459), 16, + STATE(461), 16, sym__form, sym_str_lit, sym_sym_lit, @@ -6767,7 +6855,7 @@ static uint16_t ts_small_parse_table[] = { sym_syn_quoting_lit, sym_unquote_splicing_lit, sym_unquoting_lit, - [3477] = 32, + [3597] = 32, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, @@ -6807,38 +6895,38 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(45), 1, anon_sym_COMMA, ACTIONS(252), 1, - anon_sym_RBRACE, - STATE(384), 1, - sym__bare_vec_lit, - STATE(390), 1, + anon_sym_RPAREN, + STATE(372), 1, sym__bare_set_lit, - STATE(505), 1, + STATE(375), 1, + sym__bare_vec_lit, + STATE(541), 1, aux_sym_sym_lit_repeat1, - STATE(584), 1, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(761), 1, + STATE(829), 1, sym__metadata_lit, ACTIONS(53), 2, sym_nil_lit, sym_fancy_literal, - ACTIONS(250), 2, + ACTIONS(170), 2, sym__ws, sym_comment, ACTIONS(51), 3, sym_num_lit, sym_kwd_lit, sym_char_lit, - STATE(42), 3, + STATE(9), 3, sym__gap, sym_dis_expr, aux_sym__bare_list_lit_repeat1, - STATE(379), 3, + STATE(376), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(459), 16, + STATE(461), 16, sym__form, sym_str_lit, sym_sym_lit, @@ -6855,7 +6943,7 @@ static uint16_t ts_small_parse_table[] = { sym_syn_quoting_lit, sym_unquote_splicing_lit, sym_unquoting_lit, - [3597] = 32, + [3717] = 32, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, @@ -6894,39 +6982,39 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA_AT, ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(256), 1, - anon_sym_RPAREN, - STATE(384), 1, - sym__bare_vec_lit, - STATE(390), 1, + ACTIONS(254), 1, + anon_sym_RBRACE, + STATE(372), 1, sym__bare_set_lit, - STATE(505), 1, + STATE(375), 1, + sym__bare_vec_lit, + STATE(541), 1, aux_sym_sym_lit_repeat1, - STATE(584), 1, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(761), 1, + STATE(829), 1, sym__metadata_lit, ACTIONS(53), 2, sym_nil_lit, sym_fancy_literal, - ACTIONS(254), 2, + ACTIONS(170), 2, sym__ws, sym_comment, ACTIONS(51), 3, sym_num_lit, sym_kwd_lit, sym_char_lit, - STATE(50), 3, + STATE(9), 3, sym__gap, sym_dis_expr, aux_sym__bare_list_lit_repeat1, - STATE(379), 3, + STATE(376), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(459), 16, + STATE(461), 16, sym__form, sym_str_lit, sym_sym_lit, @@ -6943,7 +7031,7 @@ static uint16_t ts_small_parse_table[] = { sym_syn_quoting_lit, sym_unquote_splicing_lit, sym_unquoting_lit, - [3717] = 32, + [3837] = 32, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, @@ -6982,24 +7070,24 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA_AT, ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(258), 1, - anon_sym_RPAREN, - STATE(384), 1, - sym__bare_vec_lit, - STATE(390), 1, + ACTIONS(256), 1, + anon_sym_RBRACE, + STATE(372), 1, sym__bare_set_lit, - STATE(505), 1, + STATE(375), 1, + sym__bare_vec_lit, + STATE(541), 1, aux_sym_sym_lit_repeat1, - STATE(584), 1, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(761), 1, + STATE(829), 1, sym__metadata_lit, ACTIONS(53), 2, sym_nil_lit, sym_fancy_literal, - ACTIONS(162), 2, + ACTIONS(170), 2, sym__ws, sym_comment, ACTIONS(51), 3, @@ -7010,11 +7098,11 @@ static uint16_t ts_small_parse_table[] = { sym__gap, sym_dis_expr, aux_sym__bare_list_lit_repeat1, - STATE(379), 3, + STATE(376), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(459), 16, + STATE(461), 16, sym__form, sym_str_lit, sym_sym_lit, @@ -7031,7 +7119,7 @@ static uint16_t ts_small_parse_table[] = { sym_syn_quoting_lit, sym_unquote_splicing_lit, sym_unquoting_lit, - [3837] = 32, + [3957] = 32, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, @@ -7072,37 +7160,37 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, ACTIONS(260), 1, anon_sym_RBRACE, - STATE(384), 1, - sym__bare_vec_lit, - STATE(390), 1, + STATE(372), 1, sym__bare_set_lit, - STATE(505), 1, + STATE(375), 1, + sym__bare_vec_lit, + STATE(541), 1, aux_sym_sym_lit_repeat1, - STATE(584), 1, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(761), 1, + STATE(829), 1, sym__metadata_lit, ACTIONS(53), 2, sym_nil_lit, sym_fancy_literal, - ACTIONS(162), 2, + ACTIONS(258), 2, sym__ws, sym_comment, ACTIONS(51), 3, sym_num_lit, sym_kwd_lit, sym_char_lit, - STATE(9), 3, + STATE(12), 3, sym__gap, sym_dis_expr, aux_sym__bare_list_lit_repeat1, - STATE(379), 3, + STATE(376), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(459), 16, + STATE(461), 16, sym__form, sym_str_lit, sym_sym_lit, @@ -7119,7 +7207,7 @@ static uint16_t ts_small_parse_table[] = { sym_syn_quoting_lit, sym_unquote_splicing_lit, sym_unquoting_lit, - [3957] = 32, + [4077] = 32, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, @@ -7159,23 +7247,23 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(45), 1, anon_sym_COMMA, ACTIONS(262), 1, - anon_sym_RBRACE, - STATE(384), 1, - sym__bare_vec_lit, - STATE(390), 1, + anon_sym_RPAREN, + STATE(372), 1, sym__bare_set_lit, - STATE(505), 1, + STATE(375), 1, + sym__bare_vec_lit, + STATE(541), 1, aux_sym_sym_lit_repeat1, - STATE(584), 1, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(761), 1, + STATE(829), 1, sym__metadata_lit, ACTIONS(53), 2, sym_nil_lit, sym_fancy_literal, - ACTIONS(162), 2, + ACTIONS(170), 2, sym__ws, sym_comment, ACTIONS(51), 3, @@ -7186,11 +7274,11 @@ static uint16_t ts_small_parse_table[] = { sym__gap, sym_dis_expr, aux_sym__bare_list_lit_repeat1, - STATE(379), 3, + STATE(376), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(459), 16, + STATE(461), 16, sym__form, sym_str_lit, sym_sym_lit, @@ -7207,7 +7295,7 @@ static uint16_t ts_small_parse_table[] = { sym_syn_quoting_lit, sym_unquote_splicing_lit, sym_unquoting_lit, - [4077] = 32, + [4197] = 32, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, @@ -7246,39 +7334,39 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA_AT, ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(264), 1, + ACTIONS(266), 1, anon_sym_RPAREN, - STATE(384), 1, - sym__bare_vec_lit, - STATE(390), 1, + STATE(372), 1, sym__bare_set_lit, - STATE(505), 1, + STATE(375), 1, + sym__bare_vec_lit, + STATE(541), 1, aux_sym_sym_lit_repeat1, - STATE(584), 1, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(761), 1, + STATE(829), 1, sym__metadata_lit, ACTIONS(53), 2, sym_nil_lit, sym_fancy_literal, - ACTIONS(162), 2, + ACTIONS(264), 2, sym__ws, sym_comment, ACTIONS(51), 3, sym_num_lit, sym_kwd_lit, sym_char_lit, - STATE(9), 3, + STATE(53), 3, sym__gap, sym_dis_expr, aux_sym__bare_list_lit_repeat1, - STATE(379), 3, + STATE(376), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(459), 16, + STATE(461), 16, sym__form, sym_str_lit, sym_sym_lit, @@ -7295,7 +7383,7 @@ static uint16_t ts_small_parse_table[] = { sym_syn_quoting_lit, sym_unquote_splicing_lit, sym_unquoting_lit, - [4197] = 32, + [4317] = 32, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, @@ -7336,37 +7424,37 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, ACTIONS(268), 1, anon_sym_RPAREN, - STATE(384), 1, - sym__bare_vec_lit, - STATE(390), 1, + STATE(372), 1, sym__bare_set_lit, - STATE(505), 1, + STATE(375), 1, + sym__bare_vec_lit, + STATE(541), 1, aux_sym_sym_lit_repeat1, - STATE(584), 1, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(761), 1, + STATE(829), 1, sym__metadata_lit, ACTIONS(53), 2, sym_nil_lit, sym_fancy_literal, - ACTIONS(266), 2, + ACTIONS(170), 2, sym__ws, sym_comment, ACTIONS(51), 3, sym_num_lit, sym_kwd_lit, sym_char_lit, - STATE(46), 3, + STATE(9), 3, sym__gap, sym_dis_expr, aux_sym__bare_list_lit_repeat1, - STATE(379), 3, + STATE(376), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(459), 16, + STATE(461), 16, sym__form, sym_str_lit, sym_sym_lit, @@ -7383,7 +7471,7 @@ static uint16_t ts_small_parse_table[] = { sym_syn_quoting_lit, sym_unquote_splicing_lit, sym_unquoting_lit, - [4317] = 32, + [4437] = 32, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, @@ -7422,39 +7510,39 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA_AT, ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(270), 1, - anon_sym_RPAREN, - STATE(384), 1, - sym__bare_vec_lit, - STATE(390), 1, + ACTIONS(272), 1, + anon_sym_RBRACE, + STATE(372), 1, sym__bare_set_lit, - STATE(505), 1, + STATE(375), 1, + sym__bare_vec_lit, + STATE(541), 1, aux_sym_sym_lit_repeat1, - STATE(584), 1, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(761), 1, + STATE(829), 1, sym__metadata_lit, ACTIONS(53), 2, sym_nil_lit, sym_fancy_literal, - ACTIONS(162), 2, + ACTIONS(270), 2, sym__ws, sym_comment, ACTIONS(51), 3, sym_num_lit, sym_kwd_lit, sym_char_lit, - STATE(9), 3, + STATE(62), 3, sym__gap, sym_dis_expr, aux_sym__bare_list_lit_repeat1, - STATE(379), 3, + STATE(376), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(459), 16, + STATE(461), 16, sym__form, sym_str_lit, sym_sym_lit, @@ -7471,7 +7559,7 @@ static uint16_t ts_small_parse_table[] = { sym_syn_quoting_lit, sym_unquote_splicing_lit, sym_unquoting_lit, - [4437] = 32, + [4557] = 32, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, @@ -7510,24 +7598,24 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA_AT, ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(272), 1, + ACTIONS(274), 1, anon_sym_RPAREN, - STATE(384), 1, - sym__bare_vec_lit, - STATE(390), 1, + STATE(372), 1, sym__bare_set_lit, - STATE(505), 1, + STATE(375), 1, + sym__bare_vec_lit, + STATE(541), 1, aux_sym_sym_lit_repeat1, - STATE(584), 1, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(761), 1, + STATE(829), 1, sym__metadata_lit, ACTIONS(53), 2, sym_nil_lit, sym_fancy_literal, - ACTIONS(162), 2, + ACTIONS(170), 2, sym__ws, sym_comment, ACTIONS(51), 3, @@ -7538,11 +7626,11 @@ static uint16_t ts_small_parse_table[] = { sym__gap, sym_dis_expr, aux_sym__bare_list_lit_repeat1, - STATE(379), 3, + STATE(376), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(459), 16, + STATE(461), 16, sym__form, sym_str_lit, sym_sym_lit, @@ -7559,7 +7647,7 @@ static uint16_t ts_small_parse_table[] = { sym_syn_quoting_lit, sym_unquote_splicing_lit, sym_unquoting_lit, - [4557] = 32, + [4677] = 32, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, @@ -7598,39 +7686,39 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA_AT, ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(274), 1, - anon_sym_RPAREN, - STATE(384), 1, - sym__bare_vec_lit, - STATE(390), 1, + ACTIONS(278), 1, + anon_sym_RBRACE, + STATE(372), 1, sym__bare_set_lit, - STATE(505), 1, + STATE(375), 1, + sym__bare_vec_lit, + STATE(541), 1, aux_sym_sym_lit_repeat1, - STATE(584), 1, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(761), 1, + STATE(829), 1, sym__metadata_lit, ACTIONS(53), 2, sym_nil_lit, sym_fancy_literal, - ACTIONS(162), 2, + ACTIONS(276), 2, sym__ws, sym_comment, ACTIONS(51), 3, sym_num_lit, sym_kwd_lit, sym_char_lit, - STATE(9), 3, + STATE(41), 3, sym__gap, sym_dis_expr, aux_sym__bare_list_lit_repeat1, - STATE(379), 3, + STATE(376), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(459), 16, + STATE(461), 16, sym__form, sym_str_lit, sym_sym_lit, @@ -7647,7 +7735,7 @@ static uint16_t ts_small_parse_table[] = { sym_syn_quoting_lit, sym_unquote_splicing_lit, sym_unquoting_lit, - [4677] = 32, + [4797] = 32, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, @@ -7686,39 +7774,39 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA_AT, ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(278), 1, - anon_sym_RBRACE, - STATE(384), 1, - sym__bare_vec_lit, - STATE(390), 1, + ACTIONS(282), 1, + anon_sym_RPAREN, + STATE(372), 1, sym__bare_set_lit, - STATE(505), 1, + STATE(375), 1, + sym__bare_vec_lit, + STATE(541), 1, aux_sym_sym_lit_repeat1, - STATE(584), 1, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(761), 1, + STATE(829), 1, sym__metadata_lit, ACTIONS(53), 2, sym_nil_lit, sym_fancy_literal, - ACTIONS(276), 2, + ACTIONS(280), 2, sym__ws, sym_comment, ACTIONS(51), 3, sym_num_lit, sym_kwd_lit, sym_char_lit, - STATE(41), 3, + STATE(25), 3, sym__gap, sym_dis_expr, aux_sym__bare_list_lit_repeat1, - STATE(379), 3, + STATE(376), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(459), 16, + STATE(461), 16, sym__form, sym_str_lit, sym_sym_lit, @@ -7735,7 +7823,7 @@ static uint16_t ts_small_parse_table[] = { sym_syn_quoting_lit, sym_unquote_splicing_lit, sym_unquoting_lit, - [4797] = 32, + [4917] = 32, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, @@ -7774,39 +7862,39 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA_AT, ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(282), 1, + ACTIONS(284), 1, anon_sym_RPAREN, - STATE(384), 1, - sym__bare_vec_lit, - STATE(390), 1, + STATE(372), 1, sym__bare_set_lit, - STATE(505), 1, + STATE(375), 1, + sym__bare_vec_lit, + STATE(541), 1, aux_sym_sym_lit_repeat1, - STATE(584), 1, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(761), 1, + STATE(829), 1, sym__metadata_lit, ACTIONS(53), 2, sym_nil_lit, sym_fancy_literal, - ACTIONS(280), 2, + ACTIONS(170), 2, sym__ws, sym_comment, ACTIONS(51), 3, sym_num_lit, sym_kwd_lit, sym_char_lit, - STATE(25), 3, + STATE(9), 3, sym__gap, sym_dis_expr, aux_sym__bare_list_lit_repeat1, - STATE(379), 3, + STATE(376), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(459), 16, + STATE(461), 16, sym__form, sym_str_lit, sym_sym_lit, @@ -7823,7 +7911,7 @@ static uint16_t ts_small_parse_table[] = { sym_syn_quoting_lit, sym_unquote_splicing_lit, sym_unquoting_lit, - [4917] = 32, + [5037] = 32, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, @@ -7862,24 +7950,24 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA_AT, ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(284), 1, + ACTIONS(286), 1, anon_sym_RPAREN, - STATE(384), 1, - sym__bare_vec_lit, - STATE(390), 1, + STATE(372), 1, sym__bare_set_lit, - STATE(505), 1, + STATE(375), 1, + sym__bare_vec_lit, + STATE(541), 1, aux_sym_sym_lit_repeat1, - STATE(584), 1, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(761), 1, + STATE(829), 1, sym__metadata_lit, ACTIONS(53), 2, sym_nil_lit, sym_fancy_literal, - ACTIONS(162), 2, + ACTIONS(170), 2, sym__ws, sym_comment, ACTIONS(51), 3, @@ -7890,11 +7978,11 @@ static uint16_t ts_small_parse_table[] = { sym__gap, sym_dis_expr, aux_sym__bare_list_lit_repeat1, - STATE(379), 3, + STATE(376), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(459), 16, + STATE(461), 16, sym__form, sym_str_lit, sym_sym_lit, @@ -7911,93 +7999,7 @@ static uint16_t ts_small_parse_table[] = { sym_syn_quoting_lit, sym_unquote_splicing_lit, sym_unquoting_lit, - [5037] = 30, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(286), 1, - ts_builtin_sym_end, - ACTIONS(291), 1, - anon_sym_POUND_, - ACTIONS(294), 1, - aux_sym_str_lit_token1, - ACTIONS(300), 1, - aux_sym_sym_lit_token1, - ACTIONS(303), 1, - anon_sym_CARET, - ACTIONS(306), 1, - anon_sym_POUND_CARET, - ACTIONS(309), 1, - anon_sym_LPAREN, - ACTIONS(312), 1, - anon_sym_POUND0A, - ACTIONS(315), 1, - anon_sym_POUND, - ACTIONS(318), 1, - anon_sym_POUND_QMARK, - ACTIONS(321), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(324), 1, - anon_sym_POUND_SQUOTE, - ACTIONS(327), 1, - anon_sym_POUND_POUND, - ACTIONS(330), 1, - anon_sym_POUND_EQ, - ACTIONS(333), 1, - anon_sym_AT, - ACTIONS(336), 1, - anon_sym_SQUOTE, - ACTIONS(339), 1, - anon_sym_BQUOTE, - ACTIONS(342), 1, - anon_sym_COMMA_AT, - ACTIONS(345), 1, - anon_sym_COMMA, - STATE(384), 1, - sym__bare_vec_lit, - STATE(390), 1, - sym__bare_set_lit, - STATE(505), 1, - aux_sym_sym_lit_repeat1, - STATE(584), 1, - sym_old_meta_lit, - STATE(587), 1, - sym_meta_lit, - STATE(761), 1, - sym__metadata_lit, - ACTIONS(297), 2, - sym_nil_lit, - sym_fancy_literal, - STATE(379), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - ACTIONS(288), 5, - sym__ws, - sym_comment, - sym_num_lit, - sym_kwd_lit, - sym_char_lit, - STATE(51), 19, - sym__gap, - sym_dis_expr, - sym__form, - sym_str_lit, - sym_sym_lit, - sym_list_lit, - sym_vec_lit, - sym_set_lit, - sym_read_cond_lit, - sym_splicing_read_cond_lit, - sym_var_quoting_lit, - sym_sym_val_lit, - sym_evaling_lit, - sym_derefing_lit, - sym_quoting_lit, - sym_syn_quoting_lit, - sym_unquote_splicing_lit, - sym_unquoting_lit, - aux_sym_source_repeat1, - [5153] = 32, + [5157] = 32, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, @@ -8036,24 +8038,24 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA_AT, ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(348), 1, - anon_sym_RBRACE, - STATE(384), 1, - sym__bare_vec_lit, - STATE(390), 1, + ACTIONS(288), 1, + anon_sym_RPAREN, + STATE(372), 1, sym__bare_set_lit, - STATE(505), 1, + STATE(375), 1, + sym__bare_vec_lit, + STATE(541), 1, aux_sym_sym_lit_repeat1, - STATE(584), 1, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(761), 1, + STATE(829), 1, sym__metadata_lit, ACTIONS(53), 2, sym_nil_lit, sym_fancy_literal, - ACTIONS(162), 2, + ACTIONS(170), 2, sym__ws, sym_comment, ACTIONS(51), 3, @@ -8064,11 +8066,11 @@ static uint16_t ts_small_parse_table[] = { sym__gap, sym_dis_expr, aux_sym__bare_list_lit_repeat1, - STATE(379), 3, + STATE(376), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(459), 16, + STATE(461), 16, sym__form, sym_str_lit, sym_sym_lit, @@ -8085,7 +8087,7 @@ static uint16_t ts_small_parse_table[] = { sym_syn_quoting_lit, sym_unquote_splicing_lit, sym_unquoting_lit, - [5273] = 32, + [5277] = 32, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, @@ -8124,39 +8126,39 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA_AT, ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(352), 1, + ACTIONS(290), 1, anon_sym_RPAREN, - STATE(384), 1, - sym__bare_vec_lit, - STATE(390), 1, + STATE(372), 1, sym__bare_set_lit, - STATE(505), 1, + STATE(375), 1, + sym__bare_vec_lit, + STATE(541), 1, aux_sym_sym_lit_repeat1, - STATE(584), 1, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(761), 1, + STATE(829), 1, sym__metadata_lit, ACTIONS(53), 2, sym_nil_lit, sym_fancy_literal, - ACTIONS(350), 2, + ACTIONS(170), 2, sym__ws, sym_comment, ACTIONS(51), 3, sym_num_lit, sym_kwd_lit, sym_char_lit, - STATE(55), 3, + STATE(9), 3, sym__gap, sym_dis_expr, aux_sym__bare_list_lit_repeat1, - STATE(379), 3, + STATE(376), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(459), 16, + STATE(461), 16, sym__form, sym_str_lit, sym_sym_lit, @@ -8173,7 +8175,7 @@ static uint16_t ts_small_parse_table[] = { sym_syn_quoting_lit, sym_unquote_splicing_lit, sym_unquoting_lit, - [5393] = 32, + [5397] = 32, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, @@ -8212,39 +8214,39 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA_AT, ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(354), 1, + ACTIONS(294), 1, anon_sym_RPAREN, - STATE(384), 1, - sym__bare_vec_lit, - STATE(390), 1, + STATE(372), 1, sym__bare_set_lit, - STATE(505), 1, + STATE(375), 1, + sym__bare_vec_lit, + STATE(541), 1, aux_sym_sym_lit_repeat1, - STATE(584), 1, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(761), 1, + STATE(829), 1, sym__metadata_lit, ACTIONS(53), 2, sym_nil_lit, sym_fancy_literal, - ACTIONS(162), 2, + ACTIONS(292), 2, sym__ws, sym_comment, ACTIONS(51), 3, sym_num_lit, sym_kwd_lit, sym_char_lit, - STATE(9), 3, + STATE(19), 3, sym__gap, sym_dis_expr, aux_sym__bare_list_lit_repeat1, - STATE(379), 3, + STATE(376), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(459), 16, + STATE(461), 16, sym__form, sym_str_lit, sym_sym_lit, @@ -8261,7 +8263,7 @@ static uint16_t ts_small_parse_table[] = { sym_syn_quoting_lit, sym_unquote_splicing_lit, sym_unquoting_lit, - [5513] = 32, + [5517] = 32, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, @@ -8300,39 +8302,39 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA_AT, ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(356), 1, + ACTIONS(298), 1, anon_sym_RPAREN, - STATE(384), 1, - sym__bare_vec_lit, - STATE(390), 1, + STATE(372), 1, sym__bare_set_lit, - STATE(505), 1, + STATE(375), 1, + sym__bare_vec_lit, + STATE(541), 1, aux_sym_sym_lit_repeat1, - STATE(584), 1, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(761), 1, + STATE(829), 1, sym__metadata_lit, ACTIONS(53), 2, sym_nil_lit, sym_fancy_literal, - ACTIONS(162), 2, + ACTIONS(296), 2, sym__ws, sym_comment, ACTIONS(51), 3, sym_num_lit, sym_kwd_lit, sym_char_lit, - STATE(9), 3, + STATE(52), 3, sym__gap, sym_dis_expr, aux_sym__bare_list_lit_repeat1, - STATE(379), 3, + STATE(376), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(459), 16, + STATE(461), 16, sym__form, sym_str_lit, sym_sym_lit, @@ -8349,7 +8351,7 @@ static uint16_t ts_small_parse_table[] = { sym_syn_quoting_lit, sym_unquote_splicing_lit, sym_unquoting_lit, - [5633] = 32, + [5637] = 32, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, @@ -8388,39 +8390,39 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA_AT, ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(360), 1, + ACTIONS(300), 1, anon_sym_RBRACE, - STATE(384), 1, - sym__bare_vec_lit, - STATE(390), 1, + STATE(372), 1, sym__bare_set_lit, - STATE(505), 1, + STATE(375), 1, + sym__bare_vec_lit, + STATE(541), 1, aux_sym_sym_lit_repeat1, - STATE(584), 1, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(761), 1, + STATE(829), 1, sym__metadata_lit, ACTIONS(53), 2, sym_nil_lit, sym_fancy_literal, - ACTIONS(358), 2, + ACTIONS(170), 2, sym__ws, sym_comment, ACTIONS(51), 3, sym_num_lit, sym_kwd_lit, sym_char_lit, - STATE(62), 3, + STATE(9), 3, sym__gap, sym_dis_expr, aux_sym__bare_list_lit_repeat1, - STATE(379), 3, + STATE(376), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(459), 16, + STATE(461), 16, sym__form, sym_str_lit, sym_sym_lit, @@ -8437,7 +8439,7 @@ static uint16_t ts_small_parse_table[] = { sym_syn_quoting_lit, sym_unquote_splicing_lit, sym_unquoting_lit, - [5753] = 32, + [5757] = 32, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, @@ -8476,39 +8478,39 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA_AT, ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(362), 1, - anon_sym_RBRACE, - STATE(384), 1, - sym__bare_vec_lit, - STATE(390), 1, + ACTIONS(304), 1, + anon_sym_RPAREN, + STATE(372), 1, sym__bare_set_lit, - STATE(505), 1, + STATE(375), 1, + sym__bare_vec_lit, + STATE(541), 1, aux_sym_sym_lit_repeat1, - STATE(584), 1, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(761), 1, + STATE(829), 1, sym__metadata_lit, ACTIONS(53), 2, sym_nil_lit, sym_fancy_literal, - ACTIONS(162), 2, + ACTIONS(302), 2, sym__ws, sym_comment, ACTIONS(51), 3, sym_num_lit, sym_kwd_lit, sym_char_lit, - STATE(9), 3, + STATE(33), 3, sym__gap, sym_dis_expr, aux_sym__bare_list_lit_repeat1, - STATE(379), 3, + STATE(376), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(459), 16, + STATE(461), 16, sym__form, sym_str_lit, sym_sym_lit, @@ -8525,7 +8527,7 @@ static uint16_t ts_small_parse_table[] = { sym_syn_quoting_lit, sym_unquote_splicing_lit, sym_unquoting_lit, - [5873] = 32, + [5877] = 32, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, @@ -8564,24 +8566,24 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA_AT, ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(364), 1, + ACTIONS(306), 1, anon_sym_RPAREN, - STATE(384), 1, - sym__bare_vec_lit, - STATE(390), 1, + STATE(372), 1, sym__bare_set_lit, - STATE(505), 1, + STATE(375), 1, + sym__bare_vec_lit, + STATE(541), 1, aux_sym_sym_lit_repeat1, - STATE(584), 1, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(761), 1, + STATE(829), 1, sym__metadata_lit, ACTIONS(53), 2, sym_nil_lit, sym_fancy_literal, - ACTIONS(162), 2, + ACTIONS(170), 2, sym__ws, sym_comment, ACTIONS(51), 3, @@ -8592,11 +8594,11 @@ static uint16_t ts_small_parse_table[] = { sym__gap, sym_dis_expr, aux_sym__bare_list_lit_repeat1, - STATE(379), 3, + STATE(376), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(459), 16, + STATE(461), 16, sym__form, sym_str_lit, sym_sym_lit, @@ -8613,7 +8615,7 @@ static uint16_t ts_small_parse_table[] = { sym_syn_quoting_lit, sym_unquote_splicing_lit, sym_unquoting_lit, - [5993] = 32, + [5997] = 32, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, @@ -8652,39 +8654,39 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA_AT, ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(368), 1, + ACTIONS(310), 1, anon_sym_RPAREN, - STATE(384), 1, - sym__bare_vec_lit, - STATE(390), 1, + STATE(372), 1, sym__bare_set_lit, - STATE(505), 1, + STATE(375), 1, + sym__bare_vec_lit, + STATE(541), 1, aux_sym_sym_lit_repeat1, - STATE(584), 1, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(761), 1, + STATE(829), 1, sym__metadata_lit, ACTIONS(53), 2, sym_nil_lit, sym_fancy_literal, - ACTIONS(366), 2, + ACTIONS(308), 2, sym__ws, sym_comment, ACTIONS(51), 3, sym_num_lit, sym_kwd_lit, sym_char_lit, - STATE(43), 3, + STATE(58), 3, sym__gap, sym_dis_expr, aux_sym__bare_list_lit_repeat1, - STATE(379), 3, + STATE(376), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(459), 16, + STATE(461), 16, sym__form, sym_str_lit, sym_sym_lit, @@ -8701,7 +8703,7 @@ static uint16_t ts_small_parse_table[] = { sym_syn_quoting_lit, sym_unquote_splicing_lit, sym_unquoting_lit, - [6113] = 32, + [6117] = 32, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, @@ -8740,39 +8742,39 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA_AT, ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(372), 1, - anon_sym_RPAREN, - STATE(384), 1, - sym__bare_vec_lit, - STATE(390), 1, + ACTIONS(312), 1, + anon_sym_RBRACE, + STATE(372), 1, sym__bare_set_lit, - STATE(505), 1, + STATE(375), 1, + sym__bare_vec_lit, + STATE(541), 1, aux_sym_sym_lit_repeat1, - STATE(584), 1, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(761), 1, + STATE(829), 1, sym__metadata_lit, ACTIONS(53), 2, sym_nil_lit, sym_fancy_literal, - ACTIONS(370), 2, + ACTIONS(170), 2, sym__ws, sym_comment, ACTIONS(51), 3, sym_num_lit, sym_kwd_lit, sym_char_lit, - STATE(33), 3, + STATE(9), 3, sym__gap, sym_dis_expr, aux_sym__bare_list_lit_repeat1, - STATE(379), 3, + STATE(376), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(459), 16, + STATE(461), 16, sym__form, sym_str_lit, sym_sym_lit, @@ -8789,78 +8791,75 @@ static uint16_t ts_small_parse_table[] = { sym_syn_quoting_lit, sym_unquote_splicing_lit, sym_unquoting_lit, - [6233] = 32, + [6237] = 30, ACTIONS(3), 1, sym_block_comment, - ACTIONS(9), 1, + ACTIONS(314), 1, + ts_builtin_sym_end, + ACTIONS(319), 1, anon_sym_POUND_, - ACTIONS(11), 1, + ACTIONS(322), 1, aux_sym_str_lit_token1, - ACTIONS(15), 1, + ACTIONS(328), 1, aux_sym_sym_lit_token1, - ACTIONS(17), 1, + ACTIONS(331), 1, anon_sym_CARET, - ACTIONS(19), 1, + ACTIONS(334), 1, anon_sym_POUND_CARET, - ACTIONS(21), 1, + ACTIONS(337), 1, anon_sym_LPAREN, - ACTIONS(23), 1, + ACTIONS(340), 1, anon_sym_POUND0A, - ACTIONS(25), 1, + ACTIONS(343), 1, anon_sym_POUND, - ACTIONS(27), 1, + ACTIONS(346), 1, anon_sym_POUND_QMARK, - ACTIONS(29), 1, + ACTIONS(349), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(31), 1, + ACTIONS(352), 1, anon_sym_POUND_SQUOTE, - ACTIONS(33), 1, + ACTIONS(355), 1, anon_sym_POUND_POUND, - ACTIONS(35), 1, + ACTIONS(358), 1, anon_sym_POUND_EQ, - ACTIONS(37), 1, + ACTIONS(361), 1, anon_sym_AT, - ACTIONS(39), 1, + ACTIONS(364), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(367), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(370), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(373), 1, anon_sym_COMMA, - ACTIONS(374), 1, - anon_sym_RPAREN, - STATE(384), 1, - sym__bare_vec_lit, - STATE(390), 1, + STATE(372), 1, sym__bare_set_lit, - STATE(505), 1, + STATE(375), 1, + sym__bare_vec_lit, + STATE(541), 1, aux_sym_sym_lit_repeat1, - STATE(584), 1, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(761), 1, + STATE(829), 1, sym__metadata_lit, - ACTIONS(53), 2, + ACTIONS(325), 2, sym_nil_lit, sym_fancy_literal, - ACTIONS(162), 2, + STATE(376), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + ACTIONS(316), 5, sym__ws, sym_comment, - ACTIONS(51), 3, sym_num_lit, sym_kwd_lit, sym_char_lit, - STATE(9), 3, + STATE(61), 19, sym__gap, sym_dis_expr, - aux_sym__bare_list_lit_repeat1, - STATE(379), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(459), 16, sym__form, sym_str_lit, sym_sym_lit, @@ -8877,6 +8876,7 @@ static uint16_t ts_small_parse_table[] = { sym_syn_quoting_lit, sym_unquote_splicing_lit, sym_unquoting_lit, + aux_sym_source_repeat1, [6353] = 32, ACTIONS(3), 1, sym_block_comment, @@ -8918,22 +8918,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, ACTIONS(376), 1, anon_sym_RBRACE, - STATE(384), 1, - sym__bare_vec_lit, - STATE(390), 1, + STATE(372), 1, sym__bare_set_lit, - STATE(505), 1, + STATE(375), 1, + sym__bare_vec_lit, + STATE(541), 1, aux_sym_sym_lit_repeat1, - STATE(584), 1, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(761), 1, + STATE(829), 1, sym__metadata_lit, ACTIONS(53), 2, sym_nil_lit, sym_fancy_literal, - ACTIONS(162), 2, + ACTIONS(170), 2, sym__ws, sym_comment, ACTIONS(51), 3, @@ -8944,11 +8944,11 @@ static uint16_t ts_small_parse_table[] = { sym__gap, sym_dis_expr, aux_sym__bare_list_lit_repeat1, - STATE(379), 3, + STATE(376), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(459), 16, + STATE(461), 16, sym__form, sym_str_lit, sym_sym_lit, @@ -9004,17 +9004,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA_AT, ACTIONS(45), 1, anon_sym_COMMA, - STATE(384), 1, - sym__bare_vec_lit, - STATE(390), 1, + STATE(372), 1, sym__bare_set_lit, - STATE(505), 1, + STATE(375), 1, + sym__bare_vec_lit, + STATE(541), 1, aux_sym_sym_lit_repeat1, - STATE(584), 1, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(761), 1, + STATE(829), 1, sym__metadata_lit, ACTIONS(378), 2, sym__ws, @@ -9026,7 +9026,7 @@ static uint16_t ts_small_parse_table[] = { sym_num_lit, sym_kwd_lit, sym_char_lit, - STATE(379), 3, + STATE(376), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, @@ -9034,7 +9034,7 @@ static uint16_t ts_small_parse_table[] = { sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(743), 16, + STATE(749), 16, sym__form, sym_str_lit, sym_sym_lit, @@ -9090,17 +9090,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA_AT, ACTIONS(418), 1, anon_sym_COMMA, - STATE(507), 1, - sym__bare_vec_lit, - STATE(508), 1, + STATE(505), 1, sym__bare_set_lit, - STATE(527), 1, + STATE(536), 1, aux_sym_sym_lit_repeat1, - STATE(584), 1, + STATE(537), 1, + sym__bare_vec_lit, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(761), 1, + STATE(829), 1, sym__metadata_lit, ACTIONS(384), 2, sym__ws, @@ -9112,15 +9112,15 @@ static uint16_t ts_small_parse_table[] = { sym_num_lit, sym_kwd_lit, sym_char_lit, - STATE(192), 3, + STATE(74), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(506), 3, + STATE(472), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(528), 16, + STATE(494), 16, sym__form, sym_str_lit, sym_sym_lit, @@ -9176,17 +9176,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA_AT, ACTIONS(452), 1, anon_sym_COMMA, - STATE(474), 1, + STATE(501), 1, aux_sym_sym_lit_repeat1, - STATE(584), 1, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(757), 1, + STATE(742), 1, sym__bare_set_lit, - STATE(758), 1, + STATE(743), 1, sym__bare_vec_lit, - STATE(761), 1, + STATE(829), 1, sym__metadata_lit, ACTIONS(378), 2, sym__ws, @@ -9202,11 +9202,11 @@ static uint16_t ts_small_parse_table[] = { sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(759), 3, + STATE(744), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(815), 16, + STATE(790), 16, sym__form, sym_str_lit, sym_sym_lit, @@ -9232,52 +9232,52 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(19), 1, anon_sym_POUND_CARET, - ACTIONS(456), 1, + ACTIONS(422), 1, aux_sym_str_lit_token1, - ACTIONS(460), 1, + ACTIONS(426), 1, aux_sym_sym_lit_token1, - ACTIONS(462), 1, + ACTIONS(428), 1, anon_sym_LPAREN, - ACTIONS(464), 1, + ACTIONS(430), 1, anon_sym_POUND0A, - ACTIONS(466), 1, + ACTIONS(432), 1, anon_sym_POUND, - ACTIONS(468), 1, + ACTIONS(434), 1, anon_sym_POUND_QMARK, - ACTIONS(470), 1, + ACTIONS(436), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(472), 1, + ACTIONS(438), 1, anon_sym_POUND_SQUOTE, - ACTIONS(474), 1, + ACTIONS(440), 1, anon_sym_POUND_POUND, - ACTIONS(476), 1, + ACTIONS(442), 1, anon_sym_POUND_EQ, - ACTIONS(478), 1, + ACTIONS(444), 1, anon_sym_AT, - ACTIONS(480), 1, + ACTIONS(446), 1, anon_sym_SQUOTE, - ACTIONS(482), 1, + ACTIONS(448), 1, anon_sym_BQUOTE, - ACTIONS(484), 1, + ACTIONS(450), 1, anon_sym_COMMA_AT, - ACTIONS(486), 1, + ACTIONS(452), 1, anon_sym_COMMA, - STATE(531), 1, + STATE(501), 1, aux_sym_sym_lit_repeat1, - STATE(584), 1, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(631), 1, + STATE(742), 1, sym__bare_set_lit, - STATE(632), 1, + STATE(743), 1, sym__bare_vec_lit, - STATE(761), 1, + STATE(829), 1, sym__metadata_lit, ACTIONS(378), 2, sym__ws, sym_comment, - ACTIONS(458), 2, + ACTIONS(456), 2, sym_nil_lit, sym_fancy_literal, ACTIONS(454), 3, @@ -9288,11 +9288,11 @@ static uint16_t ts_small_parse_table[] = { sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(633), 3, + STATE(744), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(583), 16, + STATE(787), 16, sym__form, sym_str_lit, sym_sym_lit, @@ -9318,55 +9318,55 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(19), 1, anon_sym_POUND_CARET, - ACTIONS(422), 1, + ACTIONS(388), 1, aux_sym_str_lit_token1, - ACTIONS(426), 1, + ACTIONS(392), 1, aux_sym_sym_lit_token1, - ACTIONS(428), 1, + ACTIONS(394), 1, anon_sym_LPAREN, - ACTIONS(430), 1, + ACTIONS(396), 1, anon_sym_POUND0A, - ACTIONS(432), 1, + ACTIONS(398), 1, anon_sym_POUND, - ACTIONS(434), 1, + ACTIONS(400), 1, anon_sym_POUND_QMARK, - ACTIONS(436), 1, + ACTIONS(402), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(438), 1, + ACTIONS(404), 1, anon_sym_POUND_SQUOTE, - ACTIONS(440), 1, + ACTIONS(406), 1, anon_sym_POUND_POUND, - ACTIONS(442), 1, + ACTIONS(408), 1, anon_sym_POUND_EQ, - ACTIONS(444), 1, + ACTIONS(410), 1, anon_sym_AT, - ACTIONS(446), 1, + ACTIONS(412), 1, anon_sym_SQUOTE, - ACTIONS(448), 1, + ACTIONS(414), 1, anon_sym_BQUOTE, - ACTIONS(450), 1, + ACTIONS(416), 1, anon_sym_COMMA_AT, - ACTIONS(452), 1, + ACTIONS(418), 1, anon_sym_COMMA, - STATE(474), 1, + STATE(505), 1, + sym__bare_set_lit, + STATE(536), 1, aux_sym_sym_lit_repeat1, - STATE(584), 1, + STATE(537), 1, + sym__bare_vec_lit, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(757), 1, - sym__bare_set_lit, - STATE(758), 1, - sym__bare_vec_lit, - STATE(761), 1, + STATE(829), 1, sym__metadata_lit, ACTIONS(378), 2, sym__ws, sym_comment, - ACTIONS(490), 2, + ACTIONS(460), 2, sym_nil_lit, sym_fancy_literal, - ACTIONS(488), 3, + ACTIONS(458), 3, sym_num_lit, sym_kwd_lit, sym_char_lit, @@ -9374,11 +9374,11 @@ static uint16_t ts_small_parse_table[] = { sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(759), 3, + STATE(472), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(814), 16, + STATE(539), 16, sym__form, sym_str_lit, sym_sym_lit, @@ -9434,37 +9434,37 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA_AT, ACTIONS(452), 1, anon_sym_COMMA, - STATE(474), 1, + STATE(501), 1, aux_sym_sym_lit_repeat1, - STATE(584), 1, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(757), 1, + STATE(742), 1, sym__bare_set_lit, - STATE(758), 1, + STATE(743), 1, sym__bare_vec_lit, - STATE(761), 1, + STATE(829), 1, sym__metadata_lit, - ACTIONS(378), 2, + ACTIONS(462), 2, sym__ws, sym_comment, - ACTIONS(494), 2, + ACTIONS(466), 2, sym_nil_lit, sym_fancy_literal, - ACTIONS(492), 3, + ACTIONS(464), 3, sym_num_lit, sym_kwd_lit, sym_char_lit, - STATE(448), 3, + STATE(130), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(759), 3, + STATE(744), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(812), 16, + STATE(729), 16, sym__form, sym_str_lit, sym_sym_lit, @@ -9486,71 +9486,71 @@ static uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(11), 1, - aux_sym_str_lit_token1, - ACTIONS(15), 1, - aux_sym_sym_lit_token1, ACTIONS(17), 1, anon_sym_CARET, ACTIONS(19), 1, anon_sym_POUND_CARET, - ACTIONS(21), 1, + ACTIONS(422), 1, + aux_sym_str_lit_token1, + ACTIONS(426), 1, + aux_sym_sym_lit_token1, + ACTIONS(428), 1, anon_sym_LPAREN, - ACTIONS(23), 1, + ACTIONS(430), 1, anon_sym_POUND0A, - ACTIONS(25), 1, + ACTIONS(432), 1, anon_sym_POUND, - ACTIONS(27), 1, + ACTIONS(434), 1, anon_sym_POUND_QMARK, - ACTIONS(29), 1, + ACTIONS(436), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(31), 1, + ACTIONS(438), 1, anon_sym_POUND_SQUOTE, - ACTIONS(33), 1, + ACTIONS(440), 1, anon_sym_POUND_POUND, - ACTIONS(35), 1, + ACTIONS(442), 1, anon_sym_POUND_EQ, - ACTIONS(37), 1, + ACTIONS(444), 1, anon_sym_AT, - ACTIONS(39), 1, + ACTIONS(446), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(448), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(450), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(452), 1, anon_sym_COMMA, - STATE(384), 1, - sym__bare_vec_lit, - STATE(390), 1, - sym__bare_set_lit, - STATE(505), 1, + STATE(501), 1, aux_sym_sym_lit_repeat1, - STATE(584), 1, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(761), 1, + STATE(742), 1, + sym__bare_set_lit, + STATE(743), 1, + sym__bare_vec_lit, + STATE(829), 1, sym__metadata_lit, - ACTIONS(378), 2, + ACTIONS(468), 2, sym__ws, sym_comment, - ACTIONS(498), 2, + ACTIONS(472), 2, sym_nil_lit, sym_fancy_literal, - ACTIONS(496), 3, + ACTIONS(470), 3, sym_num_lit, sym_kwd_lit, sym_char_lit, - STATE(379), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(448), 3, + STATE(117), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(422), 16, + STATE(744), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(730), 16, sym__form, sym_str_lit, sym_sym_lit, @@ -9606,37 +9606,37 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA_AT, ACTIONS(452), 1, anon_sym_COMMA, - STATE(474), 1, + STATE(501), 1, aux_sym_sym_lit_repeat1, - STATE(584), 1, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(757), 1, + STATE(742), 1, sym__bare_set_lit, - STATE(758), 1, + STATE(743), 1, sym__bare_vec_lit, - STATE(761), 1, + STATE(829), 1, sym__metadata_lit, - ACTIONS(378), 2, + ACTIONS(474), 2, sym__ws, sym_comment, - ACTIONS(502), 2, + ACTIONS(478), 2, sym_nil_lit, sym_fancy_literal, - ACTIONS(500), 3, + ACTIONS(476), 3, sym_num_lit, sym_kwd_lit, sym_char_lit, - STATE(448), 3, + STATE(114), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(759), 3, + STATE(744), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(811), 16, + STATE(733), 16, sym__form, sym_str_lit, sym_sym_lit, @@ -9658,71 +9658,71 @@ static uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, + ACTIONS(11), 1, + aux_sym_str_lit_token1, + ACTIONS(15), 1, + aux_sym_sym_lit_token1, ACTIONS(17), 1, anon_sym_CARET, ACTIONS(19), 1, anon_sym_POUND_CARET, - ACTIONS(456), 1, - aux_sym_str_lit_token1, - ACTIONS(460), 1, - aux_sym_sym_lit_token1, - ACTIONS(462), 1, + ACTIONS(21), 1, anon_sym_LPAREN, - ACTIONS(464), 1, + ACTIONS(23), 1, anon_sym_POUND0A, - ACTIONS(466), 1, + ACTIONS(25), 1, anon_sym_POUND, - ACTIONS(468), 1, + ACTIONS(27), 1, anon_sym_POUND_QMARK, - ACTIONS(470), 1, + ACTIONS(29), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(472), 1, + ACTIONS(31), 1, anon_sym_POUND_SQUOTE, - ACTIONS(474), 1, + ACTIONS(33), 1, anon_sym_POUND_POUND, - ACTIONS(476), 1, + ACTIONS(35), 1, anon_sym_POUND_EQ, - ACTIONS(478), 1, + ACTIONS(37), 1, anon_sym_AT, - ACTIONS(480), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(482), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(484), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(486), 1, + ACTIONS(45), 1, anon_sym_COMMA, - STATE(531), 1, + STATE(372), 1, + sym__bare_set_lit, + STATE(375), 1, + sym__bare_vec_lit, + STATE(541), 1, aux_sym_sym_lit_repeat1, - STATE(584), 1, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(631), 1, - sym__bare_set_lit, - STATE(632), 1, - sym__bare_vec_lit, - STATE(761), 1, + STATE(829), 1, sym__metadata_lit, ACTIONS(378), 2, sym__ws, sym_comment, - ACTIONS(506), 2, + ACTIONS(482), 2, sym_nil_lit, sym_fancy_literal, - ACTIONS(504), 3, + ACTIONS(480), 3, sym_num_lit, sym_kwd_lit, sym_char_lit, + STATE(376), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, STATE(448), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(633), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(589), 16, + STATE(423), 16, sym__form, sym_str_lit, sym_sym_lit, @@ -9778,37 +9778,37 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA_AT, ACTIONS(452), 1, anon_sym_COMMA, - STATE(474), 1, + STATE(501), 1, aux_sym_sym_lit_repeat1, - STATE(584), 1, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(757), 1, + STATE(742), 1, sym__bare_set_lit, - STATE(758), 1, + STATE(743), 1, sym__bare_vec_lit, - STATE(761), 1, + STATE(829), 1, sym__metadata_lit, - ACTIONS(508), 2, + ACTIONS(484), 2, sym__ws, sym_comment, - ACTIONS(512), 2, + ACTIONS(488), 2, sym_nil_lit, sym_fancy_literal, - ACTIONS(510), 3, + ACTIONS(486), 3, sym_num_lit, sym_kwd_lit, sym_char_lit, - STATE(78), 3, + STATE(65), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(759), 3, + STATE(744), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(804), 16, + STATE(781), 16, sym__form, sym_str_lit, sym_sym_lit, @@ -9864,37 +9864,37 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA_AT, ACTIONS(452), 1, anon_sym_COMMA, - STATE(474), 1, + STATE(501), 1, aux_sym_sym_lit_repeat1, - STATE(584), 1, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(757), 1, + STATE(742), 1, sym__bare_set_lit, - STATE(758), 1, + STATE(743), 1, sym__bare_vec_lit, - STATE(761), 1, + STATE(829), 1, sym__metadata_lit, - ACTIONS(514), 2, + ACTIONS(490), 2, sym__ws, sym_comment, - ACTIONS(518), 2, + ACTIONS(494), 2, sym_nil_lit, sym_fancy_literal, - ACTIONS(516), 3, + ACTIONS(492), 3, sym_num_lit, sym_kwd_lit, sym_char_lit, - STATE(80), 3, + STATE(66), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(759), 3, + STATE(744), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(791), 16, + STATE(737), 16, sym__form, sym_str_lit, sym_sym_lit, @@ -9916,71 +9916,71 @@ static uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(11), 1, - aux_sym_str_lit_token1, - ACTIONS(15), 1, - aux_sym_sym_lit_token1, ACTIONS(17), 1, anon_sym_CARET, ACTIONS(19), 1, anon_sym_POUND_CARET, - ACTIONS(21), 1, + ACTIONS(388), 1, + aux_sym_str_lit_token1, + ACTIONS(392), 1, + aux_sym_sym_lit_token1, + ACTIONS(394), 1, anon_sym_LPAREN, - ACTIONS(23), 1, + ACTIONS(396), 1, anon_sym_POUND0A, - ACTIONS(25), 1, + ACTIONS(398), 1, anon_sym_POUND, - ACTIONS(27), 1, + ACTIONS(400), 1, anon_sym_POUND_QMARK, - ACTIONS(29), 1, + ACTIONS(402), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(31), 1, + ACTIONS(404), 1, anon_sym_POUND_SQUOTE, - ACTIONS(33), 1, + ACTIONS(406), 1, anon_sym_POUND_POUND, - ACTIONS(35), 1, + ACTIONS(408), 1, anon_sym_POUND_EQ, - ACTIONS(37), 1, + ACTIONS(410), 1, anon_sym_AT, - ACTIONS(39), 1, + ACTIONS(412), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(414), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(416), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(418), 1, anon_sym_COMMA, - STATE(384), 1, - sym__bare_vec_lit, - STATE(390), 1, - sym__bare_set_lit, STATE(505), 1, + sym__bare_set_lit, + STATE(536), 1, aux_sym_sym_lit_repeat1, - STATE(584), 1, + STATE(537), 1, + sym__bare_vec_lit, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(761), 1, + STATE(829), 1, sym__metadata_lit, ACTIONS(378), 2, sym__ws, sym_comment, - ACTIONS(522), 2, + ACTIONS(498), 2, sym_nil_lit, sym_fancy_literal, - ACTIONS(520), 3, + ACTIONS(496), 3, sym_num_lit, sym_kwd_lit, sym_char_lit, - STATE(379), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, STATE(448), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(417), 16, + STATE(472), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(470), 16, sym__form, sym_str_lit, sym_sym_lit, @@ -10006,67 +10006,67 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(19), 1, anon_sym_POUND_CARET, - ACTIONS(422), 1, + ACTIONS(388), 1, aux_sym_str_lit_token1, - ACTIONS(426), 1, + ACTIONS(392), 1, aux_sym_sym_lit_token1, - ACTIONS(428), 1, + ACTIONS(394), 1, anon_sym_LPAREN, - ACTIONS(430), 1, + ACTIONS(396), 1, anon_sym_POUND0A, - ACTIONS(432), 1, + ACTIONS(398), 1, anon_sym_POUND, - ACTIONS(434), 1, + ACTIONS(400), 1, anon_sym_POUND_QMARK, - ACTIONS(436), 1, + ACTIONS(402), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(438), 1, + ACTIONS(404), 1, anon_sym_POUND_SQUOTE, - ACTIONS(440), 1, + ACTIONS(406), 1, anon_sym_POUND_POUND, - ACTIONS(442), 1, + ACTIONS(408), 1, anon_sym_POUND_EQ, - ACTIONS(444), 1, + ACTIONS(410), 1, anon_sym_AT, - ACTIONS(446), 1, + ACTIONS(412), 1, anon_sym_SQUOTE, - ACTIONS(448), 1, + ACTIONS(414), 1, anon_sym_BQUOTE, - ACTIONS(450), 1, + ACTIONS(416), 1, anon_sym_COMMA_AT, - ACTIONS(452), 1, + ACTIONS(418), 1, anon_sym_COMMA, - STATE(474), 1, + STATE(505), 1, + sym__bare_set_lit, + STATE(536), 1, aux_sym_sym_lit_repeat1, - STATE(584), 1, + STATE(537), 1, + sym__bare_vec_lit, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(757), 1, - sym__bare_set_lit, - STATE(758), 1, - sym__bare_vec_lit, - STATE(761), 1, + STATE(829), 1, sym__metadata_lit, - ACTIONS(524), 2, + ACTIONS(378), 2, sym__ws, sym_comment, - ACTIONS(528), 2, + ACTIONS(502), 2, sym_nil_lit, sym_fancy_literal, - ACTIONS(526), 3, + ACTIONS(500), 3, sym_num_lit, sym_kwd_lit, sym_char_lit, - STATE(82), 3, + STATE(448), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(759), 3, + STATE(472), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(790), 16, + STATE(502), 16, sym__form, sym_str_lit, sym_sym_lit, @@ -10088,71 +10088,71 @@ static uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(11), 1, - aux_sym_str_lit_token1, - ACTIONS(15), 1, - aux_sym_sym_lit_token1, ACTIONS(17), 1, anon_sym_CARET, ACTIONS(19), 1, anon_sym_POUND_CARET, - ACTIONS(21), 1, + ACTIONS(388), 1, + aux_sym_str_lit_token1, + ACTIONS(392), 1, + aux_sym_sym_lit_token1, + ACTIONS(394), 1, anon_sym_LPAREN, - ACTIONS(23), 1, + ACTIONS(396), 1, anon_sym_POUND0A, - ACTIONS(25), 1, + ACTIONS(398), 1, anon_sym_POUND, - ACTIONS(27), 1, + ACTIONS(400), 1, anon_sym_POUND_QMARK, - ACTIONS(29), 1, + ACTIONS(402), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(31), 1, + ACTIONS(404), 1, anon_sym_POUND_SQUOTE, - ACTIONS(33), 1, + ACTIONS(406), 1, anon_sym_POUND_POUND, - ACTIONS(35), 1, + ACTIONS(408), 1, anon_sym_POUND_EQ, - ACTIONS(37), 1, + ACTIONS(410), 1, anon_sym_AT, - ACTIONS(39), 1, + ACTIONS(412), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(414), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(416), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(418), 1, anon_sym_COMMA, - STATE(384), 1, - sym__bare_vec_lit, - STATE(390), 1, - sym__bare_set_lit, STATE(505), 1, + sym__bare_set_lit, + STATE(536), 1, aux_sym_sym_lit_repeat1, - STATE(584), 1, + STATE(537), 1, + sym__bare_vec_lit, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(761), 1, + STATE(829), 1, sym__metadata_lit, ACTIONS(378), 2, sym__ws, sym_comment, - ACTIONS(532), 2, + ACTIONS(506), 2, sym_nil_lit, sym_fancy_literal, - ACTIONS(530), 3, + ACTIONS(504), 3, sym_num_lit, sym_kwd_lit, sym_char_lit, - STATE(379), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, STATE(448), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(368), 16, + STATE(472), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(499), 16, sym__form, sym_str_lit, sym_sym_lit, @@ -10174,71 +10174,71 @@ static uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, + ACTIONS(11), 1, + aux_sym_str_lit_token1, + ACTIONS(15), 1, + aux_sym_sym_lit_token1, ACTIONS(17), 1, anon_sym_CARET, ACTIONS(19), 1, anon_sym_POUND_CARET, - ACTIONS(422), 1, - aux_sym_str_lit_token1, - ACTIONS(426), 1, - aux_sym_sym_lit_token1, - ACTIONS(428), 1, + ACTIONS(21), 1, anon_sym_LPAREN, - ACTIONS(430), 1, + ACTIONS(23), 1, anon_sym_POUND0A, - ACTIONS(432), 1, + ACTIONS(25), 1, anon_sym_POUND, - ACTIONS(434), 1, + ACTIONS(27), 1, anon_sym_POUND_QMARK, - ACTIONS(436), 1, + ACTIONS(29), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(438), 1, + ACTIONS(31), 1, anon_sym_POUND_SQUOTE, - ACTIONS(440), 1, + ACTIONS(33), 1, anon_sym_POUND_POUND, - ACTIONS(442), 1, + ACTIONS(35), 1, anon_sym_POUND_EQ, - ACTIONS(444), 1, + ACTIONS(37), 1, anon_sym_AT, - ACTIONS(446), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(448), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(450), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(452), 1, + ACTIONS(45), 1, anon_sym_COMMA, - STATE(474), 1, + STATE(372), 1, + sym__bare_set_lit, + STATE(375), 1, + sym__bare_vec_lit, + STATE(541), 1, aux_sym_sym_lit_repeat1, - STATE(584), 1, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(757), 1, - sym__bare_set_lit, - STATE(758), 1, - sym__bare_vec_lit, - STATE(761), 1, + STATE(829), 1, sym__metadata_lit, - ACTIONS(534), 2, + ACTIONS(378), 2, sym__ws, sym_comment, - ACTIONS(538), 2, + ACTIONS(510), 2, sym_nil_lit, sym_fancy_literal, - ACTIONS(536), 3, + ACTIONS(508), 3, sym_num_lit, sym_kwd_lit, sym_char_lit, - STATE(83), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(759), 3, + STATE(376), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(789), 16, + STATE(448), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(428), 16, sym__form, sym_str_lit, sym_sym_lit, @@ -10264,55 +10264,55 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(19), 1, anon_sym_POUND_CARET, - ACTIONS(422), 1, + ACTIONS(388), 1, aux_sym_str_lit_token1, - ACTIONS(426), 1, + ACTIONS(392), 1, aux_sym_sym_lit_token1, - ACTIONS(428), 1, + ACTIONS(394), 1, anon_sym_LPAREN, - ACTIONS(430), 1, + ACTIONS(396), 1, anon_sym_POUND0A, - ACTIONS(432), 1, + ACTIONS(398), 1, anon_sym_POUND, - ACTIONS(434), 1, + ACTIONS(400), 1, anon_sym_POUND_QMARK, - ACTIONS(436), 1, + ACTIONS(402), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(438), 1, + ACTIONS(404), 1, anon_sym_POUND_SQUOTE, - ACTIONS(440), 1, + ACTIONS(406), 1, anon_sym_POUND_POUND, - ACTIONS(442), 1, + ACTIONS(408), 1, anon_sym_POUND_EQ, - ACTIONS(444), 1, + ACTIONS(410), 1, anon_sym_AT, - ACTIONS(446), 1, + ACTIONS(412), 1, anon_sym_SQUOTE, - ACTIONS(448), 1, + ACTIONS(414), 1, anon_sym_BQUOTE, - ACTIONS(450), 1, + ACTIONS(416), 1, anon_sym_COMMA_AT, - ACTIONS(452), 1, + ACTIONS(418), 1, anon_sym_COMMA, - STATE(474), 1, + STATE(505), 1, + sym__bare_set_lit, + STATE(536), 1, aux_sym_sym_lit_repeat1, - STATE(584), 1, + STATE(537), 1, + sym__bare_vec_lit, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(757), 1, - sym__bare_set_lit, - STATE(758), 1, - sym__bare_vec_lit, - STATE(761), 1, + STATE(829), 1, sym__metadata_lit, ACTIONS(378), 2, sym__ws, sym_comment, - ACTIONS(542), 2, + ACTIONS(514), 2, sym_nil_lit, sym_fancy_literal, - ACTIONS(540), 3, + ACTIONS(512), 3, sym_num_lit, sym_kwd_lit, sym_char_lit, @@ -10320,11 +10320,11 @@ static uint16_t ts_small_parse_table[] = { sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(759), 3, + STATE(472), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(780), 16, + STATE(487), 16, sym__form, sym_str_lit, sym_sym_lit, @@ -10380,29 +10380,29 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA_AT, ACTIONS(45), 1, anon_sym_COMMA, - STATE(384), 1, - sym__bare_vec_lit, - STATE(390), 1, + STATE(372), 1, sym__bare_set_lit, - STATE(505), 1, + STATE(375), 1, + sym__bare_vec_lit, + STATE(541), 1, aux_sym_sym_lit_repeat1, - STATE(584), 1, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(761), 1, + STATE(829), 1, sym__metadata_lit, ACTIONS(378), 2, sym__ws, sym_comment, - ACTIONS(546), 2, + ACTIONS(518), 2, sym_nil_lit, sym_fancy_literal, - ACTIONS(544), 3, + ACTIONS(516), 3, sym_num_lit, sym_kwd_lit, sym_char_lit, - STATE(379), 3, + STATE(376), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, @@ -10410,7 +10410,7 @@ static uint16_t ts_small_parse_table[] = { sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(414), 16, + STATE(369), 16, sym__form, sym_str_lit, sym_sym_lit, @@ -10436,55 +10436,55 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(19), 1, anon_sym_POUND_CARET, - ACTIONS(422), 1, + ACTIONS(522), 1, aux_sym_str_lit_token1, - ACTIONS(426), 1, + ACTIONS(526), 1, aux_sym_sym_lit_token1, - ACTIONS(428), 1, + ACTIONS(528), 1, anon_sym_LPAREN, - ACTIONS(430), 1, + ACTIONS(530), 1, anon_sym_POUND0A, - ACTIONS(432), 1, + ACTIONS(532), 1, anon_sym_POUND, - ACTIONS(434), 1, + ACTIONS(534), 1, anon_sym_POUND_QMARK, - ACTIONS(436), 1, + ACTIONS(536), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(438), 1, + ACTIONS(538), 1, anon_sym_POUND_SQUOTE, - ACTIONS(440), 1, + ACTIONS(540), 1, anon_sym_POUND_POUND, - ACTIONS(442), 1, + ACTIONS(542), 1, anon_sym_POUND_EQ, - ACTIONS(444), 1, + ACTIONS(544), 1, anon_sym_AT, - ACTIONS(446), 1, + ACTIONS(546), 1, anon_sym_SQUOTE, - ACTIONS(448), 1, + ACTIONS(548), 1, anon_sym_BQUOTE, - ACTIONS(450), 1, + ACTIONS(550), 1, anon_sym_COMMA_AT, - ACTIONS(452), 1, + ACTIONS(552), 1, anon_sym_COMMA, - STATE(474), 1, + STATE(528), 1, aux_sym_sym_lit_repeat1, - STATE(584), 1, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(757), 1, + STATE(614), 1, sym__bare_set_lit, - STATE(758), 1, + STATE(631), 1, sym__bare_vec_lit, - STATE(761), 1, + STATE(829), 1, sym__metadata_lit, ACTIONS(378), 2, sym__ws, sym_comment, - ACTIONS(550), 2, + ACTIONS(524), 2, sym_nil_lit, sym_fancy_literal, - ACTIONS(548), 3, + ACTIONS(520), 3, sym_num_lit, sym_kwd_lit, sym_char_lit, @@ -10492,11 +10492,11 @@ static uint16_t ts_small_parse_table[] = { sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(759), 3, + STATE(635), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(775), 16, + STATE(585), 16, sym__form, sym_str_lit, sym_sym_lit, @@ -10518,71 +10518,71 @@ static uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(11), 1, - aux_sym_str_lit_token1, - ACTIONS(15), 1, - aux_sym_sym_lit_token1, ACTIONS(17), 1, anon_sym_CARET, ACTIONS(19), 1, anon_sym_POUND_CARET, - ACTIONS(21), 1, + ACTIONS(522), 1, + aux_sym_str_lit_token1, + ACTIONS(526), 1, + aux_sym_sym_lit_token1, + ACTIONS(528), 1, anon_sym_LPAREN, - ACTIONS(23), 1, + ACTIONS(530), 1, anon_sym_POUND0A, - ACTIONS(25), 1, + ACTIONS(532), 1, anon_sym_POUND, - ACTIONS(27), 1, + ACTIONS(534), 1, anon_sym_POUND_QMARK, - ACTIONS(29), 1, + ACTIONS(536), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(31), 1, + ACTIONS(538), 1, anon_sym_POUND_SQUOTE, - ACTIONS(33), 1, + ACTIONS(540), 1, anon_sym_POUND_POUND, - ACTIONS(35), 1, + ACTIONS(542), 1, anon_sym_POUND_EQ, - ACTIONS(37), 1, + ACTIONS(544), 1, anon_sym_AT, - ACTIONS(39), 1, + ACTIONS(546), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(548), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(550), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(552), 1, anon_sym_COMMA, - STATE(384), 1, - sym__bare_vec_lit, - STATE(390), 1, - sym__bare_set_lit, - STATE(505), 1, + STATE(528), 1, aux_sym_sym_lit_repeat1, - STATE(584), 1, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(761), 1, + STATE(614), 1, + sym__bare_set_lit, + STATE(631), 1, + sym__bare_vec_lit, + STATE(829), 1, sym__metadata_lit, ACTIONS(378), 2, sym__ws, sym_comment, - ACTIONS(554), 2, + ACTIONS(556), 2, sym_nil_lit, sym_fancy_literal, - ACTIONS(552), 3, + ACTIONS(554), 3, sym_num_lit, sym_kwd_lit, sym_char_lit, - STATE(379), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, STATE(448), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(412), 16, + STATE(635), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(586), 16, sym__form, sym_str_lit, sym_sym_lit, @@ -10604,71 +10604,71 @@ static uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, + ACTIONS(11), 1, + aux_sym_str_lit_token1, + ACTIONS(15), 1, + aux_sym_sym_lit_token1, ACTIONS(17), 1, anon_sym_CARET, ACTIONS(19), 1, anon_sym_POUND_CARET, - ACTIONS(422), 1, - aux_sym_str_lit_token1, - ACTIONS(426), 1, - aux_sym_sym_lit_token1, - ACTIONS(428), 1, + ACTIONS(21), 1, anon_sym_LPAREN, - ACTIONS(430), 1, + ACTIONS(23), 1, anon_sym_POUND0A, - ACTIONS(432), 1, + ACTIONS(25), 1, anon_sym_POUND, - ACTIONS(434), 1, + ACTIONS(27), 1, anon_sym_POUND_QMARK, - ACTIONS(436), 1, + ACTIONS(29), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(438), 1, + ACTIONS(31), 1, anon_sym_POUND_SQUOTE, - ACTIONS(440), 1, + ACTIONS(33), 1, anon_sym_POUND_POUND, - ACTIONS(442), 1, + ACTIONS(35), 1, anon_sym_POUND_EQ, - ACTIONS(444), 1, + ACTIONS(37), 1, anon_sym_AT, - ACTIONS(446), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(448), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(450), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(452), 1, + ACTIONS(45), 1, anon_sym_COMMA, - STATE(474), 1, + STATE(372), 1, + sym__bare_set_lit, + STATE(375), 1, + sym__bare_vec_lit, + STATE(541), 1, aux_sym_sym_lit_repeat1, - STATE(584), 1, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(757), 1, - sym__bare_set_lit, - STATE(758), 1, - sym__bare_vec_lit, - STATE(761), 1, + STATE(829), 1, sym__metadata_lit, ACTIONS(378), 2, sym__ws, sym_comment, - ACTIONS(558), 2, + ACTIONS(560), 2, sym_nil_lit, sym_fancy_literal, - ACTIONS(556), 3, + ACTIONS(558), 3, sym_num_lit, sym_kwd_lit, sym_char_lit, + STATE(376), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, STATE(448), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(759), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(774), 16, + STATE(415), 16, sym__form, sym_str_lit, sym_sym_lit, @@ -10694,55 +10694,55 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(19), 1, anon_sym_POUND_CARET, - ACTIONS(422), 1, + ACTIONS(522), 1, aux_sym_str_lit_token1, - ACTIONS(426), 1, + ACTIONS(526), 1, aux_sym_sym_lit_token1, - ACTIONS(428), 1, + ACTIONS(528), 1, anon_sym_LPAREN, - ACTIONS(430), 1, + ACTIONS(530), 1, anon_sym_POUND0A, - ACTIONS(432), 1, + ACTIONS(532), 1, anon_sym_POUND, - ACTIONS(434), 1, + ACTIONS(534), 1, anon_sym_POUND_QMARK, - ACTIONS(436), 1, + ACTIONS(536), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(438), 1, + ACTIONS(538), 1, anon_sym_POUND_SQUOTE, - ACTIONS(440), 1, + ACTIONS(540), 1, anon_sym_POUND_POUND, - ACTIONS(442), 1, + ACTIONS(542), 1, anon_sym_POUND_EQ, - ACTIONS(444), 1, + ACTIONS(544), 1, anon_sym_AT, - ACTIONS(446), 1, + ACTIONS(546), 1, anon_sym_SQUOTE, - ACTIONS(448), 1, + ACTIONS(548), 1, anon_sym_BQUOTE, - ACTIONS(450), 1, + ACTIONS(550), 1, anon_sym_COMMA_AT, - ACTIONS(452), 1, + ACTIONS(552), 1, anon_sym_COMMA, - STATE(474), 1, + STATE(528), 1, aux_sym_sym_lit_repeat1, - STATE(584), 1, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(757), 1, + STATE(614), 1, sym__bare_set_lit, - STATE(758), 1, + STATE(631), 1, sym__bare_vec_lit, - STATE(761), 1, + STATE(829), 1, sym__metadata_lit, ACTIONS(378), 2, sym__ws, sym_comment, - ACTIONS(562), 2, + ACTIONS(564), 2, sym_nil_lit, sym_fancy_literal, - ACTIONS(560), 3, + ACTIONS(562), 3, sym_num_lit, sym_kwd_lit, sym_char_lit, @@ -10750,11 +10750,11 @@ static uint16_t ts_small_parse_table[] = { sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(759), 3, + STATE(635), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(773), 16, + STATE(587), 16, sym__form, sym_str_lit, sym_sym_lit, @@ -10776,71 +10776,71 @@ static uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, + ACTIONS(11), 1, + aux_sym_str_lit_token1, + ACTIONS(15), 1, + aux_sym_sym_lit_token1, ACTIONS(17), 1, anon_sym_CARET, ACTIONS(19), 1, anon_sym_POUND_CARET, - ACTIONS(568), 1, - aux_sym_str_lit_token1, - ACTIONS(572), 1, - aux_sym_sym_lit_token1, - ACTIONS(574), 1, + ACTIONS(21), 1, anon_sym_LPAREN, - ACTIONS(576), 1, + ACTIONS(23), 1, anon_sym_POUND0A, - ACTIONS(578), 1, + ACTIONS(25), 1, anon_sym_POUND, - ACTIONS(580), 1, + ACTIONS(27), 1, anon_sym_POUND_QMARK, - ACTIONS(582), 1, + ACTIONS(29), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(584), 1, + ACTIONS(31), 1, anon_sym_POUND_SQUOTE, - ACTIONS(586), 1, + ACTIONS(33), 1, anon_sym_POUND_POUND, - ACTIONS(588), 1, + ACTIONS(35), 1, anon_sym_POUND_EQ, - ACTIONS(590), 1, + ACTIONS(37), 1, anon_sym_AT, - ACTIONS(592), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(594), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(596), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(598), 1, + ACTIONS(45), 1, anon_sym_COMMA, - STATE(246), 1, - sym__bare_vec_lit, - STATE(247), 1, + STATE(372), 1, sym__bare_set_lit, - STATE(478), 1, + STATE(375), 1, + sym__bare_vec_lit, + STATE(541), 1, aux_sym_sym_lit_repeat1, - STATE(584), 1, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(761), 1, + STATE(829), 1, sym__metadata_lit, - ACTIONS(564), 2, + ACTIONS(378), 2, sym__ws, sym_comment, - ACTIONS(570), 2, + ACTIONS(568), 2, sym_nil_lit, sym_fancy_literal, ACTIONS(566), 3, sym_num_lit, sym_kwd_lit, sym_char_lit, - STATE(106), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(245), 3, + STATE(376), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(252), 16, + STATE(448), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(412), 16, sym__form, sym_str_lit, sym_sym_lit, @@ -10862,71 +10862,71 @@ static uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(11), 1, - aux_sym_str_lit_token1, - ACTIONS(15), 1, - aux_sym_sym_lit_token1, ACTIONS(17), 1, anon_sym_CARET, ACTIONS(19), 1, anon_sym_POUND_CARET, - ACTIONS(21), 1, + ACTIONS(522), 1, + aux_sym_str_lit_token1, + ACTIONS(526), 1, + aux_sym_sym_lit_token1, + ACTIONS(528), 1, anon_sym_LPAREN, - ACTIONS(23), 1, + ACTIONS(530), 1, anon_sym_POUND0A, - ACTIONS(25), 1, + ACTIONS(532), 1, anon_sym_POUND, - ACTIONS(27), 1, + ACTIONS(534), 1, anon_sym_POUND_QMARK, - ACTIONS(29), 1, + ACTIONS(536), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(31), 1, + ACTIONS(538), 1, anon_sym_POUND_SQUOTE, - ACTIONS(33), 1, + ACTIONS(540), 1, anon_sym_POUND_POUND, - ACTIONS(35), 1, + ACTIONS(542), 1, anon_sym_POUND_EQ, - ACTIONS(37), 1, + ACTIONS(544), 1, anon_sym_AT, - ACTIONS(39), 1, + ACTIONS(546), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(548), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(550), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(552), 1, anon_sym_COMMA, - STATE(384), 1, - sym__bare_vec_lit, - STATE(390), 1, - sym__bare_set_lit, - STATE(505), 1, + STATE(528), 1, aux_sym_sym_lit_repeat1, - STATE(584), 1, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(761), 1, + STATE(614), 1, + sym__bare_set_lit, + STATE(631), 1, + sym__bare_vec_lit, + STATE(829), 1, sym__metadata_lit, - ACTIONS(600), 2, + ACTIONS(378), 2, sym__ws, sym_comment, - ACTIONS(604), 2, + ACTIONS(572), 2, sym_nil_lit, sym_fancy_literal, - ACTIONS(602), 3, + ACTIONS(570), 3, sym_num_lit, sym_kwd_lit, sym_char_lit, - STATE(132), 3, + STATE(448), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(379), 3, + STATE(635), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(380), 16, + STATE(591), 16, sym__form, sym_str_lit, sym_sym_lit, @@ -10952,67 +10952,67 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(19), 1, anon_sym_POUND_CARET, - ACTIONS(568), 1, + ACTIONS(578), 1, aux_sym_str_lit_token1, - ACTIONS(572), 1, + ACTIONS(582), 1, aux_sym_sym_lit_token1, - ACTIONS(574), 1, + ACTIONS(584), 1, anon_sym_LPAREN, - ACTIONS(576), 1, + ACTIONS(586), 1, anon_sym_POUND0A, - ACTIONS(578), 1, + ACTIONS(588), 1, anon_sym_POUND, - ACTIONS(580), 1, + ACTIONS(590), 1, anon_sym_POUND_QMARK, - ACTIONS(582), 1, + ACTIONS(592), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(584), 1, + ACTIONS(594), 1, anon_sym_POUND_SQUOTE, - ACTIONS(586), 1, + ACTIONS(596), 1, anon_sym_POUND_POUND, - ACTIONS(588), 1, + ACTIONS(598), 1, anon_sym_POUND_EQ, - ACTIONS(590), 1, + ACTIONS(600), 1, anon_sym_AT, - ACTIONS(592), 1, + ACTIONS(602), 1, anon_sym_SQUOTE, - ACTIONS(594), 1, + ACTIONS(604), 1, anon_sym_BQUOTE, - ACTIONS(596), 1, + ACTIONS(606), 1, anon_sym_COMMA_AT, - ACTIONS(598), 1, + ACTIONS(608), 1, anon_sym_COMMA, STATE(246), 1, sym__bare_vec_lit, STATE(247), 1, sym__bare_set_lit, - STATE(478), 1, + STATE(510), 1, aux_sym_sym_lit_repeat1, - STATE(584), 1, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(761), 1, + STATE(829), 1, sym__metadata_lit, - ACTIONS(606), 2, + ACTIONS(574), 2, sym__ws, sym_comment, - ACTIONS(610), 2, + ACTIONS(580), 2, sym_nil_lit, sym_fancy_literal, - ACTIONS(608), 3, + ACTIONS(576), 3, sym_num_lit, sym_kwd_lit, sym_char_lit, - STATE(110), 3, + STATE(108), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(245), 3, + STATE(244), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(255), 16, + STATE(252), 16, sym__form, sym_str_lit, sym_sym_lit, @@ -11068,37 +11068,37 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA_AT, ACTIONS(45), 1, anon_sym_COMMA, - STATE(384), 1, - sym__bare_vec_lit, - STATE(390), 1, + STATE(372), 1, sym__bare_set_lit, - STATE(505), 1, + STATE(375), 1, + sym__bare_vec_lit, + STATE(541), 1, aux_sym_sym_lit_repeat1, - STATE(584), 1, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(761), 1, + STATE(829), 1, sym__metadata_lit, - ACTIONS(612), 2, + ACTIONS(610), 2, sym__ws, sym_comment, - ACTIONS(616), 2, + ACTIONS(614), 2, sym_nil_lit, sym_fancy_literal, - ACTIONS(614), 3, + ACTIONS(612), 3, sym_num_lit, sym_kwd_lit, sym_char_lit, - STATE(138), 3, + STATE(132), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(379), 3, + STATE(376), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(451), 16, + STATE(382), 16, sym__form, sym_str_lit, sym_sym_lit, @@ -11120,71 +11120,71 @@ static uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(11), 1, - aux_sym_str_lit_token1, - ACTIONS(15), 1, - aux_sym_sym_lit_token1, ACTIONS(17), 1, anon_sym_CARET, ACTIONS(19), 1, anon_sym_POUND_CARET, - ACTIONS(21), 1, + ACTIONS(578), 1, + aux_sym_str_lit_token1, + ACTIONS(582), 1, + aux_sym_sym_lit_token1, + ACTIONS(584), 1, anon_sym_LPAREN, - ACTIONS(23), 1, + ACTIONS(586), 1, anon_sym_POUND0A, - ACTIONS(25), 1, + ACTIONS(588), 1, anon_sym_POUND, - ACTIONS(27), 1, + ACTIONS(590), 1, anon_sym_POUND_QMARK, - ACTIONS(29), 1, + ACTIONS(592), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(31), 1, + ACTIONS(594), 1, anon_sym_POUND_SQUOTE, - ACTIONS(33), 1, + ACTIONS(596), 1, anon_sym_POUND_POUND, - ACTIONS(35), 1, + ACTIONS(598), 1, anon_sym_POUND_EQ, - ACTIONS(37), 1, + ACTIONS(600), 1, anon_sym_AT, - ACTIONS(39), 1, + ACTIONS(602), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(604), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(606), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(608), 1, anon_sym_COMMA, - STATE(384), 1, + STATE(246), 1, sym__bare_vec_lit, - STATE(390), 1, + STATE(247), 1, sym__bare_set_lit, - STATE(505), 1, + STATE(510), 1, aux_sym_sym_lit_repeat1, - STATE(584), 1, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(761), 1, + STATE(829), 1, sym__metadata_lit, - ACTIONS(618), 2, + ACTIONS(616), 2, sym__ws, sym_comment, - ACTIONS(622), 2, + ACTIONS(620), 2, sym_nil_lit, sym_fancy_literal, - ACTIONS(620), 3, + ACTIONS(618), 3, sym_num_lit, sym_kwd_lit, sym_char_lit, - STATE(140), 3, + STATE(112), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(379), 3, + STATE(244), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(371), 16, + STATE(255), 16, sym__form, sym_str_lit, sym_sym_lit, @@ -11240,37 +11240,37 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA_AT, ACTIONS(45), 1, anon_sym_COMMA, - STATE(384), 1, - sym__bare_vec_lit, - STATE(390), 1, + STATE(372), 1, sym__bare_set_lit, - STATE(505), 1, + STATE(375), 1, + sym__bare_vec_lit, + STATE(541), 1, aux_sym_sym_lit_repeat1, - STATE(584), 1, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(761), 1, + STATE(829), 1, sym__metadata_lit, - ACTIONS(624), 2, + ACTIONS(622), 2, sym__ws, sym_comment, - ACTIONS(628), 2, + ACTIONS(626), 2, sym_nil_lit, sym_fancy_literal, - ACTIONS(626), 3, + ACTIONS(624), 3, sym_num_lit, sym_kwd_lit, sym_char_lit, - STATE(142), 3, + STATE(138), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(379), 3, + STATE(376), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(373), 16, + STATE(418), 16, sym__form, sym_str_lit, sym_sym_lit, @@ -11292,71 +11292,71 @@ static uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, + ACTIONS(11), 1, + aux_sym_str_lit_token1, + ACTIONS(15), 1, + aux_sym_sym_lit_token1, ACTIONS(17), 1, anon_sym_CARET, ACTIONS(19), 1, anon_sym_POUND_CARET, - ACTIONS(568), 1, - aux_sym_str_lit_token1, - ACTIONS(572), 1, - aux_sym_sym_lit_token1, - ACTIONS(574), 1, + ACTIONS(21), 1, anon_sym_LPAREN, - ACTIONS(576), 1, + ACTIONS(23), 1, anon_sym_POUND0A, - ACTIONS(578), 1, + ACTIONS(25), 1, anon_sym_POUND, - ACTIONS(580), 1, + ACTIONS(27), 1, anon_sym_POUND_QMARK, - ACTIONS(582), 1, + ACTIONS(29), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(584), 1, + ACTIONS(31), 1, anon_sym_POUND_SQUOTE, - ACTIONS(586), 1, + ACTIONS(33), 1, anon_sym_POUND_POUND, - ACTIONS(588), 1, + ACTIONS(35), 1, anon_sym_POUND_EQ, - ACTIONS(590), 1, + ACTIONS(37), 1, anon_sym_AT, - ACTIONS(592), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(594), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(596), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(598), 1, + ACTIONS(45), 1, anon_sym_COMMA, - STATE(246), 1, - sym__bare_vec_lit, - STATE(247), 1, + STATE(372), 1, sym__bare_set_lit, - STATE(478), 1, + STATE(375), 1, + sym__bare_vec_lit, + STATE(541), 1, aux_sym_sym_lit_repeat1, - STATE(584), 1, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(761), 1, + STATE(829), 1, sym__metadata_lit, - ACTIONS(630), 2, + ACTIONS(628), 2, sym__ws, sym_comment, - ACTIONS(634), 2, + ACTIONS(632), 2, sym_nil_lit, sym_fancy_literal, - ACTIONS(632), 3, + ACTIONS(630), 3, sym_num_lit, sym_kwd_lit, sym_char_lit, - STATE(115), 3, + STATE(140), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(245), 3, + STATE(376), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(256), 16, + STATE(371), 16, sym__form, sym_str_lit, sym_sym_lit, @@ -11378,71 +11378,71 @@ static uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, + ACTIONS(11), 1, + aux_sym_str_lit_token1, + ACTIONS(15), 1, + aux_sym_sym_lit_token1, ACTIONS(17), 1, anon_sym_CARET, ACTIONS(19), 1, anon_sym_POUND_CARET, - ACTIONS(568), 1, - aux_sym_str_lit_token1, - ACTIONS(572), 1, - aux_sym_sym_lit_token1, - ACTIONS(574), 1, + ACTIONS(21), 1, anon_sym_LPAREN, - ACTIONS(576), 1, + ACTIONS(23), 1, anon_sym_POUND0A, - ACTIONS(578), 1, + ACTIONS(25), 1, anon_sym_POUND, - ACTIONS(580), 1, + ACTIONS(27), 1, anon_sym_POUND_QMARK, - ACTIONS(582), 1, + ACTIONS(29), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(584), 1, + ACTIONS(31), 1, anon_sym_POUND_SQUOTE, - ACTIONS(586), 1, + ACTIONS(33), 1, anon_sym_POUND_POUND, - ACTIONS(588), 1, + ACTIONS(35), 1, anon_sym_POUND_EQ, - ACTIONS(590), 1, + ACTIONS(37), 1, anon_sym_AT, - ACTIONS(592), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(594), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(596), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(598), 1, + ACTIONS(45), 1, anon_sym_COMMA, - STATE(246), 1, - sym__bare_vec_lit, - STATE(247), 1, + STATE(372), 1, sym__bare_set_lit, - STATE(478), 1, + STATE(375), 1, + sym__bare_vec_lit, + STATE(541), 1, aux_sym_sym_lit_repeat1, - STATE(584), 1, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(761), 1, + STATE(829), 1, sym__metadata_lit, - ACTIONS(636), 2, + ACTIONS(634), 2, sym__ws, sym_comment, - ACTIONS(640), 2, + ACTIONS(638), 2, sym_nil_lit, sym_fancy_literal, - ACTIONS(638), 3, + ACTIONS(636), 3, sym_num_lit, sym_kwd_lit, sym_char_lit, - STATE(116), 3, + STATE(142), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(245), 3, + STATE(376), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(258), 16, + STATE(373), 16, sym__form, sym_str_lit, sym_sym_lit, @@ -11468,67 +11468,67 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(19), 1, anon_sym_POUND_CARET, - ACTIONS(568), 1, + ACTIONS(578), 1, aux_sym_str_lit_token1, - ACTIONS(572), 1, + ACTIONS(582), 1, aux_sym_sym_lit_token1, - ACTIONS(574), 1, + ACTIONS(584), 1, anon_sym_LPAREN, - ACTIONS(576), 1, + ACTIONS(586), 1, anon_sym_POUND0A, - ACTIONS(578), 1, + ACTIONS(588), 1, anon_sym_POUND, - ACTIONS(580), 1, + ACTIONS(590), 1, anon_sym_POUND_QMARK, - ACTIONS(582), 1, + ACTIONS(592), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(584), 1, + ACTIONS(594), 1, anon_sym_POUND_SQUOTE, - ACTIONS(586), 1, + ACTIONS(596), 1, anon_sym_POUND_POUND, - ACTIONS(588), 1, + ACTIONS(598), 1, anon_sym_POUND_EQ, - ACTIONS(590), 1, + ACTIONS(600), 1, anon_sym_AT, - ACTIONS(592), 1, + ACTIONS(602), 1, anon_sym_SQUOTE, - ACTIONS(594), 1, + ACTIONS(604), 1, anon_sym_BQUOTE, - ACTIONS(596), 1, + ACTIONS(606), 1, anon_sym_COMMA_AT, - ACTIONS(598), 1, + ACTIONS(608), 1, anon_sym_COMMA, STATE(246), 1, sym__bare_vec_lit, STATE(247), 1, sym__bare_set_lit, - STATE(478), 1, + STATE(510), 1, aux_sym_sym_lit_repeat1, - STATE(584), 1, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(761), 1, + STATE(829), 1, sym__metadata_lit, - ACTIONS(642), 2, + ACTIONS(640), 2, sym__ws, sym_comment, - ACTIONS(646), 2, + ACTIONS(644), 2, sym_nil_lit, sym_fancy_literal, - ACTIONS(644), 3, + ACTIONS(642), 3, sym_num_lit, sym_kwd_lit, sym_char_lit, - STATE(119), 3, + STATE(115), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(245), 3, + STATE(244), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(259), 16, + STATE(256), 16, sym__form, sym_str_lit, sym_sym_lit, @@ -11554,67 +11554,67 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(19), 1, anon_sym_POUND_CARET, - ACTIONS(456), 1, + ACTIONS(578), 1, aux_sym_str_lit_token1, - ACTIONS(460), 1, + ACTIONS(582), 1, aux_sym_sym_lit_token1, - ACTIONS(462), 1, + ACTIONS(584), 1, anon_sym_LPAREN, - ACTIONS(464), 1, + ACTIONS(586), 1, anon_sym_POUND0A, - ACTIONS(466), 1, + ACTIONS(588), 1, anon_sym_POUND, - ACTIONS(468), 1, + ACTIONS(590), 1, anon_sym_POUND_QMARK, - ACTIONS(470), 1, + ACTIONS(592), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(472), 1, + ACTIONS(594), 1, anon_sym_POUND_SQUOTE, - ACTIONS(474), 1, + ACTIONS(596), 1, anon_sym_POUND_POUND, - ACTIONS(476), 1, + ACTIONS(598), 1, anon_sym_POUND_EQ, - ACTIONS(478), 1, + ACTIONS(600), 1, anon_sym_AT, - ACTIONS(480), 1, + ACTIONS(602), 1, anon_sym_SQUOTE, - ACTIONS(482), 1, + ACTIONS(604), 1, anon_sym_BQUOTE, - ACTIONS(484), 1, + ACTIONS(606), 1, anon_sym_COMMA_AT, - ACTIONS(486), 1, + ACTIONS(608), 1, anon_sym_COMMA, - STATE(531), 1, + STATE(246), 1, + sym__bare_vec_lit, + STATE(247), 1, + sym__bare_set_lit, + STATE(510), 1, aux_sym_sym_lit_repeat1, - STATE(584), 1, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(631), 1, - sym__bare_set_lit, - STATE(632), 1, - sym__bare_vec_lit, - STATE(761), 1, + STATE(829), 1, sym__metadata_lit, - ACTIONS(648), 2, + ACTIONS(646), 2, sym__ws, sym_comment, - ACTIONS(652), 2, + ACTIONS(650), 2, sym_nil_lit, sym_fancy_literal, - ACTIONS(650), 3, + ACTIONS(648), 3, sym_num_lit, sym_kwd_lit, sym_char_lit, - STATE(111), 3, + STATE(116), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(633), 3, + STATE(244), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(609), 16, + STATE(258), 16, sym__form, sym_str_lit, sym_sym_lit, @@ -11640,67 +11640,67 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(19), 1, anon_sym_POUND_CARET, - ACTIONS(456), 1, + ACTIONS(578), 1, aux_sym_str_lit_token1, - ACTIONS(460), 1, + ACTIONS(582), 1, aux_sym_sym_lit_token1, - ACTIONS(462), 1, + ACTIONS(584), 1, anon_sym_LPAREN, - ACTIONS(464), 1, + ACTIONS(586), 1, anon_sym_POUND0A, - ACTIONS(466), 1, + ACTIONS(588), 1, anon_sym_POUND, - ACTIONS(468), 1, + ACTIONS(590), 1, anon_sym_POUND_QMARK, - ACTIONS(470), 1, + ACTIONS(592), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(472), 1, + ACTIONS(594), 1, anon_sym_POUND_SQUOTE, - ACTIONS(474), 1, + ACTIONS(596), 1, anon_sym_POUND_POUND, - ACTIONS(476), 1, + ACTIONS(598), 1, anon_sym_POUND_EQ, - ACTIONS(478), 1, + ACTIONS(600), 1, anon_sym_AT, - ACTIONS(480), 1, + ACTIONS(602), 1, anon_sym_SQUOTE, - ACTIONS(482), 1, + ACTIONS(604), 1, anon_sym_BQUOTE, - ACTIONS(484), 1, + ACTIONS(606), 1, anon_sym_COMMA_AT, - ACTIONS(486), 1, + ACTIONS(608), 1, anon_sym_COMMA, - STATE(531), 1, + STATE(246), 1, + sym__bare_vec_lit, + STATE(247), 1, + sym__bare_set_lit, + STATE(510), 1, aux_sym_sym_lit_repeat1, - STATE(584), 1, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(631), 1, - sym__bare_set_lit, - STATE(632), 1, - sym__bare_vec_lit, - STATE(761), 1, + STATE(829), 1, sym__metadata_lit, - ACTIONS(654), 2, + ACTIONS(652), 2, sym__ws, sym_comment, - ACTIONS(658), 2, + ACTIONS(656), 2, sym_nil_lit, sym_fancy_literal, - ACTIONS(656), 3, + ACTIONS(654), 3, sym_num_lit, sym_kwd_lit, sym_char_lit, - STATE(178), 3, + STATE(119), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(633), 3, + STATE(244), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(611), 16, + STATE(259), 16, sym__form, sym_str_lit, sym_sym_lit, @@ -11726,67 +11726,67 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(19), 1, anon_sym_POUND_CARET, - ACTIONS(456), 1, + ACTIONS(522), 1, aux_sym_str_lit_token1, - ACTIONS(460), 1, + ACTIONS(526), 1, aux_sym_sym_lit_token1, - ACTIONS(462), 1, + ACTIONS(528), 1, anon_sym_LPAREN, - ACTIONS(464), 1, + ACTIONS(530), 1, anon_sym_POUND0A, - ACTIONS(466), 1, + ACTIONS(532), 1, anon_sym_POUND, - ACTIONS(468), 1, + ACTIONS(534), 1, anon_sym_POUND_QMARK, - ACTIONS(470), 1, + ACTIONS(536), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(472), 1, + ACTIONS(538), 1, anon_sym_POUND_SQUOTE, - ACTIONS(474), 1, + ACTIONS(540), 1, anon_sym_POUND_POUND, - ACTIONS(476), 1, + ACTIONS(542), 1, anon_sym_POUND_EQ, - ACTIONS(478), 1, + ACTIONS(544), 1, anon_sym_AT, - ACTIONS(480), 1, + ACTIONS(546), 1, anon_sym_SQUOTE, - ACTIONS(482), 1, + ACTIONS(548), 1, anon_sym_BQUOTE, - ACTIONS(484), 1, + ACTIONS(550), 1, anon_sym_COMMA_AT, - ACTIONS(486), 1, + ACTIONS(552), 1, anon_sym_COMMA, - STATE(531), 1, + STATE(528), 1, aux_sym_sym_lit_repeat1, - STATE(584), 1, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(631), 1, + STATE(614), 1, sym__bare_set_lit, - STATE(632), 1, + STATE(631), 1, sym__bare_vec_lit, - STATE(761), 1, + STATE(829), 1, sym__metadata_lit, - ACTIONS(660), 2, + ACTIONS(658), 2, sym__ws, sym_comment, - ACTIONS(664), 2, + ACTIONS(662), 2, sym_nil_lit, sym_fancy_literal, - ACTIONS(662), 3, + ACTIONS(660), 3, sym_num_lit, sym_kwd_lit, sym_char_lit, - STATE(66), 3, + STATE(80), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(633), 3, + STATE(635), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(614), 16, + STATE(598), 16, sym__form, sym_str_lit, sym_sym_lit, @@ -11812,67 +11812,67 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(19), 1, anon_sym_POUND_CARET, - ACTIONS(456), 1, + ACTIONS(522), 1, aux_sym_str_lit_token1, - ACTIONS(460), 1, + ACTIONS(526), 1, aux_sym_sym_lit_token1, - ACTIONS(462), 1, + ACTIONS(528), 1, anon_sym_LPAREN, - ACTIONS(464), 1, + ACTIONS(530), 1, anon_sym_POUND0A, - ACTIONS(466), 1, + ACTIONS(532), 1, anon_sym_POUND, - ACTIONS(468), 1, + ACTIONS(534), 1, anon_sym_POUND_QMARK, - ACTIONS(470), 1, + ACTIONS(536), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(472), 1, + ACTIONS(538), 1, anon_sym_POUND_SQUOTE, - ACTIONS(474), 1, + ACTIONS(540), 1, anon_sym_POUND_POUND, - ACTIONS(476), 1, + ACTIONS(542), 1, anon_sym_POUND_EQ, - ACTIONS(478), 1, + ACTIONS(544), 1, anon_sym_AT, - ACTIONS(480), 1, + ACTIONS(546), 1, anon_sym_SQUOTE, - ACTIONS(482), 1, + ACTIONS(548), 1, anon_sym_BQUOTE, - ACTIONS(484), 1, + ACTIONS(550), 1, anon_sym_COMMA_AT, - ACTIONS(486), 1, + ACTIONS(552), 1, anon_sym_COMMA, - STATE(531), 1, + STATE(528), 1, aux_sym_sym_lit_repeat1, - STATE(584), 1, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(631), 1, + STATE(614), 1, sym__bare_set_lit, - STATE(632), 1, + STATE(631), 1, sym__bare_vec_lit, - STATE(761), 1, + STATE(829), 1, sym__metadata_lit, - ACTIONS(666), 2, + ACTIONS(664), 2, sym__ws, sym_comment, - ACTIONS(670), 2, + ACTIONS(668), 2, sym_nil_lit, sym_fancy_literal, - ACTIONS(668), 3, + ACTIONS(666), 3, sym_num_lit, sym_kwd_lit, sym_char_lit, - STATE(71), 3, + STATE(81), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(633), 3, + STATE(635), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(618), 16, + STATE(599), 16, sym__form, sym_str_lit, sym_sym_lit, @@ -11898,49 +11898,49 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(19), 1, anon_sym_POUND_CARET, - ACTIONS(456), 1, + ACTIONS(522), 1, aux_sym_str_lit_token1, - ACTIONS(460), 1, + ACTIONS(526), 1, aux_sym_sym_lit_token1, - ACTIONS(462), 1, + ACTIONS(528), 1, anon_sym_LPAREN, - ACTIONS(464), 1, + ACTIONS(530), 1, anon_sym_POUND0A, - ACTIONS(466), 1, + ACTIONS(532), 1, anon_sym_POUND, - ACTIONS(468), 1, + ACTIONS(534), 1, anon_sym_POUND_QMARK, - ACTIONS(470), 1, + ACTIONS(536), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(472), 1, + ACTIONS(538), 1, anon_sym_POUND_SQUOTE, - ACTIONS(474), 1, + ACTIONS(540), 1, anon_sym_POUND_POUND, - ACTIONS(476), 1, + ACTIONS(542), 1, anon_sym_POUND_EQ, - ACTIONS(478), 1, + ACTIONS(544), 1, anon_sym_AT, - ACTIONS(480), 1, + ACTIONS(546), 1, anon_sym_SQUOTE, - ACTIONS(482), 1, + ACTIONS(548), 1, anon_sym_BQUOTE, - ACTIONS(484), 1, + ACTIONS(550), 1, anon_sym_COMMA_AT, - ACTIONS(486), 1, + ACTIONS(552), 1, anon_sym_COMMA, - STATE(531), 1, + STATE(528), 1, aux_sym_sym_lit_repeat1, - STATE(584), 1, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(631), 1, + STATE(614), 1, sym__bare_set_lit, - STATE(632), 1, + STATE(631), 1, sym__bare_vec_lit, - STATE(761), 1, + STATE(829), 1, sym__metadata_lit, - ACTIONS(378), 2, + ACTIONS(670), 2, sym__ws, sym_comment, ACTIONS(674), 2, @@ -11950,15 +11950,15 @@ static uint16_t ts_small_parse_table[] = { sym_num_lit, sym_kwd_lit, sym_char_lit, - STATE(448), 3, + STATE(83), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(633), 3, + STATE(635), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(621), 16, + STATE(600), 16, sym__form, sym_str_lit, sym_sym_lit, @@ -11976,6 +11976,178 @@ static uint16_t ts_small_parse_table[] = { sym_unquote_splicing_lit, sym_unquoting_lit, [10568] = 31, + ACTIONS(3), 1, + sym_block_comment, + ACTIONS(9), 1, + anon_sym_POUND_, + ACTIONS(17), 1, + anon_sym_CARET, + ACTIONS(19), 1, + anon_sym_POUND_CARET, + ACTIONS(522), 1, + aux_sym_str_lit_token1, + ACTIONS(526), 1, + aux_sym_sym_lit_token1, + ACTIONS(528), 1, + anon_sym_LPAREN, + ACTIONS(530), 1, + anon_sym_POUND0A, + ACTIONS(532), 1, + anon_sym_POUND, + ACTIONS(534), 1, + anon_sym_POUND_QMARK, + ACTIONS(536), 1, + anon_sym_POUND_QMARK_AT, + ACTIONS(538), 1, + anon_sym_POUND_SQUOTE, + ACTIONS(540), 1, + anon_sym_POUND_POUND, + ACTIONS(542), 1, + anon_sym_POUND_EQ, + ACTIONS(544), 1, + anon_sym_AT, + ACTIONS(546), 1, + anon_sym_SQUOTE, + ACTIONS(548), 1, + anon_sym_BQUOTE, + ACTIONS(550), 1, + anon_sym_COMMA_AT, + ACTIONS(552), 1, + anon_sym_COMMA, + STATE(528), 1, + aux_sym_sym_lit_repeat1, + STATE(581), 1, + sym_old_meta_lit, + STATE(582), 1, + sym_meta_lit, + STATE(614), 1, + sym__bare_set_lit, + STATE(631), 1, + sym__bare_vec_lit, + STATE(829), 1, + sym__metadata_lit, + ACTIONS(676), 2, + sym__ws, + sym_comment, + ACTIONS(680), 2, + sym_nil_lit, + sym_fancy_literal, + ACTIONS(678), 3, + sym_num_lit, + sym_kwd_lit, + sym_char_lit, + STATE(85), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(635), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(603), 16, + sym__form, + sym_str_lit, + sym_sym_lit, + sym_list_lit, + sym_vec_lit, + sym_set_lit, + sym_read_cond_lit, + sym_splicing_read_cond_lit, + sym_var_quoting_lit, + sym_sym_val_lit, + sym_evaling_lit, + sym_derefing_lit, + sym_quoting_lit, + sym_syn_quoting_lit, + sym_unquote_splicing_lit, + sym_unquoting_lit, + [10685] = 31, + ACTIONS(3), 1, + sym_block_comment, + ACTIONS(9), 1, + anon_sym_POUND_, + ACTIONS(17), 1, + anon_sym_CARET, + ACTIONS(19), 1, + anon_sym_POUND_CARET, + ACTIONS(522), 1, + aux_sym_str_lit_token1, + ACTIONS(526), 1, + aux_sym_sym_lit_token1, + ACTIONS(528), 1, + anon_sym_LPAREN, + ACTIONS(530), 1, + anon_sym_POUND0A, + ACTIONS(532), 1, + anon_sym_POUND, + ACTIONS(534), 1, + anon_sym_POUND_QMARK, + ACTIONS(536), 1, + anon_sym_POUND_QMARK_AT, + ACTIONS(538), 1, + anon_sym_POUND_SQUOTE, + ACTIONS(540), 1, + anon_sym_POUND_POUND, + ACTIONS(542), 1, + anon_sym_POUND_EQ, + ACTIONS(544), 1, + anon_sym_AT, + ACTIONS(546), 1, + anon_sym_SQUOTE, + ACTIONS(548), 1, + anon_sym_BQUOTE, + ACTIONS(550), 1, + anon_sym_COMMA_AT, + ACTIONS(552), 1, + anon_sym_COMMA, + STATE(528), 1, + aux_sym_sym_lit_repeat1, + STATE(581), 1, + sym_old_meta_lit, + STATE(582), 1, + sym_meta_lit, + STATE(614), 1, + sym__bare_set_lit, + STATE(631), 1, + sym__bare_vec_lit, + STATE(829), 1, + sym__metadata_lit, + ACTIONS(378), 2, + sym__ws, + sym_comment, + ACTIONS(684), 2, + sym_nil_lit, + sym_fancy_literal, + ACTIONS(682), 3, + sym_num_lit, + sym_kwd_lit, + sym_char_lit, + STATE(448), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(635), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(606), 16, + sym__form, + sym_str_lit, + sym_sym_lit, + sym_list_lit, + sym_vec_lit, + sym_set_lit, + sym_read_cond_lit, + sym_splicing_read_cond_lit, + sym_var_quoting_lit, + sym_sym_val_lit, + sym_evaling_lit, + sym_derefing_lit, + sym_quoting_lit, + sym_syn_quoting_lit, + sym_unquote_splicing_lit, + sym_unquoting_lit, + [10802] = 31, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, @@ -12014,37 +12186,37 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA_AT, ACTIONS(418), 1, anon_sym_COMMA, - STATE(507), 1, - sym__bare_vec_lit, - STATE(508), 1, + STATE(505), 1, sym__bare_set_lit, - STATE(527), 1, + STATE(536), 1, aux_sym_sym_lit_repeat1, - STATE(584), 1, + STATE(537), 1, + sym__bare_vec_lit, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(761), 1, + STATE(829), 1, sym__metadata_lit, - ACTIONS(378), 2, + ACTIONS(686), 2, sym__ws, sym_comment, - ACTIONS(678), 2, + ACTIONS(690), 2, sym_nil_lit, sym_fancy_literal, - ACTIONS(676), 3, + ACTIONS(688), 3, sym_num_lit, sym_kwd_lit, sym_char_lit, - STATE(448), 3, + STATE(181), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(506), 3, + STATE(472), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(493), 16, + STATE(542), 16, sym__form, sym_str_lit, sym_sym_lit, @@ -12061,7 +12233,7 @@ static uint16_t ts_small_parse_table[] = { sym_syn_quoting_lit, sym_unquote_splicing_lit, sym_unquoting_lit, - [10685] = 31, + [10919] = 31, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, @@ -12070,67 +12242,67 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(19), 1, anon_sym_POUND_CARET, - ACTIONS(422), 1, + ACTIONS(694), 1, aux_sym_str_lit_token1, - ACTIONS(426), 1, + ACTIONS(698), 1, aux_sym_sym_lit_token1, - ACTIONS(428), 1, + ACTIONS(700), 1, anon_sym_LPAREN, - ACTIONS(430), 1, + ACTIONS(702), 1, anon_sym_POUND0A, - ACTIONS(432), 1, + ACTIONS(704), 1, anon_sym_POUND, - ACTIONS(434), 1, + ACTIONS(706), 1, anon_sym_POUND_QMARK, - ACTIONS(436), 1, + ACTIONS(708), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(438), 1, + ACTIONS(710), 1, anon_sym_POUND_SQUOTE, - ACTIONS(440), 1, + ACTIONS(712), 1, anon_sym_POUND_POUND, - ACTIONS(442), 1, + ACTIONS(714), 1, anon_sym_POUND_EQ, - ACTIONS(444), 1, + ACTIONS(716), 1, anon_sym_AT, - ACTIONS(446), 1, + ACTIONS(718), 1, anon_sym_SQUOTE, - ACTIONS(448), 1, + ACTIONS(720), 1, anon_sym_BQUOTE, - ACTIONS(450), 1, + ACTIONS(722), 1, anon_sym_COMMA_AT, - ACTIONS(452), 1, + ACTIONS(724), 1, anon_sym_COMMA, - STATE(474), 1, + STATE(516), 1, aux_sym_sym_lit_repeat1, - STATE(584), 1, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(757), 1, - sym__bare_set_lit, - STATE(758), 1, + STATE(648), 1, sym__bare_vec_lit, - STATE(761), 1, + STATE(649), 1, + sym__bare_set_lit, + STATE(829), 1, sym__metadata_lit, - ACTIONS(680), 2, + ACTIONS(378), 2, sym__ws, sym_comment, - ACTIONS(684), 2, + ACTIONS(696), 2, sym_nil_lit, sym_fancy_literal, - ACTIONS(682), 3, + ACTIONS(692), 3, sym_num_lit, sym_kwd_lit, sym_char_lit, - STATE(117), 3, + STATE(448), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(759), 3, + STATE(647), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(762), 16, + STATE(694), 16, sym__form, sym_str_lit, sym_sym_lit, @@ -12147,7 +12319,7 @@ static uint16_t ts_small_parse_table[] = { sym_syn_quoting_lit, sym_unquote_splicing_lit, sym_unquoting_lit, - [10802] = 31, + [11036] = 31, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, @@ -12186,37 +12358,37 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA_AT, ACTIONS(418), 1, anon_sym_COMMA, - STATE(507), 1, - sym__bare_vec_lit, - STATE(508), 1, + STATE(505), 1, sym__bare_set_lit, - STATE(527), 1, + STATE(536), 1, aux_sym_sym_lit_repeat1, - STATE(584), 1, + STATE(537), 1, + sym__bare_vec_lit, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(761), 1, + STATE(829), 1, sym__metadata_lit, - ACTIONS(378), 2, + ACTIONS(726), 2, sym__ws, sym_comment, - ACTIONS(688), 2, + ACTIONS(730), 2, sym_nil_lit, sym_fancy_literal, - ACTIONS(686), 3, + ACTIONS(728), 3, sym_num_lit, sym_kwd_lit, sym_char_lit, - STATE(448), 3, + STATE(182), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(506), 3, + STATE(472), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(494), 16, + STATE(544), 16, sym__form, sym_str_lit, sym_sym_lit, @@ -12233,7 +12405,7 @@ static uint16_t ts_small_parse_table[] = { sym_syn_quoting_lit, sym_unquote_splicing_lit, sym_unquoting_lit, - [10919] = 31, + [11153] = 31, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, @@ -12272,37 +12444,37 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA_AT, ACTIONS(724), 1, anon_sym_COMMA, - STATE(335), 1, - sym__bare_vec_lit, - STATE(336), 1, - sym__bare_set_lit, - STATE(477), 1, + STATE(516), 1, aux_sym_sym_lit_repeat1, - STATE(584), 1, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(761), 1, + STATE(648), 1, + sym__bare_vec_lit, + STATE(649), 1, + sym__bare_set_lit, + STATE(829), 1, sym__metadata_lit, - ACTIONS(690), 2, + ACTIONS(378), 2, sym__ws, sym_comment, - ACTIONS(696), 2, + ACTIONS(734), 2, sym_nil_lit, sym_fancy_literal, - ACTIONS(692), 3, + ACTIONS(732), 3, sym_num_lit, sym_kwd_lit, sym_char_lit, - STATE(150), 3, + STATE(448), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(334), 3, + STATE(647), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(337), 16, + STATE(679), 16, sym__form, sym_str_lit, sym_sym_lit, @@ -12319,7 +12491,7 @@ static uint16_t ts_small_parse_table[] = { sym_syn_quoting_lit, sym_unquote_splicing_lit, sym_unquoting_lit, - [11036] = 31, + [11270] = 31, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, @@ -12358,37 +12530,37 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA_AT, ACTIONS(418), 1, anon_sym_COMMA, - STATE(507), 1, - sym__bare_vec_lit, - STATE(508), 1, + STATE(505), 1, sym__bare_set_lit, - STATE(527), 1, + STATE(536), 1, aux_sym_sym_lit_repeat1, - STATE(584), 1, + STATE(537), 1, + sym__bare_vec_lit, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(761), 1, + STATE(829), 1, sym__metadata_lit, - ACTIONS(378), 2, + ACTIONS(736), 2, sym__ws, sym_comment, - ACTIONS(728), 2, + ACTIONS(740), 2, sym_nil_lit, sym_fancy_literal, - ACTIONS(726), 3, + ACTIONS(738), 3, sym_num_lit, sym_kwd_lit, sym_char_lit, - STATE(448), 3, + STATE(184), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(506), 3, + STATE(472), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(495), 16, + STATE(538), 16, sym__form, sym_str_lit, sym_sym_lit, @@ -12405,7 +12577,7 @@ static uint16_t ts_small_parse_table[] = { sym_syn_quoting_lit, sym_unquote_splicing_lit, sym_unquoting_lit, - [11153] = 31, + [11387] = 31, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, @@ -12414,67 +12586,67 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(19), 1, anon_sym_POUND_CARET, - ACTIONS(732), 1, + ACTIONS(746), 1, aux_sym_str_lit_token1, - ACTIONS(736), 1, + ACTIONS(750), 1, aux_sym_sym_lit_token1, - ACTIONS(738), 1, + ACTIONS(752), 1, anon_sym_LPAREN, - ACTIONS(740), 1, + ACTIONS(754), 1, anon_sym_POUND0A, - ACTIONS(742), 1, + ACTIONS(756), 1, anon_sym_POUND, - ACTIONS(744), 1, + ACTIONS(758), 1, anon_sym_POUND_QMARK, - ACTIONS(746), 1, + ACTIONS(760), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(748), 1, + ACTIONS(762), 1, anon_sym_POUND_SQUOTE, - ACTIONS(750), 1, + ACTIONS(764), 1, anon_sym_POUND_POUND, - ACTIONS(752), 1, + ACTIONS(766), 1, anon_sym_POUND_EQ, - ACTIONS(754), 1, + ACTIONS(768), 1, anon_sym_AT, - ACTIONS(756), 1, + ACTIONS(770), 1, anon_sym_SQUOTE, - ACTIONS(758), 1, + ACTIONS(772), 1, anon_sym_BQUOTE, - ACTIONS(760), 1, + ACTIONS(774), 1, anon_sym_COMMA_AT, - ACTIONS(762), 1, + ACTIONS(776), 1, anon_sym_COMMA, + STATE(336), 1, + sym__bare_vec_lit, + STATE(337), 1, + sym__bare_set_lit, STATE(504), 1, aux_sym_sym_lit_repeat1, - STATE(584), 1, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(641), 1, - sym__bare_vec_lit, - STATE(685), 1, - sym__bare_set_lit, - STATE(761), 1, + STATE(829), 1, sym__metadata_lit, - ACTIONS(378), 2, + ACTIONS(742), 2, sym__ws, sym_comment, - ACTIONS(734), 2, + ACTIONS(748), 2, sym_nil_lit, sym_fancy_literal, - ACTIONS(730), 3, + ACTIONS(744), 3, sym_num_lit, sym_kwd_lit, sym_char_lit, - STATE(448), 3, + STATE(148), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(683), 3, + STATE(335), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(657), 16, + STATE(338), 16, sym__form, sym_str_lit, sym_sym_lit, @@ -12491,7 +12663,7 @@ static uint16_t ts_small_parse_table[] = { sym_syn_quoting_lit, sym_unquote_splicing_lit, sym_unquoting_lit, - [11270] = 31, + [11504] = 31, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, @@ -12500,67 +12672,67 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(19), 1, anon_sym_POUND_CARET, - ACTIONS(456), 1, + ACTIONS(422), 1, aux_sym_str_lit_token1, - ACTIONS(460), 1, + ACTIONS(426), 1, aux_sym_sym_lit_token1, - ACTIONS(462), 1, + ACTIONS(428), 1, anon_sym_LPAREN, - ACTIONS(464), 1, + ACTIONS(430), 1, anon_sym_POUND0A, - ACTIONS(466), 1, + ACTIONS(432), 1, anon_sym_POUND, - ACTIONS(468), 1, + ACTIONS(434), 1, anon_sym_POUND_QMARK, - ACTIONS(470), 1, + ACTIONS(436), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(472), 1, + ACTIONS(438), 1, anon_sym_POUND_SQUOTE, - ACTIONS(474), 1, + ACTIONS(440), 1, anon_sym_POUND_POUND, - ACTIONS(476), 1, + ACTIONS(442), 1, anon_sym_POUND_EQ, - ACTIONS(478), 1, + ACTIONS(444), 1, anon_sym_AT, - ACTIONS(480), 1, + ACTIONS(446), 1, anon_sym_SQUOTE, - ACTIONS(482), 1, + ACTIONS(448), 1, anon_sym_BQUOTE, - ACTIONS(484), 1, + ACTIONS(450), 1, anon_sym_COMMA_AT, - ACTIONS(486), 1, + ACTIONS(452), 1, anon_sym_COMMA, - STATE(531), 1, + STATE(501), 1, aux_sym_sym_lit_repeat1, - STATE(584), 1, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(631), 1, + STATE(742), 1, sym__bare_set_lit, - STATE(632), 1, + STATE(743), 1, sym__bare_vec_lit, - STATE(761), 1, + STATE(829), 1, sym__metadata_lit, - ACTIONS(378), 2, + ACTIONS(778), 2, sym__ws, sym_comment, - ACTIONS(766), 2, + ACTIONS(782), 2, sym_nil_lit, sym_fancy_literal, - ACTIONS(764), 3, + ACTIONS(780), 3, sym_num_lit, sym_kwd_lit, sym_char_lit, - STATE(448), 3, + STATE(196), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(633), 3, + STATE(744), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(622), 16, + STATE(837), 16, sym__form, sym_str_lit, sym_sym_lit, @@ -12577,7 +12749,7 @@ static uint16_t ts_small_parse_table[] = { sym_syn_quoting_lit, sym_unquote_splicing_lit, sym_unquoting_lit, - [11387] = 31, + [11621] = 31, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, @@ -12586,55 +12758,55 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(19), 1, anon_sym_POUND_CARET, - ACTIONS(456), 1, + ACTIONS(522), 1, aux_sym_str_lit_token1, - ACTIONS(460), 1, + ACTIONS(526), 1, aux_sym_sym_lit_token1, - ACTIONS(462), 1, + ACTIONS(528), 1, anon_sym_LPAREN, - ACTIONS(464), 1, + ACTIONS(530), 1, anon_sym_POUND0A, - ACTIONS(466), 1, + ACTIONS(532), 1, anon_sym_POUND, - ACTIONS(468), 1, + ACTIONS(534), 1, anon_sym_POUND_QMARK, - ACTIONS(470), 1, + ACTIONS(536), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(472), 1, + ACTIONS(538), 1, anon_sym_POUND_SQUOTE, - ACTIONS(474), 1, + ACTIONS(540), 1, anon_sym_POUND_POUND, - ACTIONS(476), 1, + ACTIONS(542), 1, anon_sym_POUND_EQ, - ACTIONS(478), 1, + ACTIONS(544), 1, anon_sym_AT, - ACTIONS(480), 1, + ACTIONS(546), 1, anon_sym_SQUOTE, - ACTIONS(482), 1, + ACTIONS(548), 1, anon_sym_BQUOTE, - ACTIONS(484), 1, + ACTIONS(550), 1, anon_sym_COMMA_AT, - ACTIONS(486), 1, + ACTIONS(552), 1, anon_sym_COMMA, - STATE(531), 1, + STATE(528), 1, aux_sym_sym_lit_repeat1, - STATE(584), 1, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(631), 1, + STATE(614), 1, sym__bare_set_lit, - STATE(632), 1, + STATE(631), 1, sym__bare_vec_lit, - STATE(761), 1, + STATE(829), 1, sym__metadata_lit, ACTIONS(378), 2, sym__ws, sym_comment, - ACTIONS(770), 2, + ACTIONS(786), 2, sym_nil_lit, sym_fancy_literal, - ACTIONS(768), 3, + ACTIONS(784), 3, sym_num_lit, sym_kwd_lit, sym_char_lit, @@ -12642,11 +12814,11 @@ static uint16_t ts_small_parse_table[] = { sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(633), 3, + STATE(635), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(601), 16, + STATE(607), 16, sym__form, sym_str_lit, sym_sym_lit, @@ -12663,7 +12835,7 @@ static uint16_t ts_small_parse_table[] = { sym_syn_quoting_lit, sym_unquote_splicing_lit, sym_unquoting_lit, - [11504] = 31, + [11738] = 31, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, @@ -12672,59 +12844,59 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(19), 1, anon_sym_POUND_CARET, - ACTIONS(568), 1, + ACTIONS(578), 1, aux_sym_str_lit_token1, - ACTIONS(572), 1, + ACTIONS(582), 1, aux_sym_sym_lit_token1, - ACTIONS(574), 1, + ACTIONS(584), 1, anon_sym_LPAREN, - ACTIONS(576), 1, + ACTIONS(586), 1, anon_sym_POUND0A, - ACTIONS(578), 1, + ACTIONS(588), 1, anon_sym_POUND, - ACTIONS(580), 1, + ACTIONS(590), 1, anon_sym_POUND_QMARK, - ACTIONS(582), 1, + ACTIONS(592), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(584), 1, + ACTIONS(594), 1, anon_sym_POUND_SQUOTE, - ACTIONS(586), 1, + ACTIONS(596), 1, anon_sym_POUND_POUND, - ACTIONS(588), 1, + ACTIONS(598), 1, anon_sym_POUND_EQ, - ACTIONS(590), 1, + ACTIONS(600), 1, anon_sym_AT, - ACTIONS(592), 1, + ACTIONS(602), 1, anon_sym_SQUOTE, - ACTIONS(594), 1, + ACTIONS(604), 1, anon_sym_BQUOTE, - ACTIONS(596), 1, + ACTIONS(606), 1, anon_sym_COMMA_AT, - ACTIONS(598), 1, + ACTIONS(608), 1, anon_sym_COMMA, STATE(246), 1, sym__bare_vec_lit, STATE(247), 1, sym__bare_set_lit, - STATE(478), 1, + STATE(510), 1, aux_sym_sym_lit_repeat1, - STATE(584), 1, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(761), 1, + STATE(829), 1, sym__metadata_lit, ACTIONS(378), 2, sym__ws, sym_comment, - ACTIONS(774), 2, + ACTIONS(790), 2, sym_nil_lit, sym_fancy_literal, - ACTIONS(772), 3, + ACTIONS(788), 3, sym_num_lit, sym_kwd_lit, sym_char_lit, - STATE(245), 3, + STATE(244), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, @@ -12732,7 +12904,7 @@ static uint16_t ts_small_parse_table[] = { sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(269), 16, + STATE(266), 16, sym__form, sym_str_lit, sym_sym_lit, @@ -12749,7 +12921,7 @@ static uint16_t ts_small_parse_table[] = { sym_syn_quoting_lit, sym_unquote_splicing_lit, sym_unquoting_lit, - [11621] = 31, + [11855] = 31, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, @@ -12758,55 +12930,55 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(19), 1, anon_sym_POUND_CARET, - ACTIONS(732), 1, + ACTIONS(522), 1, aux_sym_str_lit_token1, - ACTIONS(736), 1, + ACTIONS(526), 1, aux_sym_sym_lit_token1, - ACTIONS(738), 1, + ACTIONS(528), 1, anon_sym_LPAREN, - ACTIONS(740), 1, + ACTIONS(530), 1, anon_sym_POUND0A, - ACTIONS(742), 1, + ACTIONS(532), 1, anon_sym_POUND, - ACTIONS(744), 1, + ACTIONS(534), 1, anon_sym_POUND_QMARK, - ACTIONS(746), 1, + ACTIONS(536), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(748), 1, + ACTIONS(538), 1, anon_sym_POUND_SQUOTE, - ACTIONS(750), 1, + ACTIONS(540), 1, anon_sym_POUND_POUND, - ACTIONS(752), 1, + ACTIONS(542), 1, anon_sym_POUND_EQ, - ACTIONS(754), 1, + ACTIONS(544), 1, anon_sym_AT, - ACTIONS(756), 1, + ACTIONS(546), 1, anon_sym_SQUOTE, - ACTIONS(758), 1, + ACTIONS(548), 1, anon_sym_BQUOTE, - ACTIONS(760), 1, + ACTIONS(550), 1, anon_sym_COMMA_AT, - ACTIONS(762), 1, + ACTIONS(552), 1, anon_sym_COMMA, - STATE(504), 1, + STATE(528), 1, aux_sym_sym_lit_repeat1, - STATE(584), 1, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(641), 1, - sym__bare_vec_lit, - STATE(685), 1, + STATE(614), 1, sym__bare_set_lit, - STATE(761), 1, + STATE(631), 1, + sym__bare_vec_lit, + STATE(829), 1, sym__metadata_lit, ACTIONS(378), 2, sym__ws, sym_comment, - ACTIONS(778), 2, + ACTIONS(794), 2, sym_nil_lit, sym_fancy_literal, - ACTIONS(776), 3, + ACTIONS(792), 3, sym_num_lit, sym_kwd_lit, sym_char_lit, @@ -12814,11 +12986,11 @@ static uint16_t ts_small_parse_table[] = { sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(683), 3, + STATE(635), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(654), 16, + STATE(609), 16, sym__form, sym_str_lit, sym_sym_lit, @@ -12835,7 +13007,7 @@ static uint16_t ts_small_parse_table[] = { sym_syn_quoting_lit, sym_unquote_splicing_lit, sym_unquoting_lit, - [11738] = 31, + [11972] = 31, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, @@ -12844,55 +13016,55 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(19), 1, anon_sym_POUND_CARET, - ACTIONS(456), 1, + ACTIONS(522), 1, aux_sym_str_lit_token1, - ACTIONS(460), 1, + ACTIONS(526), 1, aux_sym_sym_lit_token1, - ACTIONS(462), 1, + ACTIONS(528), 1, anon_sym_LPAREN, - ACTIONS(464), 1, + ACTIONS(530), 1, anon_sym_POUND0A, - ACTIONS(466), 1, + ACTIONS(532), 1, anon_sym_POUND, - ACTIONS(468), 1, + ACTIONS(534), 1, anon_sym_POUND_QMARK, - ACTIONS(470), 1, + ACTIONS(536), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(472), 1, + ACTIONS(538), 1, anon_sym_POUND_SQUOTE, - ACTIONS(474), 1, + ACTIONS(540), 1, anon_sym_POUND_POUND, - ACTIONS(476), 1, + ACTIONS(542), 1, anon_sym_POUND_EQ, - ACTIONS(478), 1, + ACTIONS(544), 1, anon_sym_AT, - ACTIONS(480), 1, + ACTIONS(546), 1, anon_sym_SQUOTE, - ACTIONS(482), 1, + ACTIONS(548), 1, anon_sym_BQUOTE, - ACTIONS(484), 1, + ACTIONS(550), 1, anon_sym_COMMA_AT, - ACTIONS(486), 1, + ACTIONS(552), 1, anon_sym_COMMA, - STATE(531), 1, + STATE(528), 1, aux_sym_sym_lit_repeat1, - STATE(584), 1, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(631), 1, + STATE(614), 1, sym__bare_set_lit, - STATE(632), 1, + STATE(631), 1, sym__bare_vec_lit, - STATE(761), 1, + STATE(829), 1, sym__metadata_lit, ACTIONS(378), 2, sym__ws, sym_comment, - ACTIONS(782), 2, + ACTIONS(798), 2, sym_nil_lit, sym_fancy_literal, - ACTIONS(780), 3, + ACTIONS(796), 3, sym_num_lit, sym_kwd_lit, sym_char_lit, @@ -12900,11 +13072,11 @@ static uint16_t ts_small_parse_table[] = { sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(633), 3, + STATE(635), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(604), 16, + STATE(610), 16, sym__form, sym_str_lit, sym_sym_lit, @@ -12921,7 +13093,7 @@ static uint16_t ts_small_parse_table[] = { sym_syn_quoting_lit, sym_unquote_splicing_lit, sym_unquoting_lit, - [11855] = 31, + [12089] = 31, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, @@ -12960,37 +13132,37 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA_AT, ACTIONS(45), 1, anon_sym_COMMA, - STATE(384), 1, - sym__bare_vec_lit, - STATE(390), 1, + STATE(372), 1, sym__bare_set_lit, - STATE(505), 1, + STATE(375), 1, + sym__bare_vec_lit, + STATE(541), 1, aux_sym_sym_lit_repeat1, - STATE(584), 1, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(761), 1, + STATE(829), 1, sym__metadata_lit, - ACTIONS(784), 2, + ACTIONS(800), 2, sym__ws, sym_comment, - ACTIONS(788), 2, + ACTIONS(804), 2, sym_nil_lit, sym_fancy_literal, - ACTIONS(786), 3, + ACTIONS(802), 3, sym_num_lit, sym_kwd_lit, sym_char_lit, - STATE(169), 3, + STATE(172), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(379), 3, + STATE(376), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(367), 16, + STATE(380), 16, sym__form, sym_str_lit, sym_sym_lit, @@ -13007,7 +13179,7 @@ static uint16_t ts_small_parse_table[] = { sym_syn_quoting_lit, sym_unquote_splicing_lit, sym_unquoting_lit, - [11972] = 31, + [12206] = 31, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, @@ -13016,59 +13188,59 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(19), 1, anon_sym_POUND_CARET, - ACTIONS(568), 1, + ACTIONS(578), 1, aux_sym_str_lit_token1, - ACTIONS(572), 1, + ACTIONS(582), 1, aux_sym_sym_lit_token1, - ACTIONS(574), 1, + ACTIONS(584), 1, anon_sym_LPAREN, - ACTIONS(576), 1, + ACTIONS(586), 1, anon_sym_POUND0A, - ACTIONS(578), 1, + ACTIONS(588), 1, anon_sym_POUND, - ACTIONS(580), 1, + ACTIONS(590), 1, anon_sym_POUND_QMARK, - ACTIONS(582), 1, + ACTIONS(592), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(584), 1, + ACTIONS(594), 1, anon_sym_POUND_SQUOTE, - ACTIONS(586), 1, + ACTIONS(596), 1, anon_sym_POUND_POUND, - ACTIONS(588), 1, + ACTIONS(598), 1, anon_sym_POUND_EQ, - ACTIONS(590), 1, + ACTIONS(600), 1, anon_sym_AT, - ACTIONS(592), 1, + ACTIONS(602), 1, anon_sym_SQUOTE, - ACTIONS(594), 1, + ACTIONS(604), 1, anon_sym_BQUOTE, - ACTIONS(596), 1, + ACTIONS(606), 1, anon_sym_COMMA_AT, - ACTIONS(598), 1, + ACTIONS(608), 1, anon_sym_COMMA, STATE(246), 1, sym__bare_vec_lit, STATE(247), 1, sym__bare_set_lit, - STATE(478), 1, + STATE(510), 1, aux_sym_sym_lit_repeat1, - STATE(584), 1, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(761), 1, + STATE(829), 1, sym__metadata_lit, ACTIONS(378), 2, sym__ws, sym_comment, - ACTIONS(792), 2, + ACTIONS(808), 2, sym_nil_lit, sym_fancy_literal, - ACTIONS(790), 3, + ACTIONS(806), 3, sym_num_lit, sym_kwd_lit, sym_char_lit, - STATE(245), 3, + STATE(244), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, @@ -13076,179 +13248,7 @@ static uint16_t ts_small_parse_table[] = { sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(266), 16, - sym__form, - sym_str_lit, - sym_sym_lit, - sym_list_lit, - sym_vec_lit, - sym_set_lit, - sym_read_cond_lit, - sym_splicing_read_cond_lit, - sym_var_quoting_lit, - sym_sym_val_lit, - sym_evaling_lit, - sym_derefing_lit, - sym_quoting_lit, - sym_syn_quoting_lit, - sym_unquote_splicing_lit, - sym_unquoting_lit, - [12089] = 31, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(9), 1, - anon_sym_POUND_, - ACTIONS(17), 1, - anon_sym_CARET, - ACTIONS(19), 1, - anon_sym_POUND_CARET, - ACTIONS(456), 1, - aux_sym_str_lit_token1, - ACTIONS(460), 1, - aux_sym_sym_lit_token1, - ACTIONS(462), 1, - anon_sym_LPAREN, - ACTIONS(464), 1, - anon_sym_POUND0A, - ACTIONS(466), 1, - anon_sym_POUND, - ACTIONS(468), 1, - anon_sym_POUND_QMARK, - ACTIONS(470), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(472), 1, - anon_sym_POUND_SQUOTE, - ACTIONS(474), 1, - anon_sym_POUND_POUND, - ACTIONS(476), 1, - anon_sym_POUND_EQ, - ACTIONS(478), 1, - anon_sym_AT, - ACTIONS(480), 1, - anon_sym_SQUOTE, - ACTIONS(482), 1, - anon_sym_BQUOTE, - ACTIONS(484), 1, - anon_sym_COMMA_AT, - ACTIONS(486), 1, - anon_sym_COMMA, - STATE(531), 1, - aux_sym_sym_lit_repeat1, - STATE(584), 1, - sym_old_meta_lit, - STATE(587), 1, - sym_meta_lit, - STATE(631), 1, - sym__bare_set_lit, - STATE(632), 1, - sym__bare_vec_lit, - STATE(761), 1, - sym__metadata_lit, - ACTIONS(378), 2, - sym__ws, - sym_comment, - ACTIONS(796), 2, - sym_nil_lit, - sym_fancy_literal, - ACTIONS(794), 3, - sym_num_lit, - sym_kwd_lit, - sym_char_lit, - STATE(448), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(633), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(581), 16, - sym__form, - sym_str_lit, - sym_sym_lit, - sym_list_lit, - sym_vec_lit, - sym_set_lit, - sym_read_cond_lit, - sym_splicing_read_cond_lit, - sym_var_quoting_lit, - sym_sym_val_lit, - sym_evaling_lit, - sym_derefing_lit, - sym_quoting_lit, - sym_syn_quoting_lit, - sym_unquote_splicing_lit, - sym_unquoting_lit, - [12206] = 31, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(9), 1, - anon_sym_POUND_, - ACTIONS(11), 1, - aux_sym_str_lit_token1, - ACTIONS(15), 1, - aux_sym_sym_lit_token1, - ACTIONS(17), 1, - anon_sym_CARET, - ACTIONS(19), 1, - anon_sym_POUND_CARET, - ACTIONS(21), 1, - anon_sym_LPAREN, - ACTIONS(23), 1, - anon_sym_POUND0A, - ACTIONS(25), 1, - anon_sym_POUND, - ACTIONS(27), 1, - anon_sym_POUND_QMARK, - ACTIONS(29), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(31), 1, - anon_sym_POUND_SQUOTE, - ACTIONS(33), 1, - anon_sym_POUND_POUND, - ACTIONS(35), 1, - anon_sym_POUND_EQ, - ACTIONS(37), 1, - anon_sym_AT, - ACTIONS(39), 1, - anon_sym_SQUOTE, - ACTIONS(41), 1, - anon_sym_BQUOTE, - ACTIONS(43), 1, - anon_sym_COMMA_AT, - ACTIONS(45), 1, - anon_sym_COMMA, - STATE(384), 1, - sym__bare_vec_lit, - STATE(390), 1, - sym__bare_set_lit, - STATE(505), 1, - aux_sym_sym_lit_repeat1, - STATE(584), 1, - sym_old_meta_lit, - STATE(587), 1, - sym_meta_lit, - STATE(761), 1, - sym__metadata_lit, - ACTIONS(798), 2, - sym__ws, - sym_comment, - ACTIONS(802), 2, - sym_nil_lit, - sym_fancy_literal, - ACTIONS(800), 3, - sym_num_lit, - sym_kwd_lit, - sym_char_lit, - STATE(63), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(379), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(751), 16, + STATE(263), 16, sym__form, sym_str_lit, sym_sym_lit, @@ -13274,55 +13274,55 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(19), 1, anon_sym_POUND_CARET, - ACTIONS(456), 1, + ACTIONS(522), 1, aux_sym_str_lit_token1, - ACTIONS(460), 1, + ACTIONS(526), 1, aux_sym_sym_lit_token1, - ACTIONS(462), 1, + ACTIONS(528), 1, anon_sym_LPAREN, - ACTIONS(464), 1, + ACTIONS(530), 1, anon_sym_POUND0A, - ACTIONS(466), 1, + ACTIONS(532), 1, anon_sym_POUND, - ACTIONS(468), 1, + ACTIONS(534), 1, anon_sym_POUND_QMARK, - ACTIONS(470), 1, + ACTIONS(536), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(472), 1, + ACTIONS(538), 1, anon_sym_POUND_SQUOTE, - ACTIONS(474), 1, + ACTIONS(540), 1, anon_sym_POUND_POUND, - ACTIONS(476), 1, + ACTIONS(542), 1, anon_sym_POUND_EQ, - ACTIONS(478), 1, + ACTIONS(544), 1, anon_sym_AT, - ACTIONS(480), 1, + ACTIONS(546), 1, anon_sym_SQUOTE, - ACTIONS(482), 1, + ACTIONS(548), 1, anon_sym_BQUOTE, - ACTIONS(484), 1, + ACTIONS(550), 1, anon_sym_COMMA_AT, - ACTIONS(486), 1, + ACTIONS(552), 1, anon_sym_COMMA, - STATE(531), 1, + STATE(528), 1, aux_sym_sym_lit_repeat1, - STATE(584), 1, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(631), 1, + STATE(614), 1, sym__bare_set_lit, - STATE(632), 1, + STATE(631), 1, sym__bare_vec_lit, - STATE(761), 1, + STATE(829), 1, sym__metadata_lit, ACTIONS(378), 2, sym__ws, sym_comment, - ACTIONS(806), 2, + ACTIONS(812), 2, sym_nil_lit, sym_fancy_literal, - ACTIONS(804), 3, + ACTIONS(810), 3, sym_num_lit, sym_kwd_lit, sym_char_lit, @@ -13330,11 +13330,11 @@ static uint16_t ts_small_parse_table[] = { sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(633), 3, + STATE(635), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(635), 16, + STATE(613), 16, sym__form, sym_str_lit, sym_sym_lit, @@ -13390,25 +13390,25 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA_AT, ACTIONS(452), 1, anon_sym_COMMA, - STATE(474), 1, + STATE(501), 1, aux_sym_sym_lit_repeat1, - STATE(584), 1, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(757), 1, + STATE(742), 1, sym__bare_set_lit, - STATE(758), 1, + STATE(743), 1, sym__bare_vec_lit, - STATE(761), 1, + STATE(829), 1, sym__metadata_lit, ACTIONS(378), 2, sym__ws, sym_comment, - ACTIONS(810), 2, + ACTIONS(816), 2, sym_nil_lit, sym_fancy_literal, - ACTIONS(808), 3, + ACTIONS(814), 3, sym_num_lit, sym_kwd_lit, sym_char_lit, @@ -13416,11 +13416,11 @@ static uint16_t ts_small_parse_table[] = { sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(759), 3, + STATE(744), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(819), 16, + STATE(791), 16, sym__form, sym_str_lit, sym_sym_lit, @@ -13446,59 +13446,59 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(19), 1, anon_sym_POUND_CARET, - ACTIONS(568), 1, + ACTIONS(578), 1, aux_sym_str_lit_token1, - ACTIONS(572), 1, + ACTIONS(582), 1, aux_sym_sym_lit_token1, - ACTIONS(574), 1, + ACTIONS(584), 1, anon_sym_LPAREN, - ACTIONS(576), 1, + ACTIONS(586), 1, anon_sym_POUND0A, - ACTIONS(578), 1, + ACTIONS(588), 1, anon_sym_POUND, - ACTIONS(580), 1, + ACTIONS(590), 1, anon_sym_POUND_QMARK, - ACTIONS(582), 1, + ACTIONS(592), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(584), 1, + ACTIONS(594), 1, anon_sym_POUND_SQUOTE, - ACTIONS(586), 1, + ACTIONS(596), 1, anon_sym_POUND_POUND, - ACTIONS(588), 1, + ACTIONS(598), 1, anon_sym_POUND_EQ, - ACTIONS(590), 1, + ACTIONS(600), 1, anon_sym_AT, - ACTIONS(592), 1, + ACTIONS(602), 1, anon_sym_SQUOTE, - ACTIONS(594), 1, + ACTIONS(604), 1, anon_sym_BQUOTE, - ACTIONS(596), 1, + ACTIONS(606), 1, anon_sym_COMMA_AT, - ACTIONS(598), 1, + ACTIONS(608), 1, anon_sym_COMMA, STATE(246), 1, sym__bare_vec_lit, STATE(247), 1, sym__bare_set_lit, - STATE(478), 1, + STATE(510), 1, aux_sym_sym_lit_repeat1, - STATE(584), 1, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(761), 1, + STATE(829), 1, sym__metadata_lit, ACTIONS(378), 2, sym__ws, sym_comment, - ACTIONS(814), 2, + ACTIONS(820), 2, sym_nil_lit, sym_fancy_literal, - ACTIONS(812), 3, + ACTIONS(818), 3, sym_num_lit, sym_kwd_lit, sym_char_lit, - STATE(245), 3, + STATE(244), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, @@ -13506,7 +13506,7 @@ static uint16_t ts_small_parse_table[] = { sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(265), 16, + STATE(237), 16, sym__form, sym_str_lit, sym_sym_lit, @@ -13532,59 +13532,59 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(19), 1, anon_sym_POUND_CARET, - ACTIONS(568), 1, + ACTIONS(578), 1, aux_sym_str_lit_token1, - ACTIONS(572), 1, + ACTIONS(582), 1, aux_sym_sym_lit_token1, - ACTIONS(574), 1, + ACTIONS(584), 1, anon_sym_LPAREN, - ACTIONS(576), 1, + ACTIONS(586), 1, anon_sym_POUND0A, - ACTIONS(578), 1, + ACTIONS(588), 1, anon_sym_POUND, - ACTIONS(580), 1, + ACTIONS(590), 1, anon_sym_POUND_QMARK, - ACTIONS(582), 1, + ACTIONS(592), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(584), 1, + ACTIONS(594), 1, anon_sym_POUND_SQUOTE, - ACTIONS(586), 1, + ACTIONS(596), 1, anon_sym_POUND_POUND, - ACTIONS(588), 1, + ACTIONS(598), 1, anon_sym_POUND_EQ, - ACTIONS(590), 1, + ACTIONS(600), 1, anon_sym_AT, - ACTIONS(592), 1, + ACTIONS(602), 1, anon_sym_SQUOTE, - ACTIONS(594), 1, + ACTIONS(604), 1, anon_sym_BQUOTE, - ACTIONS(596), 1, + ACTIONS(606), 1, anon_sym_COMMA_AT, - ACTIONS(598), 1, + ACTIONS(608), 1, anon_sym_COMMA, STATE(246), 1, sym__bare_vec_lit, STATE(247), 1, sym__bare_set_lit, - STATE(478), 1, + STATE(510), 1, aux_sym_sym_lit_repeat1, - STATE(584), 1, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(761), 1, + STATE(829), 1, sym__metadata_lit, ACTIONS(378), 2, sym__ws, sym_comment, - ACTIONS(818), 2, + ACTIONS(824), 2, sym_nil_lit, sym_fancy_literal, - ACTIONS(816), 3, + ACTIONS(822), 3, sym_num_lit, sym_kwd_lit, sym_char_lit, - STATE(245), 3, + STATE(244), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, @@ -13592,7 +13592,7 @@ static uint16_t ts_small_parse_table[] = { sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(263), 16, + STATE(262), 16, sym__form, sym_str_lit, sym_sym_lit, @@ -13648,25 +13648,25 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA_AT, ACTIONS(452), 1, anon_sym_COMMA, - STATE(474), 1, + STATE(501), 1, aux_sym_sym_lit_repeat1, - STATE(584), 1, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(757), 1, + STATE(742), 1, sym__bare_set_lit, - STATE(758), 1, + STATE(743), 1, sym__bare_vec_lit, - STATE(761), 1, + STATE(829), 1, sym__metadata_lit, ACTIONS(378), 2, sym__ws, sym_comment, - ACTIONS(822), 2, + ACTIONS(828), 2, sym_nil_lit, sym_fancy_literal, - ACTIONS(820), 3, + ACTIONS(826), 3, sym_num_lit, sym_kwd_lit, sym_char_lit, @@ -13674,11 +13674,11 @@ static uint16_t ts_small_parse_table[] = { sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(759), 3, + STATE(744), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(831), 16, + STATE(811), 16, sym__form, sym_str_lit, sym_sym_lit, @@ -13704,55 +13704,55 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(19), 1, anon_sym_POUND_CARET, - ACTIONS(456), 1, + ACTIONS(522), 1, aux_sym_str_lit_token1, - ACTIONS(460), 1, + ACTIONS(526), 1, aux_sym_sym_lit_token1, - ACTIONS(462), 1, + ACTIONS(528), 1, anon_sym_LPAREN, - ACTIONS(464), 1, + ACTIONS(530), 1, anon_sym_POUND0A, - ACTIONS(466), 1, + ACTIONS(532), 1, anon_sym_POUND, - ACTIONS(468), 1, + ACTIONS(534), 1, anon_sym_POUND_QMARK, - ACTIONS(470), 1, + ACTIONS(536), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(472), 1, + ACTIONS(538), 1, anon_sym_POUND_SQUOTE, - ACTIONS(474), 1, + ACTIONS(540), 1, anon_sym_POUND_POUND, - ACTIONS(476), 1, + ACTIONS(542), 1, anon_sym_POUND_EQ, - ACTIONS(478), 1, + ACTIONS(544), 1, anon_sym_AT, - ACTIONS(480), 1, + ACTIONS(546), 1, anon_sym_SQUOTE, - ACTIONS(482), 1, + ACTIONS(548), 1, anon_sym_BQUOTE, - ACTIONS(484), 1, + ACTIONS(550), 1, anon_sym_COMMA_AT, - ACTIONS(486), 1, + ACTIONS(552), 1, anon_sym_COMMA, - STATE(531), 1, + STATE(528), 1, aux_sym_sym_lit_repeat1, - STATE(584), 1, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(631), 1, + STATE(614), 1, sym__bare_set_lit, - STATE(632), 1, + STATE(631), 1, sym__bare_vec_lit, - STATE(761), 1, + STATE(829), 1, sym__metadata_lit, ACTIONS(378), 2, sym__ws, sym_comment, - ACTIONS(826), 2, + ACTIONS(832), 2, sym_nil_lit, sym_fancy_literal, - ACTIONS(824), 3, + ACTIONS(830), 3, sym_num_lit, sym_kwd_lit, sym_char_lit, @@ -13760,11 +13760,11 @@ static uint16_t ts_small_parse_table[] = { sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(633), 3, + STATE(635), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(594), 16, + STATE(622), 16, sym__form, sym_str_lit, sym_sym_lit, @@ -13790,59 +13790,59 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(19), 1, anon_sym_POUND_CARET, - ACTIONS(568), 1, + ACTIONS(578), 1, aux_sym_str_lit_token1, - ACTIONS(572), 1, + ACTIONS(582), 1, aux_sym_sym_lit_token1, - ACTIONS(574), 1, + ACTIONS(584), 1, anon_sym_LPAREN, - ACTIONS(576), 1, + ACTIONS(586), 1, anon_sym_POUND0A, - ACTIONS(578), 1, + ACTIONS(588), 1, anon_sym_POUND, - ACTIONS(580), 1, + ACTIONS(590), 1, anon_sym_POUND_QMARK, - ACTIONS(582), 1, + ACTIONS(592), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(584), 1, + ACTIONS(594), 1, anon_sym_POUND_SQUOTE, - ACTIONS(586), 1, + ACTIONS(596), 1, anon_sym_POUND_POUND, - ACTIONS(588), 1, + ACTIONS(598), 1, anon_sym_POUND_EQ, - ACTIONS(590), 1, + ACTIONS(600), 1, anon_sym_AT, - ACTIONS(592), 1, + ACTIONS(602), 1, anon_sym_SQUOTE, - ACTIONS(594), 1, + ACTIONS(604), 1, anon_sym_BQUOTE, - ACTIONS(596), 1, + ACTIONS(606), 1, anon_sym_COMMA_AT, - ACTIONS(598), 1, + ACTIONS(608), 1, anon_sym_COMMA, STATE(246), 1, sym__bare_vec_lit, STATE(247), 1, sym__bare_set_lit, - STATE(478), 1, + STATE(510), 1, aux_sym_sym_lit_repeat1, - STATE(584), 1, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(761), 1, + STATE(829), 1, sym__metadata_lit, ACTIONS(378), 2, sym__ws, sym_comment, - ACTIONS(830), 2, + ACTIONS(836), 2, sym_nil_lit, sym_fancy_literal, - ACTIONS(828), 3, + ACTIONS(834), 3, sym_num_lit, sym_kwd_lit, sym_char_lit, - STATE(245), 3, + STATE(244), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, @@ -13850,7 +13850,7 @@ static uint16_t ts_small_parse_table[] = { sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(262), 16, + STATE(240), 16, sym__form, sym_str_lit, sym_sym_lit, @@ -13876,67 +13876,67 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(19), 1, anon_sym_POUND_CARET, - ACTIONS(568), 1, + ACTIONS(578), 1, aux_sym_str_lit_token1, - ACTIONS(572), 1, + ACTIONS(582), 1, aux_sym_sym_lit_token1, - ACTIONS(574), 1, + ACTIONS(584), 1, anon_sym_LPAREN, - ACTIONS(576), 1, + ACTIONS(586), 1, anon_sym_POUND0A, - ACTIONS(578), 1, + ACTIONS(588), 1, anon_sym_POUND, - ACTIONS(580), 1, + ACTIONS(590), 1, anon_sym_POUND_QMARK, - ACTIONS(582), 1, + ACTIONS(592), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(584), 1, + ACTIONS(594), 1, anon_sym_POUND_SQUOTE, - ACTIONS(586), 1, + ACTIONS(596), 1, anon_sym_POUND_POUND, - ACTIONS(588), 1, + ACTIONS(598), 1, anon_sym_POUND_EQ, - ACTIONS(590), 1, + ACTIONS(600), 1, anon_sym_AT, - ACTIONS(592), 1, + ACTIONS(602), 1, anon_sym_SQUOTE, - ACTIONS(594), 1, + ACTIONS(604), 1, anon_sym_BQUOTE, - ACTIONS(596), 1, + ACTIONS(606), 1, anon_sym_COMMA_AT, - ACTIONS(598), 1, + ACTIONS(608), 1, anon_sym_COMMA, STATE(246), 1, sym__bare_vec_lit, STATE(247), 1, sym__bare_set_lit, - STATE(478), 1, + STATE(510), 1, aux_sym_sym_lit_repeat1, - STATE(584), 1, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(761), 1, + STATE(829), 1, sym__metadata_lit, - ACTIONS(832), 2, + ACTIONS(838), 2, sym__ws, sym_comment, - ACTIONS(836), 2, + ACTIONS(842), 2, sym_nil_lit, sym_fancy_literal, - ACTIONS(834), 3, + ACTIONS(840), 3, sym_num_lit, sym_kwd_lit, sym_char_lit, - STATE(159), 3, + STATE(161), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(245), 3, + STATE(244), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(237), 16, + STATE(298), 16, sym__form, sym_str_lit, sym_sym_lit, @@ -13962,67 +13962,67 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(19), 1, anon_sym_POUND_CARET, - ACTIONS(456), 1, + ACTIONS(522), 1, aux_sym_str_lit_token1, - ACTIONS(460), 1, + ACTIONS(526), 1, aux_sym_sym_lit_token1, - ACTIONS(462), 1, + ACTIONS(528), 1, anon_sym_LPAREN, - ACTIONS(464), 1, + ACTIONS(530), 1, anon_sym_POUND0A, - ACTIONS(466), 1, + ACTIONS(532), 1, anon_sym_POUND, - ACTIONS(468), 1, + ACTIONS(534), 1, anon_sym_POUND_QMARK, - ACTIONS(470), 1, + ACTIONS(536), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(472), 1, + ACTIONS(538), 1, anon_sym_POUND_SQUOTE, - ACTIONS(474), 1, + ACTIONS(540), 1, anon_sym_POUND_POUND, - ACTIONS(476), 1, + ACTIONS(542), 1, anon_sym_POUND_EQ, - ACTIONS(478), 1, + ACTIONS(544), 1, anon_sym_AT, - ACTIONS(480), 1, + ACTIONS(546), 1, anon_sym_SQUOTE, - ACTIONS(482), 1, + ACTIONS(548), 1, anon_sym_BQUOTE, - ACTIONS(484), 1, + ACTIONS(550), 1, anon_sym_COMMA_AT, - ACTIONS(486), 1, + ACTIONS(552), 1, anon_sym_COMMA, - STATE(531), 1, + STATE(528), 1, aux_sym_sym_lit_repeat1, - STATE(584), 1, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(631), 1, + STATE(614), 1, sym__bare_set_lit, - STATE(632), 1, + STATE(631), 1, sym__bare_vec_lit, - STATE(761), 1, + STATE(829), 1, sym__metadata_lit, - ACTIONS(838), 2, + ACTIONS(844), 2, sym__ws, sym_comment, - ACTIONS(842), 2, + ACTIONS(848), 2, sym_nil_lit, sym_fancy_literal, - ACTIONS(840), 3, + ACTIONS(846), 3, sym_num_lit, sym_kwd_lit, sym_char_lit, - STATE(97), 3, + STATE(99), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(633), 3, + STATE(635), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(602), 16, + STATE(627), 16, sym__form, sym_str_lit, sym_sym_lit, @@ -14048,67 +14048,67 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(19), 1, anon_sym_POUND_CARET, - ACTIONS(456), 1, + ACTIONS(522), 1, aux_sym_str_lit_token1, - ACTIONS(460), 1, + ACTIONS(526), 1, aux_sym_sym_lit_token1, - ACTIONS(462), 1, + ACTIONS(528), 1, anon_sym_LPAREN, - ACTIONS(464), 1, + ACTIONS(530), 1, anon_sym_POUND0A, - ACTIONS(466), 1, + ACTIONS(532), 1, anon_sym_POUND, - ACTIONS(468), 1, + ACTIONS(534), 1, anon_sym_POUND_QMARK, - ACTIONS(470), 1, + ACTIONS(536), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(472), 1, + ACTIONS(538), 1, anon_sym_POUND_SQUOTE, - ACTIONS(474), 1, + ACTIONS(540), 1, anon_sym_POUND_POUND, - ACTIONS(476), 1, + ACTIONS(542), 1, anon_sym_POUND_EQ, - ACTIONS(478), 1, + ACTIONS(544), 1, anon_sym_AT, - ACTIONS(480), 1, + ACTIONS(546), 1, anon_sym_SQUOTE, - ACTIONS(482), 1, + ACTIONS(548), 1, anon_sym_BQUOTE, - ACTIONS(484), 1, + ACTIONS(550), 1, anon_sym_COMMA_AT, - ACTIONS(486), 1, + ACTIONS(552), 1, anon_sym_COMMA, - STATE(531), 1, + STATE(528), 1, aux_sym_sym_lit_repeat1, - STATE(584), 1, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(631), 1, + STATE(614), 1, sym__bare_set_lit, - STATE(632), 1, + STATE(631), 1, sym__bare_vec_lit, - STATE(761), 1, + STATE(829), 1, sym__metadata_lit, - ACTIONS(844), 2, + ACTIONS(850), 2, sym__ws, sym_comment, - ACTIONS(848), 2, + ACTIONS(854), 2, sym_nil_lit, sym_fancy_literal, - ACTIONS(846), 3, + ACTIONS(852), 3, sym_num_lit, sym_kwd_lit, sym_char_lit, - STATE(104), 3, + STATE(107), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(633), 3, + STATE(635), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(605), 16, + STATE(629), 16, sym__form, sym_str_lit, sym_sym_lit, @@ -14134,67 +14134,67 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(19), 1, anon_sym_POUND_CARET, - ACTIONS(456), 1, + ACTIONS(522), 1, aux_sym_str_lit_token1, - ACTIONS(460), 1, + ACTIONS(526), 1, aux_sym_sym_lit_token1, - ACTIONS(462), 1, + ACTIONS(528), 1, anon_sym_LPAREN, - ACTIONS(464), 1, + ACTIONS(530), 1, anon_sym_POUND0A, - ACTIONS(466), 1, + ACTIONS(532), 1, anon_sym_POUND, - ACTIONS(468), 1, + ACTIONS(534), 1, anon_sym_POUND_QMARK, - ACTIONS(470), 1, + ACTIONS(536), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(472), 1, + ACTIONS(538), 1, anon_sym_POUND_SQUOTE, - ACTIONS(474), 1, + ACTIONS(540), 1, anon_sym_POUND_POUND, - ACTIONS(476), 1, + ACTIONS(542), 1, anon_sym_POUND_EQ, - ACTIONS(478), 1, + ACTIONS(544), 1, anon_sym_AT, - ACTIONS(480), 1, + ACTIONS(546), 1, anon_sym_SQUOTE, - ACTIONS(482), 1, + ACTIONS(548), 1, anon_sym_BQUOTE, - ACTIONS(484), 1, + ACTIONS(550), 1, anon_sym_COMMA_AT, - ACTIONS(486), 1, + ACTIONS(552), 1, anon_sym_COMMA, - STATE(531), 1, + STATE(528), 1, aux_sym_sym_lit_repeat1, - STATE(584), 1, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(631), 1, + STATE(614), 1, sym__bare_set_lit, - STATE(632), 1, + STATE(631), 1, sym__bare_vec_lit, - STATE(761), 1, + STATE(829), 1, sym__metadata_lit, - ACTIONS(850), 2, + ACTIONS(856), 2, sym__ws, sym_comment, - ACTIONS(854), 2, + ACTIONS(860), 2, sym_nil_lit, sym_fancy_literal, - ACTIONS(852), 3, + ACTIONS(858), 3, sym_num_lit, sym_kwd_lit, sym_char_lit, - STATE(105), 3, + STATE(109), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(633), 3, + STATE(635), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(612), 16, + STATE(628), 16, sym__form, sym_str_lit, sym_sym_lit, @@ -14220,67 +14220,67 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(19), 1, anon_sym_POUND_CARET, - ACTIONS(456), 1, + ACTIONS(522), 1, aux_sym_str_lit_token1, - ACTIONS(460), 1, + ACTIONS(526), 1, aux_sym_sym_lit_token1, - ACTIONS(462), 1, + ACTIONS(528), 1, anon_sym_LPAREN, - ACTIONS(464), 1, + ACTIONS(530), 1, anon_sym_POUND0A, - ACTIONS(466), 1, + ACTIONS(532), 1, anon_sym_POUND, - ACTIONS(468), 1, + ACTIONS(534), 1, anon_sym_POUND_QMARK, - ACTIONS(470), 1, + ACTIONS(536), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(472), 1, + ACTIONS(538), 1, anon_sym_POUND_SQUOTE, - ACTIONS(474), 1, + ACTIONS(540), 1, anon_sym_POUND_POUND, - ACTIONS(476), 1, + ACTIONS(542), 1, anon_sym_POUND_EQ, - ACTIONS(478), 1, + ACTIONS(544), 1, anon_sym_AT, - ACTIONS(480), 1, + ACTIONS(546), 1, anon_sym_SQUOTE, - ACTIONS(482), 1, + ACTIONS(548), 1, anon_sym_BQUOTE, - ACTIONS(484), 1, + ACTIONS(550), 1, anon_sym_COMMA_AT, - ACTIONS(486), 1, + ACTIONS(552), 1, anon_sym_COMMA, - STATE(531), 1, + STATE(528), 1, aux_sym_sym_lit_repeat1, - STATE(584), 1, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(631), 1, + STATE(614), 1, sym__bare_set_lit, - STATE(632), 1, + STATE(631), 1, sym__bare_vec_lit, - STATE(761), 1, + STATE(829), 1, sym__metadata_lit, - ACTIONS(856), 2, + ACTIONS(862), 2, sym__ws, sym_comment, - ACTIONS(860), 2, + ACTIONS(866), 2, sym_nil_lit, sym_fancy_literal, - ACTIONS(858), 3, + ACTIONS(864), 3, sym_num_lit, sym_kwd_lit, sym_char_lit, - STATE(108), 3, + STATE(110), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(633), 3, + STATE(635), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(613), 16, + STATE(633), 16, sym__form, sym_str_lit, sym_sym_lit, @@ -14306,67 +14306,67 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(19), 1, anon_sym_POUND_CARET, - ACTIONS(568), 1, + ACTIONS(522), 1, aux_sym_str_lit_token1, - ACTIONS(572), 1, + ACTIONS(526), 1, aux_sym_sym_lit_token1, - ACTIONS(574), 1, + ACTIONS(528), 1, anon_sym_LPAREN, - ACTIONS(576), 1, + ACTIONS(530), 1, anon_sym_POUND0A, - ACTIONS(578), 1, + ACTIONS(532), 1, anon_sym_POUND, - ACTIONS(580), 1, + ACTIONS(534), 1, anon_sym_POUND_QMARK, - ACTIONS(582), 1, + ACTIONS(536), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(584), 1, + ACTIONS(538), 1, anon_sym_POUND_SQUOTE, - ACTIONS(586), 1, + ACTIONS(540), 1, anon_sym_POUND_POUND, - ACTIONS(588), 1, + ACTIONS(542), 1, anon_sym_POUND_EQ, - ACTIONS(590), 1, + ACTIONS(544), 1, anon_sym_AT, - ACTIONS(592), 1, + ACTIONS(546), 1, anon_sym_SQUOTE, - ACTIONS(594), 1, + ACTIONS(548), 1, anon_sym_BQUOTE, - ACTIONS(596), 1, + ACTIONS(550), 1, anon_sym_COMMA_AT, - ACTIONS(598), 1, + ACTIONS(552), 1, anon_sym_COMMA, - STATE(246), 1, - sym__bare_vec_lit, - STATE(247), 1, - sym__bare_set_lit, - STATE(478), 1, + STATE(528), 1, aux_sym_sym_lit_repeat1, - STATE(584), 1, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(761), 1, + STATE(614), 1, + sym__bare_set_lit, + STATE(631), 1, + sym__bare_vec_lit, + STATE(829), 1, sym__metadata_lit, - ACTIONS(862), 2, + ACTIONS(868), 2, sym__ws, sym_comment, - ACTIONS(866), 2, + ACTIONS(872), 2, sym_nil_lit, sym_fancy_literal, - ACTIONS(864), 3, + ACTIONS(870), 3, sym_num_lit, sym_kwd_lit, sym_char_lit, - STATE(165), 3, + STATE(113), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(245), 3, + STATE(635), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(295), 16, + STATE(637), 16, sym__form, sym_str_lit, sym_sym_lit, @@ -14392,67 +14392,67 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(19), 1, anon_sym_POUND_CARET, - ACTIONS(456), 1, + ACTIONS(578), 1, aux_sym_str_lit_token1, - ACTIONS(460), 1, + ACTIONS(582), 1, aux_sym_sym_lit_token1, - ACTIONS(462), 1, + ACTIONS(584), 1, anon_sym_LPAREN, - ACTIONS(464), 1, + ACTIONS(586), 1, anon_sym_POUND0A, - ACTIONS(466), 1, + ACTIONS(588), 1, anon_sym_POUND, - ACTIONS(468), 1, + ACTIONS(590), 1, anon_sym_POUND_QMARK, - ACTIONS(470), 1, + ACTIONS(592), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(472), 1, + ACTIONS(594), 1, anon_sym_POUND_SQUOTE, - ACTIONS(474), 1, + ACTIONS(596), 1, anon_sym_POUND_POUND, - ACTIONS(476), 1, + ACTIONS(598), 1, anon_sym_POUND_EQ, - ACTIONS(478), 1, + ACTIONS(600), 1, anon_sym_AT, - ACTIONS(480), 1, + ACTIONS(602), 1, anon_sym_SQUOTE, - ACTIONS(482), 1, + ACTIONS(604), 1, anon_sym_BQUOTE, - ACTIONS(484), 1, + ACTIONS(606), 1, anon_sym_COMMA_AT, - ACTIONS(486), 1, + ACTIONS(608), 1, anon_sym_COMMA, - STATE(531), 1, + STATE(246), 1, + sym__bare_vec_lit, + STATE(247), 1, + sym__bare_set_lit, + STATE(510), 1, aux_sym_sym_lit_repeat1, - STATE(584), 1, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(631), 1, - sym__bare_set_lit, - STATE(632), 1, - sym__bare_vec_lit, - STATE(761), 1, + STATE(829), 1, sym__metadata_lit, - ACTIONS(868), 2, + ACTIONS(874), 2, sym__ws, sym_comment, - ACTIONS(872), 2, + ACTIONS(878), 2, sym_nil_lit, sym_fancy_literal, - ACTIONS(870), 3, + ACTIONS(876), 3, sym_num_lit, sym_kwd_lit, sym_char_lit, - STATE(113), 3, + STATE(164), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(633), 3, + STATE(244), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(625), 16, + STATE(292), 16, sym__form, sym_str_lit, sym_sym_lit, @@ -14478,67 +14478,67 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(19), 1, anon_sym_POUND_CARET, - ACTIONS(568), 1, + ACTIONS(578), 1, aux_sym_str_lit_token1, - ACTIONS(572), 1, + ACTIONS(582), 1, aux_sym_sym_lit_token1, - ACTIONS(574), 1, + ACTIONS(584), 1, anon_sym_LPAREN, - ACTIONS(576), 1, + ACTIONS(586), 1, anon_sym_POUND0A, - ACTIONS(578), 1, + ACTIONS(588), 1, anon_sym_POUND, - ACTIONS(580), 1, + ACTIONS(590), 1, anon_sym_POUND_QMARK, - ACTIONS(582), 1, + ACTIONS(592), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(584), 1, + ACTIONS(594), 1, anon_sym_POUND_SQUOTE, - ACTIONS(586), 1, + ACTIONS(596), 1, anon_sym_POUND_POUND, - ACTIONS(588), 1, + ACTIONS(598), 1, anon_sym_POUND_EQ, - ACTIONS(590), 1, + ACTIONS(600), 1, anon_sym_AT, - ACTIONS(592), 1, + ACTIONS(602), 1, anon_sym_SQUOTE, - ACTIONS(594), 1, + ACTIONS(604), 1, anon_sym_BQUOTE, - ACTIONS(596), 1, + ACTIONS(606), 1, anon_sym_COMMA_AT, - ACTIONS(598), 1, + ACTIONS(608), 1, anon_sym_COMMA, STATE(246), 1, sym__bare_vec_lit, STATE(247), 1, sym__bare_set_lit, - STATE(478), 1, + STATE(510), 1, aux_sym_sym_lit_repeat1, - STATE(584), 1, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(761), 1, + STATE(829), 1, sym__metadata_lit, - ACTIONS(874), 2, + ACTIONS(880), 2, sym__ws, sym_comment, - ACTIONS(878), 2, + ACTIONS(884), 2, sym_nil_lit, sym_fancy_literal, - ACTIONS(876), 3, + ACTIONS(882), 3, sym_num_lit, sym_kwd_lit, sym_char_lit, - STATE(166), 3, + STATE(165), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(245), 3, + STATE(244), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(292), 16, + STATE(290), 16, sym__form, sym_str_lit, sym_sym_lit, @@ -14564,67 +14564,67 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(19), 1, anon_sym_POUND_CARET, - ACTIONS(422), 1, + ACTIONS(388), 1, aux_sym_str_lit_token1, - ACTIONS(426), 1, + ACTIONS(392), 1, aux_sym_sym_lit_token1, - ACTIONS(428), 1, + ACTIONS(394), 1, anon_sym_LPAREN, - ACTIONS(430), 1, + ACTIONS(396), 1, anon_sym_POUND0A, - ACTIONS(432), 1, + ACTIONS(398), 1, anon_sym_POUND, - ACTIONS(434), 1, + ACTIONS(400), 1, anon_sym_POUND_QMARK, - ACTIONS(436), 1, + ACTIONS(402), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(438), 1, + ACTIONS(404), 1, anon_sym_POUND_SQUOTE, - ACTIONS(440), 1, + ACTIONS(406), 1, anon_sym_POUND_POUND, - ACTIONS(442), 1, + ACTIONS(408), 1, anon_sym_POUND_EQ, - ACTIONS(444), 1, + ACTIONS(410), 1, anon_sym_AT, - ACTIONS(446), 1, + ACTIONS(412), 1, anon_sym_SQUOTE, - ACTIONS(448), 1, + ACTIONS(414), 1, anon_sym_BQUOTE, - ACTIONS(450), 1, + ACTIONS(416), 1, anon_sym_COMMA_AT, - ACTIONS(452), 1, + ACTIONS(418), 1, anon_sym_COMMA, - STATE(474), 1, + STATE(505), 1, + sym__bare_set_lit, + STATE(536), 1, aux_sym_sym_lit_repeat1, - STATE(584), 1, + STATE(537), 1, + sym__bare_vec_lit, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(757), 1, - sym__bare_set_lit, - STATE(758), 1, - sym__bare_vec_lit, - STATE(761), 1, + STATE(829), 1, sym__metadata_lit, - ACTIONS(880), 2, + ACTIONS(886), 2, sym__ws, sym_comment, - ACTIONS(884), 2, + ACTIONS(890), 2, sym_nil_lit, sym_fancy_literal, - ACTIONS(882), 3, + ACTIONS(888), 3, sym_num_lit, sym_kwd_lit, sym_char_lit, - STATE(70), 3, + STATE(78), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(759), 3, + STATE(472), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(837), 16, + STATE(484), 16, sym__form, sym_str_lit, sym_sym_lit, @@ -14650,67 +14650,67 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(19), 1, anon_sym_POUND_CARET, - ACTIONS(568), 1, + ACTIONS(746), 1, aux_sym_str_lit_token1, - ACTIONS(572), 1, + ACTIONS(750), 1, aux_sym_sym_lit_token1, - ACTIONS(574), 1, + ACTIONS(752), 1, anon_sym_LPAREN, - ACTIONS(576), 1, + ACTIONS(754), 1, anon_sym_POUND0A, - ACTIONS(578), 1, + ACTIONS(756), 1, anon_sym_POUND, - ACTIONS(580), 1, + ACTIONS(758), 1, anon_sym_POUND_QMARK, - ACTIONS(582), 1, + ACTIONS(760), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(584), 1, + ACTIONS(762), 1, anon_sym_POUND_SQUOTE, - ACTIONS(586), 1, + ACTIONS(764), 1, anon_sym_POUND_POUND, - ACTIONS(588), 1, + ACTIONS(766), 1, anon_sym_POUND_EQ, - ACTIONS(590), 1, + ACTIONS(768), 1, anon_sym_AT, - ACTIONS(592), 1, + ACTIONS(770), 1, anon_sym_SQUOTE, - ACTIONS(594), 1, + ACTIONS(772), 1, anon_sym_BQUOTE, - ACTIONS(596), 1, + ACTIONS(774), 1, anon_sym_COMMA_AT, - ACTIONS(598), 1, + ACTIONS(776), 1, anon_sym_COMMA, - STATE(246), 1, + STATE(336), 1, sym__bare_vec_lit, - STATE(247), 1, + STATE(337), 1, sym__bare_set_lit, - STATE(478), 1, + STATE(504), 1, aux_sym_sym_lit_repeat1, - STATE(584), 1, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(761), 1, + STATE(829), 1, sym__metadata_lit, - ACTIONS(886), 2, + ACTIONS(378), 2, sym__ws, sym_comment, - ACTIONS(890), 2, + ACTIONS(894), 2, sym_nil_lit, sym_fancy_literal, - ACTIONS(888), 3, + ACTIONS(892), 3, sym_num_lit, sym_kwd_lit, sym_char_lit, - STATE(167), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(245), 3, + STATE(335), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(290), 16, + STATE(448), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(311), 16, sym__form, sym_str_lit, sym_sym_lit, @@ -14736,67 +14736,67 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(19), 1, anon_sym_POUND_CARET, - ACTIONS(694), 1, + ACTIONS(422), 1, aux_sym_str_lit_token1, - ACTIONS(698), 1, + ACTIONS(426), 1, aux_sym_sym_lit_token1, - ACTIONS(700), 1, + ACTIONS(428), 1, anon_sym_LPAREN, - ACTIONS(702), 1, + ACTIONS(430), 1, anon_sym_POUND0A, - ACTIONS(704), 1, + ACTIONS(432), 1, anon_sym_POUND, - ACTIONS(706), 1, + ACTIONS(434), 1, anon_sym_POUND_QMARK, - ACTIONS(708), 1, + ACTIONS(436), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(710), 1, + ACTIONS(438), 1, anon_sym_POUND_SQUOTE, - ACTIONS(712), 1, + ACTIONS(440), 1, anon_sym_POUND_POUND, - ACTIONS(714), 1, + ACTIONS(442), 1, anon_sym_POUND_EQ, - ACTIONS(716), 1, + ACTIONS(444), 1, anon_sym_AT, - ACTIONS(718), 1, + ACTIONS(446), 1, anon_sym_SQUOTE, - ACTIONS(720), 1, + ACTIONS(448), 1, anon_sym_BQUOTE, - ACTIONS(722), 1, + ACTIONS(450), 1, anon_sym_COMMA_AT, - ACTIONS(724), 1, + ACTIONS(452), 1, anon_sym_COMMA, - STATE(335), 1, - sym__bare_vec_lit, - STATE(336), 1, - sym__bare_set_lit, - STATE(477), 1, + STATE(501), 1, aux_sym_sym_lit_repeat1, - STATE(584), 1, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(761), 1, + STATE(742), 1, + sym__bare_set_lit, + STATE(743), 1, + sym__bare_vec_lit, + STATE(829), 1, sym__metadata_lit, ACTIONS(378), 2, sym__ws, sym_comment, - ACTIONS(894), 2, + ACTIONS(898), 2, sym_nil_lit, sym_fancy_literal, - ACTIONS(892), 3, + ACTIONS(896), 3, sym_num_lit, sym_kwd_lit, sym_char_lit, - STATE(334), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, STATE(448), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(309), 16, + STATE(744), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(810), 16, sym__form, sym_str_lit, sym_sym_lit, @@ -14822,59 +14822,59 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(19), 1, anon_sym_POUND_CARET, - ACTIONS(694), 1, + ACTIONS(746), 1, aux_sym_str_lit_token1, - ACTIONS(698), 1, + ACTIONS(750), 1, aux_sym_sym_lit_token1, - ACTIONS(700), 1, + ACTIONS(752), 1, anon_sym_LPAREN, - ACTIONS(702), 1, + ACTIONS(754), 1, anon_sym_POUND0A, - ACTIONS(704), 1, + ACTIONS(756), 1, anon_sym_POUND, - ACTIONS(706), 1, + ACTIONS(758), 1, anon_sym_POUND_QMARK, - ACTIONS(708), 1, + ACTIONS(760), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(710), 1, + ACTIONS(762), 1, anon_sym_POUND_SQUOTE, - ACTIONS(712), 1, + ACTIONS(764), 1, anon_sym_POUND_POUND, - ACTIONS(714), 1, + ACTIONS(766), 1, anon_sym_POUND_EQ, - ACTIONS(716), 1, + ACTIONS(768), 1, anon_sym_AT, - ACTIONS(718), 1, + ACTIONS(770), 1, anon_sym_SQUOTE, - ACTIONS(720), 1, + ACTIONS(772), 1, anon_sym_BQUOTE, - ACTIONS(722), 1, + ACTIONS(774), 1, anon_sym_COMMA_AT, - ACTIONS(724), 1, + ACTIONS(776), 1, anon_sym_COMMA, - STATE(335), 1, - sym__bare_vec_lit, STATE(336), 1, + sym__bare_vec_lit, + STATE(337), 1, sym__bare_set_lit, - STATE(477), 1, + STATE(504), 1, aux_sym_sym_lit_repeat1, - STATE(584), 1, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(761), 1, + STATE(829), 1, sym__metadata_lit, ACTIONS(378), 2, sym__ws, sym_comment, - ACTIONS(898), 2, + ACTIONS(902), 2, sym_nil_lit, sym_fancy_literal, - ACTIONS(896), 3, + ACTIONS(900), 3, sym_num_lit, sym_kwd_lit, sym_char_lit, - STATE(334), 3, + STATE(335), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, @@ -14882,7 +14882,7 @@ static uint16_t ts_small_parse_table[] = { sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(310), 16, + STATE(312), 16, sym__form, sym_str_lit, sym_sym_lit, @@ -14938,29 +14938,29 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA_AT, ACTIONS(45), 1, anon_sym_COMMA, - STATE(384), 1, - sym__bare_vec_lit, - STATE(390), 1, + STATE(372), 1, sym__bare_set_lit, - STATE(505), 1, + STATE(375), 1, + sym__bare_vec_lit, + STATE(541), 1, aux_sym_sym_lit_repeat1, - STATE(584), 1, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(761), 1, + STATE(829), 1, sym__metadata_lit, ACTIONS(378), 2, sym__ws, sym_comment, - ACTIONS(902), 2, + ACTIONS(906), 2, sym_nil_lit, sym_fancy_literal, - ACTIONS(900), 3, + ACTIONS(904), 3, sym_num_lit, sym_kwd_lit, sym_char_lit, - STATE(379), 3, + STATE(376), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, @@ -14968,7 +14968,7 @@ static uint16_t ts_small_parse_table[] = { sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(397), 16, + STATE(401), 16, sym__form, sym_str_lit, sym_sym_lit, @@ -14994,59 +14994,59 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(19), 1, anon_sym_POUND_CARET, - ACTIONS(694), 1, + ACTIONS(746), 1, aux_sym_str_lit_token1, - ACTIONS(698), 1, + ACTIONS(750), 1, aux_sym_sym_lit_token1, - ACTIONS(700), 1, + ACTIONS(752), 1, anon_sym_LPAREN, - ACTIONS(702), 1, + ACTIONS(754), 1, anon_sym_POUND0A, - ACTIONS(704), 1, + ACTIONS(756), 1, anon_sym_POUND, - ACTIONS(706), 1, + ACTIONS(758), 1, anon_sym_POUND_QMARK, - ACTIONS(708), 1, + ACTIONS(760), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(710), 1, + ACTIONS(762), 1, anon_sym_POUND_SQUOTE, - ACTIONS(712), 1, + ACTIONS(764), 1, anon_sym_POUND_POUND, - ACTIONS(714), 1, + ACTIONS(766), 1, anon_sym_POUND_EQ, - ACTIONS(716), 1, + ACTIONS(768), 1, anon_sym_AT, - ACTIONS(718), 1, + ACTIONS(770), 1, anon_sym_SQUOTE, - ACTIONS(720), 1, + ACTIONS(772), 1, anon_sym_BQUOTE, - ACTIONS(722), 1, + ACTIONS(774), 1, anon_sym_COMMA_AT, - ACTIONS(724), 1, + ACTIONS(776), 1, anon_sym_COMMA, - STATE(335), 1, - sym__bare_vec_lit, STATE(336), 1, + sym__bare_vec_lit, + STATE(337), 1, sym__bare_set_lit, - STATE(477), 1, + STATE(504), 1, aux_sym_sym_lit_repeat1, - STATE(584), 1, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(761), 1, + STATE(829), 1, sym__metadata_lit, ACTIONS(378), 2, sym__ws, sym_comment, - ACTIONS(906), 2, + ACTIONS(910), 2, sym_nil_lit, sym_fancy_literal, - ACTIONS(904), 3, + ACTIONS(908), 3, sym_num_lit, sym_kwd_lit, sym_char_lit, - STATE(334), 3, + STATE(335), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, @@ -15054,7 +15054,7 @@ static uint16_t ts_small_parse_table[] = { sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(311), 16, + STATE(313), 16, sym__form, sym_str_lit, sym_sym_lit, @@ -15080,59 +15080,59 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(19), 1, anon_sym_POUND_CARET, - ACTIONS(694), 1, + ACTIONS(746), 1, aux_sym_str_lit_token1, - ACTIONS(698), 1, + ACTIONS(750), 1, aux_sym_sym_lit_token1, - ACTIONS(700), 1, + ACTIONS(752), 1, anon_sym_LPAREN, - ACTIONS(702), 1, + ACTIONS(754), 1, anon_sym_POUND0A, - ACTIONS(704), 1, + ACTIONS(756), 1, anon_sym_POUND, - ACTIONS(706), 1, + ACTIONS(758), 1, anon_sym_POUND_QMARK, - ACTIONS(708), 1, + ACTIONS(760), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(710), 1, + ACTIONS(762), 1, anon_sym_POUND_SQUOTE, - ACTIONS(712), 1, + ACTIONS(764), 1, anon_sym_POUND_POUND, - ACTIONS(714), 1, + ACTIONS(766), 1, anon_sym_POUND_EQ, - ACTIONS(716), 1, + ACTIONS(768), 1, anon_sym_AT, - ACTIONS(718), 1, + ACTIONS(770), 1, anon_sym_SQUOTE, - ACTIONS(720), 1, + ACTIONS(772), 1, anon_sym_BQUOTE, - ACTIONS(722), 1, + ACTIONS(774), 1, anon_sym_COMMA_AT, - ACTIONS(724), 1, + ACTIONS(776), 1, anon_sym_COMMA, - STATE(335), 1, - sym__bare_vec_lit, STATE(336), 1, + sym__bare_vec_lit, + STATE(337), 1, sym__bare_set_lit, - STATE(477), 1, + STATE(504), 1, aux_sym_sym_lit_repeat1, - STATE(584), 1, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(761), 1, + STATE(829), 1, sym__metadata_lit, ACTIONS(378), 2, sym__ws, sym_comment, - ACTIONS(910), 2, + ACTIONS(914), 2, sym_nil_lit, sym_fancy_literal, - ACTIONS(908), 3, + ACTIONS(912), 3, sym_num_lit, sym_kwd_lit, sym_char_lit, - STATE(334), 3, + STATE(335), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, @@ -15140,7 +15140,7 @@ static uint16_t ts_small_parse_table[] = { sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(315), 16, + STATE(317), 16, sym__form, sym_str_lit, sym_sym_lit, @@ -15166,67 +15166,67 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(19), 1, anon_sym_POUND_CARET, - ACTIONS(694), 1, + ACTIONS(746), 1, aux_sym_str_lit_token1, - ACTIONS(698), 1, + ACTIONS(750), 1, aux_sym_sym_lit_token1, - ACTIONS(700), 1, + ACTIONS(752), 1, anon_sym_LPAREN, - ACTIONS(702), 1, + ACTIONS(754), 1, anon_sym_POUND0A, - ACTIONS(704), 1, + ACTIONS(756), 1, anon_sym_POUND, - ACTIONS(706), 1, + ACTIONS(758), 1, anon_sym_POUND_QMARK, - ACTIONS(708), 1, + ACTIONS(760), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(710), 1, + ACTIONS(762), 1, anon_sym_POUND_SQUOTE, - ACTIONS(712), 1, + ACTIONS(764), 1, anon_sym_POUND_POUND, - ACTIONS(714), 1, + ACTIONS(766), 1, anon_sym_POUND_EQ, - ACTIONS(716), 1, + ACTIONS(768), 1, anon_sym_AT, - ACTIONS(718), 1, + ACTIONS(770), 1, anon_sym_SQUOTE, - ACTIONS(720), 1, + ACTIONS(772), 1, anon_sym_BQUOTE, - ACTIONS(722), 1, + ACTIONS(774), 1, anon_sym_COMMA_AT, - ACTIONS(724), 1, + ACTIONS(776), 1, anon_sym_COMMA, - STATE(335), 1, - sym__bare_vec_lit, STATE(336), 1, + sym__bare_vec_lit, + STATE(337), 1, sym__bare_set_lit, - STATE(477), 1, + STATE(504), 1, aux_sym_sym_lit_repeat1, - STATE(584), 1, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(761), 1, + STATE(829), 1, sym__metadata_lit, - ACTIONS(912), 2, + ACTIONS(916), 2, sym__ws, sym_comment, - ACTIONS(916), 2, + ACTIONS(920), 2, sym_nil_lit, sym_fancy_literal, - ACTIONS(914), 3, + ACTIONS(918), 3, sym_num_lit, sym_kwd_lit, sym_char_lit, - STATE(130), 3, + STATE(129), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(334), 3, + STATE(335), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(321), 16, + STATE(323), 16, sym__form, sym_str_lit, sym_sym_lit, @@ -15252,55 +15252,55 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(19), 1, anon_sym_POUND_CARET, - ACTIONS(694), 1, + ACTIONS(746), 1, aux_sym_str_lit_token1, - ACTIONS(698), 1, + ACTIONS(750), 1, aux_sym_sym_lit_token1, - ACTIONS(700), 1, + ACTIONS(752), 1, anon_sym_LPAREN, - ACTIONS(702), 1, + ACTIONS(754), 1, anon_sym_POUND0A, - ACTIONS(704), 1, + ACTIONS(756), 1, anon_sym_POUND, - ACTIONS(706), 1, + ACTIONS(758), 1, anon_sym_POUND_QMARK, - ACTIONS(708), 1, + ACTIONS(760), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(710), 1, + ACTIONS(762), 1, anon_sym_POUND_SQUOTE, - ACTIONS(712), 1, + ACTIONS(764), 1, anon_sym_POUND_POUND, - ACTIONS(714), 1, + ACTIONS(766), 1, anon_sym_POUND_EQ, - ACTIONS(716), 1, + ACTIONS(768), 1, anon_sym_AT, - ACTIONS(718), 1, + ACTIONS(770), 1, anon_sym_SQUOTE, - ACTIONS(720), 1, + ACTIONS(772), 1, anon_sym_BQUOTE, - ACTIONS(722), 1, + ACTIONS(774), 1, anon_sym_COMMA_AT, - ACTIONS(724), 1, + ACTIONS(776), 1, anon_sym_COMMA, - STATE(335), 1, - sym__bare_vec_lit, STATE(336), 1, + sym__bare_vec_lit, + STATE(337), 1, sym__bare_set_lit, - STATE(477), 1, + STATE(504), 1, aux_sym_sym_lit_repeat1, - STATE(584), 1, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(761), 1, + STATE(829), 1, sym__metadata_lit, - ACTIONS(918), 2, + ACTIONS(922), 2, sym__ws, sym_comment, - ACTIONS(922), 2, + ACTIONS(926), 2, sym_nil_lit, sym_fancy_literal, - ACTIONS(920), 3, + ACTIONS(924), 3, sym_num_lit, sym_kwd_lit, sym_char_lit, @@ -15308,11 +15308,11 @@ static uint16_t ts_small_parse_table[] = { sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(334), 3, + STATE(335), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(322), 16, + STATE(324), 16, sym__form, sym_str_lit, sym_sym_lit, @@ -15338,55 +15338,55 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(19), 1, anon_sym_POUND_CARET, - ACTIONS(694), 1, + ACTIONS(746), 1, aux_sym_str_lit_token1, - ACTIONS(698), 1, + ACTIONS(750), 1, aux_sym_sym_lit_token1, - ACTIONS(700), 1, + ACTIONS(752), 1, anon_sym_LPAREN, - ACTIONS(702), 1, + ACTIONS(754), 1, anon_sym_POUND0A, - ACTIONS(704), 1, + ACTIONS(756), 1, anon_sym_POUND, - ACTIONS(706), 1, + ACTIONS(758), 1, anon_sym_POUND_QMARK, - ACTIONS(708), 1, + ACTIONS(760), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(710), 1, + ACTIONS(762), 1, anon_sym_POUND_SQUOTE, - ACTIONS(712), 1, + ACTIONS(764), 1, anon_sym_POUND_POUND, - ACTIONS(714), 1, + ACTIONS(766), 1, anon_sym_POUND_EQ, - ACTIONS(716), 1, + ACTIONS(768), 1, anon_sym_AT, - ACTIONS(718), 1, + ACTIONS(770), 1, anon_sym_SQUOTE, - ACTIONS(720), 1, + ACTIONS(772), 1, anon_sym_BQUOTE, - ACTIONS(722), 1, + ACTIONS(774), 1, anon_sym_COMMA_AT, - ACTIONS(724), 1, + ACTIONS(776), 1, anon_sym_COMMA, - STATE(335), 1, - sym__bare_vec_lit, STATE(336), 1, + sym__bare_vec_lit, + STATE(337), 1, sym__bare_set_lit, - STATE(477), 1, + STATE(504), 1, aux_sym_sym_lit_repeat1, - STATE(584), 1, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(761), 1, + STATE(829), 1, sym__metadata_lit, - ACTIONS(924), 2, + ACTIONS(928), 2, sym__ws, sym_comment, - ACTIONS(928), 2, + ACTIONS(932), 2, sym_nil_lit, sym_fancy_literal, - ACTIONS(926), 3, + ACTIONS(930), 3, sym_num_lit, sym_kwd_lit, sym_char_lit, @@ -15394,11 +15394,11 @@ static uint16_t ts_small_parse_table[] = { sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(334), 3, + STATE(335), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(323), 16, + STATE(325), 16, sym__form, sym_str_lit, sym_sym_lit, @@ -15454,29 +15454,29 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA_AT, ACTIONS(45), 1, anon_sym_COMMA, - STATE(384), 1, - sym__bare_vec_lit, - STATE(390), 1, + STATE(372), 1, sym__bare_set_lit, - STATE(505), 1, + STATE(375), 1, + sym__bare_vec_lit, + STATE(541), 1, aux_sym_sym_lit_repeat1, - STATE(584), 1, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(761), 1, + STATE(829), 1, sym__metadata_lit, ACTIONS(378), 2, sym__ws, sym_comment, - ACTIONS(932), 2, + ACTIONS(936), 2, sym_nil_lit, sym_fancy_literal, - ACTIONS(930), 3, + ACTIONS(934), 3, sym_num_lit, sym_kwd_lit, sym_char_lit, - STATE(379), 3, + STATE(376), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, @@ -15484,7 +15484,7 @@ static uint16_t ts_small_parse_table[] = { sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(403), 16, + STATE(406), 16, sym__form, sym_str_lit, sym_sym_lit, @@ -15510,55 +15510,55 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(19), 1, anon_sym_POUND_CARET, - ACTIONS(694), 1, + ACTIONS(746), 1, aux_sym_str_lit_token1, - ACTIONS(698), 1, + ACTIONS(750), 1, aux_sym_sym_lit_token1, - ACTIONS(700), 1, + ACTIONS(752), 1, anon_sym_LPAREN, - ACTIONS(702), 1, + ACTIONS(754), 1, anon_sym_POUND0A, - ACTIONS(704), 1, + ACTIONS(756), 1, anon_sym_POUND, - ACTIONS(706), 1, + ACTIONS(758), 1, anon_sym_POUND_QMARK, - ACTIONS(708), 1, + ACTIONS(760), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(710), 1, + ACTIONS(762), 1, anon_sym_POUND_SQUOTE, - ACTIONS(712), 1, + ACTIONS(764), 1, anon_sym_POUND_POUND, - ACTIONS(714), 1, + ACTIONS(766), 1, anon_sym_POUND_EQ, - ACTIONS(716), 1, + ACTIONS(768), 1, anon_sym_AT, - ACTIONS(718), 1, + ACTIONS(770), 1, anon_sym_SQUOTE, - ACTIONS(720), 1, + ACTIONS(772), 1, anon_sym_BQUOTE, - ACTIONS(722), 1, + ACTIONS(774), 1, anon_sym_COMMA_AT, - ACTIONS(724), 1, + ACTIONS(776), 1, anon_sym_COMMA, - STATE(335), 1, - sym__bare_vec_lit, STATE(336), 1, + sym__bare_vec_lit, + STATE(337), 1, sym__bare_set_lit, - STATE(477), 1, + STATE(504), 1, aux_sym_sym_lit_repeat1, - STATE(584), 1, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(761), 1, + STATE(829), 1, sym__metadata_lit, - ACTIONS(934), 2, + ACTIONS(938), 2, sym__ws, sym_comment, - ACTIONS(938), 2, + ACTIONS(942), 2, sym_nil_lit, sym_fancy_literal, - ACTIONS(936), 3, + ACTIONS(940), 3, sym_num_lit, sym_kwd_lit, sym_char_lit, @@ -15566,11 +15566,11 @@ static uint16_t ts_small_parse_table[] = { sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(334), 3, + STATE(335), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(327), 16, + STATE(328), 16, sym__form, sym_str_lit, sym_sym_lit, @@ -15626,29 +15626,29 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA_AT, ACTIONS(45), 1, anon_sym_COMMA, - STATE(384), 1, - sym__bare_vec_lit, - STATE(390), 1, + STATE(372), 1, sym__bare_set_lit, - STATE(505), 1, + STATE(375), 1, + sym__bare_vec_lit, + STATE(541), 1, aux_sym_sym_lit_repeat1, - STATE(584), 1, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(761), 1, + STATE(829), 1, sym__metadata_lit, ACTIONS(378), 2, sym__ws, sym_comment, - ACTIONS(942), 2, + ACTIONS(946), 2, sym_nil_lit, sym_fancy_literal, - ACTIONS(940), 3, + ACTIONS(944), 3, sym_num_lit, sym_kwd_lit, sym_char_lit, - STATE(379), 3, + STATE(376), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, @@ -15656,7 +15656,7 @@ static uint16_t ts_small_parse_table[] = { sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(404), 16, + STATE(407), 16, sym__form, sym_str_lit, sym_sym_lit, @@ -15682,59 +15682,59 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(19), 1, anon_sym_POUND_CARET, - ACTIONS(694), 1, + ACTIONS(746), 1, aux_sym_str_lit_token1, - ACTIONS(698), 1, + ACTIONS(750), 1, aux_sym_sym_lit_token1, - ACTIONS(700), 1, + ACTIONS(752), 1, anon_sym_LPAREN, - ACTIONS(702), 1, + ACTIONS(754), 1, anon_sym_POUND0A, - ACTIONS(704), 1, + ACTIONS(756), 1, anon_sym_POUND, - ACTIONS(706), 1, + ACTIONS(758), 1, anon_sym_POUND_QMARK, - ACTIONS(708), 1, + ACTIONS(760), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(710), 1, + ACTIONS(762), 1, anon_sym_POUND_SQUOTE, - ACTIONS(712), 1, + ACTIONS(764), 1, anon_sym_POUND_POUND, - ACTIONS(714), 1, + ACTIONS(766), 1, anon_sym_POUND_EQ, - ACTIONS(716), 1, + ACTIONS(768), 1, anon_sym_AT, - ACTIONS(718), 1, + ACTIONS(770), 1, anon_sym_SQUOTE, - ACTIONS(720), 1, + ACTIONS(772), 1, anon_sym_BQUOTE, - ACTIONS(722), 1, + ACTIONS(774), 1, anon_sym_COMMA_AT, - ACTIONS(724), 1, + ACTIONS(776), 1, anon_sym_COMMA, - STATE(335), 1, - sym__bare_vec_lit, STATE(336), 1, + sym__bare_vec_lit, + STATE(337), 1, sym__bare_set_lit, - STATE(477), 1, + STATE(504), 1, aux_sym_sym_lit_repeat1, - STATE(584), 1, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(761), 1, + STATE(829), 1, sym__metadata_lit, ACTIONS(378), 2, sym__ws, sym_comment, - ACTIONS(946), 2, + ACTIONS(950), 2, sym_nil_lit, sym_fancy_literal, - ACTIONS(944), 3, + ACTIONS(948), 3, sym_num_lit, sym_kwd_lit, sym_char_lit, - STATE(334), 3, + STATE(335), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, @@ -15742,7 +15742,7 @@ static uint16_t ts_small_parse_table[] = { sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(332), 16, + STATE(333), 16, sym__form, sym_str_lit, sym_sym_lit, @@ -15798,29 +15798,29 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA_AT, ACTIONS(45), 1, anon_sym_COMMA, - STATE(384), 1, - sym__bare_vec_lit, - STATE(390), 1, + STATE(372), 1, sym__bare_set_lit, - STATE(505), 1, + STATE(375), 1, + sym__bare_vec_lit, + STATE(541), 1, aux_sym_sym_lit_repeat1, - STATE(584), 1, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(761), 1, + STATE(829), 1, sym__metadata_lit, ACTIONS(378), 2, sym__ws, sym_comment, - ACTIONS(950), 2, + ACTIONS(954), 2, sym_nil_lit, sym_fancy_literal, - ACTIONS(948), 3, + ACTIONS(952), 3, sym_num_lit, sym_kwd_lit, sym_char_lit, - STATE(379), 3, + STATE(376), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, @@ -15828,7 +15828,7 @@ static uint16_t ts_small_parse_table[] = { sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(406), 16, + STATE(439), 16, sym__form, sym_str_lit, sym_sym_lit, @@ -15854,59 +15854,59 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(19), 1, anon_sym_POUND_CARET, - ACTIONS(694), 1, + ACTIONS(746), 1, aux_sym_str_lit_token1, - ACTIONS(698), 1, + ACTIONS(750), 1, aux_sym_sym_lit_token1, - ACTIONS(700), 1, + ACTIONS(752), 1, anon_sym_LPAREN, - ACTIONS(702), 1, + ACTIONS(754), 1, anon_sym_POUND0A, - ACTIONS(704), 1, + ACTIONS(756), 1, anon_sym_POUND, - ACTIONS(706), 1, + ACTIONS(758), 1, anon_sym_POUND_QMARK, - ACTIONS(708), 1, + ACTIONS(760), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(710), 1, + ACTIONS(762), 1, anon_sym_POUND_SQUOTE, - ACTIONS(712), 1, + ACTIONS(764), 1, anon_sym_POUND_POUND, - ACTIONS(714), 1, + ACTIONS(766), 1, anon_sym_POUND_EQ, - ACTIONS(716), 1, + ACTIONS(768), 1, anon_sym_AT, - ACTIONS(718), 1, + ACTIONS(770), 1, anon_sym_SQUOTE, - ACTIONS(720), 1, + ACTIONS(772), 1, anon_sym_BQUOTE, - ACTIONS(722), 1, + ACTIONS(774), 1, anon_sym_COMMA_AT, - ACTIONS(724), 1, + ACTIONS(776), 1, anon_sym_COMMA, - STATE(335), 1, - sym__bare_vec_lit, STATE(336), 1, + sym__bare_vec_lit, + STATE(337), 1, sym__bare_set_lit, - STATE(477), 1, + STATE(504), 1, aux_sym_sym_lit_repeat1, - STATE(584), 1, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(761), 1, + STATE(829), 1, sym__metadata_lit, ACTIONS(378), 2, sym__ws, sym_comment, - ACTIONS(954), 2, + ACTIONS(958), 2, sym_nil_lit, sym_fancy_literal, - ACTIONS(952), 3, + ACTIONS(956), 3, sym_num_lit, sym_kwd_lit, sym_char_lit, - STATE(334), 3, + STATE(335), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, @@ -15914,7 +15914,7 @@ static uint16_t ts_small_parse_table[] = { sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(333), 16, + STATE(334), 16, sym__form, sym_str_lit, sym_sym_lit, @@ -15940,59 +15940,59 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(19), 1, anon_sym_POUND_CARET, - ACTIONS(694), 1, + ACTIONS(746), 1, aux_sym_str_lit_token1, - ACTIONS(698), 1, + ACTIONS(750), 1, aux_sym_sym_lit_token1, - ACTIONS(700), 1, + ACTIONS(752), 1, anon_sym_LPAREN, - ACTIONS(702), 1, + ACTIONS(754), 1, anon_sym_POUND0A, - ACTIONS(704), 1, + ACTIONS(756), 1, anon_sym_POUND, - ACTIONS(706), 1, + ACTIONS(758), 1, anon_sym_POUND_QMARK, - ACTIONS(708), 1, + ACTIONS(760), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(710), 1, + ACTIONS(762), 1, anon_sym_POUND_SQUOTE, - ACTIONS(712), 1, + ACTIONS(764), 1, anon_sym_POUND_POUND, - ACTIONS(714), 1, + ACTIONS(766), 1, anon_sym_POUND_EQ, - ACTIONS(716), 1, + ACTIONS(768), 1, anon_sym_AT, - ACTIONS(718), 1, + ACTIONS(770), 1, anon_sym_SQUOTE, - ACTIONS(720), 1, + ACTIONS(772), 1, anon_sym_BQUOTE, - ACTIONS(722), 1, + ACTIONS(774), 1, anon_sym_COMMA_AT, - ACTIONS(724), 1, + ACTIONS(776), 1, anon_sym_COMMA, - STATE(335), 1, - sym__bare_vec_lit, STATE(336), 1, + sym__bare_vec_lit, + STATE(337), 1, sym__bare_set_lit, - STATE(477), 1, + STATE(504), 1, aux_sym_sym_lit_repeat1, - STATE(584), 1, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(761), 1, + STATE(829), 1, sym__metadata_lit, ACTIONS(378), 2, sym__ws, sym_comment, - ACTIONS(958), 2, + ACTIONS(962), 2, sym_nil_lit, sym_fancy_literal, - ACTIONS(956), 3, + ACTIONS(960), 3, sym_num_lit, sym_kwd_lit, sym_char_lit, - STATE(334), 3, + STATE(335), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, @@ -16000,7 +16000,7 @@ static uint16_t ts_small_parse_table[] = { sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(346), 16, + STATE(347), 16, sym__form, sym_str_lit, sym_sym_lit, @@ -16026,59 +16026,59 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(19), 1, anon_sym_POUND_CARET, - ACTIONS(694), 1, + ACTIONS(746), 1, aux_sym_str_lit_token1, - ACTIONS(698), 1, + ACTIONS(750), 1, aux_sym_sym_lit_token1, - ACTIONS(700), 1, + ACTIONS(752), 1, anon_sym_LPAREN, - ACTIONS(702), 1, + ACTIONS(754), 1, anon_sym_POUND0A, - ACTIONS(704), 1, + ACTIONS(756), 1, anon_sym_POUND, - ACTIONS(706), 1, + ACTIONS(758), 1, anon_sym_POUND_QMARK, - ACTIONS(708), 1, + ACTIONS(760), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(710), 1, + ACTIONS(762), 1, anon_sym_POUND_SQUOTE, - ACTIONS(712), 1, + ACTIONS(764), 1, anon_sym_POUND_POUND, - ACTIONS(714), 1, + ACTIONS(766), 1, anon_sym_POUND_EQ, - ACTIONS(716), 1, + ACTIONS(768), 1, anon_sym_AT, - ACTIONS(718), 1, + ACTIONS(770), 1, anon_sym_SQUOTE, - ACTIONS(720), 1, + ACTIONS(772), 1, anon_sym_BQUOTE, - ACTIONS(722), 1, + ACTIONS(774), 1, anon_sym_COMMA_AT, - ACTIONS(724), 1, + ACTIONS(776), 1, anon_sym_COMMA, - STATE(335), 1, - sym__bare_vec_lit, STATE(336), 1, + sym__bare_vec_lit, + STATE(337), 1, sym__bare_set_lit, - STATE(477), 1, + STATE(504), 1, aux_sym_sym_lit_repeat1, - STATE(584), 1, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(761), 1, + STATE(829), 1, sym__metadata_lit, ACTIONS(378), 2, sym__ws, sym_comment, - ACTIONS(962), 2, + ACTIONS(966), 2, sym_nil_lit, sym_fancy_literal, - ACTIONS(960), 3, + ACTIONS(964), 3, sym_num_lit, sym_kwd_lit, sym_char_lit, - STATE(334), 3, + STATE(335), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, @@ -16086,7 +16086,7 @@ static uint16_t ts_small_parse_table[] = { sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(348), 16, + STATE(350), 16, sym__form, sym_str_lit, sym_sym_lit, @@ -16112,67 +16112,67 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(19), 1, anon_sym_POUND_CARET, - ACTIONS(422), 1, + ACTIONS(578), 1, aux_sym_str_lit_token1, - ACTIONS(426), 1, + ACTIONS(582), 1, aux_sym_sym_lit_token1, - ACTIONS(428), 1, + ACTIONS(584), 1, anon_sym_LPAREN, - ACTIONS(430), 1, + ACTIONS(586), 1, anon_sym_POUND0A, - ACTIONS(432), 1, + ACTIONS(588), 1, anon_sym_POUND, - ACTIONS(434), 1, + ACTIONS(590), 1, anon_sym_POUND_QMARK, - ACTIONS(436), 1, + ACTIONS(592), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(438), 1, + ACTIONS(594), 1, anon_sym_POUND_SQUOTE, - ACTIONS(440), 1, + ACTIONS(596), 1, anon_sym_POUND_POUND, - ACTIONS(442), 1, + ACTIONS(598), 1, anon_sym_POUND_EQ, - ACTIONS(444), 1, + ACTIONS(600), 1, anon_sym_AT, - ACTIONS(446), 1, + ACTIONS(602), 1, anon_sym_SQUOTE, - ACTIONS(448), 1, + ACTIONS(604), 1, anon_sym_BQUOTE, - ACTIONS(450), 1, + ACTIONS(606), 1, anon_sym_COMMA_AT, - ACTIONS(452), 1, + ACTIONS(608), 1, anon_sym_COMMA, - STATE(474), 1, + STATE(246), 1, + sym__bare_vec_lit, + STATE(247), 1, + sym__bare_set_lit, + STATE(510), 1, aux_sym_sym_lit_repeat1, - STATE(584), 1, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(757), 1, - sym__bare_set_lit, - STATE(758), 1, - sym__bare_vec_lit, - STATE(761), 1, + STATE(829), 1, sym__metadata_lit, - ACTIONS(964), 2, + ACTIONS(968), 2, sym__ws, sym_comment, - ACTIONS(968), 2, + ACTIONS(972), 2, sym_nil_lit, sym_fancy_literal, - ACTIONS(966), 3, + ACTIONS(970), 3, sym_num_lit, sym_kwd_lit, sym_char_lit, - STATE(68), 3, + STATE(166), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(759), 3, + STATE(244), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(833), 16, + STATE(288), 16, sym__form, sym_str_lit, sym_sym_lit, @@ -16198,67 +16198,67 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(19), 1, anon_sym_POUND_CARET, - ACTIONS(422), 1, + ACTIONS(746), 1, aux_sym_str_lit_token1, - ACTIONS(426), 1, + ACTIONS(750), 1, aux_sym_sym_lit_token1, - ACTIONS(428), 1, + ACTIONS(752), 1, anon_sym_LPAREN, - ACTIONS(430), 1, + ACTIONS(754), 1, anon_sym_POUND0A, - ACTIONS(432), 1, + ACTIONS(756), 1, anon_sym_POUND, - ACTIONS(434), 1, + ACTIONS(758), 1, anon_sym_POUND_QMARK, - ACTIONS(436), 1, + ACTIONS(760), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(438), 1, + ACTIONS(762), 1, anon_sym_POUND_SQUOTE, - ACTIONS(440), 1, + ACTIONS(764), 1, anon_sym_POUND_POUND, - ACTIONS(442), 1, + ACTIONS(766), 1, anon_sym_POUND_EQ, - ACTIONS(444), 1, + ACTIONS(768), 1, anon_sym_AT, - ACTIONS(446), 1, + ACTIONS(770), 1, anon_sym_SQUOTE, - ACTIONS(448), 1, + ACTIONS(772), 1, anon_sym_BQUOTE, - ACTIONS(450), 1, + ACTIONS(774), 1, anon_sym_COMMA_AT, - ACTIONS(452), 1, + ACTIONS(776), 1, anon_sym_COMMA, - STATE(474), 1, + STATE(336), 1, + sym__bare_vec_lit, + STATE(337), 1, + sym__bare_set_lit, + STATE(504), 1, aux_sym_sym_lit_repeat1, - STATE(584), 1, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(757), 1, - sym__bare_set_lit, - STATE(758), 1, - sym__bare_vec_lit, - STATE(761), 1, + STATE(829), 1, sym__metadata_lit, - ACTIONS(970), 2, + ACTIONS(378), 2, sym__ws, sym_comment, - ACTIONS(974), 2, + ACTIONS(976), 2, sym_nil_lit, sym_fancy_literal, - ACTIONS(972), 3, + ACTIONS(974), 3, sym_num_lit, sym_kwd_lit, sym_char_lit, - STATE(67), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(759), 3, + STATE(335), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(825), 16, + STATE(448), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(357), 16, sym__form, sym_str_lit, sym_sym_lit, @@ -16284,59 +16284,59 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(19), 1, anon_sym_POUND_CARET, - ACTIONS(694), 1, + ACTIONS(746), 1, aux_sym_str_lit_token1, - ACTIONS(698), 1, + ACTIONS(750), 1, aux_sym_sym_lit_token1, - ACTIONS(700), 1, + ACTIONS(752), 1, anon_sym_LPAREN, - ACTIONS(702), 1, + ACTIONS(754), 1, anon_sym_POUND0A, - ACTIONS(704), 1, + ACTIONS(756), 1, anon_sym_POUND, - ACTIONS(706), 1, + ACTIONS(758), 1, anon_sym_POUND_QMARK, - ACTIONS(708), 1, + ACTIONS(760), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(710), 1, + ACTIONS(762), 1, anon_sym_POUND_SQUOTE, - ACTIONS(712), 1, + ACTIONS(764), 1, anon_sym_POUND_POUND, - ACTIONS(714), 1, + ACTIONS(766), 1, anon_sym_POUND_EQ, - ACTIONS(716), 1, + ACTIONS(768), 1, anon_sym_AT, - ACTIONS(718), 1, + ACTIONS(770), 1, anon_sym_SQUOTE, - ACTIONS(720), 1, + ACTIONS(772), 1, anon_sym_BQUOTE, - ACTIONS(722), 1, + ACTIONS(774), 1, anon_sym_COMMA_AT, - ACTIONS(724), 1, + ACTIONS(776), 1, anon_sym_COMMA, - STATE(335), 1, - sym__bare_vec_lit, STATE(336), 1, + sym__bare_vec_lit, + STATE(337), 1, sym__bare_set_lit, - STATE(477), 1, + STATE(504), 1, aux_sym_sym_lit_repeat1, - STATE(584), 1, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(761), 1, + STATE(829), 1, sym__metadata_lit, ACTIONS(378), 2, sym__ws, sym_comment, - ACTIONS(978), 2, + ACTIONS(980), 2, sym_nil_lit, sym_fancy_literal, - ACTIONS(976), 3, + ACTIONS(978), 3, sym_num_lit, sym_kwd_lit, sym_char_lit, - STATE(334), 3, + STATE(335), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, @@ -16344,7 +16344,7 @@ static uint16_t ts_small_parse_table[] = { sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(355), 16, + STATE(365), 16, sym__form, sym_str_lit, sym_sym_lit, @@ -16370,67 +16370,67 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(19), 1, anon_sym_POUND_CARET, - ACTIONS(422), 1, + ACTIONS(388), 1, aux_sym_str_lit_token1, - ACTIONS(426), 1, + ACTIONS(392), 1, aux_sym_sym_lit_token1, - ACTIONS(428), 1, + ACTIONS(394), 1, anon_sym_LPAREN, - ACTIONS(430), 1, + ACTIONS(396), 1, anon_sym_POUND0A, - ACTIONS(432), 1, + ACTIONS(398), 1, anon_sym_POUND, - ACTIONS(434), 1, + ACTIONS(400), 1, anon_sym_POUND_QMARK, - ACTIONS(436), 1, + ACTIONS(402), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(438), 1, + ACTIONS(404), 1, anon_sym_POUND_SQUOTE, - ACTIONS(440), 1, + ACTIONS(406), 1, anon_sym_POUND_POUND, - ACTIONS(442), 1, + ACTIONS(408), 1, anon_sym_POUND_EQ, - ACTIONS(444), 1, + ACTIONS(410), 1, anon_sym_AT, - ACTIONS(446), 1, + ACTIONS(412), 1, anon_sym_SQUOTE, - ACTIONS(448), 1, + ACTIONS(414), 1, anon_sym_BQUOTE, - ACTIONS(450), 1, + ACTIONS(416), 1, anon_sym_COMMA_AT, - ACTIONS(452), 1, + ACTIONS(418), 1, anon_sym_COMMA, - STATE(474), 1, + STATE(505), 1, + sym__bare_set_lit, + STATE(536), 1, aux_sym_sym_lit_repeat1, - STATE(584), 1, + STATE(537), 1, + sym__bare_vec_lit, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(757), 1, - sym__bare_set_lit, - STATE(758), 1, - sym__bare_vec_lit, - STATE(761), 1, + STATE(829), 1, sym__metadata_lit, - ACTIONS(980), 2, + ACTIONS(982), 2, sym__ws, sym_comment, - ACTIONS(984), 2, + ACTIONS(986), 2, sym_nil_lit, sym_fancy_literal, - ACTIONS(982), 3, + ACTIONS(984), 3, sym_num_lit, sym_kwd_lit, sym_char_lit, - STATE(65), 3, + STATE(76), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(759), 3, + STATE(472), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(824), 16, + STATE(486), 16, sym__form, sym_str_lit, sym_sym_lit, @@ -16456,67 +16456,67 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(19), 1, anon_sym_POUND_CARET, - ACTIONS(694), 1, + ACTIONS(746), 1, aux_sym_str_lit_token1, - ACTIONS(698), 1, + ACTIONS(750), 1, aux_sym_sym_lit_token1, - ACTIONS(700), 1, + ACTIONS(752), 1, anon_sym_LPAREN, - ACTIONS(702), 1, + ACTIONS(754), 1, anon_sym_POUND0A, - ACTIONS(704), 1, + ACTIONS(756), 1, anon_sym_POUND, - ACTIONS(706), 1, + ACTIONS(758), 1, anon_sym_POUND_QMARK, - ACTIONS(708), 1, + ACTIONS(760), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(710), 1, + ACTIONS(762), 1, anon_sym_POUND_SQUOTE, - ACTIONS(712), 1, + ACTIONS(764), 1, anon_sym_POUND_POUND, - ACTIONS(714), 1, + ACTIONS(766), 1, anon_sym_POUND_EQ, - ACTIONS(716), 1, + ACTIONS(768), 1, anon_sym_AT, - ACTIONS(718), 1, + ACTIONS(770), 1, anon_sym_SQUOTE, - ACTIONS(720), 1, + ACTIONS(772), 1, anon_sym_BQUOTE, - ACTIONS(722), 1, + ACTIONS(774), 1, anon_sym_COMMA_AT, - ACTIONS(724), 1, + ACTIONS(776), 1, anon_sym_COMMA, - STATE(335), 1, - sym__bare_vec_lit, STATE(336), 1, + sym__bare_vec_lit, + STATE(337), 1, sym__bare_set_lit, - STATE(477), 1, + STATE(504), 1, aux_sym_sym_lit_repeat1, - STATE(584), 1, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(761), 1, + STATE(829), 1, sym__metadata_lit, - ACTIONS(378), 2, + ACTIONS(988), 2, sym__ws, sym_comment, - ACTIONS(988), 2, + ACTIONS(992), 2, sym_nil_lit, sym_fancy_literal, - ACTIONS(986), 3, + ACTIONS(990), 3, sym_num_lit, sym_kwd_lit, sym_char_lit, - STATE(334), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(448), 3, + STATE(141), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(361), 16, + STATE(335), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(354), 16, sym__form, sym_str_lit, sym_sym_lit, @@ -16542,67 +16542,67 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(19), 1, anon_sym_POUND_CARET, - ACTIONS(694), 1, + ACTIONS(422), 1, aux_sym_str_lit_token1, - ACTIONS(698), 1, + ACTIONS(426), 1, aux_sym_sym_lit_token1, - ACTIONS(700), 1, + ACTIONS(428), 1, anon_sym_LPAREN, - ACTIONS(702), 1, + ACTIONS(430), 1, anon_sym_POUND0A, - ACTIONS(704), 1, + ACTIONS(432), 1, anon_sym_POUND, - ACTIONS(706), 1, + ACTIONS(434), 1, anon_sym_POUND_QMARK, - ACTIONS(708), 1, + ACTIONS(436), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(710), 1, + ACTIONS(438), 1, anon_sym_POUND_SQUOTE, - ACTIONS(712), 1, + ACTIONS(440), 1, anon_sym_POUND_POUND, - ACTIONS(714), 1, + ACTIONS(442), 1, anon_sym_POUND_EQ, - ACTIONS(716), 1, + ACTIONS(444), 1, anon_sym_AT, - ACTIONS(718), 1, + ACTIONS(446), 1, anon_sym_SQUOTE, - ACTIONS(720), 1, + ACTIONS(448), 1, anon_sym_BQUOTE, - ACTIONS(722), 1, + ACTIONS(450), 1, anon_sym_COMMA_AT, - ACTIONS(724), 1, + ACTIONS(452), 1, anon_sym_COMMA, - STATE(335), 1, - sym__bare_vec_lit, - STATE(336), 1, - sym__bare_set_lit, - STATE(477), 1, + STATE(501), 1, aux_sym_sym_lit_repeat1, - STATE(584), 1, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(761), 1, + STATE(742), 1, + sym__bare_set_lit, + STATE(743), 1, + sym__bare_vec_lit, + STATE(829), 1, sym__metadata_lit, - ACTIONS(990), 2, + ACTIONS(994), 2, sym__ws, sym_comment, - ACTIONS(994), 2, + ACTIONS(998), 2, sym_nil_lit, sym_fancy_literal, - ACTIONS(992), 3, + ACTIONS(996), 3, sym_num_lit, sym_kwd_lit, sym_char_lit, - STATE(141), 3, + STATE(195), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(334), 3, + STATE(744), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(354), 16, + STATE(802), 16, sym__form, sym_str_lit, sym_sym_lit, @@ -16628,55 +16628,55 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(19), 1, anon_sym_POUND_CARET, - ACTIONS(694), 1, + ACTIONS(746), 1, aux_sym_str_lit_token1, - ACTIONS(698), 1, + ACTIONS(750), 1, aux_sym_sym_lit_token1, - ACTIONS(700), 1, + ACTIONS(752), 1, anon_sym_LPAREN, - ACTIONS(702), 1, + ACTIONS(754), 1, anon_sym_POUND0A, - ACTIONS(704), 1, + ACTIONS(756), 1, anon_sym_POUND, - ACTIONS(706), 1, + ACTIONS(758), 1, anon_sym_POUND_QMARK, - ACTIONS(708), 1, + ACTIONS(760), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(710), 1, + ACTIONS(762), 1, anon_sym_POUND_SQUOTE, - ACTIONS(712), 1, + ACTIONS(764), 1, anon_sym_POUND_POUND, - ACTIONS(714), 1, + ACTIONS(766), 1, anon_sym_POUND_EQ, - ACTIONS(716), 1, + ACTIONS(768), 1, anon_sym_AT, - ACTIONS(718), 1, + ACTIONS(770), 1, anon_sym_SQUOTE, - ACTIONS(720), 1, + ACTIONS(772), 1, anon_sym_BQUOTE, - ACTIONS(722), 1, + ACTIONS(774), 1, anon_sym_COMMA_AT, - ACTIONS(724), 1, + ACTIONS(776), 1, anon_sym_COMMA, - STATE(335), 1, - sym__bare_vec_lit, STATE(336), 1, + sym__bare_vec_lit, + STATE(337), 1, sym__bare_set_lit, - STATE(477), 1, + STATE(504), 1, aux_sym_sym_lit_repeat1, - STATE(584), 1, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(761), 1, + STATE(829), 1, sym__metadata_lit, - ACTIONS(996), 2, + ACTIONS(1000), 2, sym__ws, sym_comment, - ACTIONS(1000), 2, + ACTIONS(1004), 2, sym_nil_lit, sym_fancy_literal, - ACTIONS(998), 3, + ACTIONS(1002), 3, sym_num_lit, sym_kwd_lit, sym_char_lit, @@ -16684,7 +16684,7 @@ static uint16_t ts_small_parse_table[] = { sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(334), 3, + STATE(335), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, @@ -16714,67 +16714,67 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(19), 1, anon_sym_POUND_CARET, - ACTIONS(694), 1, + ACTIONS(422), 1, aux_sym_str_lit_token1, - ACTIONS(698), 1, + ACTIONS(426), 1, aux_sym_sym_lit_token1, - ACTIONS(700), 1, + ACTIONS(428), 1, anon_sym_LPAREN, - ACTIONS(702), 1, + ACTIONS(430), 1, anon_sym_POUND0A, - ACTIONS(704), 1, + ACTIONS(432), 1, anon_sym_POUND, - ACTIONS(706), 1, + ACTIONS(434), 1, anon_sym_POUND_QMARK, - ACTIONS(708), 1, + ACTIONS(436), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(710), 1, + ACTIONS(438), 1, anon_sym_POUND_SQUOTE, - ACTIONS(712), 1, + ACTIONS(440), 1, anon_sym_POUND_POUND, - ACTIONS(714), 1, + ACTIONS(442), 1, anon_sym_POUND_EQ, - ACTIONS(716), 1, + ACTIONS(444), 1, anon_sym_AT, - ACTIONS(718), 1, + ACTIONS(446), 1, anon_sym_SQUOTE, - ACTIONS(720), 1, + ACTIONS(448), 1, anon_sym_BQUOTE, - ACTIONS(722), 1, + ACTIONS(450), 1, anon_sym_COMMA_AT, - ACTIONS(724), 1, + ACTIONS(452), 1, anon_sym_COMMA, - STATE(335), 1, - sym__bare_vec_lit, - STATE(336), 1, - sym__bare_set_lit, - STATE(477), 1, + STATE(501), 1, aux_sym_sym_lit_repeat1, - STATE(584), 1, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(761), 1, + STATE(742), 1, + sym__bare_set_lit, + STATE(743), 1, + sym__bare_vec_lit, + STATE(829), 1, sym__metadata_lit, - ACTIONS(1002), 2, + ACTIONS(1006), 2, sym__ws, sym_comment, - ACTIONS(1006), 2, + ACTIONS(1010), 2, sym_nil_lit, sym_fancy_literal, - ACTIONS(1004), 3, + ACTIONS(1008), 3, sym_num_lit, sym_kwd_lit, sym_char_lit, - STATE(144), 3, + STATE(193), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(334), 3, + STATE(744), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(349), 16, + STATE(747), 16, sym__form, sym_str_lit, sym_sym_lit, @@ -16800,67 +16800,67 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(19), 1, anon_sym_POUND_CARET, - ACTIONS(694), 1, + ACTIONS(746), 1, aux_sym_str_lit_token1, - ACTIONS(698), 1, + ACTIONS(750), 1, aux_sym_sym_lit_token1, - ACTIONS(700), 1, + ACTIONS(752), 1, anon_sym_LPAREN, - ACTIONS(702), 1, + ACTIONS(754), 1, anon_sym_POUND0A, - ACTIONS(704), 1, + ACTIONS(756), 1, anon_sym_POUND, - ACTIONS(706), 1, + ACTIONS(758), 1, anon_sym_POUND_QMARK, - ACTIONS(708), 1, + ACTIONS(760), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(710), 1, + ACTIONS(762), 1, anon_sym_POUND_SQUOTE, - ACTIONS(712), 1, + ACTIONS(764), 1, anon_sym_POUND_POUND, - ACTIONS(714), 1, + ACTIONS(766), 1, anon_sym_POUND_EQ, - ACTIONS(716), 1, + ACTIONS(768), 1, anon_sym_AT, - ACTIONS(718), 1, + ACTIONS(770), 1, anon_sym_SQUOTE, - ACTIONS(720), 1, + ACTIONS(772), 1, anon_sym_BQUOTE, - ACTIONS(722), 1, + ACTIONS(774), 1, anon_sym_COMMA_AT, - ACTIONS(724), 1, + ACTIONS(776), 1, anon_sym_COMMA, - STATE(335), 1, - sym__bare_vec_lit, STATE(336), 1, + sym__bare_vec_lit, + STATE(337), 1, sym__bare_set_lit, - STATE(477), 1, + STATE(504), 1, aux_sym_sym_lit_repeat1, - STATE(584), 1, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(761), 1, + STATE(829), 1, sym__metadata_lit, - ACTIONS(1008), 2, + ACTIONS(1012), 2, sym__ws, sym_comment, - ACTIONS(1012), 2, + ACTIONS(1016), 2, sym_nil_lit, sym_fancy_literal, - ACTIONS(1010), 3, + ACTIONS(1014), 3, sym_num_lit, sym_kwd_lit, sym_char_lit, - STATE(145), 3, + STATE(144), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(334), 3, + STATE(335), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(347), 16, + STATE(349), 16, sym__form, sym_str_lit, sym_sym_lit, @@ -16886,67 +16886,67 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(19), 1, anon_sym_POUND_CARET, - ACTIONS(422), 1, + ACTIONS(746), 1, aux_sym_str_lit_token1, - ACTIONS(426), 1, + ACTIONS(750), 1, aux_sym_sym_lit_token1, - ACTIONS(428), 1, + ACTIONS(752), 1, anon_sym_LPAREN, - ACTIONS(430), 1, + ACTIONS(754), 1, anon_sym_POUND0A, - ACTIONS(432), 1, + ACTIONS(756), 1, anon_sym_POUND, - ACTIONS(434), 1, + ACTIONS(758), 1, anon_sym_POUND_QMARK, - ACTIONS(436), 1, + ACTIONS(760), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(438), 1, + ACTIONS(762), 1, anon_sym_POUND_SQUOTE, - ACTIONS(440), 1, + ACTIONS(764), 1, anon_sym_POUND_POUND, - ACTIONS(442), 1, + ACTIONS(766), 1, anon_sym_POUND_EQ, - ACTIONS(444), 1, + ACTIONS(768), 1, anon_sym_AT, - ACTIONS(446), 1, + ACTIONS(770), 1, anon_sym_SQUOTE, - ACTIONS(448), 1, + ACTIONS(772), 1, anon_sym_BQUOTE, - ACTIONS(450), 1, + ACTIONS(774), 1, anon_sym_COMMA_AT, - ACTIONS(452), 1, + ACTIONS(776), 1, anon_sym_COMMA, - STATE(474), 1, + STATE(336), 1, + sym__bare_vec_lit, + STATE(337), 1, + sym__bare_set_lit, + STATE(504), 1, aux_sym_sym_lit_repeat1, - STATE(584), 1, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(757), 1, - sym__bare_set_lit, - STATE(758), 1, - sym__bare_vec_lit, - STATE(761), 1, + STATE(829), 1, sym__metadata_lit, - ACTIONS(1014), 2, + ACTIONS(1018), 2, sym__ws, sym_comment, - ACTIONS(1018), 2, + ACTIONS(1022), 2, sym_nil_lit, sym_fancy_literal, - ACTIONS(1016), 3, + ACTIONS(1020), 3, sym_num_lit, sym_kwd_lit, sym_char_lit, - STATE(114), 3, + STATE(145), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(759), 3, + STATE(335), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(797), 16, + STATE(348), 16, sym__form, sym_str_lit, sym_sym_lit, @@ -16972,63 +16972,63 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(19), 1, anon_sym_POUND_CARET, - ACTIONS(694), 1, + ACTIONS(746), 1, aux_sym_str_lit_token1, - ACTIONS(698), 1, + ACTIONS(750), 1, aux_sym_sym_lit_token1, - ACTIONS(700), 1, + ACTIONS(752), 1, anon_sym_LPAREN, - ACTIONS(702), 1, + ACTIONS(754), 1, anon_sym_POUND0A, - ACTIONS(704), 1, + ACTIONS(756), 1, anon_sym_POUND, - ACTIONS(706), 1, + ACTIONS(758), 1, anon_sym_POUND_QMARK, - ACTIONS(708), 1, + ACTIONS(760), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(710), 1, + ACTIONS(762), 1, anon_sym_POUND_SQUOTE, - ACTIONS(712), 1, + ACTIONS(764), 1, anon_sym_POUND_POUND, - ACTIONS(714), 1, + ACTIONS(766), 1, anon_sym_POUND_EQ, - ACTIONS(716), 1, + ACTIONS(768), 1, anon_sym_AT, - ACTIONS(718), 1, + ACTIONS(770), 1, anon_sym_SQUOTE, - ACTIONS(720), 1, + ACTIONS(772), 1, anon_sym_BQUOTE, - ACTIONS(722), 1, + ACTIONS(774), 1, anon_sym_COMMA_AT, - ACTIONS(724), 1, + ACTIONS(776), 1, anon_sym_COMMA, - STATE(335), 1, - sym__bare_vec_lit, STATE(336), 1, + sym__bare_vec_lit, + STATE(337), 1, sym__bare_set_lit, - STATE(477), 1, + STATE(504), 1, aux_sym_sym_lit_repeat1, - STATE(584), 1, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(761), 1, + STATE(829), 1, sym__metadata_lit, - ACTIONS(1020), 2, + ACTIONS(1024), 2, sym__ws, sym_comment, - ACTIONS(1024), 2, + ACTIONS(1028), 2, sym_nil_lit, sym_fancy_literal, - ACTIONS(1022), 3, + ACTIONS(1026), 3, sym_num_lit, sym_kwd_lit, sym_char_lit, - STATE(148), 3, + STATE(147), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(334), 3, + STATE(335), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, @@ -17058,55 +17058,55 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(19), 1, anon_sym_POUND_CARET, - ACTIONS(732), 1, + ACTIONS(694), 1, aux_sym_str_lit_token1, - ACTIONS(736), 1, + ACTIONS(698), 1, aux_sym_sym_lit_token1, - ACTIONS(738), 1, + ACTIONS(700), 1, anon_sym_LPAREN, - ACTIONS(740), 1, + ACTIONS(702), 1, anon_sym_POUND0A, - ACTIONS(742), 1, + ACTIONS(704), 1, anon_sym_POUND, - ACTIONS(744), 1, + ACTIONS(706), 1, anon_sym_POUND_QMARK, - ACTIONS(746), 1, + ACTIONS(708), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(748), 1, + ACTIONS(710), 1, anon_sym_POUND_SQUOTE, - ACTIONS(750), 1, + ACTIONS(712), 1, anon_sym_POUND_POUND, - ACTIONS(752), 1, + ACTIONS(714), 1, anon_sym_POUND_EQ, - ACTIONS(754), 1, + ACTIONS(716), 1, anon_sym_AT, - ACTIONS(756), 1, + ACTIONS(718), 1, anon_sym_SQUOTE, - ACTIONS(758), 1, + ACTIONS(720), 1, anon_sym_BQUOTE, - ACTIONS(760), 1, + ACTIONS(722), 1, anon_sym_COMMA_AT, - ACTIONS(762), 1, + ACTIONS(724), 1, anon_sym_COMMA, - STATE(504), 1, + STATE(516), 1, aux_sym_sym_lit_repeat1, - STATE(584), 1, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(641), 1, + STATE(648), 1, sym__bare_vec_lit, - STATE(685), 1, + STATE(649), 1, sym__bare_set_lit, - STATE(761), 1, + STATE(829), 1, sym__metadata_lit, ACTIONS(378), 2, sym__ws, sym_comment, - ACTIONS(1028), 2, + ACTIONS(1032), 2, sym_nil_lit, sym_fancy_literal, - ACTIONS(1026), 3, + ACTIONS(1030), 3, sym_num_lit, sym_kwd_lit, sym_char_lit, @@ -17114,11 +17114,11 @@ static uint16_t ts_small_parse_table[] = { sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(683), 3, + STATE(647), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(701), 16, + STATE(660), 16, sym__form, sym_str_lit, sym_sym_lit, @@ -17144,55 +17144,55 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(19), 1, anon_sym_POUND_CARET, - ACTIONS(732), 1, + ACTIONS(694), 1, aux_sym_str_lit_token1, - ACTIONS(736), 1, + ACTIONS(698), 1, aux_sym_sym_lit_token1, - ACTIONS(738), 1, + ACTIONS(700), 1, anon_sym_LPAREN, - ACTIONS(740), 1, + ACTIONS(702), 1, anon_sym_POUND0A, - ACTIONS(742), 1, + ACTIONS(704), 1, anon_sym_POUND, - ACTIONS(744), 1, + ACTIONS(706), 1, anon_sym_POUND_QMARK, - ACTIONS(746), 1, + ACTIONS(708), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(748), 1, + ACTIONS(710), 1, anon_sym_POUND_SQUOTE, - ACTIONS(750), 1, + ACTIONS(712), 1, anon_sym_POUND_POUND, - ACTIONS(752), 1, + ACTIONS(714), 1, anon_sym_POUND_EQ, - ACTIONS(754), 1, + ACTIONS(716), 1, anon_sym_AT, - ACTIONS(756), 1, + ACTIONS(718), 1, anon_sym_SQUOTE, - ACTIONS(758), 1, + ACTIONS(720), 1, anon_sym_BQUOTE, - ACTIONS(760), 1, + ACTIONS(722), 1, anon_sym_COMMA_AT, - ACTIONS(762), 1, + ACTIONS(724), 1, anon_sym_COMMA, - STATE(504), 1, + STATE(516), 1, aux_sym_sym_lit_repeat1, - STATE(584), 1, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(641), 1, + STATE(648), 1, sym__bare_vec_lit, - STATE(685), 1, + STATE(649), 1, sym__bare_set_lit, - STATE(761), 1, + STATE(829), 1, sym__metadata_lit, ACTIONS(378), 2, sym__ws, sym_comment, - ACTIONS(1032), 2, + ACTIONS(1036), 2, sym_nil_lit, sym_fancy_literal, - ACTIONS(1030), 3, + ACTIONS(1034), 3, sym_num_lit, sym_kwd_lit, sym_char_lit, @@ -17200,11 +17200,11 @@ static uint16_t ts_small_parse_table[] = { sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(683), 3, + STATE(647), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(695), 16, + STATE(659), 16, sym__form, sym_str_lit, sym_sym_lit, @@ -17230,67 +17230,67 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(19), 1, anon_sym_POUND_CARET, - ACTIONS(568), 1, + ACTIONS(694), 1, aux_sym_str_lit_token1, - ACTIONS(572), 1, + ACTIONS(698), 1, aux_sym_sym_lit_token1, - ACTIONS(574), 1, + ACTIONS(700), 1, anon_sym_LPAREN, - ACTIONS(576), 1, + ACTIONS(702), 1, anon_sym_POUND0A, - ACTIONS(578), 1, + ACTIONS(704), 1, anon_sym_POUND, - ACTIONS(580), 1, + ACTIONS(706), 1, anon_sym_POUND_QMARK, - ACTIONS(582), 1, + ACTIONS(708), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(584), 1, + ACTIONS(710), 1, anon_sym_POUND_SQUOTE, - ACTIONS(586), 1, + ACTIONS(712), 1, anon_sym_POUND_POUND, - ACTIONS(588), 1, + ACTIONS(714), 1, anon_sym_POUND_EQ, - ACTIONS(590), 1, + ACTIONS(716), 1, anon_sym_AT, - ACTIONS(592), 1, + ACTIONS(718), 1, anon_sym_SQUOTE, - ACTIONS(594), 1, + ACTIONS(720), 1, anon_sym_BQUOTE, - ACTIONS(596), 1, + ACTIONS(722), 1, anon_sym_COMMA_AT, - ACTIONS(598), 1, + ACTIONS(724), 1, anon_sym_COMMA, - STATE(246), 1, - sym__bare_vec_lit, - STATE(247), 1, - sym__bare_set_lit, - STATE(478), 1, + STATE(516), 1, aux_sym_sym_lit_repeat1, - STATE(584), 1, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(761), 1, + STATE(648), 1, + sym__bare_vec_lit, + STATE(649), 1, + sym__bare_set_lit, + STATE(829), 1, sym__metadata_lit, ACTIONS(378), 2, sym__ws, sym_comment, - ACTIONS(1036), 2, + ACTIONS(1040), 2, sym_nil_lit, sym_fancy_literal, - ACTIONS(1034), 3, + ACTIONS(1038), 3, sym_num_lit, sym_kwd_lit, sym_char_lit, - STATE(245), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, STATE(448), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(282), 16, + STATE(647), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(658), 16, sym__form, sym_str_lit, sym_sym_lit, @@ -17316,67 +17316,67 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(19), 1, anon_sym_POUND_CARET, - ACTIONS(388), 1, + ACTIONS(422), 1, aux_sym_str_lit_token1, - ACTIONS(392), 1, + ACTIONS(426), 1, aux_sym_sym_lit_token1, - ACTIONS(394), 1, + ACTIONS(428), 1, anon_sym_LPAREN, - ACTIONS(396), 1, + ACTIONS(430), 1, anon_sym_POUND0A, - ACTIONS(398), 1, + ACTIONS(432), 1, anon_sym_POUND, - ACTIONS(400), 1, + ACTIONS(434), 1, anon_sym_POUND_QMARK, - ACTIONS(402), 1, + ACTIONS(436), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(404), 1, + ACTIONS(438), 1, anon_sym_POUND_SQUOTE, - ACTIONS(406), 1, + ACTIONS(440), 1, anon_sym_POUND_POUND, - ACTIONS(408), 1, + ACTIONS(442), 1, anon_sym_POUND_EQ, - ACTIONS(410), 1, + ACTIONS(444), 1, anon_sym_AT, - ACTIONS(412), 1, + ACTIONS(446), 1, anon_sym_SQUOTE, - ACTIONS(414), 1, + ACTIONS(448), 1, anon_sym_BQUOTE, - ACTIONS(416), 1, + ACTIONS(450), 1, anon_sym_COMMA_AT, - ACTIONS(418), 1, + ACTIONS(452), 1, anon_sym_COMMA, - STATE(507), 1, - sym__bare_vec_lit, - STATE(508), 1, - sym__bare_set_lit, - STATE(527), 1, + STATE(501), 1, aux_sym_sym_lit_repeat1, - STATE(584), 1, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(761), 1, + STATE(742), 1, + sym__bare_set_lit, + STATE(743), 1, + sym__bare_vec_lit, + STATE(829), 1, sym__metadata_lit, - ACTIONS(1038), 2, + ACTIONS(1042), 2, sym__ws, sym_comment, - ACTIONS(1042), 2, + ACTIONS(1046), 2, sym_nil_lit, sym_fancy_literal, - ACTIONS(1040), 3, + ACTIONS(1044), 3, sym_num_lit, sym_kwd_lit, sym_char_lit, - STATE(181), 3, + STATE(187), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(506), 3, + STATE(744), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(515), 16, + STATE(756), 16, sym__form, sym_str_lit, sym_sym_lit, @@ -17402,67 +17402,67 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(19), 1, anon_sym_POUND_CARET, - ACTIONS(732), 1, + ACTIONS(578), 1, aux_sym_str_lit_token1, - ACTIONS(736), 1, + ACTIONS(582), 1, aux_sym_sym_lit_token1, - ACTIONS(738), 1, + ACTIONS(584), 1, anon_sym_LPAREN, - ACTIONS(740), 1, + ACTIONS(586), 1, anon_sym_POUND0A, - ACTIONS(742), 1, + ACTIONS(588), 1, anon_sym_POUND, - ACTIONS(744), 1, + ACTIONS(590), 1, anon_sym_POUND_QMARK, - ACTIONS(746), 1, + ACTIONS(592), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(748), 1, + ACTIONS(594), 1, anon_sym_POUND_SQUOTE, - ACTIONS(750), 1, + ACTIONS(596), 1, anon_sym_POUND_POUND, - ACTIONS(752), 1, + ACTIONS(598), 1, anon_sym_POUND_EQ, - ACTIONS(754), 1, + ACTIONS(600), 1, anon_sym_AT, - ACTIONS(756), 1, + ACTIONS(602), 1, anon_sym_SQUOTE, - ACTIONS(758), 1, + ACTIONS(604), 1, anon_sym_BQUOTE, - ACTIONS(760), 1, + ACTIONS(606), 1, anon_sym_COMMA_AT, - ACTIONS(762), 1, + ACTIONS(608), 1, anon_sym_COMMA, - STATE(504), 1, + STATE(246), 1, + sym__bare_vec_lit, + STATE(247), 1, + sym__bare_set_lit, + STATE(510), 1, aux_sym_sym_lit_repeat1, - STATE(584), 1, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(641), 1, - sym__bare_vec_lit, - STATE(685), 1, - sym__bare_set_lit, - STATE(761), 1, + STATE(829), 1, sym__metadata_lit, ACTIONS(378), 2, sym__ws, sym_comment, - ACTIONS(1046), 2, + ACTIONS(1050), 2, sym_nil_lit, sym_fancy_literal, - ACTIONS(1044), 3, + ACTIONS(1048), 3, sym_num_lit, sym_kwd_lit, sym_char_lit, + STATE(244), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, STATE(448), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(683), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(694), 16, + STATE(280), 16, sym__form, sym_str_lit, sym_sym_lit, @@ -17488,67 +17488,67 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(19), 1, anon_sym_POUND_CARET, - ACTIONS(388), 1, + ACTIONS(694), 1, aux_sym_str_lit_token1, - ACTIONS(392), 1, + ACTIONS(698), 1, aux_sym_sym_lit_token1, - ACTIONS(394), 1, + ACTIONS(700), 1, anon_sym_LPAREN, - ACTIONS(396), 1, + ACTIONS(702), 1, anon_sym_POUND0A, - ACTIONS(398), 1, + ACTIONS(704), 1, anon_sym_POUND, - ACTIONS(400), 1, + ACTIONS(706), 1, anon_sym_POUND_QMARK, - ACTIONS(402), 1, + ACTIONS(708), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(404), 1, + ACTIONS(710), 1, anon_sym_POUND_SQUOTE, - ACTIONS(406), 1, + ACTIONS(712), 1, anon_sym_POUND_POUND, - ACTIONS(408), 1, + ACTIONS(714), 1, anon_sym_POUND_EQ, - ACTIONS(410), 1, + ACTIONS(716), 1, anon_sym_AT, - ACTIONS(412), 1, + ACTIONS(718), 1, anon_sym_SQUOTE, - ACTIONS(414), 1, + ACTIONS(720), 1, anon_sym_BQUOTE, - ACTIONS(416), 1, + ACTIONS(722), 1, anon_sym_COMMA_AT, - ACTIONS(418), 1, + ACTIONS(724), 1, anon_sym_COMMA, - STATE(507), 1, - sym__bare_vec_lit, - STATE(508), 1, - sym__bare_set_lit, - STATE(527), 1, + STATE(516), 1, aux_sym_sym_lit_repeat1, - STATE(584), 1, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(761), 1, + STATE(648), 1, + sym__bare_vec_lit, + STATE(649), 1, + sym__bare_set_lit, + STATE(829), 1, sym__metadata_lit, - ACTIONS(1048), 2, + ACTIONS(378), 2, sym__ws, sym_comment, - ACTIONS(1052), 2, + ACTIONS(1054), 2, sym_nil_lit, sym_fancy_literal, - ACTIONS(1050), 3, + ACTIONS(1052), 3, sym_num_lit, sym_kwd_lit, sym_char_lit, - STATE(180), 3, + STATE(448), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(506), 3, + STATE(647), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(509), 16, + STATE(654), 16, sym__form, sym_str_lit, sym_sym_lit, @@ -17574,67 +17574,67 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(19), 1, anon_sym_POUND_CARET, - ACTIONS(388), 1, + ACTIONS(422), 1, aux_sym_str_lit_token1, - ACTIONS(392), 1, + ACTIONS(426), 1, aux_sym_sym_lit_token1, - ACTIONS(394), 1, + ACTIONS(428), 1, anon_sym_LPAREN, - ACTIONS(396), 1, + ACTIONS(430), 1, anon_sym_POUND0A, - ACTIONS(398), 1, + ACTIONS(432), 1, anon_sym_POUND, - ACTIONS(400), 1, + ACTIONS(434), 1, anon_sym_POUND_QMARK, - ACTIONS(402), 1, + ACTIONS(436), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(404), 1, + ACTIONS(438), 1, anon_sym_POUND_SQUOTE, - ACTIONS(406), 1, + ACTIONS(440), 1, anon_sym_POUND_POUND, - ACTIONS(408), 1, + ACTIONS(442), 1, anon_sym_POUND_EQ, - ACTIONS(410), 1, + ACTIONS(444), 1, anon_sym_AT, - ACTIONS(412), 1, + ACTIONS(446), 1, anon_sym_SQUOTE, - ACTIONS(414), 1, + ACTIONS(448), 1, anon_sym_BQUOTE, - ACTIONS(416), 1, + ACTIONS(450), 1, anon_sym_COMMA_AT, - ACTIONS(418), 1, + ACTIONS(452), 1, anon_sym_COMMA, - STATE(507), 1, - sym__bare_vec_lit, - STATE(508), 1, - sym__bare_set_lit, - STATE(527), 1, + STATE(501), 1, aux_sym_sym_lit_repeat1, - STATE(584), 1, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(761), 1, + STATE(742), 1, + sym__bare_set_lit, + STATE(743), 1, + sym__bare_vec_lit, + STATE(829), 1, sym__metadata_lit, - ACTIONS(1054), 2, + ACTIONS(1056), 2, sym__ws, sym_comment, - ACTIONS(1058), 2, + ACTIONS(1060), 2, sym_nil_lit, sym_fancy_literal, - ACTIONS(1056), 3, + ACTIONS(1058), 3, sym_num_lit, sym_kwd_lit, sym_char_lit, - STATE(182), 3, + STATE(183), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(506), 3, + STATE(744), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(521), 16, + STATE(762), 16, sym__form, sym_str_lit, sym_sym_lit, @@ -17660,67 +17660,67 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(19), 1, anon_sym_POUND_CARET, - ACTIONS(732), 1, + ACTIONS(578), 1, aux_sym_str_lit_token1, - ACTIONS(736), 1, + ACTIONS(582), 1, aux_sym_sym_lit_token1, - ACTIONS(738), 1, + ACTIONS(584), 1, anon_sym_LPAREN, - ACTIONS(740), 1, + ACTIONS(586), 1, anon_sym_POUND0A, - ACTIONS(742), 1, + ACTIONS(588), 1, anon_sym_POUND, - ACTIONS(744), 1, + ACTIONS(590), 1, anon_sym_POUND_QMARK, - ACTIONS(746), 1, + ACTIONS(592), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(748), 1, + ACTIONS(594), 1, anon_sym_POUND_SQUOTE, - ACTIONS(750), 1, + ACTIONS(596), 1, anon_sym_POUND_POUND, - ACTIONS(752), 1, + ACTIONS(598), 1, anon_sym_POUND_EQ, - ACTIONS(754), 1, + ACTIONS(600), 1, anon_sym_AT, - ACTIONS(756), 1, + ACTIONS(602), 1, anon_sym_SQUOTE, - ACTIONS(758), 1, + ACTIONS(604), 1, anon_sym_BQUOTE, - ACTIONS(760), 1, + ACTIONS(606), 1, anon_sym_COMMA_AT, - ACTIONS(762), 1, + ACTIONS(608), 1, anon_sym_COMMA, - STATE(504), 1, + STATE(246), 1, + sym__bare_vec_lit, + STATE(247), 1, + sym__bare_set_lit, + STATE(510), 1, aux_sym_sym_lit_repeat1, - STATE(584), 1, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(641), 1, - sym__bare_vec_lit, - STATE(685), 1, - sym__bare_set_lit, - STATE(761), 1, + STATE(829), 1, sym__metadata_lit, ACTIONS(378), 2, sym__ws, sym_comment, - ACTIONS(1062), 2, + ACTIONS(1064), 2, sym_nil_lit, sym_fancy_literal, - ACTIONS(1060), 3, + ACTIONS(1062), 3, sym_num_lit, sym_kwd_lit, sym_char_lit, + STATE(244), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, STATE(448), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(683), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(678), 16, + STATE(276), 16, sym__form, sym_str_lit, sym_sym_lit, @@ -17746,59 +17746,59 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(19), 1, anon_sym_POUND_CARET, - ACTIONS(568), 1, + ACTIONS(578), 1, aux_sym_str_lit_token1, - ACTIONS(572), 1, + ACTIONS(582), 1, aux_sym_sym_lit_token1, - ACTIONS(574), 1, + ACTIONS(584), 1, anon_sym_LPAREN, - ACTIONS(576), 1, + ACTIONS(586), 1, anon_sym_POUND0A, - ACTIONS(578), 1, + ACTIONS(588), 1, anon_sym_POUND, - ACTIONS(580), 1, + ACTIONS(590), 1, anon_sym_POUND_QMARK, - ACTIONS(582), 1, + ACTIONS(592), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(584), 1, + ACTIONS(594), 1, anon_sym_POUND_SQUOTE, - ACTIONS(586), 1, + ACTIONS(596), 1, anon_sym_POUND_POUND, - ACTIONS(588), 1, + ACTIONS(598), 1, anon_sym_POUND_EQ, - ACTIONS(590), 1, + ACTIONS(600), 1, anon_sym_AT, - ACTIONS(592), 1, + ACTIONS(602), 1, anon_sym_SQUOTE, - ACTIONS(594), 1, + ACTIONS(604), 1, anon_sym_BQUOTE, - ACTIONS(596), 1, + ACTIONS(606), 1, anon_sym_COMMA_AT, - ACTIONS(598), 1, + ACTIONS(608), 1, anon_sym_COMMA, STATE(246), 1, sym__bare_vec_lit, STATE(247), 1, sym__bare_set_lit, - STATE(478), 1, + STATE(510), 1, aux_sym_sym_lit_repeat1, - STATE(584), 1, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(761), 1, + STATE(829), 1, sym__metadata_lit, ACTIONS(378), 2, sym__ws, sym_comment, - ACTIONS(1066), 2, + ACTIONS(1068), 2, sym_nil_lit, sym_fancy_literal, - ACTIONS(1064), 3, + ACTIONS(1066), 3, sym_num_lit, sym_kwd_lit, sym_char_lit, - STATE(245), 3, + STATE(244), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, @@ -17806,7 +17806,7 @@ static uint16_t ts_small_parse_table[] = { sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(278), 16, + STATE(274), 16, sym__form, sym_str_lit, sym_sym_lit, @@ -17832,59 +17832,59 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(19), 1, anon_sym_POUND_CARET, - ACTIONS(568), 1, + ACTIONS(578), 1, aux_sym_str_lit_token1, - ACTIONS(572), 1, + ACTIONS(582), 1, aux_sym_sym_lit_token1, - ACTIONS(574), 1, + ACTIONS(584), 1, anon_sym_LPAREN, - ACTIONS(576), 1, + ACTIONS(586), 1, anon_sym_POUND0A, - ACTIONS(578), 1, + ACTIONS(588), 1, anon_sym_POUND, - ACTIONS(580), 1, + ACTIONS(590), 1, anon_sym_POUND_QMARK, - ACTIONS(582), 1, + ACTIONS(592), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(584), 1, + ACTIONS(594), 1, anon_sym_POUND_SQUOTE, - ACTIONS(586), 1, + ACTIONS(596), 1, anon_sym_POUND_POUND, - ACTIONS(588), 1, + ACTIONS(598), 1, anon_sym_POUND_EQ, - ACTIONS(590), 1, + ACTIONS(600), 1, anon_sym_AT, - ACTIONS(592), 1, + ACTIONS(602), 1, anon_sym_SQUOTE, - ACTIONS(594), 1, + ACTIONS(604), 1, anon_sym_BQUOTE, - ACTIONS(596), 1, + ACTIONS(606), 1, anon_sym_COMMA_AT, - ACTIONS(598), 1, + ACTIONS(608), 1, anon_sym_COMMA, STATE(246), 1, sym__bare_vec_lit, STATE(247), 1, sym__bare_set_lit, - STATE(478), 1, + STATE(510), 1, aux_sym_sym_lit_repeat1, - STATE(584), 1, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(761), 1, + STATE(829), 1, sym__metadata_lit, ACTIONS(378), 2, sym__ws, sym_comment, - ACTIONS(1070), 2, + ACTIONS(1072), 2, sym_nil_lit, sym_fancy_literal, - ACTIONS(1068), 3, + ACTIONS(1070), 3, sym_num_lit, sym_kwd_lit, sym_char_lit, - STATE(245), 3, + STATE(244), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, @@ -17892,7 +17892,7 @@ static uint16_t ts_small_parse_table[] = { sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(277), 16, + STATE(273), 16, sym__form, sym_str_lit, sym_sym_lit, @@ -17918,67 +17918,67 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(19), 1, anon_sym_POUND_CARET, - ACTIONS(568), 1, + ACTIONS(694), 1, aux_sym_str_lit_token1, - ACTIONS(572), 1, + ACTIONS(698), 1, aux_sym_sym_lit_token1, - ACTIONS(574), 1, + ACTIONS(700), 1, anon_sym_LPAREN, - ACTIONS(576), 1, + ACTIONS(702), 1, anon_sym_POUND0A, - ACTIONS(578), 1, + ACTIONS(704), 1, anon_sym_POUND, - ACTIONS(580), 1, + ACTIONS(706), 1, anon_sym_POUND_QMARK, - ACTIONS(582), 1, + ACTIONS(708), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(584), 1, + ACTIONS(710), 1, anon_sym_POUND_SQUOTE, - ACTIONS(586), 1, + ACTIONS(712), 1, anon_sym_POUND_POUND, - ACTIONS(588), 1, + ACTIONS(714), 1, anon_sym_POUND_EQ, - ACTIONS(590), 1, + ACTIONS(716), 1, anon_sym_AT, - ACTIONS(592), 1, + ACTIONS(718), 1, anon_sym_SQUOTE, - ACTIONS(594), 1, + ACTIONS(720), 1, anon_sym_BQUOTE, - ACTIONS(596), 1, + ACTIONS(722), 1, anon_sym_COMMA_AT, - ACTIONS(598), 1, + ACTIONS(724), 1, anon_sym_COMMA, - STATE(246), 1, - sym__bare_vec_lit, - STATE(247), 1, - sym__bare_set_lit, - STATE(478), 1, + STATE(516), 1, aux_sym_sym_lit_repeat1, - STATE(584), 1, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(761), 1, + STATE(648), 1, + sym__bare_vec_lit, + STATE(649), 1, + sym__bare_set_lit, + STATE(829), 1, sym__metadata_lit, - ACTIONS(378), 2, + ACTIONS(1074), 2, sym__ws, sym_comment, - ACTIONS(1074), 2, + ACTIONS(1078), 2, sym_nil_lit, sym_fancy_literal, - ACTIONS(1072), 3, + ACTIONS(1076), 3, sym_num_lit, sym_kwd_lit, sym_char_lit, - STATE(245), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(448), 3, + STATE(103), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(276), 16, + STATE(647), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(662), 16, sym__form, sym_str_lit, sym_sym_lit, @@ -18004,67 +18004,67 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(19), 1, anon_sym_POUND_CARET, - ACTIONS(732), 1, + ACTIONS(694), 1, aux_sym_str_lit_token1, - ACTIONS(736), 1, + ACTIONS(698), 1, aux_sym_sym_lit_token1, - ACTIONS(738), 1, + ACTIONS(700), 1, anon_sym_LPAREN, - ACTIONS(740), 1, + ACTIONS(702), 1, anon_sym_POUND0A, - ACTIONS(742), 1, + ACTIONS(704), 1, anon_sym_POUND, - ACTIONS(744), 1, + ACTIONS(706), 1, anon_sym_POUND_QMARK, - ACTIONS(746), 1, + ACTIONS(708), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(748), 1, + ACTIONS(710), 1, anon_sym_POUND_SQUOTE, - ACTIONS(750), 1, + ACTIONS(712), 1, anon_sym_POUND_POUND, - ACTIONS(752), 1, + ACTIONS(714), 1, anon_sym_POUND_EQ, - ACTIONS(754), 1, + ACTIONS(716), 1, anon_sym_AT, - ACTIONS(756), 1, + ACTIONS(718), 1, anon_sym_SQUOTE, - ACTIONS(758), 1, + ACTIONS(720), 1, anon_sym_BQUOTE, - ACTIONS(760), 1, + ACTIONS(722), 1, anon_sym_COMMA_AT, - ACTIONS(762), 1, + ACTIONS(724), 1, anon_sym_COMMA, - STATE(504), 1, + STATE(516), 1, aux_sym_sym_lit_repeat1, - STATE(584), 1, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(641), 1, + STATE(648), 1, sym__bare_vec_lit, - STATE(685), 1, + STATE(649), 1, sym__bare_set_lit, - STATE(761), 1, + STATE(829), 1, sym__metadata_lit, - ACTIONS(1076), 2, + ACTIONS(1080), 2, sym__ws, sym_comment, - ACTIONS(1080), 2, + ACTIONS(1084), 2, sym_nil_lit, sym_fancy_literal, - ACTIONS(1078), 3, + ACTIONS(1082), 3, sym_num_lit, sym_kwd_lit, sym_char_lit, - STATE(188), 3, + STATE(157), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(683), 3, + STATE(647), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(686), 16, + STATE(682), 16, sym__form, sym_str_lit, sym_sym_lit, @@ -18086,71 +18086,71 @@ static uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(11), 1, - aux_sym_str_lit_token1, - ACTIONS(15), 1, - aux_sym_sym_lit_token1, ACTIONS(17), 1, anon_sym_CARET, ACTIONS(19), 1, anon_sym_POUND_CARET, - ACTIONS(21), 1, + ACTIONS(694), 1, + aux_sym_str_lit_token1, + ACTIONS(698), 1, + aux_sym_sym_lit_token1, + ACTIONS(700), 1, anon_sym_LPAREN, - ACTIONS(23), 1, + ACTIONS(702), 1, anon_sym_POUND0A, - ACTIONS(25), 1, + ACTIONS(704), 1, anon_sym_POUND, - ACTIONS(27), 1, + ACTIONS(706), 1, anon_sym_POUND_QMARK, - ACTIONS(29), 1, + ACTIONS(708), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(31), 1, + ACTIONS(710), 1, anon_sym_POUND_SQUOTE, - ACTIONS(33), 1, + ACTIONS(712), 1, anon_sym_POUND_POUND, - ACTIONS(35), 1, + ACTIONS(714), 1, anon_sym_POUND_EQ, - ACTIONS(37), 1, + ACTIONS(716), 1, anon_sym_AT, - ACTIONS(39), 1, + ACTIONS(718), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(720), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(722), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(724), 1, anon_sym_COMMA, - STATE(384), 1, - sym__bare_vec_lit, - STATE(390), 1, - sym__bare_set_lit, - STATE(505), 1, + STATE(516), 1, aux_sym_sym_lit_repeat1, - STATE(584), 1, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(761), 1, + STATE(648), 1, + sym__bare_vec_lit, + STATE(649), 1, + sym__bare_set_lit, + STATE(829), 1, sym__metadata_lit, - ACTIONS(378), 2, + ACTIONS(1086), 2, sym__ws, sym_comment, - ACTIONS(1084), 2, + ACTIONS(1090), 2, sym_nil_lit, sym_fancy_literal, - ACTIONS(1082), 3, + ACTIONS(1088), 3, sym_num_lit, sym_kwd_lit, sym_char_lit, - STATE(379), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(448), 3, + STATE(158), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(453), 16, + STATE(647), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(683), 16, sym__form, sym_str_lit, sym_sym_lit, @@ -18176,67 +18176,67 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(19), 1, anon_sym_POUND_CARET, - ACTIONS(732), 1, + ACTIONS(694), 1, aux_sym_str_lit_token1, - ACTIONS(736), 1, + ACTIONS(698), 1, aux_sym_sym_lit_token1, - ACTIONS(738), 1, + ACTIONS(700), 1, anon_sym_LPAREN, - ACTIONS(740), 1, + ACTIONS(702), 1, anon_sym_POUND0A, - ACTIONS(742), 1, + ACTIONS(704), 1, anon_sym_POUND, - ACTIONS(744), 1, + ACTIONS(706), 1, anon_sym_POUND_QMARK, - ACTIONS(746), 1, + ACTIONS(708), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(748), 1, + ACTIONS(710), 1, anon_sym_POUND_SQUOTE, - ACTIONS(750), 1, + ACTIONS(712), 1, anon_sym_POUND_POUND, - ACTIONS(752), 1, + ACTIONS(714), 1, anon_sym_POUND_EQ, - ACTIONS(754), 1, + ACTIONS(716), 1, anon_sym_AT, - ACTIONS(756), 1, + ACTIONS(718), 1, anon_sym_SQUOTE, - ACTIONS(758), 1, + ACTIONS(720), 1, anon_sym_BQUOTE, - ACTIONS(760), 1, + ACTIONS(722), 1, anon_sym_COMMA_AT, - ACTIONS(762), 1, + ACTIONS(724), 1, anon_sym_COMMA, - STATE(504), 1, + STATE(516), 1, aux_sym_sym_lit_repeat1, - STATE(584), 1, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(641), 1, + STATE(648), 1, sym__bare_vec_lit, - STATE(685), 1, + STATE(649), 1, sym__bare_set_lit, - STATE(761), 1, + STATE(829), 1, sym__metadata_lit, - ACTIONS(1086), 2, + ACTIONS(1092), 2, sym__ws, sym_comment, - ACTIONS(1090), 2, + ACTIONS(1096), 2, sym_nil_lit, sym_fancy_literal, - ACTIONS(1088), 3, + ACTIONS(1094), 3, sym_num_lit, sym_kwd_lit, sym_char_lit, - STATE(157), 3, + STATE(159), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(683), 3, + STATE(647), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(671), 16, + STATE(644), 16, sym__form, sym_str_lit, sym_sym_lit, @@ -18262,67 +18262,67 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(19), 1, anon_sym_POUND_CARET, - ACTIONS(732), 1, + ACTIONS(694), 1, aux_sym_str_lit_token1, - ACTIONS(736), 1, + ACTIONS(698), 1, aux_sym_sym_lit_token1, - ACTIONS(738), 1, + ACTIONS(700), 1, anon_sym_LPAREN, - ACTIONS(740), 1, + ACTIONS(702), 1, anon_sym_POUND0A, - ACTIONS(742), 1, + ACTIONS(704), 1, anon_sym_POUND, - ACTIONS(744), 1, + ACTIONS(706), 1, anon_sym_POUND_QMARK, - ACTIONS(746), 1, + ACTIONS(708), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(748), 1, + ACTIONS(710), 1, anon_sym_POUND_SQUOTE, - ACTIONS(750), 1, + ACTIONS(712), 1, anon_sym_POUND_POUND, - ACTIONS(752), 1, + ACTIONS(714), 1, anon_sym_POUND_EQ, - ACTIONS(754), 1, + ACTIONS(716), 1, anon_sym_AT, - ACTIONS(756), 1, + ACTIONS(718), 1, anon_sym_SQUOTE, - ACTIONS(758), 1, + ACTIONS(720), 1, anon_sym_BQUOTE, - ACTIONS(760), 1, + ACTIONS(722), 1, anon_sym_COMMA_AT, - ACTIONS(762), 1, + ACTIONS(724), 1, anon_sym_COMMA, - STATE(504), 1, + STATE(516), 1, aux_sym_sym_lit_repeat1, - STATE(584), 1, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(641), 1, + STATE(648), 1, sym__bare_vec_lit, - STATE(685), 1, + STATE(649), 1, sym__bare_set_lit, - STATE(761), 1, + STATE(829), 1, sym__metadata_lit, - ACTIONS(1092), 2, + ACTIONS(1098), 2, sym__ws, sym_comment, - ACTIONS(1096), 2, + ACTIONS(1102), 2, sym_nil_lit, sym_fancy_literal, - ACTIONS(1094), 3, + ACTIONS(1100), 3, sym_num_lit, sym_kwd_lit, sym_char_lit, - STATE(158), 3, + STATE(162), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(683), 3, + STATE(647), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(670), 16, + STATE(688), 16, sym__form, sym_str_lit, sym_sym_lit, @@ -18344,71 +18344,71 @@ static uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, + ACTIONS(11), 1, + aux_sym_str_lit_token1, + ACTIONS(15), 1, + aux_sym_sym_lit_token1, ACTIONS(17), 1, anon_sym_CARET, ACTIONS(19), 1, anon_sym_POUND_CARET, - ACTIONS(732), 1, - aux_sym_str_lit_token1, - ACTIONS(736), 1, - aux_sym_sym_lit_token1, - ACTIONS(738), 1, + ACTIONS(21), 1, anon_sym_LPAREN, - ACTIONS(740), 1, + ACTIONS(23), 1, anon_sym_POUND0A, - ACTIONS(742), 1, + ACTIONS(25), 1, anon_sym_POUND, - ACTIONS(744), 1, + ACTIONS(27), 1, anon_sym_POUND_QMARK, - ACTIONS(746), 1, + ACTIONS(29), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(748), 1, + ACTIONS(31), 1, anon_sym_POUND_SQUOTE, - ACTIONS(750), 1, + ACTIONS(33), 1, anon_sym_POUND_POUND, - ACTIONS(752), 1, + ACTIONS(35), 1, anon_sym_POUND_EQ, - ACTIONS(754), 1, + ACTIONS(37), 1, anon_sym_AT, - ACTIONS(756), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(758), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(760), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(762), 1, + ACTIONS(45), 1, anon_sym_COMMA, - STATE(504), 1, + STATE(372), 1, + sym__bare_set_lit, + STATE(375), 1, + sym__bare_vec_lit, + STATE(541), 1, aux_sym_sym_lit_repeat1, - STATE(584), 1, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(641), 1, - sym__bare_vec_lit, - STATE(685), 1, - sym__bare_set_lit, - STATE(761), 1, + STATE(829), 1, sym__metadata_lit, - ACTIONS(1098), 2, + ACTIONS(378), 2, sym__ws, sym_comment, - ACTIONS(1102), 2, + ACTIONS(1106), 2, sym_nil_lit, sym_fancy_literal, - ACTIONS(1100), 3, + ACTIONS(1104), 3, sym_num_lit, sym_kwd_lit, sym_char_lit, - STATE(161), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(683), 3, + STATE(376), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(642), 16, + STATE(448), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(451), 16, sym__form, sym_str_lit, sym_sym_lit, @@ -18434,67 +18434,67 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(19), 1, anon_sym_POUND_CARET, - ACTIONS(732), 1, + ACTIONS(694), 1, aux_sym_str_lit_token1, - ACTIONS(736), 1, + ACTIONS(698), 1, aux_sym_sym_lit_token1, - ACTIONS(738), 1, + ACTIONS(700), 1, anon_sym_LPAREN, - ACTIONS(740), 1, + ACTIONS(702), 1, anon_sym_POUND0A, - ACTIONS(742), 1, + ACTIONS(704), 1, anon_sym_POUND, - ACTIONS(744), 1, + ACTIONS(706), 1, anon_sym_POUND_QMARK, - ACTIONS(746), 1, + ACTIONS(708), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(748), 1, + ACTIONS(710), 1, anon_sym_POUND_SQUOTE, - ACTIONS(750), 1, + ACTIONS(712), 1, anon_sym_POUND_POUND, - ACTIONS(752), 1, + ACTIONS(714), 1, anon_sym_POUND_EQ, - ACTIONS(754), 1, + ACTIONS(716), 1, anon_sym_AT, - ACTIONS(756), 1, + ACTIONS(718), 1, anon_sym_SQUOTE, - ACTIONS(758), 1, + ACTIONS(720), 1, anon_sym_BQUOTE, - ACTIONS(760), 1, + ACTIONS(722), 1, anon_sym_COMMA_AT, - ACTIONS(762), 1, + ACTIONS(724), 1, anon_sym_COMMA, - STATE(504), 1, + STATE(516), 1, aux_sym_sym_lit_repeat1, - STATE(584), 1, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(641), 1, + STATE(648), 1, sym__bare_vec_lit, - STATE(685), 1, + STATE(649), 1, sym__bare_set_lit, - STATE(761), 1, + STATE(829), 1, sym__metadata_lit, - ACTIONS(1104), 2, + ACTIONS(378), 2, sym__ws, sym_comment, - ACTIONS(1108), 2, + ACTIONS(1110), 2, sym_nil_lit, sym_fancy_literal, - ACTIONS(1106), 3, + ACTIONS(1108), 3, sym_num_lit, sym_kwd_lit, sym_char_lit, - STATE(164), 3, + STATE(448), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(683), 3, + STATE(647), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(665), 16, + STATE(691), 16, sym__form, sym_str_lit, sym_sym_lit, @@ -18550,37 +18550,37 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA_AT, ACTIONS(418), 1, anon_sym_COMMA, - STATE(507), 1, - sym__bare_vec_lit, - STATE(508), 1, + STATE(505), 1, sym__bare_set_lit, - STATE(527), 1, + STATE(536), 1, aux_sym_sym_lit_repeat1, - STATE(584), 1, + STATE(537), 1, + sym__bare_vec_lit, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(761), 1, + STATE(829), 1, sym__metadata_lit, - ACTIONS(1110), 2, + ACTIONS(1112), 2, sym__ws, sym_comment, - ACTIONS(1114), 2, + ACTIONS(1116), 2, sym_nil_lit, sym_fancy_literal, - ACTIONS(1112), 3, + ACTIONS(1114), 3, sym_num_lit, sym_kwd_lit, sym_char_lit, - STATE(187), 3, + STATE(75), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(506), 3, + STATE(472), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(523), 16, + STATE(488), 16, sym__form, sym_str_lit, sym_sym_lit, @@ -18606,49 +18606,49 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(19), 1, anon_sym_POUND_CARET, - ACTIONS(388), 1, + ACTIONS(694), 1, aux_sym_str_lit_token1, - ACTIONS(392), 1, + ACTIONS(698), 1, aux_sym_sym_lit_token1, - ACTIONS(394), 1, + ACTIONS(700), 1, anon_sym_LPAREN, - ACTIONS(396), 1, + ACTIONS(702), 1, anon_sym_POUND0A, - ACTIONS(398), 1, + ACTIONS(704), 1, anon_sym_POUND, - ACTIONS(400), 1, + ACTIONS(706), 1, anon_sym_POUND_QMARK, - ACTIONS(402), 1, + ACTIONS(708), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(404), 1, + ACTIONS(710), 1, anon_sym_POUND_SQUOTE, - ACTIONS(406), 1, + ACTIONS(712), 1, anon_sym_POUND_POUND, - ACTIONS(408), 1, + ACTIONS(714), 1, anon_sym_POUND_EQ, - ACTIONS(410), 1, + ACTIONS(716), 1, anon_sym_AT, - ACTIONS(412), 1, + ACTIONS(718), 1, anon_sym_SQUOTE, - ACTIONS(414), 1, + ACTIONS(720), 1, anon_sym_BQUOTE, - ACTIONS(416), 1, + ACTIONS(722), 1, anon_sym_COMMA_AT, - ACTIONS(418), 1, + ACTIONS(724), 1, anon_sym_COMMA, - STATE(507), 1, - sym__bare_vec_lit, - STATE(508), 1, - sym__bare_set_lit, - STATE(527), 1, + STATE(516), 1, aux_sym_sym_lit_repeat1, - STATE(584), 1, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(761), 1, + STATE(648), 1, + sym__bare_vec_lit, + STATE(649), 1, + sym__bare_set_lit, + STATE(829), 1, sym__metadata_lit, - ACTIONS(1116), 2, + ACTIONS(378), 2, sym__ws, sym_comment, ACTIONS(1120), 2, @@ -18658,15 +18658,15 @@ static uint16_t ts_small_parse_table[] = { sym_num_lit, sym_kwd_lit, sym_char_lit, - STATE(191), 3, + STATE(448), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(506), 3, + STATE(647), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(526), 16, + STATE(692), 16, sym__form, sym_str_lit, sym_sym_lit, @@ -18722,37 +18722,37 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA_AT, ACTIONS(418), 1, anon_sym_COMMA, - STATE(507), 1, - sym__bare_vec_lit, - STATE(508), 1, + STATE(505), 1, sym__bare_set_lit, - STATE(527), 1, + STATE(536), 1, aux_sym_sym_lit_repeat1, - STATE(584), 1, + STATE(537), 1, + sym__bare_vec_lit, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(761), 1, + STATE(829), 1, sym__metadata_lit, - ACTIONS(378), 2, + ACTIONS(1122), 2, sym__ws, sym_comment, - ACTIONS(1124), 2, + ACTIONS(1126), 2, sym_nil_lit, sym_fancy_literal, - ACTIONS(1122), 3, + ACTIONS(1124), 3, sym_num_lit, sym_kwd_lit, sym_char_lit, - STATE(448), 3, + STATE(185), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(506), 3, + STATE(472), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(466), 16, + STATE(534), 16, sym__form, sym_str_lit, sym_sym_lit, @@ -18778,67 +18778,67 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(19), 1, anon_sym_POUND_CARET, - ACTIONS(732), 1, + ACTIONS(388), 1, aux_sym_str_lit_token1, - ACTIONS(736), 1, + ACTIONS(392), 1, aux_sym_sym_lit_token1, - ACTIONS(738), 1, + ACTIONS(394), 1, anon_sym_LPAREN, - ACTIONS(740), 1, + ACTIONS(396), 1, anon_sym_POUND0A, - ACTIONS(742), 1, + ACTIONS(398), 1, anon_sym_POUND, - ACTIONS(744), 1, + ACTIONS(400), 1, anon_sym_POUND_QMARK, - ACTIONS(746), 1, + ACTIONS(402), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(748), 1, + ACTIONS(404), 1, anon_sym_POUND_SQUOTE, - ACTIONS(750), 1, + ACTIONS(406), 1, anon_sym_POUND_POUND, - ACTIONS(752), 1, + ACTIONS(408), 1, anon_sym_POUND_EQ, - ACTIONS(754), 1, + ACTIONS(410), 1, anon_sym_AT, - ACTIONS(756), 1, + ACTIONS(412), 1, anon_sym_SQUOTE, - ACTIONS(758), 1, + ACTIONS(414), 1, anon_sym_BQUOTE, - ACTIONS(760), 1, + ACTIONS(416), 1, anon_sym_COMMA_AT, - ACTIONS(762), 1, + ACTIONS(418), 1, anon_sym_COMMA, - STATE(504), 1, + STATE(505), 1, + sym__bare_set_lit, + STATE(536), 1, aux_sym_sym_lit_repeat1, - STATE(584), 1, + STATE(537), 1, + sym__bare_vec_lit, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(641), 1, - sym__bare_vec_lit, - STATE(685), 1, - sym__bare_set_lit, - STATE(761), 1, + STATE(829), 1, sym__metadata_lit, - ACTIONS(378), 2, + ACTIONS(1128), 2, sym__ws, sym_comment, - ACTIONS(1128), 2, + ACTIONS(1132), 2, sym_nil_lit, sym_fancy_literal, - ACTIONS(1126), 3, + ACTIONS(1130), 3, sym_num_lit, sym_kwd_lit, sym_char_lit, - STATE(448), 3, + STATE(67), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(683), 3, + STATE(472), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(661), 16, + STATE(509), 16, sym__form, sym_str_lit, sym_sym_lit, @@ -18860,71 +18860,71 @@ static uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, + ACTIONS(11), 1, + aux_sym_str_lit_token1, + ACTIONS(15), 1, + aux_sym_sym_lit_token1, ACTIONS(17), 1, anon_sym_CARET, ACTIONS(19), 1, anon_sym_POUND_CARET, - ACTIONS(456), 1, - aux_sym_str_lit_token1, - ACTIONS(460), 1, - aux_sym_sym_lit_token1, - ACTIONS(462), 1, + ACTIONS(21), 1, anon_sym_LPAREN, - ACTIONS(464), 1, + ACTIONS(23), 1, anon_sym_POUND0A, - ACTIONS(466), 1, + ACTIONS(25), 1, anon_sym_POUND, - ACTIONS(468), 1, + ACTIONS(27), 1, anon_sym_POUND_QMARK, - ACTIONS(470), 1, + ACTIONS(29), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(472), 1, + ACTIONS(31), 1, anon_sym_POUND_SQUOTE, - ACTIONS(474), 1, + ACTIONS(33), 1, anon_sym_POUND_POUND, - ACTIONS(476), 1, + ACTIONS(35), 1, anon_sym_POUND_EQ, - ACTIONS(478), 1, + ACTIONS(37), 1, anon_sym_AT, - ACTIONS(480), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(482), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(484), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(486), 1, + ACTIONS(45), 1, anon_sym_COMMA, - STATE(531), 1, + STATE(372), 1, + sym__bare_set_lit, + STATE(375), 1, + sym__bare_vec_lit, + STATE(541), 1, aux_sym_sym_lit_repeat1, - STATE(584), 1, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(631), 1, - sym__bare_set_lit, - STATE(632), 1, - sym__bare_vec_lit, - STATE(761), 1, + STATE(829), 1, sym__metadata_lit, - ACTIONS(378), 2, + ACTIONS(1134), 2, sym__ws, sym_comment, - ACTIONS(1132), 2, + ACTIONS(1138), 2, sym_nil_lit, sym_fancy_literal, - ACTIONS(1130), 3, + ACTIONS(1136), 3, sym_num_lit, sym_kwd_lit, sym_char_lit, - STATE(448), 3, + STATE(63), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(633), 3, + STATE(376), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(582), 16, + STATE(803), 16, sym__form, sym_str_lit, sym_sym_lit, @@ -18950,67 +18950,67 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(19), 1, anon_sym_POUND_CARET, - ACTIONS(732), 1, + ACTIONS(388), 1, aux_sym_str_lit_token1, - ACTIONS(736), 1, + ACTIONS(392), 1, aux_sym_sym_lit_token1, - ACTIONS(738), 1, + ACTIONS(394), 1, anon_sym_LPAREN, - ACTIONS(740), 1, + ACTIONS(396), 1, anon_sym_POUND0A, - ACTIONS(742), 1, + ACTIONS(398), 1, anon_sym_POUND, - ACTIONS(744), 1, + ACTIONS(400), 1, anon_sym_POUND_QMARK, - ACTIONS(746), 1, + ACTIONS(402), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(748), 1, + ACTIONS(404), 1, anon_sym_POUND_SQUOTE, - ACTIONS(750), 1, + ACTIONS(406), 1, anon_sym_POUND_POUND, - ACTIONS(752), 1, + ACTIONS(408), 1, anon_sym_POUND_EQ, - ACTIONS(754), 1, + ACTIONS(410), 1, anon_sym_AT, - ACTIONS(756), 1, + ACTIONS(412), 1, anon_sym_SQUOTE, - ACTIONS(758), 1, + ACTIONS(414), 1, anon_sym_BQUOTE, - ACTIONS(760), 1, + ACTIONS(416), 1, anon_sym_COMMA_AT, - ACTIONS(762), 1, + ACTIONS(418), 1, anon_sym_COMMA, - STATE(504), 1, + STATE(505), 1, + sym__bare_set_lit, + STATE(536), 1, aux_sym_sym_lit_repeat1, - STATE(584), 1, + STATE(537), 1, + sym__bare_vec_lit, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(641), 1, - sym__bare_vec_lit, - STATE(685), 1, - sym__bare_set_lit, - STATE(761), 1, + STATE(829), 1, sym__metadata_lit, - ACTIONS(1134), 2, + ACTIONS(1140), 2, sym__ws, sym_comment, - ACTIONS(1138), 2, + ACTIONS(1144), 2, sym_nil_lit, sym_fancy_literal, - ACTIONS(1136), 3, + ACTIONS(1142), 3, sym_num_lit, sym_kwd_lit, sym_char_lit, - STATE(177), 3, + STATE(190), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(683), 3, + STATE(472), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(700), 16, + STATE(530), 16, sym__form, sym_str_lit, sym_sym_lit, @@ -19036,67 +19036,67 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(19), 1, anon_sym_POUND_CARET, - ACTIONS(388), 1, + ACTIONS(522), 1, aux_sym_str_lit_token1, - ACTIONS(392), 1, + ACTIONS(526), 1, aux_sym_sym_lit_token1, - ACTIONS(394), 1, + ACTIONS(528), 1, anon_sym_LPAREN, - ACTIONS(396), 1, + ACTIONS(530), 1, anon_sym_POUND0A, - ACTIONS(398), 1, + ACTIONS(532), 1, anon_sym_POUND, - ACTIONS(400), 1, + ACTIONS(534), 1, anon_sym_POUND_QMARK, - ACTIONS(402), 1, + ACTIONS(536), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(404), 1, + ACTIONS(538), 1, anon_sym_POUND_SQUOTE, - ACTIONS(406), 1, + ACTIONS(540), 1, anon_sym_POUND_POUND, - ACTIONS(408), 1, + ACTIONS(542), 1, anon_sym_POUND_EQ, - ACTIONS(410), 1, + ACTIONS(544), 1, anon_sym_AT, - ACTIONS(412), 1, + ACTIONS(546), 1, anon_sym_SQUOTE, - ACTIONS(414), 1, + ACTIONS(548), 1, anon_sym_BQUOTE, - ACTIONS(416), 1, + ACTIONS(550), 1, anon_sym_COMMA_AT, - ACTIONS(418), 1, + ACTIONS(552), 1, anon_sym_COMMA, - STATE(507), 1, - sym__bare_vec_lit, - STATE(508), 1, - sym__bare_set_lit, - STATE(527), 1, + STATE(528), 1, aux_sym_sym_lit_repeat1, - STATE(584), 1, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(761), 1, + STATE(614), 1, + sym__bare_set_lit, + STATE(631), 1, + sym__bare_vec_lit, + STATE(829), 1, sym__metadata_lit, - ACTIONS(378), 2, + ACTIONS(1146), 2, sym__ws, sym_comment, - ACTIONS(1142), 2, + ACTIONS(1150), 2, sym_nil_lit, sym_fancy_literal, - ACTIONS(1140), 3, + ACTIONS(1148), 3, sym_num_lit, sym_kwd_lit, sym_char_lit, - STATE(448), 3, + STATE(118), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(506), 3, + STATE(635), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(539), 16, + STATE(642), 16, sym__form, sym_str_lit, sym_sym_lit, @@ -19152,25 +19152,25 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA_AT, ACTIONS(418), 1, anon_sym_COMMA, - STATE(507), 1, - sym__bare_vec_lit, - STATE(508), 1, + STATE(505), 1, sym__bare_set_lit, - STATE(527), 1, + STATE(536), 1, aux_sym_sym_lit_repeat1, - STATE(584), 1, + STATE(537), 1, + sym__bare_vec_lit, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(761), 1, + STATE(829), 1, sym__metadata_lit, ACTIONS(378), 2, sym__ws, sym_comment, - ACTIONS(1146), 2, + ACTIONS(1154), 2, sym_nil_lit, sym_fancy_literal, - ACTIONS(1144), 3, + ACTIONS(1152), 3, sym_num_lit, sym_kwd_lit, sym_char_lit, @@ -19178,11 +19178,11 @@ static uint16_t ts_small_parse_table[] = { sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(506), 3, + STATE(472), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(529), 16, + STATE(497), 16, sym__form, sym_str_lit, sym_sym_lit, @@ -19238,25 +19238,25 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA_AT, ACTIONS(418), 1, anon_sym_COMMA, - STATE(507), 1, - sym__bare_vec_lit, - STATE(508), 1, + STATE(505), 1, sym__bare_set_lit, - STATE(527), 1, + STATE(536), 1, aux_sym_sym_lit_repeat1, - STATE(584), 1, + STATE(537), 1, + sym__bare_vec_lit, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(761), 1, + STATE(829), 1, sym__metadata_lit, ACTIONS(378), 2, sym__ws, sym_comment, - ACTIONS(1150), 2, + ACTIONS(1158), 2, sym_nil_lit, sym_fancy_literal, - ACTIONS(1148), 3, + ACTIONS(1156), 3, sym_num_lit, sym_kwd_lit, sym_char_lit, @@ -19264,11 +19264,11 @@ static uint16_t ts_small_parse_table[] = { sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(506), 3, + STATE(472), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(520), 16, + STATE(498), 16, sym__form, sym_str_lit, sym_sym_lit, @@ -19294,67 +19294,67 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(19), 1, anon_sym_POUND_CARET, - ACTIONS(732), 1, + ACTIONS(422), 1, aux_sym_str_lit_token1, - ACTIONS(736), 1, + ACTIONS(426), 1, aux_sym_sym_lit_token1, - ACTIONS(738), 1, + ACTIONS(428), 1, anon_sym_LPAREN, - ACTIONS(740), 1, + ACTIONS(430), 1, anon_sym_POUND0A, - ACTIONS(742), 1, + ACTIONS(432), 1, anon_sym_POUND, - ACTIONS(744), 1, + ACTIONS(434), 1, anon_sym_POUND_QMARK, - ACTIONS(746), 1, + ACTIONS(436), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(748), 1, + ACTIONS(438), 1, anon_sym_POUND_SQUOTE, - ACTIONS(750), 1, + ACTIONS(440), 1, anon_sym_POUND_POUND, - ACTIONS(752), 1, + ACTIONS(442), 1, anon_sym_POUND_EQ, - ACTIONS(754), 1, + ACTIONS(444), 1, anon_sym_AT, - ACTIONS(756), 1, + ACTIONS(446), 1, anon_sym_SQUOTE, - ACTIONS(758), 1, + ACTIONS(448), 1, anon_sym_BQUOTE, - ACTIONS(760), 1, + ACTIONS(450), 1, anon_sym_COMMA_AT, - ACTIONS(762), 1, + ACTIONS(452), 1, anon_sym_COMMA, - STATE(504), 1, + STATE(501), 1, aux_sym_sym_lit_repeat1, - STATE(584), 1, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(641), 1, - sym__bare_vec_lit, - STATE(685), 1, + STATE(742), 1, sym__bare_set_lit, - STATE(761), 1, + STATE(743), 1, + sym__bare_vec_lit, + STATE(829), 1, sym__metadata_lit, - ACTIONS(1152), 2, + ACTIONS(378), 2, sym__ws, sym_comment, - ACTIONS(1156), 2, + ACTIONS(1162), 2, sym_nil_lit, sym_fancy_literal, - ACTIONS(1154), 3, + ACTIONS(1160), 3, sym_num_lit, sym_kwd_lit, sym_char_lit, - STATE(184), 3, + STATE(448), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(683), 3, + STATE(744), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(699), 16, + STATE(768), 16, sym__form, sym_str_lit, sym_sym_lit, @@ -19380,55 +19380,55 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(19), 1, anon_sym_POUND_CARET, - ACTIONS(732), 1, + ACTIONS(388), 1, aux_sym_str_lit_token1, - ACTIONS(736), 1, + ACTIONS(392), 1, aux_sym_sym_lit_token1, - ACTIONS(738), 1, + ACTIONS(394), 1, anon_sym_LPAREN, - ACTIONS(740), 1, + ACTIONS(396), 1, anon_sym_POUND0A, - ACTIONS(742), 1, + ACTIONS(398), 1, anon_sym_POUND, - ACTIONS(744), 1, + ACTIONS(400), 1, anon_sym_POUND_QMARK, - ACTIONS(746), 1, + ACTIONS(402), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(748), 1, + ACTIONS(404), 1, anon_sym_POUND_SQUOTE, - ACTIONS(750), 1, + ACTIONS(406), 1, anon_sym_POUND_POUND, - ACTIONS(752), 1, + ACTIONS(408), 1, anon_sym_POUND_EQ, - ACTIONS(754), 1, + ACTIONS(410), 1, anon_sym_AT, - ACTIONS(756), 1, + ACTIONS(412), 1, anon_sym_SQUOTE, - ACTIONS(758), 1, + ACTIONS(414), 1, anon_sym_BQUOTE, - ACTIONS(760), 1, + ACTIONS(416), 1, anon_sym_COMMA_AT, - ACTIONS(762), 1, + ACTIONS(418), 1, anon_sym_COMMA, - STATE(504), 1, + STATE(505), 1, + sym__bare_set_lit, + STATE(536), 1, aux_sym_sym_lit_repeat1, - STATE(584), 1, + STATE(537), 1, + sym__bare_vec_lit, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(641), 1, - sym__bare_vec_lit, - STATE(685), 1, - sym__bare_set_lit, - STATE(761), 1, + STATE(829), 1, sym__metadata_lit, ACTIONS(378), 2, sym__ws, sym_comment, - ACTIONS(1160), 2, + ACTIONS(1166), 2, sym_nil_lit, sym_fancy_literal, - ACTIONS(1158), 3, + ACTIONS(1164), 3, sym_num_lit, sym_kwd_lit, sym_char_lit, @@ -19436,11 +19436,11 @@ static uint16_t ts_small_parse_table[] = { sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(683), 3, + STATE(472), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(660), 16, + STATE(506), 16, sym__form, sym_str_lit, sym_sym_lit, @@ -19462,157 +19462,71 @@ static uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(11), 1, - aux_sym_str_lit_token1, - ACTIONS(15), 1, - aux_sym_sym_lit_token1, ACTIONS(17), 1, anon_sym_CARET, ACTIONS(19), 1, anon_sym_POUND_CARET, - ACTIONS(21), 1, - anon_sym_LPAREN, - ACTIONS(23), 1, - anon_sym_POUND0A, - ACTIONS(25), 1, - anon_sym_POUND, - ACTIONS(27), 1, - anon_sym_POUND_QMARK, - ACTIONS(29), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(31), 1, - anon_sym_POUND_SQUOTE, - ACTIONS(33), 1, - anon_sym_POUND_POUND, - ACTIONS(35), 1, - anon_sym_POUND_EQ, - ACTIONS(37), 1, - anon_sym_AT, - ACTIONS(39), 1, - anon_sym_SQUOTE, - ACTIONS(41), 1, - anon_sym_BQUOTE, - ACTIONS(43), 1, - anon_sym_COMMA_AT, - ACTIONS(45), 1, - anon_sym_COMMA, - STATE(384), 1, - sym__bare_vec_lit, - STATE(390), 1, - sym__bare_set_lit, - STATE(505), 1, - aux_sym_sym_lit_repeat1, - STATE(584), 1, - sym_old_meta_lit, - STATE(587), 1, - sym_meta_lit, - STATE(761), 1, - sym__metadata_lit, - ACTIONS(1162), 2, - sym__ws, - sym_comment, - ACTIONS(1166), 2, - sym_nil_lit, - sym_fancy_literal, - ACTIONS(1164), 3, - sym_num_lit, - sym_kwd_lit, - sym_char_lit, - STATE(81), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(379), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(385), 16, - sym__form, - sym_str_lit, - sym_sym_lit, - sym_list_lit, - sym_vec_lit, - sym_set_lit, - sym_read_cond_lit, - sym_splicing_read_cond_lit, - sym_var_quoting_lit, - sym_sym_val_lit, - sym_evaling_lit, - sym_derefing_lit, - sym_quoting_lit, - sym_syn_quoting_lit, - sym_unquote_splicing_lit, - sym_unquoting_lit, - [20864] = 31, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(9), 1, - anon_sym_POUND_, - ACTIONS(11), 1, + ACTIONS(388), 1, aux_sym_str_lit_token1, - ACTIONS(15), 1, + ACTIONS(392), 1, aux_sym_sym_lit_token1, - ACTIONS(17), 1, - anon_sym_CARET, - ACTIONS(19), 1, - anon_sym_POUND_CARET, - ACTIONS(21), 1, + ACTIONS(394), 1, anon_sym_LPAREN, - ACTIONS(23), 1, + ACTIONS(396), 1, anon_sym_POUND0A, - ACTIONS(25), 1, + ACTIONS(398), 1, anon_sym_POUND, - ACTIONS(27), 1, + ACTIONS(400), 1, anon_sym_POUND_QMARK, - ACTIONS(29), 1, + ACTIONS(402), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(31), 1, + ACTIONS(404), 1, anon_sym_POUND_SQUOTE, - ACTIONS(33), 1, + ACTIONS(406), 1, anon_sym_POUND_POUND, - ACTIONS(35), 1, + ACTIONS(408), 1, anon_sym_POUND_EQ, - ACTIONS(37), 1, + ACTIONS(410), 1, anon_sym_AT, - ACTIONS(39), 1, + ACTIONS(412), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(414), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(416), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(418), 1, anon_sym_COMMA, - STATE(384), 1, - sym__bare_vec_lit, - STATE(390), 1, - sym__bare_set_lit, STATE(505), 1, + sym__bare_set_lit, + STATE(536), 1, aux_sym_sym_lit_repeat1, - STATE(584), 1, + STATE(537), 1, + sym__bare_vec_lit, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(761), 1, + STATE(829), 1, sym__metadata_lit, - ACTIONS(1168), 2, + ACTIONS(378), 2, sym__ws, sym_comment, - ACTIONS(1172), 2, + ACTIONS(1170), 2, sym_nil_lit, sym_fancy_literal, - ACTIONS(1170), 3, + ACTIONS(1168), 3, sym_num_lit, sym_kwd_lit, sym_char_lit, - STATE(79), 3, + STATE(448), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(379), 3, + STATE(472), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(416), 16, + STATE(507), 16, sym__form, sym_str_lit, sym_sym_lit, @@ -19629,7 +19543,7 @@ static uint16_t ts_small_parse_table[] = { sym_syn_quoting_lit, sym_unquote_splicing_lit, sym_unquoting_lit, - [20981] = 31, + [20864] = 31, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, @@ -19638,55 +19552,55 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(19), 1, anon_sym_POUND_CARET, - ACTIONS(388), 1, + ACTIONS(694), 1, aux_sym_str_lit_token1, - ACTIONS(392), 1, + ACTIONS(698), 1, aux_sym_sym_lit_token1, - ACTIONS(394), 1, + ACTIONS(700), 1, anon_sym_LPAREN, - ACTIONS(396), 1, + ACTIONS(702), 1, anon_sym_POUND0A, - ACTIONS(398), 1, + ACTIONS(704), 1, anon_sym_POUND, - ACTIONS(400), 1, + ACTIONS(706), 1, anon_sym_POUND_QMARK, - ACTIONS(402), 1, + ACTIONS(708), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(404), 1, + ACTIONS(710), 1, anon_sym_POUND_SQUOTE, - ACTIONS(406), 1, + ACTIONS(712), 1, anon_sym_POUND_POUND, - ACTIONS(408), 1, + ACTIONS(714), 1, anon_sym_POUND_EQ, - ACTIONS(410), 1, + ACTIONS(716), 1, anon_sym_AT, - ACTIONS(412), 1, + ACTIONS(718), 1, anon_sym_SQUOTE, - ACTIONS(414), 1, + ACTIONS(720), 1, anon_sym_BQUOTE, - ACTIONS(416), 1, + ACTIONS(722), 1, anon_sym_COMMA_AT, - ACTIONS(418), 1, + ACTIONS(724), 1, anon_sym_COMMA, - STATE(507), 1, - sym__bare_vec_lit, - STATE(508), 1, - sym__bare_set_lit, - STATE(527), 1, + STATE(516), 1, aux_sym_sym_lit_repeat1, - STATE(584), 1, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(761), 1, + STATE(648), 1, + sym__bare_vec_lit, + STATE(649), 1, + sym__bare_set_lit, + STATE(829), 1, sym__metadata_lit, ACTIONS(378), 2, sym__ws, sym_comment, - ACTIONS(1176), 2, + ACTIONS(1174), 2, sym_nil_lit, sym_fancy_literal, - ACTIONS(1174), 3, + ACTIONS(1172), 3, sym_num_lit, sym_kwd_lit, sym_char_lit, @@ -19694,11 +19608,11 @@ static uint16_t ts_small_parse_table[] = { sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(506), 3, + STATE(647), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(518), 16, + STATE(695), 16, sym__form, sym_str_lit, sym_sym_lit, @@ -19715,7 +19629,7 @@ static uint16_t ts_small_parse_table[] = { sym_syn_quoting_lit, sym_unquote_splicing_lit, sym_unquoting_lit, - [21098] = 31, + [20981] = 31, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, @@ -19724,55 +19638,55 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(19), 1, anon_sym_POUND_CARET, - ACTIONS(732), 1, + ACTIONS(422), 1, aux_sym_str_lit_token1, - ACTIONS(736), 1, + ACTIONS(426), 1, aux_sym_sym_lit_token1, - ACTIONS(738), 1, + ACTIONS(428), 1, anon_sym_LPAREN, - ACTIONS(740), 1, + ACTIONS(430), 1, anon_sym_POUND0A, - ACTIONS(742), 1, + ACTIONS(432), 1, anon_sym_POUND, - ACTIONS(744), 1, + ACTIONS(434), 1, anon_sym_POUND_QMARK, - ACTIONS(746), 1, + ACTIONS(436), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(748), 1, + ACTIONS(438), 1, anon_sym_POUND_SQUOTE, - ACTIONS(750), 1, + ACTIONS(440), 1, anon_sym_POUND_POUND, - ACTIONS(752), 1, + ACTIONS(442), 1, anon_sym_POUND_EQ, - ACTIONS(754), 1, + ACTIONS(444), 1, anon_sym_AT, - ACTIONS(756), 1, + ACTIONS(446), 1, anon_sym_SQUOTE, - ACTIONS(758), 1, + ACTIONS(448), 1, anon_sym_BQUOTE, - ACTIONS(760), 1, + ACTIONS(450), 1, anon_sym_COMMA_AT, - ACTIONS(762), 1, + ACTIONS(452), 1, anon_sym_COMMA, - STATE(504), 1, + STATE(501), 1, aux_sym_sym_lit_repeat1, - STATE(584), 1, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(641), 1, - sym__bare_vec_lit, - STATE(685), 1, + STATE(742), 1, sym__bare_set_lit, - STATE(761), 1, + STATE(743), 1, + sym__bare_vec_lit, + STATE(829), 1, sym__metadata_lit, ACTIONS(378), 2, sym__ws, sym_comment, - ACTIONS(1180), 2, + ACTIONS(1178), 2, sym_nil_lit, sym_fancy_literal, - ACTIONS(1178), 3, + ACTIONS(1176), 3, sym_num_lit, sym_kwd_lit, sym_char_lit, @@ -19780,11 +19694,11 @@ static uint16_t ts_small_parse_table[] = { sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(683), 3, + STATE(744), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(645), 16, + STATE(760), 16, sym__form, sym_str_lit, sym_sym_lit, @@ -19801,7 +19715,7 @@ static uint16_t ts_small_parse_table[] = { sym_syn_quoting_lit, sym_unquote_splicing_lit, sym_unquoting_lit, - [21215] = 31, + [21098] = 31, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, @@ -19840,37 +19754,37 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA_AT, ACTIONS(45), 1, anon_sym_COMMA, - STATE(384), 1, - sym__bare_vec_lit, - STATE(390), 1, + STATE(372), 1, sym__bare_set_lit, - STATE(505), 1, + STATE(375), 1, + sym__bare_vec_lit, + STATE(541), 1, aux_sym_sym_lit_repeat1, - STATE(584), 1, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(761), 1, + STATE(829), 1, sym__metadata_lit, - ACTIONS(1182), 2, + ACTIONS(1180), 2, sym__ws, sym_comment, - ACTIONS(1186), 2, + ACTIONS(1184), 2, sym_nil_lit, sym_fancy_literal, - ACTIONS(1184), 3, + ACTIONS(1182), 3, sym_num_lit, sym_kwd_lit, sym_char_lit, - STATE(76), 3, + STATE(84), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(379), 3, + STATE(376), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(386), 16, + STATE(460), 16, sym__form, sym_str_lit, sym_sym_lit, @@ -19887,7 +19801,7 @@ static uint16_t ts_small_parse_table[] = { sym_syn_quoting_lit, sym_unquote_splicing_lit, sym_unquoting_lit, - [21332] = 31, + [21215] = 31, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, @@ -19926,37 +19840,37 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA_AT, ACTIONS(45), 1, anon_sym_COMMA, - STATE(384), 1, - sym__bare_vec_lit, - STATE(390), 1, + STATE(372), 1, sym__bare_set_lit, - STATE(505), 1, + STATE(375), 1, + sym__bare_vec_lit, + STATE(541), 1, aux_sym_sym_lit_repeat1, - STATE(584), 1, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(761), 1, + STATE(829), 1, sym__metadata_lit, - ACTIONS(1188), 2, + ACTIONS(1186), 2, sym__ws, sym_comment, - ACTIONS(1192), 2, + ACTIONS(1190), 2, sym_nil_lit, sym_fancy_literal, - ACTIONS(1190), 3, + ACTIONS(1188), 3, sym_num_lit, sym_kwd_lit, sym_char_lit, - STATE(74), 3, + STATE(82), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(379), 3, + STATE(376), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(452), 16, + STATE(456), 16, sym__form, sym_str_lit, sym_sym_lit, @@ -19973,7 +19887,7 @@ static uint16_t ts_small_parse_table[] = { sym_syn_quoting_lit, sym_unquote_splicing_lit, sym_unquoting_lit, - [21449] = 31, + [21332] = 31, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, @@ -20012,25 +19926,25 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA_AT, ACTIONS(418), 1, anon_sym_COMMA, - STATE(507), 1, - sym__bare_vec_lit, - STATE(508), 1, + STATE(505), 1, sym__bare_set_lit, - STATE(527), 1, + STATE(536), 1, aux_sym_sym_lit_repeat1, - STATE(584), 1, + STATE(537), 1, + sym__bare_vec_lit, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(761), 1, + STATE(829), 1, sym__metadata_lit, ACTIONS(378), 2, sym__ws, sym_comment, - ACTIONS(1196), 2, + ACTIONS(1194), 2, sym_nil_lit, sym_fancy_literal, - ACTIONS(1194), 3, + ACTIONS(1192), 3, sym_num_lit, sym_kwd_lit, sym_char_lit, @@ -20038,11 +19952,11 @@ static uint16_t ts_small_parse_table[] = { sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(506), 3, + STATE(472), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(503), 16, + STATE(512), 16, sym__form, sym_str_lit, sym_sym_lit, @@ -20059,7 +19973,7 @@ static uint16_t ts_small_parse_table[] = { sym_syn_quoting_lit, sym_unquote_splicing_lit, sym_unquoting_lit, - [21566] = 31, + [21449] = 31, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, @@ -20068,49 +19982,49 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(19), 1, anon_sym_POUND_CARET, - ACTIONS(388), 1, + ACTIONS(694), 1, aux_sym_str_lit_token1, - ACTIONS(392), 1, + ACTIONS(698), 1, aux_sym_sym_lit_token1, - ACTIONS(394), 1, + ACTIONS(700), 1, anon_sym_LPAREN, - ACTIONS(396), 1, + ACTIONS(702), 1, anon_sym_POUND0A, - ACTIONS(398), 1, + ACTIONS(704), 1, anon_sym_POUND, - ACTIONS(400), 1, + ACTIONS(706), 1, anon_sym_POUND_QMARK, - ACTIONS(402), 1, + ACTIONS(708), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(404), 1, + ACTIONS(710), 1, anon_sym_POUND_SQUOTE, - ACTIONS(406), 1, + ACTIONS(712), 1, anon_sym_POUND_POUND, - ACTIONS(408), 1, + ACTIONS(714), 1, anon_sym_POUND_EQ, - ACTIONS(410), 1, + ACTIONS(716), 1, anon_sym_AT, - ACTIONS(412), 1, + ACTIONS(718), 1, anon_sym_SQUOTE, - ACTIONS(414), 1, + ACTIONS(720), 1, anon_sym_BQUOTE, - ACTIONS(416), 1, + ACTIONS(722), 1, anon_sym_COMMA_AT, - ACTIONS(418), 1, + ACTIONS(724), 1, anon_sym_COMMA, - STATE(507), 1, - sym__bare_vec_lit, - STATE(508), 1, - sym__bare_set_lit, - STATE(527), 1, + STATE(516), 1, aux_sym_sym_lit_repeat1, - STATE(584), 1, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(761), 1, + STATE(648), 1, + sym__bare_vec_lit, + STATE(649), 1, + sym__bare_set_lit, + STATE(829), 1, sym__metadata_lit, - ACTIONS(378), 2, + ACTIONS(1196), 2, sym__ws, sym_comment, ACTIONS(1200), 2, @@ -20120,15 +20034,101 @@ static uint16_t ts_small_parse_table[] = { sym_num_lit, sym_kwd_lit, sym_char_lit, - STATE(448), 3, + STATE(197), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(647), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(667), 16, + sym__form, + sym_str_lit, + sym_sym_lit, + sym_list_lit, + sym_vec_lit, + sym_set_lit, + sym_read_cond_lit, + sym_splicing_read_cond_lit, + sym_var_quoting_lit, + sym_sym_val_lit, + sym_evaling_lit, + sym_derefing_lit, + sym_quoting_lit, + sym_syn_quoting_lit, + sym_unquote_splicing_lit, + sym_unquoting_lit, + [21566] = 31, + ACTIONS(3), 1, + sym_block_comment, + ACTIONS(9), 1, + anon_sym_POUND_, + ACTIONS(11), 1, + aux_sym_str_lit_token1, + ACTIONS(15), 1, + aux_sym_sym_lit_token1, + ACTIONS(17), 1, + anon_sym_CARET, + ACTIONS(19), 1, + anon_sym_POUND_CARET, + ACTIONS(21), 1, + anon_sym_LPAREN, + ACTIONS(23), 1, + anon_sym_POUND0A, + ACTIONS(25), 1, + anon_sym_POUND, + ACTIONS(27), 1, + anon_sym_POUND_QMARK, + ACTIONS(29), 1, + anon_sym_POUND_QMARK_AT, + ACTIONS(31), 1, + anon_sym_POUND_SQUOTE, + ACTIONS(33), 1, + anon_sym_POUND_POUND, + ACTIONS(35), 1, + anon_sym_POUND_EQ, + ACTIONS(37), 1, + anon_sym_AT, + ACTIONS(39), 1, + anon_sym_SQUOTE, + ACTIONS(41), 1, + anon_sym_BQUOTE, + ACTIONS(43), 1, + anon_sym_COMMA_AT, + ACTIONS(45), 1, + anon_sym_COMMA, + STATE(372), 1, + sym__bare_set_lit, + STATE(375), 1, + sym__bare_vec_lit, + STATE(541), 1, + aux_sym_sym_lit_repeat1, + STATE(581), 1, + sym_old_meta_lit, + STATE(582), 1, + sym_meta_lit, + STATE(829), 1, + sym__metadata_lit, + ACTIONS(1202), 2, + sym__ws, + sym_comment, + ACTIONS(1206), 2, + sym_nil_lit, + sym_fancy_literal, + ACTIONS(1204), 3, + sym_num_lit, + sym_kwd_lit, + sym_char_lit, + STATE(79), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(506), 3, + STATE(376), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(501), 16, + STATE(422), 16, sym__form, sym_str_lit, sym_sym_lit, @@ -20154,67 +20154,67 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(19), 1, anon_sym_POUND_CARET, - ACTIONS(732), 1, + ACTIONS(422), 1, aux_sym_str_lit_token1, - ACTIONS(736), 1, + ACTIONS(426), 1, aux_sym_sym_lit_token1, - ACTIONS(738), 1, + ACTIONS(428), 1, anon_sym_LPAREN, - ACTIONS(740), 1, + ACTIONS(430), 1, anon_sym_POUND0A, - ACTIONS(742), 1, + ACTIONS(432), 1, anon_sym_POUND, - ACTIONS(744), 1, + ACTIONS(434), 1, anon_sym_POUND_QMARK, - ACTIONS(746), 1, + ACTIONS(436), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(748), 1, + ACTIONS(438), 1, anon_sym_POUND_SQUOTE, - ACTIONS(750), 1, + ACTIONS(440), 1, anon_sym_POUND_POUND, - ACTIONS(752), 1, + ACTIONS(442), 1, anon_sym_POUND_EQ, - ACTIONS(754), 1, + ACTIONS(444), 1, anon_sym_AT, - ACTIONS(756), 1, + ACTIONS(446), 1, anon_sym_SQUOTE, - ACTIONS(758), 1, + ACTIONS(448), 1, anon_sym_BQUOTE, - ACTIONS(760), 1, + ACTIONS(450), 1, anon_sym_COMMA_AT, - ACTIONS(762), 1, + ACTIONS(452), 1, anon_sym_COMMA, - STATE(504), 1, + STATE(501), 1, aux_sym_sym_lit_repeat1, - STATE(584), 1, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(641), 1, - sym__bare_vec_lit, - STATE(685), 1, + STATE(742), 1, sym__bare_set_lit, - STATE(761), 1, + STATE(743), 1, + sym__bare_vec_lit, + STATE(829), 1, sym__metadata_lit, - ACTIONS(1202), 2, + ACTIONS(378), 2, sym__ws, sym_comment, - ACTIONS(1206), 2, + ACTIONS(1210), 2, sym_nil_lit, sym_fancy_literal, - ACTIONS(1204), 3, + ACTIONS(1208), 3, sym_num_lit, sym_kwd_lit, sym_char_lit, - STATE(196), 3, + STATE(448), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(683), 3, + STATE(744), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(697), 16, + STATE(751), 16, sym__form, sym_str_lit, sym_sym_lit, @@ -20270,37 +20270,37 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA_AT, ACTIONS(45), 1, anon_sym_COMMA, - STATE(384), 1, - sym__bare_vec_lit, - STATE(390), 1, + STATE(372), 1, sym__bare_set_lit, - STATE(505), 1, + STATE(375), 1, + sym__bare_vec_lit, + STATE(541), 1, aux_sym_sym_lit_repeat1, - STATE(584), 1, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(761), 1, + STATE(829), 1, sym__metadata_lit, - ACTIONS(1208), 2, + ACTIONS(1212), 2, sym__ws, sym_comment, - ACTIONS(1212), 2, + ACTIONS(1216), 2, sym_nil_lit, sym_fancy_literal, - ACTIONS(1210), 3, + ACTIONS(1214), 3, sym_num_lit, sym_kwd_lit, sym_char_lit, - STATE(69), 3, + STATE(77), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(379), 3, + STATE(376), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(443), 16, + STATE(391), 16, sym__form, sym_str_lit, sym_sym_lit, @@ -20326,67 +20326,67 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(19), 1, anon_sym_POUND_CARET, - ACTIONS(388), 1, + ACTIONS(422), 1, aux_sym_str_lit_token1, - ACTIONS(392), 1, + ACTIONS(426), 1, aux_sym_sym_lit_token1, - ACTIONS(394), 1, + ACTIONS(428), 1, anon_sym_LPAREN, - ACTIONS(396), 1, + ACTIONS(430), 1, anon_sym_POUND0A, - ACTIONS(398), 1, + ACTIONS(432), 1, anon_sym_POUND, - ACTIONS(400), 1, + ACTIONS(434), 1, anon_sym_POUND_QMARK, - ACTIONS(402), 1, + ACTIONS(436), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(404), 1, + ACTIONS(438), 1, anon_sym_POUND_SQUOTE, - ACTIONS(406), 1, + ACTIONS(440), 1, anon_sym_POUND_POUND, - ACTIONS(408), 1, + ACTIONS(442), 1, anon_sym_POUND_EQ, - ACTIONS(410), 1, + ACTIONS(444), 1, anon_sym_AT, - ACTIONS(412), 1, + ACTIONS(446), 1, anon_sym_SQUOTE, - ACTIONS(414), 1, + ACTIONS(448), 1, anon_sym_BQUOTE, - ACTIONS(416), 1, + ACTIONS(450), 1, anon_sym_COMMA_AT, - ACTIONS(418), 1, + ACTIONS(452), 1, anon_sym_COMMA, - STATE(507), 1, - sym__bare_vec_lit, - STATE(508), 1, - sym__bare_set_lit, - STATE(527), 1, + STATE(501), 1, aux_sym_sym_lit_repeat1, - STATE(584), 1, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(761), 1, + STATE(742), 1, + sym__bare_set_lit, + STATE(743), 1, + sym__bare_vec_lit, + STATE(829), 1, sym__metadata_lit, - ACTIONS(1214), 2, + ACTIONS(378), 2, sym__ws, sym_comment, - ACTIONS(1218), 2, + ACTIONS(1220), 2, sym_nil_lit, sym_fancy_literal, - ACTIONS(1216), 3, + ACTIONS(1218), 3, sym_num_lit, sym_kwd_lit, sym_char_lit, - STATE(176), 3, + STATE(448), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(506), 3, + STATE(744), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(487), 16, + STATE(775), 16, sym__form, sym_str_lit, sym_sym_lit, @@ -20412,55 +20412,55 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(19), 1, anon_sym_POUND_CARET, - ACTIONS(732), 1, + ACTIONS(422), 1, aux_sym_str_lit_token1, - ACTIONS(736), 1, + ACTIONS(426), 1, aux_sym_sym_lit_token1, - ACTIONS(738), 1, + ACTIONS(428), 1, anon_sym_LPAREN, - ACTIONS(740), 1, + ACTIONS(430), 1, anon_sym_POUND0A, - ACTIONS(742), 1, + ACTIONS(432), 1, anon_sym_POUND, - ACTIONS(744), 1, + ACTIONS(434), 1, anon_sym_POUND_QMARK, - ACTIONS(746), 1, + ACTIONS(436), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(748), 1, + ACTIONS(438), 1, anon_sym_POUND_SQUOTE, - ACTIONS(750), 1, + ACTIONS(440), 1, anon_sym_POUND_POUND, - ACTIONS(752), 1, + ACTIONS(442), 1, anon_sym_POUND_EQ, - ACTIONS(754), 1, + ACTIONS(444), 1, anon_sym_AT, - ACTIONS(756), 1, + ACTIONS(446), 1, anon_sym_SQUOTE, - ACTIONS(758), 1, + ACTIONS(448), 1, anon_sym_BQUOTE, - ACTIONS(760), 1, + ACTIONS(450), 1, anon_sym_COMMA_AT, - ACTIONS(762), 1, + ACTIONS(452), 1, anon_sym_COMMA, - STATE(504), 1, + STATE(501), 1, aux_sym_sym_lit_repeat1, - STATE(584), 1, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(641), 1, - sym__bare_vec_lit, - STATE(685), 1, + STATE(742), 1, sym__bare_set_lit, - STATE(761), 1, + STATE(743), 1, + sym__bare_vec_lit, + STATE(829), 1, sym__metadata_lit, ACTIONS(378), 2, sym__ws, sym_comment, - ACTIONS(1222), 2, + ACTIONS(1224), 2, sym_nil_lit, sym_fancy_literal, - ACTIONS(1220), 3, + ACTIONS(1222), 3, sym_num_lit, sym_kwd_lit, sym_char_lit, @@ -20468,11 +20468,11 @@ static uint16_t ts_small_parse_table[] = { sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(683), 3, + STATE(744), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(658), 16, + STATE(825), 16, sym__form, sym_str_lit, sym_sym_lit, @@ -20498,49 +20498,49 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(19), 1, anon_sym_POUND_CARET, - ACTIONS(732), 1, + ACTIONS(694), 1, aux_sym_str_lit_token1, - ACTIONS(736), 1, + ACTIONS(698), 1, aux_sym_sym_lit_token1, - ACTIONS(738), 1, + ACTIONS(700), 1, anon_sym_LPAREN, - ACTIONS(740), 1, + ACTIONS(702), 1, anon_sym_POUND0A, - ACTIONS(742), 1, + ACTIONS(704), 1, anon_sym_POUND, - ACTIONS(744), 1, + ACTIONS(706), 1, anon_sym_POUND_QMARK, - ACTIONS(746), 1, + ACTIONS(708), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(748), 1, + ACTIONS(710), 1, anon_sym_POUND_SQUOTE, - ACTIONS(750), 1, + ACTIONS(712), 1, anon_sym_POUND_POUND, - ACTIONS(752), 1, + ACTIONS(714), 1, anon_sym_POUND_EQ, - ACTIONS(754), 1, + ACTIONS(716), 1, anon_sym_AT, - ACTIONS(756), 1, + ACTIONS(718), 1, anon_sym_SQUOTE, - ACTIONS(758), 1, + ACTIONS(720), 1, anon_sym_BQUOTE, - ACTIONS(760), 1, + ACTIONS(722), 1, anon_sym_COMMA_AT, - ACTIONS(762), 1, + ACTIONS(724), 1, anon_sym_COMMA, - STATE(504), 1, + STATE(516), 1, aux_sym_sym_lit_repeat1, - STATE(584), 1, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(641), 1, + STATE(648), 1, sym__bare_vec_lit, - STATE(685), 1, + STATE(649), 1, sym__bare_set_lit, - STATE(761), 1, + STATE(829), 1, sym__metadata_lit, - ACTIONS(1224), 2, + ACTIONS(378), 2, sym__ws, sym_comment, ACTIONS(1228), 2, @@ -20550,15 +20550,15 @@ static uint16_t ts_small_parse_table[] = { sym_num_lit, sym_kwd_lit, sym_char_lit, - STATE(107), 3, + STATE(448), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(683), 3, + STATE(647), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(691), 16, + STATE(698), 16, sym__form, sym_str_lit, sym_sym_lit, @@ -20584,47 +20584,47 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(19), 1, anon_sym_POUND_CARET, - ACTIONS(388), 1, + ACTIONS(694), 1, aux_sym_str_lit_token1, - ACTIONS(392), 1, + ACTIONS(698), 1, aux_sym_sym_lit_token1, - ACTIONS(394), 1, + ACTIONS(700), 1, anon_sym_LPAREN, - ACTIONS(396), 1, + ACTIONS(702), 1, anon_sym_POUND0A, - ACTIONS(398), 1, + ACTIONS(704), 1, anon_sym_POUND, - ACTIONS(400), 1, + ACTIONS(706), 1, anon_sym_POUND_QMARK, - ACTIONS(402), 1, + ACTIONS(708), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(404), 1, + ACTIONS(710), 1, anon_sym_POUND_SQUOTE, - ACTIONS(406), 1, + ACTIONS(712), 1, anon_sym_POUND_POUND, - ACTIONS(408), 1, + ACTIONS(714), 1, anon_sym_POUND_EQ, - ACTIONS(410), 1, + ACTIONS(716), 1, anon_sym_AT, - ACTIONS(412), 1, + ACTIONS(718), 1, anon_sym_SQUOTE, - ACTIONS(414), 1, + ACTIONS(720), 1, anon_sym_BQUOTE, - ACTIONS(416), 1, + ACTIONS(722), 1, anon_sym_COMMA_AT, - ACTIONS(418), 1, + ACTIONS(724), 1, anon_sym_COMMA, - STATE(507), 1, - sym__bare_vec_lit, - STATE(508), 1, - sym__bare_set_lit, - STATE(527), 1, + STATE(516), 1, aux_sym_sym_lit_repeat1, - STATE(584), 1, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(761), 1, + STATE(648), 1, + sym__bare_vec_lit, + STATE(649), 1, + sym__bare_set_lit, + STATE(829), 1, sym__metadata_lit, ACTIONS(1230), 2, sym__ws, @@ -20636,15 +20636,15 @@ static uint16_t ts_small_parse_table[] = { sym_num_lit, sym_kwd_lit, sym_char_lit, - STATE(102), 3, + STATE(186), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(506), 3, + STATE(647), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(480), 16, + STATE(670), 16, sym__form, sym_str_lit, sym_sym_lit, @@ -20670,47 +20670,47 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(19), 1, anon_sym_POUND_CARET, - ACTIONS(388), 1, + ACTIONS(694), 1, aux_sym_str_lit_token1, - ACTIONS(392), 1, + ACTIONS(698), 1, aux_sym_sym_lit_token1, - ACTIONS(394), 1, + ACTIONS(700), 1, anon_sym_LPAREN, - ACTIONS(396), 1, + ACTIONS(702), 1, anon_sym_POUND0A, - ACTIONS(398), 1, + ACTIONS(704), 1, anon_sym_POUND, - ACTIONS(400), 1, + ACTIONS(706), 1, anon_sym_POUND_QMARK, - ACTIONS(402), 1, + ACTIONS(708), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(404), 1, + ACTIONS(710), 1, anon_sym_POUND_SQUOTE, - ACTIONS(406), 1, + ACTIONS(712), 1, anon_sym_POUND_POUND, - ACTIONS(408), 1, + ACTIONS(714), 1, anon_sym_POUND_EQ, - ACTIONS(410), 1, + ACTIONS(716), 1, anon_sym_AT, - ACTIONS(412), 1, + ACTIONS(718), 1, anon_sym_SQUOTE, - ACTIONS(414), 1, + ACTIONS(720), 1, anon_sym_BQUOTE, - ACTIONS(416), 1, + ACTIONS(722), 1, anon_sym_COMMA_AT, - ACTIONS(418), 1, + ACTIONS(724), 1, anon_sym_COMMA, - STATE(507), 1, - sym__bare_vec_lit, - STATE(508), 1, - sym__bare_set_lit, - STATE(527), 1, + STATE(516), 1, aux_sym_sym_lit_repeat1, - STATE(584), 1, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(761), 1, + STATE(648), 1, + sym__bare_vec_lit, + STATE(649), 1, + sym__bare_set_lit, + STATE(829), 1, sym__metadata_lit, ACTIONS(1236), 2, sym__ws, @@ -20722,15 +20722,15 @@ static uint16_t ts_small_parse_table[] = { sym_num_lit, sym_kwd_lit, sym_char_lit, - STATE(98), 3, + STATE(101), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(506), 3, + STATE(647), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(473), 16, + STATE(671), 16, sym__form, sym_str_lit, sym_sym_lit, @@ -20752,51 +20752,51 @@ static uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, + ACTIONS(11), 1, + aux_sym_str_lit_token1, + ACTIONS(15), 1, + aux_sym_sym_lit_token1, ACTIONS(17), 1, anon_sym_CARET, ACTIONS(19), 1, anon_sym_POUND_CARET, - ACTIONS(732), 1, - aux_sym_str_lit_token1, - ACTIONS(736), 1, - aux_sym_sym_lit_token1, - ACTIONS(738), 1, + ACTIONS(21), 1, anon_sym_LPAREN, - ACTIONS(740), 1, + ACTIONS(23), 1, anon_sym_POUND0A, - ACTIONS(742), 1, + ACTIONS(25), 1, anon_sym_POUND, - ACTIONS(744), 1, + ACTIONS(27), 1, anon_sym_POUND_QMARK, - ACTIONS(746), 1, + ACTIONS(29), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(748), 1, + ACTIONS(31), 1, anon_sym_POUND_SQUOTE, - ACTIONS(750), 1, + ACTIONS(33), 1, anon_sym_POUND_POUND, - ACTIONS(752), 1, + ACTIONS(35), 1, anon_sym_POUND_EQ, - ACTIONS(754), 1, + ACTIONS(37), 1, anon_sym_AT, - ACTIONS(756), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(758), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(760), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(762), 1, + ACTIONS(45), 1, anon_sym_COMMA, - STATE(504), 1, + STATE(372), 1, + sym__bare_set_lit, + STATE(375), 1, + sym__bare_vec_lit, + STATE(541), 1, aux_sym_sym_lit_repeat1, - STATE(584), 1, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(641), 1, - sym__bare_vec_lit, - STATE(685), 1, - sym__bare_set_lit, - STATE(761), 1, + STATE(829), 1, sym__metadata_lit, ACTIONS(1242), 2, sym__ws, @@ -20808,15 +20808,15 @@ static uint16_t ts_small_parse_table[] = { sym_num_lit, sym_kwd_lit, sym_char_lit, - STATE(103), 3, + STATE(71), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(683), 3, + STATE(376), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(696), 16, + STATE(445), 16, sym__form, sym_str_lit, sym_sym_lit, @@ -20842,47 +20842,47 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(19), 1, anon_sym_POUND_CARET, - ACTIONS(388), 1, + ACTIONS(694), 1, aux_sym_str_lit_token1, - ACTIONS(392), 1, + ACTIONS(698), 1, aux_sym_sym_lit_token1, - ACTIONS(394), 1, + ACTIONS(700), 1, anon_sym_LPAREN, - ACTIONS(396), 1, + ACTIONS(702), 1, anon_sym_POUND0A, - ACTIONS(398), 1, + ACTIONS(704), 1, anon_sym_POUND, - ACTIONS(400), 1, + ACTIONS(706), 1, anon_sym_POUND_QMARK, - ACTIONS(402), 1, + ACTIONS(708), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(404), 1, + ACTIONS(710), 1, anon_sym_POUND_SQUOTE, - ACTIONS(406), 1, + ACTIONS(712), 1, anon_sym_POUND_POUND, - ACTIONS(408), 1, + ACTIONS(714), 1, anon_sym_POUND_EQ, - ACTIONS(410), 1, + ACTIONS(716), 1, anon_sym_AT, - ACTIONS(412), 1, + ACTIONS(718), 1, anon_sym_SQUOTE, - ACTIONS(414), 1, + ACTIONS(720), 1, anon_sym_BQUOTE, - ACTIONS(416), 1, + ACTIONS(722), 1, anon_sym_COMMA_AT, - ACTIONS(418), 1, + ACTIONS(724), 1, anon_sym_COMMA, - STATE(507), 1, - sym__bare_vec_lit, - STATE(508), 1, - sym__bare_set_lit, - STATE(527), 1, + STATE(516), 1, aux_sym_sym_lit_repeat1, - STATE(584), 1, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(761), 1, + STATE(648), 1, + sym__bare_vec_lit, + STATE(649), 1, + sym__bare_set_lit, + STATE(829), 1, sym__metadata_lit, ACTIONS(1248), 2, sym__ws, @@ -20894,15 +20894,15 @@ static uint16_t ts_small_parse_table[] = { sym_num_lit, sym_kwd_lit, sym_char_lit, - STATE(100), 3, + STATE(175), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(506), 3, + STATE(647), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(476), 16, + STATE(673), 16, sym__form, sym_str_lit, sym_sym_lit, @@ -20928,47 +20928,47 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(19), 1, anon_sym_POUND_CARET, - ACTIONS(456), 1, + ACTIONS(694), 1, aux_sym_str_lit_token1, - ACTIONS(460), 1, + ACTIONS(698), 1, aux_sym_sym_lit_token1, - ACTIONS(462), 1, + ACTIONS(700), 1, anon_sym_LPAREN, - ACTIONS(464), 1, + ACTIONS(702), 1, anon_sym_POUND0A, - ACTIONS(466), 1, + ACTIONS(704), 1, anon_sym_POUND, - ACTIONS(468), 1, + ACTIONS(706), 1, anon_sym_POUND_QMARK, - ACTIONS(470), 1, + ACTIONS(708), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(472), 1, + ACTIONS(710), 1, anon_sym_POUND_SQUOTE, - ACTIONS(474), 1, + ACTIONS(712), 1, anon_sym_POUND_POUND, - ACTIONS(476), 1, + ACTIONS(714), 1, anon_sym_POUND_EQ, - ACTIONS(478), 1, + ACTIONS(716), 1, anon_sym_AT, - ACTIONS(480), 1, + ACTIONS(718), 1, anon_sym_SQUOTE, - ACTIONS(482), 1, + ACTIONS(720), 1, anon_sym_BQUOTE, - ACTIONS(484), 1, + ACTIONS(722), 1, anon_sym_COMMA_AT, - ACTIONS(486), 1, + ACTIONS(724), 1, anon_sym_COMMA, - STATE(531), 1, + STATE(516), 1, aux_sym_sym_lit_repeat1, - STATE(584), 1, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(631), 1, - sym__bare_set_lit, - STATE(632), 1, + STATE(648), 1, sym__bare_vec_lit, - STATE(761), 1, + STATE(649), 1, + sym__bare_set_lit, + STATE(829), 1, sym__metadata_lit, ACTIONS(1254), 2, sym__ws, @@ -20980,15 +20980,15 @@ static uint16_t ts_small_parse_table[] = { sym_num_lit, sym_kwd_lit, sym_char_lit, - STATE(118), 3, + STATE(173), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(633), 3, + STATE(647), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(630), 16, + STATE(674), 16, sym__form, sym_str_lit, sym_sym_lit, @@ -21012,49 +21012,49 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(19), 1, anon_sym_POUND_CARET, - ACTIONS(456), 1, + ACTIONS(522), 1, aux_sym_str_lit_token1, - ACTIONS(460), 1, + ACTIONS(526), 1, aux_sym_sym_lit_token1, - ACTIONS(462), 1, + ACTIONS(528), 1, anon_sym_LPAREN, - ACTIONS(464), 1, + ACTIONS(530), 1, anon_sym_POUND0A, - ACTIONS(466), 1, + ACTIONS(532), 1, anon_sym_POUND, - ACTIONS(468), 1, + ACTIONS(534), 1, anon_sym_POUND_QMARK, - ACTIONS(470), 1, + ACTIONS(536), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(472), 1, + ACTIONS(538), 1, anon_sym_POUND_SQUOTE, - ACTIONS(474), 1, + ACTIONS(540), 1, anon_sym_POUND_POUND, - ACTIONS(476), 1, + ACTIONS(542), 1, anon_sym_POUND_EQ, - ACTIONS(478), 1, + ACTIONS(544), 1, anon_sym_AT, - ACTIONS(480), 1, + ACTIONS(546), 1, anon_sym_SQUOTE, - ACTIONS(482), 1, + ACTIONS(548), 1, anon_sym_BQUOTE, - ACTIONS(484), 1, + ACTIONS(550), 1, anon_sym_COMMA_AT, - ACTIONS(486), 1, + ACTIONS(552), 1, anon_sym_COMMA, ACTIONS(1262), 1, anon_sym_POUND_, - STATE(531), 1, + STATE(528), 1, aux_sym_sym_lit_repeat1, - STATE(584), 1, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(631), 1, + STATE(614), 1, sym__bare_set_lit, - STATE(632), 1, + STATE(631), 1, sym__bare_vec_lit, - STATE(761), 1, + STATE(829), 1, sym__metadata_lit, ACTIONS(1260), 2, sym__ws, @@ -21062,18 +21062,18 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(1266), 2, sym_nil_lit, sym_fancy_literal, - STATE(223), 2, + STATE(229), 2, sym__gap, sym_dis_expr, ACTIONS(1264), 3, sym_num_lit, sym_kwd_lit, sym_char_lit, - STATE(633), 3, + STATE(635), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(723), 16, + STATE(709), 16, sym__form, sym_str_lit, sym_sym_lit, @@ -21097,35 +21097,35 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(19), 1, anon_sym_POUND_CARET, - ACTIONS(568), 1, + ACTIONS(578), 1, aux_sym_str_lit_token1, - ACTIONS(572), 1, + ACTIONS(582), 1, aux_sym_sym_lit_token1, - ACTIONS(574), 1, + ACTIONS(584), 1, anon_sym_LPAREN, - ACTIONS(576), 1, + ACTIONS(586), 1, anon_sym_POUND0A, - ACTIONS(578), 1, + ACTIONS(588), 1, anon_sym_POUND, - ACTIONS(580), 1, + ACTIONS(590), 1, anon_sym_POUND_QMARK, - ACTIONS(582), 1, + ACTIONS(592), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(584), 1, + ACTIONS(594), 1, anon_sym_POUND_SQUOTE, - ACTIONS(586), 1, + ACTIONS(596), 1, anon_sym_POUND_POUND, - ACTIONS(588), 1, + ACTIONS(598), 1, anon_sym_POUND_EQ, - ACTIONS(590), 1, + ACTIONS(600), 1, anon_sym_AT, - ACTIONS(592), 1, + ACTIONS(602), 1, anon_sym_SQUOTE, - ACTIONS(594), 1, + ACTIONS(604), 1, anon_sym_BQUOTE, - ACTIONS(596), 1, + ACTIONS(606), 1, anon_sym_COMMA_AT, - ACTIONS(598), 1, + ACTIONS(608), 1, anon_sym_COMMA, ACTIONS(1262), 1, anon_sym_POUND_, @@ -21133,13 +21133,13 @@ static uint16_t ts_small_parse_table[] = { sym__bare_vec_lit, STATE(247), 1, sym__bare_set_lit, - STATE(478), 1, + STATE(510), 1, aux_sym_sym_lit_repeat1, - STATE(584), 1, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(761), 1, + STATE(829), 1, sym__metadata_lit, ACTIONS(1268), 2, sym__ws, @@ -21147,18 +21147,18 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(1272), 2, sym_nil_lit, sym_fancy_literal, - STATE(219), 2, + STATE(226), 2, sym__gap, sym_dis_expr, ACTIONS(1270), 3, sym_num_lit, sym_kwd_lit, sym_char_lit, - STATE(245), 3, + STATE(244), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(242), 16, + STATE(243), 16, sym__form, sym_str_lit, sym_sym_lit, @@ -21182,49 +21182,49 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(19), 1, anon_sym_POUND_CARET, - ACTIONS(456), 1, + ACTIONS(522), 1, aux_sym_str_lit_token1, - ACTIONS(460), 1, + ACTIONS(526), 1, aux_sym_sym_lit_token1, - ACTIONS(462), 1, + ACTIONS(528), 1, anon_sym_LPAREN, - ACTIONS(464), 1, + ACTIONS(530), 1, anon_sym_POUND0A, - ACTIONS(466), 1, + ACTIONS(532), 1, anon_sym_POUND, - ACTIONS(468), 1, + ACTIONS(534), 1, anon_sym_POUND_QMARK, - ACTIONS(470), 1, + ACTIONS(536), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(472), 1, + ACTIONS(538), 1, anon_sym_POUND_SQUOTE, - ACTIONS(474), 1, + ACTIONS(540), 1, anon_sym_POUND_POUND, - ACTIONS(476), 1, + ACTIONS(542), 1, anon_sym_POUND_EQ, - ACTIONS(478), 1, + ACTIONS(544), 1, anon_sym_AT, - ACTIONS(480), 1, + ACTIONS(546), 1, anon_sym_SQUOTE, - ACTIONS(482), 1, + ACTIONS(548), 1, anon_sym_BQUOTE, - ACTIONS(484), 1, + ACTIONS(550), 1, anon_sym_COMMA_AT, - ACTIONS(486), 1, + ACTIONS(552), 1, anon_sym_COMMA, ACTIONS(1262), 1, anon_sym_POUND_, - STATE(531), 1, + STATE(528), 1, aux_sym_sym_lit_repeat1, - STATE(584), 1, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(631), 1, + STATE(614), 1, sym__bare_set_lit, - STATE(632), 1, + STATE(631), 1, sym__bare_vec_lit, - STATE(761), 1, + STATE(829), 1, sym__metadata_lit, ACTIONS(1274), 2, sym__ws, @@ -21232,18 +21232,18 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(1278), 2, sym_nil_lit, sym_fancy_literal, - STATE(231), 2, + STATE(234), 2, sym__gap, sym_dis_expr, ACTIONS(1276), 3, sym_num_lit, sym_kwd_lit, sym_char_lit, - STATE(633), 3, + STATE(635), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(707), 16, + STATE(714), 16, sym__form, sym_str_lit, sym_sym_lit, @@ -21267,49 +21267,49 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(19), 1, anon_sym_POUND_CARET, - ACTIONS(456), 1, + ACTIONS(522), 1, aux_sym_str_lit_token1, - ACTIONS(460), 1, + ACTIONS(526), 1, aux_sym_sym_lit_token1, - ACTIONS(462), 1, + ACTIONS(528), 1, anon_sym_LPAREN, - ACTIONS(464), 1, + ACTIONS(530), 1, anon_sym_POUND0A, - ACTIONS(466), 1, + ACTIONS(532), 1, anon_sym_POUND, - ACTIONS(468), 1, + ACTIONS(534), 1, anon_sym_POUND_QMARK, - ACTIONS(470), 1, + ACTIONS(536), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(472), 1, + ACTIONS(538), 1, anon_sym_POUND_SQUOTE, - ACTIONS(474), 1, + ACTIONS(540), 1, anon_sym_POUND_POUND, - ACTIONS(476), 1, + ACTIONS(542), 1, anon_sym_POUND_EQ, - ACTIONS(478), 1, + ACTIONS(544), 1, anon_sym_AT, - ACTIONS(480), 1, + ACTIONS(546), 1, anon_sym_SQUOTE, - ACTIONS(482), 1, + ACTIONS(548), 1, anon_sym_BQUOTE, - ACTIONS(484), 1, + ACTIONS(550), 1, anon_sym_COMMA_AT, - ACTIONS(486), 1, + ACTIONS(552), 1, anon_sym_COMMA, ACTIONS(1262), 1, anon_sym_POUND_, - STATE(531), 1, + STATE(528), 1, aux_sym_sym_lit_repeat1, - STATE(584), 1, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(631), 1, + STATE(614), 1, sym__bare_set_lit, - STATE(632), 1, + STATE(631), 1, sym__bare_vec_lit, - STATE(761), 1, + STATE(829), 1, sym__metadata_lit, ACTIONS(1280), 2, sym__ws, @@ -21324,11 +21324,11 @@ static uint16_t ts_small_parse_table[] = { sym_num_lit, sym_kwd_lit, sym_char_lit, - STATE(633), 3, + STATE(635), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(705), 16, + STATE(712), 16, sym__form, sym_str_lit, sym_sym_lit, @@ -21352,49 +21352,49 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(19), 1, anon_sym_POUND_CARET, - ACTIONS(456), 1, + ACTIONS(522), 1, aux_sym_str_lit_token1, - ACTIONS(460), 1, + ACTIONS(526), 1, aux_sym_sym_lit_token1, - ACTIONS(462), 1, + ACTIONS(528), 1, anon_sym_LPAREN, - ACTIONS(464), 1, + ACTIONS(530), 1, anon_sym_POUND0A, - ACTIONS(466), 1, + ACTIONS(532), 1, anon_sym_POUND, - ACTIONS(468), 1, + ACTIONS(534), 1, anon_sym_POUND_QMARK, - ACTIONS(470), 1, + ACTIONS(536), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(472), 1, + ACTIONS(538), 1, anon_sym_POUND_SQUOTE, - ACTIONS(474), 1, + ACTIONS(540), 1, anon_sym_POUND_POUND, - ACTIONS(476), 1, + ACTIONS(542), 1, anon_sym_POUND_EQ, - ACTIONS(478), 1, + ACTIONS(544), 1, anon_sym_AT, - ACTIONS(480), 1, + ACTIONS(546), 1, anon_sym_SQUOTE, - ACTIONS(482), 1, + ACTIONS(548), 1, anon_sym_BQUOTE, - ACTIONS(484), 1, + ACTIONS(550), 1, anon_sym_COMMA_AT, - ACTIONS(486), 1, + ACTIONS(552), 1, anon_sym_COMMA, ACTIONS(1262), 1, anon_sym_POUND_, - STATE(531), 1, + STATE(528), 1, aux_sym_sym_lit_repeat1, - STATE(584), 1, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(631), 1, + STATE(614), 1, sym__bare_set_lit, - STATE(632), 1, + STATE(631), 1, sym__bare_vec_lit, - STATE(761), 1, + STATE(829), 1, sym__metadata_lit, ACTIONS(1286), 2, sym__ws, @@ -21402,18 +21402,18 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(1290), 2, sym_nil_lit, sym_fancy_literal, - STATE(228), 2, + STATE(232), 2, sym__gap, sym_dis_expr, ACTIONS(1288), 3, sym_num_lit, sym_kwd_lit, sym_char_lit, - STATE(633), 3, + STATE(635), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(725), 16, + STATE(715), 16, sym__form, sym_str_lit, sym_sym_lit, @@ -21437,49 +21437,49 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(19), 1, anon_sym_POUND_CARET, - ACTIONS(568), 1, + ACTIONS(522), 1, aux_sym_str_lit_token1, - ACTIONS(572), 1, + ACTIONS(526), 1, aux_sym_sym_lit_token1, - ACTIONS(574), 1, + ACTIONS(528), 1, anon_sym_LPAREN, - ACTIONS(576), 1, + ACTIONS(530), 1, anon_sym_POUND0A, - ACTIONS(578), 1, + ACTIONS(532), 1, anon_sym_POUND, - ACTIONS(580), 1, + ACTIONS(534), 1, anon_sym_POUND_QMARK, - ACTIONS(582), 1, + ACTIONS(536), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(584), 1, + ACTIONS(538), 1, anon_sym_POUND_SQUOTE, - ACTIONS(586), 1, + ACTIONS(540), 1, anon_sym_POUND_POUND, - ACTIONS(588), 1, + ACTIONS(542), 1, anon_sym_POUND_EQ, - ACTIONS(590), 1, + ACTIONS(544), 1, anon_sym_AT, - ACTIONS(592), 1, + ACTIONS(546), 1, anon_sym_SQUOTE, - ACTIONS(594), 1, + ACTIONS(548), 1, anon_sym_BQUOTE, - ACTIONS(596), 1, + ACTIONS(550), 1, anon_sym_COMMA_AT, - ACTIONS(598), 1, + ACTIONS(552), 1, anon_sym_COMMA, ACTIONS(1262), 1, anon_sym_POUND_, - STATE(246), 1, - sym__bare_vec_lit, - STATE(247), 1, - sym__bare_set_lit, - STATE(478), 1, + STATE(528), 1, aux_sym_sym_lit_repeat1, - STATE(584), 1, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(761), 1, + STATE(614), 1, + sym__bare_set_lit, + STATE(631), 1, + sym__bare_vec_lit, + STATE(829), 1, sym__metadata_lit, ACTIONS(1292), 2, sym__ws, @@ -21487,18 +21487,18 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(1296), 2, sym_nil_lit, sym_fancy_literal, - STATE(227), 2, + STATE(233), 2, sym__gap, sym_dis_expr, ACTIONS(1294), 3, sym_num_lit, sym_kwd_lit, sym_char_lit, - STATE(245), 3, + STATE(635), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(239), 16, + STATE(711), 16, sym__form, sym_str_lit, sym_sym_lit, @@ -21522,49 +21522,49 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(19), 1, anon_sym_POUND_CARET, - ACTIONS(456), 1, + ACTIONS(522), 1, aux_sym_str_lit_token1, - ACTIONS(460), 1, + ACTIONS(526), 1, aux_sym_sym_lit_token1, - ACTIONS(462), 1, + ACTIONS(528), 1, anon_sym_LPAREN, - ACTIONS(464), 1, + ACTIONS(530), 1, anon_sym_POUND0A, - ACTIONS(466), 1, + ACTIONS(532), 1, anon_sym_POUND, - ACTIONS(468), 1, + ACTIONS(534), 1, anon_sym_POUND_QMARK, - ACTIONS(470), 1, + ACTIONS(536), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(472), 1, + ACTIONS(538), 1, anon_sym_POUND_SQUOTE, - ACTIONS(474), 1, + ACTIONS(540), 1, anon_sym_POUND_POUND, - ACTIONS(476), 1, + ACTIONS(542), 1, anon_sym_POUND_EQ, - ACTIONS(478), 1, + ACTIONS(544), 1, anon_sym_AT, - ACTIONS(480), 1, + ACTIONS(546), 1, anon_sym_SQUOTE, - ACTIONS(482), 1, + ACTIONS(548), 1, anon_sym_BQUOTE, - ACTIONS(484), 1, + ACTIONS(550), 1, anon_sym_COMMA_AT, - ACTIONS(486), 1, + ACTIONS(552), 1, anon_sym_COMMA, ACTIONS(1262), 1, anon_sym_POUND_, - STATE(531), 1, + STATE(528), 1, aux_sym_sym_lit_repeat1, - STATE(584), 1, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(631), 1, + STATE(614), 1, sym__bare_set_lit, - STATE(632), 1, + STATE(631), 1, sym__bare_vec_lit, - STATE(761), 1, + STATE(829), 1, sym__metadata_lit, ACTIONS(1298), 2, sym__ws, @@ -21572,18 +21572,18 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(1302), 2, sym_nil_lit, sym_fancy_literal, - STATE(224), 2, + STATE(231), 2, sym__gap, sym_dis_expr, ACTIONS(1300), 3, sym_num_lit, sym_kwd_lit, sym_char_lit, - STATE(633), 3, + STATE(635), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(722), 16, + STATE(705), 16, sym__form, sym_str_lit, sym_sym_lit, @@ -21607,49 +21607,49 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(19), 1, anon_sym_POUND_CARET, - ACTIONS(456), 1, + ACTIONS(578), 1, aux_sym_str_lit_token1, - ACTIONS(460), 1, + ACTIONS(582), 1, aux_sym_sym_lit_token1, - ACTIONS(462), 1, + ACTIONS(584), 1, anon_sym_LPAREN, - ACTIONS(464), 1, + ACTIONS(586), 1, anon_sym_POUND0A, - ACTIONS(466), 1, + ACTIONS(588), 1, anon_sym_POUND, - ACTIONS(468), 1, + ACTIONS(590), 1, anon_sym_POUND_QMARK, - ACTIONS(470), 1, + ACTIONS(592), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(472), 1, + ACTIONS(594), 1, anon_sym_POUND_SQUOTE, - ACTIONS(474), 1, + ACTIONS(596), 1, anon_sym_POUND_POUND, - ACTIONS(476), 1, + ACTIONS(598), 1, anon_sym_POUND_EQ, - ACTIONS(478), 1, + ACTIONS(600), 1, anon_sym_AT, - ACTIONS(480), 1, + ACTIONS(602), 1, anon_sym_SQUOTE, - ACTIONS(482), 1, + ACTIONS(604), 1, anon_sym_BQUOTE, - ACTIONS(484), 1, + ACTIONS(606), 1, anon_sym_COMMA_AT, - ACTIONS(486), 1, + ACTIONS(608), 1, anon_sym_COMMA, ACTIONS(1262), 1, anon_sym_POUND_, - STATE(531), 1, + STATE(246), 1, + sym__bare_vec_lit, + STATE(247), 1, + sym__bare_set_lit, + STATE(510), 1, aux_sym_sym_lit_repeat1, - STATE(584), 1, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(631), 1, - sym__bare_set_lit, - STATE(632), 1, - sym__bare_vec_lit, - STATE(761), 1, + STATE(829), 1, sym__metadata_lit, ACTIONS(1304), 2, sym__ws, @@ -21657,18 +21657,18 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(1308), 2, sym_nil_lit, sym_fancy_literal, - STATE(225), 2, + STATE(228), 2, sym__gap, sym_dis_expr, ACTIONS(1306), 3, sym_num_lit, sym_kwd_lit, sym_char_lit, - STATE(633), 3, + STATE(244), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(718), 16, + STATE(239), 16, sym__form, sym_str_lit, sym_sym_lit, @@ -21692,49 +21692,49 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(19), 1, anon_sym_POUND_CARET, - ACTIONS(456), 1, + ACTIONS(522), 1, aux_sym_str_lit_token1, - ACTIONS(460), 1, + ACTIONS(526), 1, aux_sym_sym_lit_token1, - ACTIONS(462), 1, + ACTIONS(528), 1, anon_sym_LPAREN, - ACTIONS(464), 1, + ACTIONS(530), 1, anon_sym_POUND0A, - ACTIONS(466), 1, + ACTIONS(532), 1, anon_sym_POUND, - ACTIONS(468), 1, + ACTIONS(534), 1, anon_sym_POUND_QMARK, - ACTIONS(470), 1, + ACTIONS(536), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(472), 1, + ACTIONS(538), 1, anon_sym_POUND_SQUOTE, - ACTIONS(474), 1, + ACTIONS(540), 1, anon_sym_POUND_POUND, - ACTIONS(476), 1, + ACTIONS(542), 1, anon_sym_POUND_EQ, - ACTIONS(478), 1, + ACTIONS(544), 1, anon_sym_AT, - ACTIONS(480), 1, + ACTIONS(546), 1, anon_sym_SQUOTE, - ACTIONS(482), 1, + ACTIONS(548), 1, anon_sym_BQUOTE, - ACTIONS(484), 1, + ACTIONS(550), 1, anon_sym_COMMA_AT, - ACTIONS(486), 1, + ACTIONS(552), 1, anon_sym_COMMA, ACTIONS(1262), 1, anon_sym_POUND_, - STATE(531), 1, + STATE(528), 1, aux_sym_sym_lit_repeat1, - STATE(584), 1, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(631), 1, + STATE(614), 1, sym__bare_set_lit, - STATE(632), 1, + STATE(631), 1, sym__bare_vec_lit, - STATE(761), 1, + STATE(829), 1, sym__metadata_lit, ACTIONS(1310), 2, sym__ws, @@ -21742,18 +21742,18 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(1314), 2, sym_nil_lit, sym_fancy_literal, - STATE(221), 2, + STATE(227), 2, sym__gap, sym_dis_expr, ACTIONS(1312), 3, sym_num_lit, sym_kwd_lit, sym_char_lit, - STATE(633), 3, + STATE(635), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(712), 16, + STATE(717), 16, sym__form, sym_str_lit, sym_sym_lit, @@ -21777,49 +21777,49 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(19), 1, anon_sym_POUND_CARET, - ACTIONS(456), 1, + ACTIONS(522), 1, aux_sym_str_lit_token1, - ACTIONS(460), 1, + ACTIONS(526), 1, aux_sym_sym_lit_token1, - ACTIONS(462), 1, + ACTIONS(528), 1, anon_sym_LPAREN, - ACTIONS(464), 1, + ACTIONS(530), 1, anon_sym_POUND0A, - ACTIONS(466), 1, + ACTIONS(532), 1, anon_sym_POUND, - ACTIONS(468), 1, + ACTIONS(534), 1, anon_sym_POUND_QMARK, - ACTIONS(470), 1, + ACTIONS(536), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(472), 1, + ACTIONS(538), 1, anon_sym_POUND_SQUOTE, - ACTIONS(474), 1, + ACTIONS(540), 1, anon_sym_POUND_POUND, - ACTIONS(476), 1, + ACTIONS(542), 1, anon_sym_POUND_EQ, - ACTIONS(478), 1, + ACTIONS(544), 1, anon_sym_AT, - ACTIONS(480), 1, + ACTIONS(546), 1, anon_sym_SQUOTE, - ACTIONS(482), 1, + ACTIONS(548), 1, anon_sym_BQUOTE, - ACTIONS(484), 1, + ACTIONS(550), 1, anon_sym_COMMA_AT, - ACTIONS(486), 1, + ACTIONS(552), 1, anon_sym_COMMA, ACTIONS(1262), 1, anon_sym_POUND_, - STATE(531), 1, + STATE(528), 1, aux_sym_sym_lit_repeat1, - STATE(584), 1, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(631), 1, + STATE(614), 1, sym__bare_set_lit, - STATE(632), 1, + STATE(631), 1, sym__bare_vec_lit, - STATE(761), 1, + STATE(829), 1, sym__metadata_lit, ACTIONS(1316), 2, sym__ws, @@ -21827,18 +21827,18 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(1320), 2, sym_nil_lit, sym_fancy_literal, - STATE(220), 2, + STATE(224), 2, sym__gap, sym_dis_expr, ACTIONS(1318), 3, sym_num_lit, sym_kwd_lit, sym_char_lit, - STATE(633), 3, + STATE(635), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(711), 16, + STATE(721), 16, sym__form, sym_str_lit, sym_sym_lit, @@ -21862,49 +21862,49 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(19), 1, anon_sym_POUND_CARET, - ACTIONS(456), 1, + ACTIONS(522), 1, aux_sym_str_lit_token1, - ACTIONS(460), 1, + ACTIONS(526), 1, aux_sym_sym_lit_token1, - ACTIONS(462), 1, + ACTIONS(528), 1, anon_sym_LPAREN, - ACTIONS(464), 1, + ACTIONS(530), 1, anon_sym_POUND0A, - ACTIONS(466), 1, + ACTIONS(532), 1, anon_sym_POUND, - ACTIONS(468), 1, + ACTIONS(534), 1, anon_sym_POUND_QMARK, - ACTIONS(470), 1, + ACTIONS(536), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(472), 1, + ACTIONS(538), 1, anon_sym_POUND_SQUOTE, - ACTIONS(474), 1, + ACTIONS(540), 1, anon_sym_POUND_POUND, - ACTIONS(476), 1, + ACTIONS(542), 1, anon_sym_POUND_EQ, - ACTIONS(478), 1, + ACTIONS(544), 1, anon_sym_AT, - ACTIONS(480), 1, + ACTIONS(546), 1, anon_sym_SQUOTE, - ACTIONS(482), 1, + ACTIONS(548), 1, anon_sym_BQUOTE, - ACTIONS(484), 1, + ACTIONS(550), 1, anon_sym_COMMA_AT, - ACTIONS(486), 1, + ACTIONS(552), 1, anon_sym_COMMA, ACTIONS(1262), 1, anon_sym_POUND_, - STATE(531), 1, + STATE(528), 1, aux_sym_sym_lit_repeat1, - STATE(584), 1, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(631), 1, + STATE(614), 1, sym__bare_set_lit, - STATE(632), 1, + STATE(631), 1, sym__bare_vec_lit, - STATE(761), 1, + STATE(829), 1, sym__metadata_lit, ACTIONS(1322), 2, sym__ws, @@ -21912,18 +21912,18 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(1326), 2, sym_nil_lit, sym_fancy_literal, - STATE(222), 2, + STATE(223), 2, sym__gap, sym_dis_expr, ACTIONS(1324), 3, sym_num_lit, sym_kwd_lit, sym_char_lit, - STATE(633), 3, + STATE(635), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(710), 16, + STATE(722), 16, sym__form, sym_str_lit, sym_sym_lit, @@ -21947,49 +21947,49 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(19), 1, anon_sym_POUND_CARET, - ACTIONS(456), 1, + ACTIONS(522), 1, aux_sym_str_lit_token1, - ACTIONS(460), 1, + ACTIONS(526), 1, aux_sym_sym_lit_token1, - ACTIONS(462), 1, + ACTIONS(528), 1, anon_sym_LPAREN, - ACTIONS(464), 1, + ACTIONS(530), 1, anon_sym_POUND0A, - ACTIONS(466), 1, + ACTIONS(532), 1, anon_sym_POUND, - ACTIONS(468), 1, + ACTIONS(534), 1, anon_sym_POUND_QMARK, - ACTIONS(470), 1, + ACTIONS(536), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(472), 1, + ACTIONS(538), 1, anon_sym_POUND_SQUOTE, - ACTIONS(474), 1, + ACTIONS(540), 1, anon_sym_POUND_POUND, - ACTIONS(476), 1, + ACTIONS(542), 1, anon_sym_POUND_EQ, - ACTIONS(478), 1, + ACTIONS(544), 1, anon_sym_AT, - ACTIONS(480), 1, + ACTIONS(546), 1, anon_sym_SQUOTE, - ACTIONS(482), 1, + ACTIONS(548), 1, anon_sym_BQUOTE, - ACTIONS(484), 1, + ACTIONS(550), 1, anon_sym_COMMA_AT, - ACTIONS(486), 1, + ACTIONS(552), 1, anon_sym_COMMA, ACTIONS(1262), 1, anon_sym_POUND_, - STATE(531), 1, + STATE(528), 1, aux_sym_sym_lit_repeat1, - STATE(584), 1, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(631), 1, + STATE(614), 1, sym__bare_set_lit, - STATE(632), 1, + STATE(631), 1, sym__bare_vec_lit, - STATE(761), 1, + STATE(829), 1, sym__metadata_lit, ACTIONS(1328), 2, sym__ws, @@ -21997,18 +21997,18 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(1332), 2, sym_nil_lit, sym_fancy_literal, - STATE(226), 2, + STATE(221), 2, sym__gap, sym_dis_expr, ACTIONS(1330), 3, sym_num_lit, sym_kwd_lit, sym_char_lit, - STATE(633), 3, + STATE(635), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(925), 16, + STATE(723), 16, sym__form, sym_str_lit, sym_sym_lit, @@ -22032,49 +22032,49 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(19), 1, anon_sym_POUND_CARET, - ACTIONS(456), 1, + ACTIONS(522), 1, aux_sym_str_lit_token1, - ACTIONS(460), 1, + ACTIONS(526), 1, aux_sym_sym_lit_token1, - ACTIONS(462), 1, + ACTIONS(528), 1, anon_sym_LPAREN, - ACTIONS(464), 1, + ACTIONS(530), 1, anon_sym_POUND0A, - ACTIONS(466), 1, + ACTIONS(532), 1, anon_sym_POUND, - ACTIONS(468), 1, + ACTIONS(534), 1, anon_sym_POUND_QMARK, - ACTIONS(470), 1, + ACTIONS(536), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(472), 1, + ACTIONS(538), 1, anon_sym_POUND_SQUOTE, - ACTIONS(474), 1, + ACTIONS(540), 1, anon_sym_POUND_POUND, - ACTIONS(476), 1, + ACTIONS(542), 1, anon_sym_POUND_EQ, - ACTIONS(478), 1, + ACTIONS(544), 1, anon_sym_AT, - ACTIONS(480), 1, + ACTIONS(546), 1, anon_sym_SQUOTE, - ACTIONS(482), 1, + ACTIONS(548), 1, anon_sym_BQUOTE, - ACTIONS(484), 1, + ACTIONS(550), 1, anon_sym_COMMA_AT, - ACTIONS(486), 1, + ACTIONS(552), 1, anon_sym_COMMA, ACTIONS(1262), 1, anon_sym_POUND_, - STATE(531), 1, + STATE(528), 1, aux_sym_sym_lit_repeat1, - STATE(584), 1, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(631), 1, + STATE(614), 1, sym__bare_set_lit, - STATE(632), 1, + STATE(631), 1, sym__bare_vec_lit, - STATE(761), 1, + STATE(829), 1, sym__metadata_lit, ACTIONS(1334), 2, sym__ws, @@ -22082,18 +22082,18 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(1338), 2, sym_nil_lit, sym_fancy_literal, - STATE(229), 2, + STATE(220), 2, sym__gap, sym_dis_expr, ACTIONS(1336), 3, sym_num_lit, sym_kwd_lit, sym_char_lit, - STATE(633), 3, + STATE(635), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(721), 16, + STATE(708), 16, sym__form, sym_str_lit, sym_sym_lit, @@ -22117,49 +22117,49 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(19), 1, anon_sym_POUND_CARET, - ACTIONS(456), 1, + ACTIONS(522), 1, aux_sym_str_lit_token1, - ACTIONS(460), 1, + ACTIONS(526), 1, aux_sym_sym_lit_token1, - ACTIONS(462), 1, + ACTIONS(528), 1, anon_sym_LPAREN, - ACTIONS(464), 1, + ACTIONS(530), 1, anon_sym_POUND0A, - ACTIONS(466), 1, + ACTIONS(532), 1, anon_sym_POUND, - ACTIONS(468), 1, + ACTIONS(534), 1, anon_sym_POUND_QMARK, - ACTIONS(470), 1, + ACTIONS(536), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(472), 1, + ACTIONS(538), 1, anon_sym_POUND_SQUOTE, - ACTIONS(474), 1, + ACTIONS(540), 1, anon_sym_POUND_POUND, - ACTIONS(476), 1, + ACTIONS(542), 1, anon_sym_POUND_EQ, - ACTIONS(478), 1, + ACTIONS(544), 1, anon_sym_AT, - ACTIONS(480), 1, + ACTIONS(546), 1, anon_sym_SQUOTE, - ACTIONS(482), 1, + ACTIONS(548), 1, anon_sym_BQUOTE, - ACTIONS(484), 1, + ACTIONS(550), 1, anon_sym_COMMA_AT, - ACTIONS(486), 1, + ACTIONS(552), 1, anon_sym_COMMA, ACTIONS(1262), 1, anon_sym_POUND_, - STATE(531), 1, + STATE(528), 1, aux_sym_sym_lit_repeat1, - STATE(584), 1, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(631), 1, + STATE(614), 1, sym__bare_set_lit, - STATE(632), 1, + STATE(631), 1, sym__bare_vec_lit, - STATE(761), 1, + STATE(829), 1, sym__metadata_lit, ACTIONS(1340), 2, sym__ws, @@ -22167,18 +22167,18 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(1344), 2, sym_nil_lit, sym_fancy_literal, - STATE(218), 2, + STATE(222), 2, sym__gap, sym_dis_expr, ACTIONS(1342), 3, sym_num_lit, sym_kwd_lit, sym_char_lit, - STATE(633), 3, + STATE(635), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(545), 16, + STATE(890), 16, sym__form, sym_str_lit, sym_sym_lit, @@ -22202,49 +22202,49 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(19), 1, anon_sym_POUND_CARET, - ACTIONS(456), 1, + ACTIONS(422), 1, aux_sym_str_lit_token1, - ACTIONS(460), 1, + ACTIONS(426), 1, aux_sym_sym_lit_token1, - ACTIONS(462), 1, + ACTIONS(428), 1, anon_sym_LPAREN, - ACTIONS(464), 1, + ACTIONS(430), 1, anon_sym_POUND0A, - ACTIONS(466), 1, + ACTIONS(432), 1, anon_sym_POUND, - ACTIONS(468), 1, + ACTIONS(434), 1, anon_sym_POUND_QMARK, - ACTIONS(470), 1, + ACTIONS(436), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(472), 1, + ACTIONS(438), 1, anon_sym_POUND_SQUOTE, - ACTIONS(474), 1, + ACTIONS(440), 1, anon_sym_POUND_POUND, - ACTIONS(476), 1, + ACTIONS(442), 1, anon_sym_POUND_EQ, - ACTIONS(478), 1, + ACTIONS(444), 1, anon_sym_AT, - ACTIONS(480), 1, + ACTIONS(446), 1, anon_sym_SQUOTE, - ACTIONS(482), 1, + ACTIONS(448), 1, anon_sym_BQUOTE, - ACTIONS(484), 1, + ACTIONS(450), 1, anon_sym_COMMA_AT, - ACTIONS(486), 1, + ACTIONS(452), 1, anon_sym_COMMA, ACTIONS(1262), 1, anon_sym_POUND_, - STATE(531), 1, + STATE(501), 1, aux_sym_sym_lit_repeat1, - STATE(584), 1, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(631), 1, + STATE(742), 1, sym__bare_set_lit, - STATE(632), 1, + STATE(743), 1, sym__bare_vec_lit, - STATE(761), 1, + STATE(829), 1, sym__metadata_lit, ACTIONS(1346), 2, sym__ws, @@ -22252,18 +22252,18 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(1350), 2, sym_nil_lit, sym_fancy_literal, - STATE(232), 2, + STATE(225), 2, sym__gap, sym_dis_expr, ACTIONS(1348), 3, sym_num_lit, sym_kwd_lit, sym_char_lit, - STATE(633), 3, + STATE(744), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(708), 16, + STATE(577), 16, sym__form, sym_str_lit, sym_sym_lit, @@ -22280,221 +22280,75 @@ static uint16_t ts_small_parse_table[] = { sym_syn_quoting_lit, sym_unquote_splicing_lit, sym_unquoting_lit, - [24593] = 28, + [24593] = 31, ACTIONS(3), 1, sym_block_comment, ACTIONS(17), 1, anon_sym_CARET, ACTIONS(19), 1, anon_sym_POUND_CARET, - ACTIONS(456), 1, + ACTIONS(522), 1, aux_sym_str_lit_token1, - ACTIONS(460), 1, + ACTIONS(526), 1, aux_sym_sym_lit_token1, - ACTIONS(462), 1, + ACTIONS(528), 1, anon_sym_LPAREN, - ACTIONS(464), 1, + ACTIONS(530), 1, anon_sym_POUND0A, - ACTIONS(466), 1, + ACTIONS(532), 1, anon_sym_POUND, - ACTIONS(468), 1, + ACTIONS(534), 1, anon_sym_POUND_QMARK, - ACTIONS(470), 1, + ACTIONS(536), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(472), 1, + ACTIONS(538), 1, anon_sym_POUND_SQUOTE, - ACTIONS(474), 1, + ACTIONS(540), 1, anon_sym_POUND_POUND, - ACTIONS(476), 1, + ACTIONS(542), 1, anon_sym_POUND_EQ, - ACTIONS(478), 1, + ACTIONS(544), 1, anon_sym_AT, - ACTIONS(480), 1, + ACTIONS(546), 1, anon_sym_SQUOTE, - ACTIONS(482), 1, + ACTIONS(548), 1, anon_sym_BQUOTE, - ACTIONS(484), 1, + ACTIONS(550), 1, anon_sym_COMMA_AT, - ACTIONS(486), 1, + ACTIONS(552), 1, anon_sym_COMMA, - STATE(531), 1, + ACTIONS(1262), 1, + anon_sym_POUND_, + STATE(528), 1, aux_sym_sym_lit_repeat1, - STATE(584), 1, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(631), 1, - sym__bare_set_lit, - STATE(632), 1, - sym__bare_vec_lit, - STATE(761), 1, - sym__metadata_lit, - ACTIONS(1354), 2, - sym_nil_lit, - sym_fancy_literal, - ACTIONS(1352), 3, - sym_num_lit, - sym_kwd_lit, - sym_char_lit, - STATE(633), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(555), 16, - sym__form, - sym_str_lit, - sym_sym_lit, - sym_list_lit, - sym_vec_lit, - sym_set_lit, - sym_read_cond_lit, - sym_splicing_read_cond_lit, - sym_var_quoting_lit, - sym_sym_val_lit, - sym_evaling_lit, - sym_derefing_lit, - sym_quoting_lit, - sym_syn_quoting_lit, - sym_unquote_splicing_lit, - sym_unquoting_lit, - [24698] = 28, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(17), 1, - anon_sym_CARET, - ACTIONS(19), 1, - anon_sym_POUND_CARET, - ACTIONS(568), 1, - aux_sym_str_lit_token1, - ACTIONS(572), 1, - aux_sym_sym_lit_token1, - ACTIONS(574), 1, - anon_sym_LPAREN, - ACTIONS(576), 1, - anon_sym_POUND0A, - ACTIONS(578), 1, - anon_sym_POUND, - ACTIONS(580), 1, - anon_sym_POUND_QMARK, - ACTIONS(582), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(584), 1, - anon_sym_POUND_SQUOTE, - ACTIONS(586), 1, - anon_sym_POUND_POUND, - ACTIONS(588), 1, - anon_sym_POUND_EQ, - ACTIONS(590), 1, - anon_sym_AT, - ACTIONS(592), 1, - anon_sym_SQUOTE, - ACTIONS(594), 1, - anon_sym_BQUOTE, - ACTIONS(596), 1, - anon_sym_COMMA_AT, - ACTIONS(598), 1, - anon_sym_COMMA, - STATE(246), 1, - sym__bare_vec_lit, - STATE(247), 1, + STATE(614), 1, sym__bare_set_lit, - STATE(478), 1, - aux_sym_sym_lit_repeat1, - STATE(584), 1, - sym_old_meta_lit, - STATE(587), 1, - sym_meta_lit, - STATE(761), 1, - sym__metadata_lit, - ACTIONS(1358), 2, - sym_nil_lit, - sym_fancy_literal, - ACTIONS(1356), 3, - sym_num_lit, - sym_kwd_lit, - sym_char_lit, - STATE(245), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(243), 16, - sym__form, - sym_str_lit, - sym_sym_lit, - sym_list_lit, - sym_vec_lit, - sym_set_lit, - sym_read_cond_lit, - sym_splicing_read_cond_lit, - sym_var_quoting_lit, - sym_sym_val_lit, - sym_evaling_lit, - sym_derefing_lit, - sym_quoting_lit, - sym_syn_quoting_lit, - sym_unquote_splicing_lit, - sym_unquoting_lit, - [24803] = 28, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(17), 1, - anon_sym_CARET, - ACTIONS(19), 1, - anon_sym_POUND_CARET, - ACTIONS(456), 1, - aux_sym_str_lit_token1, - ACTIONS(460), 1, - aux_sym_sym_lit_token1, - ACTIONS(462), 1, - anon_sym_LPAREN, - ACTIONS(464), 1, - anon_sym_POUND0A, - ACTIONS(466), 1, - anon_sym_POUND, - ACTIONS(468), 1, - anon_sym_POUND_QMARK, - ACTIONS(470), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(472), 1, - anon_sym_POUND_SQUOTE, - ACTIONS(474), 1, - anon_sym_POUND_POUND, - ACTIONS(476), 1, - anon_sym_POUND_EQ, - ACTIONS(478), 1, - anon_sym_AT, - ACTIONS(480), 1, - anon_sym_SQUOTE, - ACTIONS(482), 1, - anon_sym_BQUOTE, - ACTIONS(484), 1, - anon_sym_COMMA_AT, - ACTIONS(486), 1, - anon_sym_COMMA, - STATE(531), 1, - aux_sym_sym_lit_repeat1, - STATE(584), 1, - sym_old_meta_lit, - STATE(587), 1, - sym_meta_lit, STATE(631), 1, - sym__bare_set_lit, - STATE(632), 1, sym__bare_vec_lit, - STATE(761), 1, + STATE(829), 1, sym__metadata_lit, - ACTIONS(1362), 2, + ACTIONS(1352), 2, + sym__ws, + sym_comment, + ACTIONS(1356), 2, sym_nil_lit, sym_fancy_literal, - ACTIONS(1360), 3, + STATE(219), 2, + sym__gap, + sym_dis_expr, + ACTIONS(1354), 3, sym_num_lit, sym_kwd_lit, sym_char_lit, - STATE(633), 3, + STATE(635), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(715), 16, + STATE(553), 16, sym__form, sym_str_lit, sym_sym_lit, @@ -22511,144 +22365,67 @@ static uint16_t ts_small_parse_table[] = { sym_syn_quoting_lit, sym_unquote_splicing_lit, sym_unquoting_lit, - [24908] = 28, + [24709] = 28, ACTIONS(3), 1, sym_block_comment, ACTIONS(17), 1, anon_sym_CARET, ACTIONS(19), 1, anon_sym_POUND_CARET, - ACTIONS(456), 1, + ACTIONS(522), 1, aux_sym_str_lit_token1, - ACTIONS(460), 1, + ACTIONS(526), 1, aux_sym_sym_lit_token1, - ACTIONS(462), 1, + ACTIONS(528), 1, anon_sym_LPAREN, - ACTIONS(464), 1, + ACTIONS(530), 1, anon_sym_POUND0A, - ACTIONS(466), 1, + ACTIONS(532), 1, anon_sym_POUND, - ACTIONS(468), 1, + ACTIONS(534), 1, anon_sym_POUND_QMARK, - ACTIONS(470), 1, + ACTIONS(536), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(472), 1, + ACTIONS(538), 1, anon_sym_POUND_SQUOTE, - ACTIONS(474), 1, + ACTIONS(540), 1, anon_sym_POUND_POUND, - ACTIONS(476), 1, + ACTIONS(542), 1, anon_sym_POUND_EQ, - ACTIONS(478), 1, + ACTIONS(544), 1, anon_sym_AT, - ACTIONS(480), 1, + ACTIONS(546), 1, anon_sym_SQUOTE, - ACTIONS(482), 1, + ACTIONS(548), 1, anon_sym_BQUOTE, - ACTIONS(484), 1, + ACTIONS(550), 1, anon_sym_COMMA_AT, - ACTIONS(486), 1, + ACTIONS(552), 1, anon_sym_COMMA, - STATE(531), 1, + STATE(528), 1, aux_sym_sym_lit_repeat1, - STATE(584), 1, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(631), 1, + STATE(614), 1, sym__bare_set_lit, - STATE(632), 1, - sym__bare_vec_lit, - STATE(761), 1, - sym__metadata_lit, - ACTIONS(1366), 2, - sym_nil_lit, - sym_fancy_literal, - ACTIONS(1364), 3, - sym_num_lit, - sym_kwd_lit, - sym_char_lit, - STATE(633), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(717), 16, - sym__form, - sym_str_lit, - sym_sym_lit, - sym_list_lit, - sym_vec_lit, - sym_set_lit, - sym_read_cond_lit, - sym_splicing_read_cond_lit, - sym_var_quoting_lit, - sym_sym_val_lit, - sym_evaling_lit, - sym_derefing_lit, - sym_quoting_lit, - sym_syn_quoting_lit, - sym_unquote_splicing_lit, - sym_unquoting_lit, - [25013] = 28, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(17), 1, - anon_sym_CARET, - ACTIONS(19), 1, - anon_sym_POUND_CARET, - ACTIONS(456), 1, - aux_sym_str_lit_token1, - ACTIONS(460), 1, - aux_sym_sym_lit_token1, - ACTIONS(462), 1, - anon_sym_LPAREN, - ACTIONS(464), 1, - anon_sym_POUND0A, - ACTIONS(466), 1, - anon_sym_POUND, - ACTIONS(468), 1, - anon_sym_POUND_QMARK, - ACTIONS(470), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(472), 1, - anon_sym_POUND_SQUOTE, - ACTIONS(474), 1, - anon_sym_POUND_POUND, - ACTIONS(476), 1, - anon_sym_POUND_EQ, - ACTIONS(478), 1, - anon_sym_AT, - ACTIONS(480), 1, - anon_sym_SQUOTE, - ACTIONS(482), 1, - anon_sym_BQUOTE, - ACTIONS(484), 1, - anon_sym_COMMA_AT, - ACTIONS(486), 1, - anon_sym_COMMA, - STATE(531), 1, - aux_sym_sym_lit_repeat1, - STATE(584), 1, - sym_old_meta_lit, - STATE(587), 1, - sym_meta_lit, STATE(631), 1, - sym__bare_set_lit, - STATE(632), 1, sym__bare_vec_lit, - STATE(761), 1, + STATE(829), 1, sym__metadata_lit, - ACTIONS(1370), 2, + ACTIONS(1360), 2, sym_nil_lit, sym_fancy_literal, - ACTIONS(1368), 3, + ACTIONS(1358), 3, sym_num_lit, sym_kwd_lit, sym_char_lit, - STATE(633), 3, + STATE(635), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(713), 16, + STATE(554), 16, sym__form, sym_str_lit, sym_sym_lit, @@ -22665,67 +22442,67 @@ static uint16_t ts_small_parse_table[] = { sym_syn_quoting_lit, sym_unquote_splicing_lit, sym_unquoting_lit, - [25118] = 28, + [24814] = 28, ACTIONS(3), 1, sym_block_comment, ACTIONS(17), 1, anon_sym_CARET, ACTIONS(19), 1, anon_sym_POUND_CARET, - ACTIONS(456), 1, + ACTIONS(522), 1, aux_sym_str_lit_token1, - ACTIONS(460), 1, + ACTIONS(526), 1, aux_sym_sym_lit_token1, - ACTIONS(462), 1, + ACTIONS(528), 1, anon_sym_LPAREN, - ACTIONS(464), 1, + ACTIONS(530), 1, anon_sym_POUND0A, - ACTIONS(466), 1, + ACTIONS(532), 1, anon_sym_POUND, - ACTIONS(468), 1, + ACTIONS(534), 1, anon_sym_POUND_QMARK, - ACTIONS(470), 1, + ACTIONS(536), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(472), 1, + ACTIONS(538), 1, anon_sym_POUND_SQUOTE, - ACTIONS(474), 1, + ACTIONS(540), 1, anon_sym_POUND_POUND, - ACTIONS(476), 1, + ACTIONS(542), 1, anon_sym_POUND_EQ, - ACTIONS(478), 1, + ACTIONS(544), 1, anon_sym_AT, - ACTIONS(480), 1, + ACTIONS(546), 1, anon_sym_SQUOTE, - ACTIONS(482), 1, + ACTIONS(548), 1, anon_sym_BQUOTE, - ACTIONS(484), 1, + ACTIONS(550), 1, anon_sym_COMMA_AT, - ACTIONS(486), 1, + ACTIONS(552), 1, anon_sym_COMMA, - STATE(531), 1, + STATE(528), 1, aux_sym_sym_lit_repeat1, - STATE(584), 1, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(631), 1, + STATE(614), 1, sym__bare_set_lit, - STATE(632), 1, + STATE(631), 1, sym__bare_vec_lit, - STATE(761), 1, + STATE(829), 1, sym__metadata_lit, - ACTIONS(1338), 2, + ACTIONS(1364), 2, sym_nil_lit, sym_fancy_literal, - ACTIONS(1336), 3, + ACTIONS(1362), 3, sym_num_lit, sym_kwd_lit, sym_char_lit, - STATE(633), 3, + STATE(635), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(721), 16, + STATE(706), 16, sym__form, sym_str_lit, sym_sym_lit, @@ -22742,63 +22519,63 @@ static uint16_t ts_small_parse_table[] = { sym_syn_quoting_lit, sym_unquote_splicing_lit, sym_unquoting_lit, - [25223] = 28, + [24919] = 28, ACTIONS(3), 1, sym_block_comment, ACTIONS(17), 1, anon_sym_CARET, ACTIONS(19), 1, anon_sym_POUND_CARET, - ACTIONS(456), 1, + ACTIONS(522), 1, aux_sym_str_lit_token1, - ACTIONS(460), 1, + ACTIONS(526), 1, aux_sym_sym_lit_token1, - ACTIONS(462), 1, + ACTIONS(528), 1, anon_sym_LPAREN, - ACTIONS(464), 1, + ACTIONS(530), 1, anon_sym_POUND0A, - ACTIONS(466), 1, + ACTIONS(532), 1, anon_sym_POUND, - ACTIONS(468), 1, + ACTIONS(534), 1, anon_sym_POUND_QMARK, - ACTIONS(470), 1, + ACTIONS(536), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(472), 1, + ACTIONS(538), 1, anon_sym_POUND_SQUOTE, - ACTIONS(474), 1, + ACTIONS(540), 1, anon_sym_POUND_POUND, - ACTIONS(476), 1, + ACTIONS(542), 1, anon_sym_POUND_EQ, - ACTIONS(478), 1, + ACTIONS(544), 1, anon_sym_AT, - ACTIONS(480), 1, + ACTIONS(546), 1, anon_sym_SQUOTE, - ACTIONS(482), 1, + ACTIONS(548), 1, anon_sym_BQUOTE, - ACTIONS(484), 1, + ACTIONS(550), 1, anon_sym_COMMA_AT, - ACTIONS(486), 1, + ACTIONS(552), 1, anon_sym_COMMA, - STATE(531), 1, + STATE(528), 1, aux_sym_sym_lit_repeat1, - STATE(584), 1, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(631), 1, + STATE(614), 1, sym__bare_set_lit, - STATE(632), 1, + STATE(631), 1, sym__bare_vec_lit, - STATE(761), 1, + STATE(829), 1, sym__metadata_lit, - ACTIONS(1374), 2, + ACTIONS(1368), 2, sym_nil_lit, sym_fancy_literal, - ACTIONS(1372), 3, + ACTIONS(1366), 3, sym_num_lit, sym_kwd_lit, sym_char_lit, - STATE(633), 3, + STATE(635), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, @@ -22819,67 +22596,67 @@ static uint16_t ts_small_parse_table[] = { sym_syn_quoting_lit, sym_unquote_splicing_lit, sym_unquoting_lit, - [25328] = 28, + [25024] = 28, ACTIONS(3), 1, sym_block_comment, ACTIONS(17), 1, anon_sym_CARET, ACTIONS(19), 1, anon_sym_POUND_CARET, - ACTIONS(456), 1, + ACTIONS(522), 1, aux_sym_str_lit_token1, - ACTIONS(460), 1, + ACTIONS(526), 1, aux_sym_sym_lit_token1, - ACTIONS(462), 1, + ACTIONS(528), 1, anon_sym_LPAREN, - ACTIONS(464), 1, + ACTIONS(530), 1, anon_sym_POUND0A, - ACTIONS(466), 1, + ACTIONS(532), 1, anon_sym_POUND, - ACTIONS(468), 1, + ACTIONS(534), 1, anon_sym_POUND_QMARK, - ACTIONS(470), 1, + ACTIONS(536), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(472), 1, + ACTIONS(538), 1, anon_sym_POUND_SQUOTE, - ACTIONS(474), 1, + ACTIONS(540), 1, anon_sym_POUND_POUND, - ACTIONS(476), 1, + ACTIONS(542), 1, anon_sym_POUND_EQ, - ACTIONS(478), 1, + ACTIONS(544), 1, anon_sym_AT, - ACTIONS(480), 1, + ACTIONS(546), 1, anon_sym_SQUOTE, - ACTIONS(482), 1, + ACTIONS(548), 1, anon_sym_BQUOTE, - ACTIONS(484), 1, + ACTIONS(550), 1, anon_sym_COMMA_AT, - ACTIONS(486), 1, + ACTIONS(552), 1, anon_sym_COMMA, - STATE(531), 1, + STATE(528), 1, aux_sym_sym_lit_repeat1, - STATE(584), 1, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(631), 1, + STATE(614), 1, sym__bare_set_lit, - STATE(632), 1, + STATE(631), 1, sym__bare_vec_lit, - STATE(761), 1, + STATE(829), 1, sym__metadata_lit, - ACTIONS(1284), 2, + ACTIONS(1372), 2, sym_nil_lit, sym_fancy_literal, - ACTIONS(1282), 3, + ACTIONS(1370), 3, sym_num_lit, sym_kwd_lit, sym_char_lit, - STATE(633), 3, + STATE(635), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(705), 16, + STATE(896), 16, sym__form, sym_str_lit, sym_sym_lit, @@ -22896,67 +22673,67 @@ static uint16_t ts_small_parse_table[] = { sym_syn_quoting_lit, sym_unquote_splicing_lit, sym_unquoting_lit, - [25433] = 28, + [25129] = 28, ACTIONS(3), 1, sym_block_comment, ACTIONS(17), 1, anon_sym_CARET, ACTIONS(19), 1, anon_sym_POUND_CARET, - ACTIONS(456), 1, + ACTIONS(522), 1, aux_sym_str_lit_token1, - ACTIONS(460), 1, + ACTIONS(526), 1, aux_sym_sym_lit_token1, - ACTIONS(462), 1, + ACTIONS(528), 1, anon_sym_LPAREN, - ACTIONS(464), 1, + ACTIONS(530), 1, anon_sym_POUND0A, - ACTIONS(466), 1, + ACTIONS(532), 1, anon_sym_POUND, - ACTIONS(468), 1, + ACTIONS(534), 1, anon_sym_POUND_QMARK, - ACTIONS(470), 1, + ACTIONS(536), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(472), 1, + ACTIONS(538), 1, anon_sym_POUND_SQUOTE, - ACTIONS(474), 1, + ACTIONS(540), 1, anon_sym_POUND_POUND, - ACTIONS(476), 1, + ACTIONS(542), 1, anon_sym_POUND_EQ, - ACTIONS(478), 1, + ACTIONS(544), 1, anon_sym_AT, - ACTIONS(480), 1, + ACTIONS(546), 1, anon_sym_SQUOTE, - ACTIONS(482), 1, + ACTIONS(548), 1, anon_sym_BQUOTE, - ACTIONS(484), 1, + ACTIONS(550), 1, anon_sym_COMMA_AT, - ACTIONS(486), 1, + ACTIONS(552), 1, anon_sym_COMMA, - STATE(531), 1, + STATE(528), 1, aux_sym_sym_lit_repeat1, - STATE(584), 1, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(631), 1, + STATE(614), 1, sym__bare_set_lit, - STATE(632), 1, + STATE(631), 1, sym__bare_vec_lit, - STATE(761), 1, + STATE(829), 1, sym__metadata_lit, - ACTIONS(1378), 2, + ACTIONS(1376), 2, sym_nil_lit, sym_fancy_literal, - ACTIONS(1376), 3, + ACTIONS(1374), 3, sym_num_lit, sym_kwd_lit, sym_char_lit, - STATE(633), 3, + STATE(635), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(888), 16, + STATE(719), 16, sym__form, sym_str_lit, sym_sym_lit, @@ -22973,54 +22750,362 @@ static uint16_t ts_small_parse_table[] = { sym_syn_quoting_lit, sym_unquote_splicing_lit, sym_unquoting_lit, - [25538] = 28, + [25234] = 28, ACTIONS(3), 1, sym_block_comment, ACTIONS(17), 1, anon_sym_CARET, ACTIONS(19), 1, anon_sym_POUND_CARET, - ACTIONS(568), 1, + ACTIONS(522), 1, aux_sym_str_lit_token1, - ACTIONS(572), 1, + ACTIONS(526), 1, aux_sym_sym_lit_token1, - ACTIONS(574), 1, + ACTIONS(528), 1, anon_sym_LPAREN, - ACTIONS(576), 1, + ACTIONS(530), 1, anon_sym_POUND0A, - ACTIONS(578), 1, + ACTIONS(532), 1, anon_sym_POUND, - ACTIONS(580), 1, + ACTIONS(534), 1, anon_sym_POUND_QMARK, - ACTIONS(582), 1, + ACTIONS(536), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(584), 1, + ACTIONS(538), 1, anon_sym_POUND_SQUOTE, - ACTIONS(586), 1, + ACTIONS(540), 1, anon_sym_POUND_POUND, - ACTIONS(588), 1, + ACTIONS(542), 1, anon_sym_POUND_EQ, - ACTIONS(590), 1, + ACTIONS(544), 1, anon_sym_AT, - ACTIONS(592), 1, + ACTIONS(546), 1, anon_sym_SQUOTE, - ACTIONS(594), 1, + ACTIONS(548), 1, + anon_sym_BQUOTE, + ACTIONS(550), 1, + anon_sym_COMMA_AT, + ACTIONS(552), 1, + anon_sym_COMMA, + STATE(528), 1, + aux_sym_sym_lit_repeat1, + STATE(581), 1, + sym_old_meta_lit, + STATE(582), 1, + sym_meta_lit, + STATE(614), 1, + sym__bare_set_lit, + STATE(631), 1, + sym__bare_vec_lit, + STATE(829), 1, + sym__metadata_lit, + ACTIONS(1380), 2, + sym_nil_lit, + sym_fancy_literal, + ACTIONS(1378), 3, + sym_num_lit, + sym_kwd_lit, + sym_char_lit, + STATE(635), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(718), 16, + sym__form, + sym_str_lit, + sym_sym_lit, + sym_list_lit, + sym_vec_lit, + sym_set_lit, + sym_read_cond_lit, + sym_splicing_read_cond_lit, + sym_var_quoting_lit, + sym_sym_val_lit, + sym_evaling_lit, + sym_derefing_lit, + sym_quoting_lit, + sym_syn_quoting_lit, + sym_unquote_splicing_lit, + sym_unquoting_lit, + [25339] = 28, + ACTIONS(3), 1, + sym_block_comment, + ACTIONS(17), 1, + anon_sym_CARET, + ACTIONS(19), 1, + anon_sym_POUND_CARET, + ACTIONS(422), 1, + aux_sym_str_lit_token1, + ACTIONS(426), 1, + aux_sym_sym_lit_token1, + ACTIONS(428), 1, + anon_sym_LPAREN, + ACTIONS(430), 1, + anon_sym_POUND0A, + ACTIONS(432), 1, + anon_sym_POUND, + ACTIONS(434), 1, + anon_sym_POUND_QMARK, + ACTIONS(436), 1, + anon_sym_POUND_QMARK_AT, + ACTIONS(438), 1, + anon_sym_POUND_SQUOTE, + ACTIONS(440), 1, + anon_sym_POUND_POUND, + ACTIONS(442), 1, + anon_sym_POUND_EQ, + ACTIONS(444), 1, + anon_sym_AT, + ACTIONS(446), 1, + anon_sym_SQUOTE, + ACTIONS(448), 1, anon_sym_BQUOTE, + ACTIONS(450), 1, + anon_sym_COMMA_AT, + ACTIONS(452), 1, + anon_sym_COMMA, + STATE(501), 1, + aux_sym_sym_lit_repeat1, + STATE(581), 1, + sym_old_meta_lit, + STATE(582), 1, + sym_meta_lit, + STATE(742), 1, + sym__bare_set_lit, + STATE(743), 1, + sym__bare_vec_lit, + STATE(829), 1, + sym__metadata_lit, + ACTIONS(1384), 2, + sym_nil_lit, + sym_fancy_literal, + ACTIONS(1382), 3, + sym_num_lit, + sym_kwd_lit, + sym_char_lit, + STATE(744), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(578), 16, + sym__form, + sym_str_lit, + sym_sym_lit, + sym_list_lit, + sym_vec_lit, + sym_set_lit, + sym_read_cond_lit, + sym_splicing_read_cond_lit, + sym_var_quoting_lit, + sym_sym_val_lit, + sym_evaling_lit, + sym_derefing_lit, + sym_quoting_lit, + sym_syn_quoting_lit, + sym_unquote_splicing_lit, + sym_unquoting_lit, + [25444] = 28, + ACTIONS(3), 1, + sym_block_comment, + ACTIONS(17), 1, + anon_sym_CARET, + ACTIONS(19), 1, + anon_sym_POUND_CARET, + ACTIONS(578), 1, + aux_sym_str_lit_token1, + ACTIONS(582), 1, + aux_sym_sym_lit_token1, + ACTIONS(584), 1, + anon_sym_LPAREN, + ACTIONS(586), 1, + anon_sym_POUND0A, + ACTIONS(588), 1, + anon_sym_POUND, + ACTIONS(590), 1, + anon_sym_POUND_QMARK, + ACTIONS(592), 1, + anon_sym_POUND_QMARK_AT, + ACTIONS(594), 1, + anon_sym_POUND_SQUOTE, ACTIONS(596), 1, + anon_sym_POUND_POUND, + ACTIONS(598), 1, + anon_sym_POUND_EQ, + ACTIONS(600), 1, + anon_sym_AT, + ACTIONS(602), 1, + anon_sym_SQUOTE, + ACTIONS(604), 1, + anon_sym_BQUOTE, + ACTIONS(606), 1, anon_sym_COMMA_AT, + ACTIONS(608), 1, + anon_sym_COMMA, + STATE(246), 1, + sym__bare_vec_lit, + STATE(247), 1, + sym__bare_set_lit, + STATE(510), 1, + aux_sym_sym_lit_repeat1, + STATE(581), 1, + sym_old_meta_lit, + STATE(582), 1, + sym_meta_lit, + STATE(829), 1, + sym__metadata_lit, + ACTIONS(1388), 2, + sym_nil_lit, + sym_fancy_literal, + ACTIONS(1386), 3, + sym_num_lit, + sym_kwd_lit, + sym_char_lit, + STATE(244), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(245), 16, + sym__form, + sym_str_lit, + sym_sym_lit, + sym_list_lit, + sym_vec_lit, + sym_set_lit, + sym_read_cond_lit, + sym_splicing_read_cond_lit, + sym_var_quoting_lit, + sym_sym_val_lit, + sym_evaling_lit, + sym_derefing_lit, + sym_quoting_lit, + sym_syn_quoting_lit, + sym_unquote_splicing_lit, + sym_unquoting_lit, + [25549] = 28, + ACTIONS(3), 1, + sym_block_comment, + ACTIONS(17), 1, + anon_sym_CARET, + ACTIONS(19), 1, + anon_sym_POUND_CARET, + ACTIONS(522), 1, + aux_sym_str_lit_token1, + ACTIONS(526), 1, + aux_sym_sym_lit_token1, + ACTIONS(528), 1, + anon_sym_LPAREN, + ACTIONS(530), 1, + anon_sym_POUND0A, + ACTIONS(532), 1, + anon_sym_POUND, + ACTIONS(534), 1, + anon_sym_POUND_QMARK, + ACTIONS(536), 1, + anon_sym_POUND_QMARK_AT, + ACTIONS(538), 1, + anon_sym_POUND_SQUOTE, + ACTIONS(540), 1, + anon_sym_POUND_POUND, + ACTIONS(542), 1, + anon_sym_POUND_EQ, + ACTIONS(544), 1, + anon_sym_AT, + ACTIONS(546), 1, + anon_sym_SQUOTE, + ACTIONS(548), 1, + anon_sym_BQUOTE, + ACTIONS(550), 1, + anon_sym_COMMA_AT, + ACTIONS(552), 1, + anon_sym_COMMA, + STATE(528), 1, + aux_sym_sym_lit_repeat1, + STATE(581), 1, + sym_old_meta_lit, + STATE(582), 1, + sym_meta_lit, + STATE(614), 1, + sym__bare_set_lit, + STATE(631), 1, + sym__bare_vec_lit, + STATE(829), 1, + sym__metadata_lit, + ACTIONS(1278), 2, + sym_nil_lit, + sym_fancy_literal, + ACTIONS(1276), 3, + sym_num_lit, + sym_kwd_lit, + sym_char_lit, + STATE(635), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(714), 16, + sym__form, + sym_str_lit, + sym_sym_lit, + sym_list_lit, + sym_vec_lit, + sym_set_lit, + sym_read_cond_lit, + sym_splicing_read_cond_lit, + sym_var_quoting_lit, + sym_sym_val_lit, + sym_evaling_lit, + sym_derefing_lit, + sym_quoting_lit, + sym_syn_quoting_lit, + sym_unquote_splicing_lit, + sym_unquoting_lit, + [25654] = 28, + ACTIONS(3), 1, + sym_block_comment, + ACTIONS(17), 1, + anon_sym_CARET, + ACTIONS(19), 1, + anon_sym_POUND_CARET, + ACTIONS(578), 1, + aux_sym_str_lit_token1, + ACTIONS(582), 1, + aux_sym_sym_lit_token1, + ACTIONS(584), 1, + anon_sym_LPAREN, + ACTIONS(586), 1, + anon_sym_POUND0A, + ACTIONS(588), 1, + anon_sym_POUND, + ACTIONS(590), 1, + anon_sym_POUND_QMARK, + ACTIONS(592), 1, + anon_sym_POUND_QMARK_AT, + ACTIONS(594), 1, + anon_sym_POUND_SQUOTE, + ACTIONS(596), 1, + anon_sym_POUND_POUND, ACTIONS(598), 1, + anon_sym_POUND_EQ, + ACTIONS(600), 1, + anon_sym_AT, + ACTIONS(602), 1, + anon_sym_SQUOTE, + ACTIONS(604), 1, + anon_sym_BQUOTE, + ACTIONS(606), 1, + anon_sym_COMMA_AT, + ACTIONS(608), 1, anon_sym_COMMA, STATE(246), 1, sym__bare_vec_lit, STATE(247), 1, sym__bare_set_lit, - STATE(478), 1, + STATE(510), 1, aux_sym_sym_lit_repeat1, - STATE(584), 1, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(761), 1, + STATE(829), 1, sym__metadata_lit, ACTIONS(1272), 2, sym_nil_lit, @@ -23029,11 +23114,11 @@ static uint16_t ts_small_parse_table[] = { sym_num_lit, sym_kwd_lit, sym_char_lit, - STATE(245), 3, + STATE(244), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(242), 16, + STATE(243), 16, sym__form, sym_str_lit, sym_sym_lit, @@ -23050,67 +23135,67 @@ static uint16_t ts_small_parse_table[] = { sym_syn_quoting_lit, sym_unquote_splicing_lit, sym_unquoting_lit, - [25643] = 28, + [25759] = 28, ACTIONS(3), 1, sym_block_comment, ACTIONS(17), 1, anon_sym_CARET, ACTIONS(19), 1, anon_sym_POUND_CARET, - ACTIONS(456), 1, + ACTIONS(522), 1, aux_sym_str_lit_token1, - ACTIONS(460), 1, + ACTIONS(526), 1, aux_sym_sym_lit_token1, - ACTIONS(462), 1, + ACTIONS(528), 1, anon_sym_LPAREN, - ACTIONS(464), 1, + ACTIONS(530), 1, anon_sym_POUND0A, - ACTIONS(466), 1, + ACTIONS(532), 1, anon_sym_POUND, - ACTIONS(468), 1, + ACTIONS(534), 1, anon_sym_POUND_QMARK, - ACTIONS(470), 1, + ACTIONS(536), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(472), 1, + ACTIONS(538), 1, anon_sym_POUND_SQUOTE, - ACTIONS(474), 1, + ACTIONS(540), 1, anon_sym_POUND_POUND, - ACTIONS(476), 1, + ACTIONS(542), 1, anon_sym_POUND_EQ, - ACTIONS(478), 1, + ACTIONS(544), 1, anon_sym_AT, - ACTIONS(480), 1, + ACTIONS(546), 1, anon_sym_SQUOTE, - ACTIONS(482), 1, + ACTIONS(548), 1, anon_sym_BQUOTE, - ACTIONS(484), 1, + ACTIONS(550), 1, anon_sym_COMMA_AT, - ACTIONS(486), 1, + ACTIONS(552), 1, anon_sym_COMMA, - STATE(531), 1, + STATE(528), 1, aux_sym_sym_lit_repeat1, - STATE(584), 1, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(631), 1, + STATE(614), 1, sym__bare_set_lit, - STATE(632), 1, + STATE(631), 1, sym__bare_vec_lit, - STATE(761), 1, + STATE(829), 1, sym__metadata_lit, - ACTIONS(1266), 2, + ACTIONS(1338), 2, sym_nil_lit, sym_fancy_literal, - ACTIONS(1264), 3, + ACTIONS(1336), 3, sym_num_lit, sym_kwd_lit, sym_char_lit, - STATE(633), 3, + STATE(635), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(723), 16, + STATE(708), 16, sym__form, sym_str_lit, sym_sym_lit, @@ -23127,67 +23212,67 @@ static uint16_t ts_small_parse_table[] = { sym_syn_quoting_lit, sym_unquote_splicing_lit, sym_unquoting_lit, - [25748] = 28, + [25864] = 28, ACTIONS(3), 1, sym_block_comment, ACTIONS(17), 1, anon_sym_CARET, ACTIONS(19), 1, anon_sym_POUND_CARET, - ACTIONS(456), 1, + ACTIONS(522), 1, aux_sym_str_lit_token1, - ACTIONS(460), 1, + ACTIONS(526), 1, aux_sym_sym_lit_token1, - ACTIONS(462), 1, + ACTIONS(528), 1, anon_sym_LPAREN, - ACTIONS(464), 1, + ACTIONS(530), 1, anon_sym_POUND0A, - ACTIONS(466), 1, + ACTIONS(532), 1, anon_sym_POUND, - ACTIONS(468), 1, + ACTIONS(534), 1, anon_sym_POUND_QMARK, - ACTIONS(470), 1, + ACTIONS(536), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(472), 1, + ACTIONS(538), 1, anon_sym_POUND_SQUOTE, - ACTIONS(474), 1, + ACTIONS(540), 1, anon_sym_POUND_POUND, - ACTIONS(476), 1, + ACTIONS(542), 1, anon_sym_POUND_EQ, - ACTIONS(478), 1, + ACTIONS(544), 1, anon_sym_AT, - ACTIONS(480), 1, + ACTIONS(546), 1, anon_sym_SQUOTE, - ACTIONS(482), 1, + ACTIONS(548), 1, anon_sym_BQUOTE, - ACTIONS(484), 1, + ACTIONS(550), 1, anon_sym_COMMA_AT, - ACTIONS(486), 1, + ACTIONS(552), 1, anon_sym_COMMA, - STATE(531), 1, + STATE(528), 1, aux_sym_sym_lit_repeat1, - STATE(584), 1, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(631), 1, + STATE(614), 1, sym__bare_set_lit, - STATE(632), 1, + STATE(631), 1, sym__bare_vec_lit, - STATE(761), 1, + STATE(829), 1, sym__metadata_lit, - ACTIONS(1382), 2, + ACTIONS(1296), 2, sym_nil_lit, sym_fancy_literal, - ACTIONS(1380), 3, + ACTIONS(1294), 3, sym_num_lit, sym_kwd_lit, sym_char_lit, - STATE(633), 3, + STATE(635), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(719), 16, + STATE(711), 16, sym__form, sym_str_lit, sym_sym_lit, @@ -23204,67 +23289,67 @@ static uint16_t ts_small_parse_table[] = { sym_syn_quoting_lit, sym_unquote_splicing_lit, sym_unquoting_lit, - [25853] = 28, + [25969] = 28, ACTIONS(3), 1, sym_block_comment, ACTIONS(17), 1, anon_sym_CARET, ACTIONS(19), 1, anon_sym_POUND_CARET, - ACTIONS(456), 1, + ACTIONS(522), 1, aux_sym_str_lit_token1, - ACTIONS(460), 1, + ACTIONS(526), 1, aux_sym_sym_lit_token1, - ACTIONS(462), 1, + ACTIONS(528), 1, anon_sym_LPAREN, - ACTIONS(464), 1, + ACTIONS(530), 1, anon_sym_POUND0A, - ACTIONS(466), 1, + ACTIONS(532), 1, anon_sym_POUND, - ACTIONS(468), 1, + ACTIONS(534), 1, anon_sym_POUND_QMARK, - ACTIONS(470), 1, + ACTIONS(536), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(472), 1, + ACTIONS(538), 1, anon_sym_POUND_SQUOTE, - ACTIONS(474), 1, + ACTIONS(540), 1, anon_sym_POUND_POUND, - ACTIONS(476), 1, + ACTIONS(542), 1, anon_sym_POUND_EQ, - ACTIONS(478), 1, + ACTIONS(544), 1, anon_sym_AT, - ACTIONS(480), 1, + ACTIONS(546), 1, anon_sym_SQUOTE, - ACTIONS(482), 1, + ACTIONS(548), 1, anon_sym_BQUOTE, - ACTIONS(484), 1, + ACTIONS(550), 1, anon_sym_COMMA_AT, - ACTIONS(486), 1, + ACTIONS(552), 1, anon_sym_COMMA, - STATE(531), 1, + STATE(528), 1, aux_sym_sym_lit_repeat1, - STATE(584), 1, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(631), 1, + STATE(614), 1, sym__bare_set_lit, - STATE(632), 1, + STATE(631), 1, sym__bare_vec_lit, - STATE(761), 1, + STATE(829), 1, sym__metadata_lit, - ACTIONS(1302), 2, + ACTIONS(1392), 2, sym_nil_lit, sym_fancy_literal, - ACTIONS(1300), 3, + ACTIONS(1390), 3, sym_num_lit, sym_kwd_lit, sym_char_lit, - STATE(633), 3, + STATE(635), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(722), 16, + STATE(707), 16, sym__form, sym_str_lit, sym_sym_lit, @@ -23281,67 +23366,67 @@ static uint16_t ts_small_parse_table[] = { sym_syn_quoting_lit, sym_unquote_splicing_lit, sym_unquoting_lit, - [25958] = 28, + [26074] = 28, ACTIONS(3), 1, sym_block_comment, ACTIONS(17), 1, anon_sym_CARET, ACTIONS(19), 1, anon_sym_POUND_CARET, - ACTIONS(456), 1, + ACTIONS(522), 1, aux_sym_str_lit_token1, - ACTIONS(460), 1, + ACTIONS(526), 1, aux_sym_sym_lit_token1, - ACTIONS(462), 1, + ACTIONS(528), 1, anon_sym_LPAREN, - ACTIONS(464), 1, + ACTIONS(530), 1, anon_sym_POUND0A, - ACTIONS(466), 1, + ACTIONS(532), 1, anon_sym_POUND, - ACTIONS(468), 1, + ACTIONS(534), 1, anon_sym_POUND_QMARK, - ACTIONS(470), 1, + ACTIONS(536), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(472), 1, + ACTIONS(538), 1, anon_sym_POUND_SQUOTE, - ACTIONS(474), 1, + ACTIONS(540), 1, anon_sym_POUND_POUND, - ACTIONS(476), 1, + ACTIONS(542), 1, anon_sym_POUND_EQ, - ACTIONS(478), 1, + ACTIONS(544), 1, anon_sym_AT, - ACTIONS(480), 1, + ACTIONS(546), 1, anon_sym_SQUOTE, - ACTIONS(482), 1, + ACTIONS(548), 1, anon_sym_BQUOTE, - ACTIONS(484), 1, + ACTIONS(550), 1, anon_sym_COMMA_AT, - ACTIONS(486), 1, + ACTIONS(552), 1, anon_sym_COMMA, - STATE(531), 1, + STATE(528), 1, aux_sym_sym_lit_repeat1, - STATE(584), 1, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(631), 1, + STATE(614), 1, sym__bare_set_lit, - STATE(632), 1, + STATE(631), 1, sym__bare_vec_lit, - STATE(761), 1, + STATE(829), 1, sym__metadata_lit, - ACTIONS(1386), 2, + ACTIONS(1266), 2, sym_nil_lit, sym_fancy_literal, - ACTIONS(1384), 3, + ACTIONS(1264), 3, sym_num_lit, sym_kwd_lit, sym_char_lit, - STATE(633), 3, + STATE(635), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(706), 16, + STATE(709), 16, sym__form, sym_str_lit, sym_sym_lit, @@ -23358,67 +23443,144 @@ static uint16_t ts_small_parse_table[] = { sym_syn_quoting_lit, sym_unquote_splicing_lit, sym_unquoting_lit, - [26063] = 28, + [26179] = 28, ACTIONS(3), 1, sym_block_comment, ACTIONS(17), 1, anon_sym_CARET, ACTIONS(19), 1, anon_sym_POUND_CARET, - ACTIONS(456), 1, + ACTIONS(522), 1, aux_sym_str_lit_token1, - ACTIONS(460), 1, + ACTIONS(526), 1, aux_sym_sym_lit_token1, - ACTIONS(462), 1, + ACTIONS(528), 1, anon_sym_LPAREN, - ACTIONS(464), 1, + ACTIONS(530), 1, anon_sym_POUND0A, - ACTIONS(466), 1, + ACTIONS(532), 1, anon_sym_POUND, - ACTIONS(468), 1, + ACTIONS(534), 1, anon_sym_POUND_QMARK, - ACTIONS(470), 1, + ACTIONS(536), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(472), 1, + ACTIONS(538), 1, anon_sym_POUND_SQUOTE, - ACTIONS(474), 1, + ACTIONS(540), 1, anon_sym_POUND_POUND, - ACTIONS(476), 1, + ACTIONS(542), 1, anon_sym_POUND_EQ, - ACTIONS(478), 1, + ACTIONS(544), 1, anon_sym_AT, - ACTIONS(480), 1, + ACTIONS(546), 1, anon_sym_SQUOTE, - ACTIONS(482), 1, + ACTIONS(548), 1, anon_sym_BQUOTE, - ACTIONS(484), 1, + ACTIONS(550), 1, anon_sym_COMMA_AT, - ACTIONS(486), 1, + ACTIONS(552), 1, anon_sym_COMMA, - STATE(531), 1, + STATE(528), 1, aux_sym_sym_lit_repeat1, - STATE(584), 1, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, + STATE(614), 1, + sym__bare_set_lit, STATE(631), 1, + sym__bare_vec_lit, + STATE(829), 1, + sym__metadata_lit, + ACTIONS(1396), 2, + sym_nil_lit, + sym_fancy_literal, + ACTIONS(1394), 3, + sym_num_lit, + sym_kwd_lit, + sym_char_lit, + STATE(635), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(710), 16, + sym__form, + sym_str_lit, + sym_sym_lit, + sym_list_lit, + sym_vec_lit, + sym_set_lit, + sym_read_cond_lit, + sym_splicing_read_cond_lit, + sym_var_quoting_lit, + sym_sym_val_lit, + sym_evaling_lit, + sym_derefing_lit, + sym_quoting_lit, + sym_syn_quoting_lit, + sym_unquote_splicing_lit, + sym_unquoting_lit, + [26284] = 28, + ACTIONS(3), 1, + sym_block_comment, + ACTIONS(17), 1, + anon_sym_CARET, + ACTIONS(19), 1, + anon_sym_POUND_CARET, + ACTIONS(522), 1, + aux_sym_str_lit_token1, + ACTIONS(526), 1, + aux_sym_sym_lit_token1, + ACTIONS(528), 1, + anon_sym_LPAREN, + ACTIONS(530), 1, + anon_sym_POUND0A, + ACTIONS(532), 1, + anon_sym_POUND, + ACTIONS(534), 1, + anon_sym_POUND_QMARK, + ACTIONS(536), 1, + anon_sym_POUND_QMARK_AT, + ACTIONS(538), 1, + anon_sym_POUND_SQUOTE, + ACTIONS(540), 1, + anon_sym_POUND_POUND, + ACTIONS(542), 1, + anon_sym_POUND_EQ, + ACTIONS(544), 1, + anon_sym_AT, + ACTIONS(546), 1, + anon_sym_SQUOTE, + ACTIONS(548), 1, + anon_sym_BQUOTE, + ACTIONS(550), 1, + anon_sym_COMMA_AT, + ACTIONS(552), 1, + anon_sym_COMMA, + STATE(528), 1, + aux_sym_sym_lit_repeat1, + STATE(581), 1, + sym_old_meta_lit, + STATE(582), 1, + sym_meta_lit, + STATE(614), 1, sym__bare_set_lit, - STATE(632), 1, + STATE(631), 1, sym__bare_vec_lit, - STATE(761), 1, + STATE(829), 1, sym__metadata_lit, - ACTIONS(1278), 2, + ACTIONS(1302), 2, sym_nil_lit, sym_fancy_literal, - ACTIONS(1276), 3, + ACTIONS(1300), 3, sym_num_lit, sym_kwd_lit, sym_char_lit, - STATE(633), 3, + STATE(635), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(707), 16, + STATE(705), 16, sym__form, sym_str_lit, sym_sym_lit, @@ -23435,25 +23597,25 @@ static uint16_t ts_small_parse_table[] = { sym_syn_quoting_lit, sym_unquote_splicing_lit, sym_unquoting_lit, - [26168] = 9, + [26389] = 9, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1391), 1, + ACTIONS(1401), 1, anon_sym_POUND_, - ACTIONS(1400), 1, + ACTIONS(1410), 1, anon_sym_do, - STATE(709), 1, + STATE(716), 1, sym__for_part, - ACTIONS(1388), 2, + ACTIONS(1398), 2, sym__ws, sym_comment, - ACTIONS(1396), 2, + ACTIONS(1406), 2, anon_sym_in, anon_sym_being, - STATE(756), 2, + STATE(832), 2, sym__gap, sym_dis_expr, - ACTIONS(1398), 12, + ACTIONS(1408), 12, anon_sym_across, anon_sym_using, aux_sym__for_part_token1, @@ -23466,7 +23628,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_by, anon_sym_then, - ACTIONS(1394), 14, + ACTIONS(1404), 14, anon_sym_RPAREN, sym_accumulation_verb, anon_sym_for, @@ -23481,25 +23643,25 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [26223] = 9, + [26444] = 9, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1405), 1, + ACTIONS(1415), 1, anon_sym_POUND_, - ACTIONS(1410), 1, + ACTIONS(1420), 1, anon_sym_do, - STATE(724), 1, + STATE(713), 1, sym__for_part, - ACTIONS(1396), 2, + ACTIONS(1406), 2, anon_sym_in, anon_sym_being, - ACTIONS(1402), 2, + ACTIONS(1412), 2, sym__ws, sym_comment, - STATE(756), 2, + STATE(832), 2, sym__gap, sym_dis_expr, - ACTIONS(1398), 12, + ACTIONS(1408), 12, anon_sym_across, anon_sym_using, aux_sym__for_part_token1, @@ -23512,7 +23674,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_by, anon_sym_then, - ACTIONS(1408), 14, + ACTIONS(1418), 14, anon_sym_RPAREN, sym_accumulation_verb, anon_sym_for, @@ -23527,14 +23689,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [26278] = 3, + [26499] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1414), 3, + ACTIONS(1424), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(1412), 29, + ACTIONS(1422), 29, sym__ws, sym_comment, anon_sym_POUND_, @@ -23564,14 +23726,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [26318] = 3, + [26539] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1418), 3, + ACTIONS(1428), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(1416), 29, + ACTIONS(1426), 29, sym__ws, sym_comment, anon_sym_POUND_, @@ -23601,14 +23763,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [26358] = 3, + [26579] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1422), 3, + ACTIONS(1432), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(1420), 29, + ACTIONS(1430), 29, sym__ws, sym_comment, anon_sym_POUND_, @@ -23638,14 +23800,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [26398] = 3, + [26619] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1426), 3, + ACTIONS(1436), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(1424), 29, + ACTIONS(1434), 29, sym__ws, sym_comment, anon_sym_POUND_, @@ -23675,14 +23837,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [26438] = 3, + [26659] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1430), 3, + ACTIONS(1440), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(1428), 29, + ACTIONS(1438), 29, sym__ws, sym_comment, anon_sym_POUND_, @@ -23712,14 +23874,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [26478] = 3, + [26699] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1434), 3, + ACTIONS(1444), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(1432), 29, + ACTIONS(1442), 29, sym__ws, sym_comment, anon_sym_POUND_, @@ -23749,14 +23911,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [26518] = 3, + [26739] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1438), 3, + ACTIONS(1448), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(1436), 29, + ACTIONS(1446), 29, sym__ws, sym_comment, anon_sym_POUND_, @@ -23786,14 +23948,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [26558] = 3, + [26779] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1442), 3, + ACTIONS(1452), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(1440), 29, + ACTIONS(1450), 29, sym__ws, sym_comment, anon_sym_POUND_, @@ -23823,14 +23985,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [26598] = 3, + [26819] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1446), 3, + ACTIONS(1456), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(1444), 29, + ACTIONS(1454), 29, sym__ws, sym_comment, anon_sym_POUND_, @@ -23860,14 +24022,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [26638] = 3, + [26859] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1450), 3, + ACTIONS(1460), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(1448), 29, + ACTIONS(1458), 29, sym__ws, sym_comment, anon_sym_POUND_, @@ -23897,14 +24059,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [26678] = 3, + [26899] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1454), 3, + ACTIONS(1464), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(1452), 29, + ACTIONS(1462), 29, sym__ws, sym_comment, anon_sym_POUND_, @@ -23934,14 +24096,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [26718] = 3, + [26939] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1458), 3, + ACTIONS(1468), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(1456), 29, + ACTIONS(1466), 29, sym__ws, sym_comment, anon_sym_POUND_, @@ -23971,14 +24133,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [26758] = 3, + [26979] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1462), 3, + ACTIONS(1472), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(1460), 29, + ACTIONS(1470), 29, sym__ws, sym_comment, anon_sym_POUND_, @@ -24008,14 +24170,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [26798] = 3, + [27019] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1466), 3, + ACTIONS(1476), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(1464), 29, + ACTIONS(1474), 29, sym__ws, sym_comment, anon_sym_POUND_, @@ -24045,14 +24207,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [26838] = 3, + [27059] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1470), 3, + ACTIONS(1480), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(1468), 29, + ACTIONS(1478), 29, sym__ws, sym_comment, anon_sym_POUND_, @@ -24082,14 +24244,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [26878] = 3, + [27099] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1474), 3, + ACTIONS(1484), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(1472), 29, + ACTIONS(1482), 29, sym__ws, sym_comment, anon_sym_POUND_, @@ -24119,14 +24281,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [26918] = 3, + [27139] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1478), 3, + ACTIONS(1488), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(1476), 29, + ACTIONS(1486), 29, sym__ws, sym_comment, anon_sym_POUND_, @@ -24156,14 +24318,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [26958] = 3, + [27179] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1482), 3, + ACTIONS(1492), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(1480), 29, + ACTIONS(1490), 29, sym__ws, sym_comment, anon_sym_POUND_, @@ -24193,14 +24355,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [26998] = 3, + [27219] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1486), 3, + ACTIONS(1496), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(1484), 29, + ACTIONS(1494), 29, sym__ws, sym_comment, anon_sym_POUND_, @@ -24230,14 +24392,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [27038] = 3, + [27259] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1490), 3, + ACTIONS(1500), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(1488), 29, + ACTIONS(1498), 29, sym__ws, sym_comment, anon_sym_POUND_, @@ -24267,14 +24429,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [27078] = 3, + [27299] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1494), 3, + ACTIONS(1504), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(1492), 29, + ACTIONS(1502), 29, sym__ws, sym_comment, anon_sym_POUND_, @@ -24304,14 +24466,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [27118] = 3, + [27339] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1498), 3, + ACTIONS(1508), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(1496), 29, + ACTIONS(1506), 29, sym__ws, sym_comment, anon_sym_POUND_, @@ -24341,14 +24503,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [27158] = 3, + [27379] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1502), 3, + ACTIONS(1512), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(1500), 29, + ACTIONS(1510), 29, sym__ws, sym_comment, anon_sym_POUND_, @@ -24378,14 +24540,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [27198] = 3, + [27419] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1506), 3, + ACTIONS(1516), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(1504), 29, + ACTIONS(1514), 29, sym__ws, sym_comment, anon_sym_POUND_, @@ -24415,14 +24577,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [27238] = 3, + [27459] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1510), 3, + ACTIONS(1520), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(1508), 29, + ACTIONS(1518), 29, sym__ws, sym_comment, anon_sym_POUND_, @@ -24452,14 +24614,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [27278] = 3, + [27499] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1514), 3, + ACTIONS(1524), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(1512), 29, + ACTIONS(1522), 29, sym__ws, sym_comment, anon_sym_POUND_, @@ -24489,14 +24651,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [27318] = 3, + [27539] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1518), 3, + ACTIONS(1528), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(1516), 29, + ACTIONS(1526), 29, sym__ws, sym_comment, anon_sym_POUND_, @@ -24526,14 +24688,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [27358] = 3, + [27579] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1522), 3, + ACTIONS(1532), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(1520), 29, + ACTIONS(1530), 29, sym__ws, sym_comment, anon_sym_POUND_, @@ -24563,14 +24725,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [27398] = 3, + [27619] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1526), 3, + ACTIONS(1536), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(1524), 29, + ACTIONS(1534), 29, sym__ws, sym_comment, anon_sym_POUND_, @@ -24600,14 +24762,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [27438] = 3, + [27659] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1530), 3, + ACTIONS(1540), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(1528), 29, + ACTIONS(1538), 29, sym__ws, sym_comment, anon_sym_POUND_, @@ -24637,14 +24799,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [27478] = 3, + [27699] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1534), 3, + ACTIONS(1544), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(1532), 29, + ACTIONS(1542), 29, sym__ws, sym_comment, anon_sym_POUND_, @@ -24674,14 +24836,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [27518] = 3, + [27739] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1538), 3, + ACTIONS(1548), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(1536), 29, + ACTIONS(1546), 29, sym__ws, sym_comment, anon_sym_POUND_, @@ -24711,14 +24873,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [27558] = 3, + [27779] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1542), 3, + ACTIONS(1552), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(1540), 29, + ACTIONS(1550), 29, sym__ws, sym_comment, anon_sym_POUND_, @@ -24748,14 +24910,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [27598] = 3, + [27819] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1546), 3, + ACTIONS(1556), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(1544), 29, + ACTIONS(1554), 29, sym__ws, sym_comment, anon_sym_POUND_, @@ -24785,14 +24947,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [27638] = 3, + [27859] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1550), 3, + ACTIONS(1560), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(1548), 29, + ACTIONS(1558), 29, sym__ws, sym_comment, anon_sym_POUND_, @@ -24822,14 +24984,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [27678] = 3, + [27899] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1554), 3, + ACTIONS(1564), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(1552), 29, + ACTIONS(1562), 29, sym__ws, sym_comment, anon_sym_POUND_, @@ -24859,14 +25021,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [27718] = 3, + [27939] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1558), 3, + ACTIONS(1568), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(1556), 29, + ACTIONS(1566), 29, sym__ws, sym_comment, anon_sym_POUND_, @@ -24896,14 +25058,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [27758] = 3, + [27979] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1562), 3, + ACTIONS(1572), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(1560), 29, + ACTIONS(1570), 29, sym__ws, sym_comment, anon_sym_POUND_, @@ -24933,14 +25095,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [27798] = 3, + [28019] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1566), 3, + ACTIONS(1576), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(1564), 29, + ACTIONS(1574), 29, sym__ws, sym_comment, anon_sym_POUND_, @@ -24970,14 +25132,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [27838] = 3, + [28059] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1570), 3, + ACTIONS(1580), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(1568), 29, + ACTIONS(1578), 29, sym__ws, sym_comment, anon_sym_POUND_, @@ -25007,14 +25169,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [27878] = 3, + [28099] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1574), 3, + ACTIONS(1584), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(1572), 29, + ACTIONS(1582), 29, sym__ws, sym_comment, anon_sym_POUND_, @@ -25044,14 +25206,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [27918] = 3, + [28139] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1578), 3, + ACTIONS(1584), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(1576), 29, + ACTIONS(1582), 29, sym__ws, sym_comment, anon_sym_POUND_, @@ -25081,14 +25243,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [27958] = 3, + [28179] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1582), 3, + ACTIONS(1584), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(1580), 29, + ACTIONS(1582), 29, sym__ws, sym_comment, anon_sym_POUND_, @@ -25118,14 +25280,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [27998] = 3, + [28219] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1586), 3, + ACTIONS(1588), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(1584), 29, + ACTIONS(1586), 29, sym__ws, sym_comment, anon_sym_POUND_, @@ -25155,14 +25317,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [28038] = 3, + [28259] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1590), 3, + ACTIONS(1592), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(1588), 29, + ACTIONS(1590), 29, sym__ws, sym_comment, anon_sym_POUND_, @@ -25192,14 +25354,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [28078] = 3, + [28299] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1590), 3, + ACTIONS(1596), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(1588), 29, + ACTIONS(1594), 29, sym__ws, sym_comment, anon_sym_POUND_, @@ -25229,14 +25391,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [28118] = 3, + [28339] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1590), 3, + ACTIONS(1600), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(1588), 29, + ACTIONS(1598), 29, sym__ws, sym_comment, anon_sym_POUND_, @@ -25266,14 +25428,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [28158] = 3, + [28379] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1594), 3, + ACTIONS(1604), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(1592), 29, + ACTIONS(1602), 29, sym__ws, sym_comment, anon_sym_POUND_, @@ -25303,14 +25465,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [28198] = 3, + [28419] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1598), 3, + ACTIONS(1608), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(1596), 29, + ACTIONS(1606), 29, sym__ws, sym_comment, anon_sym_POUND_, @@ -25340,14 +25502,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [28238] = 3, + [28459] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1602), 3, + ACTIONS(1612), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(1600), 29, + ACTIONS(1610), 29, sym__ws, sym_comment, anon_sym_POUND_, @@ -25377,14 +25539,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [28278] = 3, + [28499] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1606), 3, + ACTIONS(1616), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(1604), 29, + ACTIONS(1614), 29, sym__ws, sym_comment, anon_sym_POUND_, @@ -25414,14 +25576,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [28318] = 3, + [28539] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1610), 3, + ACTIONS(1620), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(1608), 29, + ACTIONS(1618), 29, sym__ws, sym_comment, anon_sym_POUND_, @@ -25451,14 +25613,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [28358] = 3, + [28579] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1614), 3, + ACTIONS(1624), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(1612), 29, + ACTIONS(1622), 29, sym__ws, sym_comment, anon_sym_POUND_, @@ -25488,14 +25650,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [28398] = 3, + [28619] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1618), 3, + ACTIONS(1628), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(1616), 29, + ACTIONS(1626), 29, sym__ws, sym_comment, anon_sym_POUND_, @@ -25525,14 +25687,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [28438] = 3, + [28659] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1622), 3, + ACTIONS(1632), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(1620), 29, + ACTIONS(1630), 29, sym__ws, sym_comment, anon_sym_POUND_, @@ -25562,14 +25724,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [28478] = 3, + [28699] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1626), 3, + ACTIONS(1636), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(1624), 29, + ACTIONS(1634), 29, sym__ws, sym_comment, anon_sym_POUND_, @@ -25599,14 +25761,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [28518] = 3, + [28739] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1630), 3, + ACTIONS(1640), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(1628), 29, + ACTIONS(1638), 29, sym__ws, sym_comment, anon_sym_POUND_, @@ -25636,14 +25798,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [28558] = 3, + [28779] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1634), 3, + ACTIONS(1644), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(1632), 29, + ACTIONS(1642), 29, sym__ws, sym_comment, anon_sym_POUND_, @@ -25673,14 +25835,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [28598] = 3, + [28819] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1638), 3, + ACTIONS(1648), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(1636), 29, + ACTIONS(1646), 29, sym__ws, sym_comment, anon_sym_POUND_, @@ -25710,14 +25872,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [28638] = 3, + [28859] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1642), 3, + ACTIONS(1648), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(1640), 29, + ACTIONS(1646), 29, sym__ws, sym_comment, anon_sym_POUND_, @@ -25747,14 +25909,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [28678] = 3, + [28899] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1646), 3, + ACTIONS(1648), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(1644), 29, + ACTIONS(1646), 29, sym__ws, sym_comment, anon_sym_POUND_, @@ -25784,14 +25946,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [28718] = 3, + [28939] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1554), 3, + ACTIONS(1652), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(1552), 29, + ACTIONS(1650), 29, sym__ws, sym_comment, anon_sym_POUND_, @@ -25821,14 +25983,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [28758] = 3, + [28979] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1554), 3, + ACTIONS(1656), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(1552), 29, + ACTIONS(1654), 29, sym__ws, sym_comment, anon_sym_POUND_, @@ -25858,26 +26020,26 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [28798] = 7, + [29019] = 7, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1652), 1, + ACTIONS(1662), 1, anon_sym_loop, - STATE(31), 1, + STATE(21), 1, sym_defun_header, - STATE(112), 1, + STATE(178), 1, sym_defun_keyword, ACTIONS(59), 2, anon_sym_defun, anon_sym_defmacro, - ACTIONS(1650), 6, + ACTIONS(1660), 6, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - ACTIONS(1648), 20, + ACTIONS(1658), 20, sym__ws, sym_comment, anon_sym_POUND_, @@ -25898,26 +26060,26 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_COMMA_AT, - [28845] = 7, + [29066] = 7, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1654), 1, + ACTIONS(1664), 1, anon_sym_loop, - STATE(21), 1, + STATE(27), 1, sym_defun_header, - STATE(112), 1, + STATE(178), 1, sym_defun_keyword, ACTIONS(59), 2, anon_sym_defun, anon_sym_defmacro, - ACTIONS(1650), 6, + ACTIONS(1660), 6, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - ACTIONS(1648), 20, + ACTIONS(1658), 20, sym__ws, sym_comment, anon_sym_POUND_, @@ -25938,26 +26100,26 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_COMMA_AT, - [28892] = 7, + [29113] = 7, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1656), 1, + ACTIONS(1666), 1, anon_sym_loop, - STATE(39), 1, + STATE(38), 1, sym_defun_header, - STATE(112), 1, + STATE(178), 1, sym_defun_keyword, ACTIONS(59), 2, anon_sym_defun, anon_sym_defmacro, - ACTIONS(1650), 6, + ACTIONS(1660), 6, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - ACTIONS(1648), 20, + ACTIONS(1658), 20, sym__ws, sym_comment, anon_sym_POUND_, @@ -25978,26 +26140,26 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_COMMA_AT, - [28939] = 7, + [29160] = 7, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1658), 1, + ACTIONS(1668), 1, anon_sym_loop, - STATE(60), 1, + STATE(31), 1, sym_defun_header, - STATE(112), 1, + STATE(178), 1, sym_defun_keyword, ACTIONS(59), 2, anon_sym_defun, anon_sym_defmacro, - ACTIONS(1650), 6, + ACTIONS(1660), 6, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - ACTIONS(1648), 20, + ACTIONS(1658), 20, sym__ws, sym_comment, anon_sym_POUND_, @@ -26018,26 +26180,26 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_COMMA_AT, - [28986] = 7, + [29207] = 7, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1660), 1, + ACTIONS(1670), 1, anon_sym_loop, - STATE(17), 1, + STATE(59), 1, sym_defun_header, - STATE(112), 1, + STATE(178), 1, sym_defun_keyword, ACTIONS(59), 2, anon_sym_defun, anon_sym_defmacro, - ACTIONS(1650), 6, + ACTIONS(1660), 6, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - ACTIONS(1648), 20, + ACTIONS(1658), 20, sym__ws, sym_comment, anon_sym_POUND_, @@ -26058,26 +26220,26 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_COMMA_AT, - [29033] = 7, + [29254] = 7, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1662), 1, + ACTIONS(1672), 1, anon_sym_loop, - STATE(59), 1, + STATE(54), 1, sym_defun_header, - STATE(112), 1, + STATE(178), 1, sym_defun_keyword, ACTIONS(59), 2, anon_sym_defun, anon_sym_defmacro, - ACTIONS(1650), 6, + ACTIONS(1660), 6, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - ACTIONS(1648), 20, + ACTIONS(1658), 20, sym__ws, sym_comment, anon_sym_POUND_, @@ -26098,26 +26260,26 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_COMMA_AT, - [29080] = 7, + [29301] = 7, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1664), 1, + ACTIONS(1674), 1, anon_sym_loop, - STATE(34), 1, + STATE(57), 1, sym_defun_header, - STATE(112), 1, + STATE(178), 1, sym_defun_keyword, ACTIONS(59), 2, anon_sym_defun, anon_sym_defmacro, - ACTIONS(1650), 6, + ACTIONS(1660), 6, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - ACTIONS(1648), 20, + ACTIONS(1658), 20, sym__ws, sym_comment, anon_sym_POUND_, @@ -26138,10 +26300,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_COMMA_AT, - [29127] = 3, + [29348] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1614), 9, + ACTIONS(1608), 9, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, @@ -26151,7 +26313,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_loop, anon_sym_defun, anon_sym_defmacro, - ACTIONS(1612), 20, + ACTIONS(1606), 20, sym__ws, sym_comment, anon_sym_POUND_, @@ -26172,10 +26334,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_COMMA_AT, - [29164] = 3, + [29385] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1558), 9, + ACTIONS(1648), 9, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, @@ -26185,7 +26347,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_loop, anon_sym_defun, anon_sym_defmacro, - ACTIONS(1556), 20, + ACTIONS(1646), 20, sym__ws, sym_comment, anon_sym_POUND_, @@ -26206,10 +26368,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_COMMA_AT, - [29201] = 3, + [29422] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1566), 9, + ACTIONS(1560), 9, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, @@ -26219,7 +26381,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_loop, anon_sym_defun, anon_sym_defmacro, - ACTIONS(1564), 20, + ACTIONS(1558), 20, sym__ws, sym_comment, anon_sym_POUND_, @@ -26240,10 +26402,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_COMMA_AT, - [29238] = 3, + [29459] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1570), 9, + ACTIONS(1428), 9, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, @@ -26253,7 +26415,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_loop, anon_sym_defun, anon_sym_defmacro, - ACTIONS(1568), 20, + ACTIONS(1426), 20, sym__ws, sym_comment, anon_sym_POUND_, @@ -26274,10 +26436,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_COMMA_AT, - [29275] = 3, + [29496] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1578), 9, + ACTIONS(1568), 9, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, @@ -26287,7 +26449,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_loop, anon_sym_defun, anon_sym_defmacro, - ACTIONS(1576), 20, + ACTIONS(1566), 20, sym__ws, sym_comment, anon_sym_POUND_, @@ -26308,10 +26470,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_COMMA_AT, - [29312] = 3, + [29533] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1582), 9, + ACTIONS(1572), 9, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, @@ -26321,7 +26483,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_loop, anon_sym_defun, anon_sym_defmacro, - ACTIONS(1580), 20, + ACTIONS(1570), 20, sym__ws, sym_comment, anon_sym_POUND_, @@ -26342,10 +26504,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_COMMA_AT, - [29349] = 3, + [29570] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1586), 9, + ACTIONS(1580), 9, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, @@ -26355,7 +26517,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_loop, anon_sym_defun, anon_sym_defmacro, - ACTIONS(1584), 20, + ACTIONS(1578), 20, sym__ws, sym_comment, anon_sym_POUND_, @@ -26376,10 +26538,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_COMMA_AT, - [29386] = 3, + [29607] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1590), 9, + ACTIONS(1584), 9, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, @@ -26389,7 +26551,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_loop, anon_sym_defun, anon_sym_defmacro, - ACTIONS(1588), 20, + ACTIONS(1582), 20, sym__ws, sym_comment, anon_sym_POUND_, @@ -26410,10 +26572,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_COMMA_AT, - [29423] = 3, + [29644] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1590), 9, + ACTIONS(1584), 9, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, @@ -26423,7 +26585,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_loop, anon_sym_defun, anon_sym_defmacro, - ACTIONS(1588), 20, + ACTIONS(1582), 20, sym__ws, sym_comment, anon_sym_POUND_, @@ -26444,10 +26606,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_COMMA_AT, - [29460] = 3, + [29681] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1590), 9, + ACTIONS(1584), 9, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, @@ -26457,7 +26619,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_loop, anon_sym_defun, anon_sym_defmacro, - ACTIONS(1588), 20, + ACTIONS(1582), 20, sym__ws, sym_comment, anon_sym_POUND_, @@ -26478,10 +26640,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_COMMA_AT, - [29497] = 3, + [29718] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1594), 9, + ACTIONS(1588), 9, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, @@ -26491,7 +26653,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_loop, anon_sym_defun, anon_sym_defmacro, - ACTIONS(1592), 20, + ACTIONS(1586), 20, sym__ws, sym_comment, anon_sym_POUND_, @@ -26512,10 +26674,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_COMMA_AT, - [29534] = 3, + [29755] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1598), 9, + ACTIONS(1592), 9, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, @@ -26525,7 +26687,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_loop, anon_sym_defun, anon_sym_defmacro, - ACTIONS(1596), 20, + ACTIONS(1590), 20, sym__ws, sym_comment, anon_sym_POUND_, @@ -26546,10 +26708,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_COMMA_AT, - [29571] = 3, + [29792] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1602), 9, + ACTIONS(1596), 9, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, @@ -26559,7 +26721,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_loop, anon_sym_defun, anon_sym_defmacro, - ACTIONS(1600), 20, + ACTIONS(1594), 20, sym__ws, sym_comment, anon_sym_POUND_, @@ -26580,10 +26742,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_COMMA_AT, - [29608] = 3, + [29829] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1606), 9, + ACTIONS(1600), 9, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, @@ -26593,7 +26755,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_loop, anon_sym_defun, anon_sym_defmacro, - ACTIONS(1604), 20, + ACTIONS(1598), 20, sym__ws, sym_comment, anon_sym_POUND_, @@ -26614,10 +26776,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_COMMA_AT, - [29645] = 3, + [29866] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1610), 9, + ACTIONS(1604), 9, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, @@ -26627,7 +26789,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_loop, anon_sym_defun, anon_sym_defmacro, - ACTIONS(1608), 20, + ACTIONS(1602), 20, sym__ws, sym_comment, anon_sym_POUND_, @@ -26648,10 +26810,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_COMMA_AT, - [29682] = 3, + [29903] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1618), 9, + ACTIONS(1612), 9, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, @@ -26661,7 +26823,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_loop, anon_sym_defun, anon_sym_defmacro, - ACTIONS(1616), 20, + ACTIONS(1610), 20, sym__ws, sym_comment, anon_sym_POUND_, @@ -26682,10 +26844,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_COMMA_AT, - [29719] = 3, + [29940] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1626), 9, + ACTIONS(1620), 9, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, @@ -26695,7 +26857,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_loop, anon_sym_defun, anon_sym_defmacro, - ACTIONS(1624), 20, + ACTIONS(1618), 20, sym__ws, sym_comment, anon_sym_POUND_, @@ -26716,10 +26878,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_COMMA_AT, - [29756] = 3, + [29977] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1634), 9, + ACTIONS(1628), 9, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, @@ -26729,7 +26891,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_loop, anon_sym_defun, anon_sym_defmacro, - ACTIONS(1632), 20, + ACTIONS(1626), 20, sym__ws, sym_comment, anon_sym_POUND_, @@ -26750,10 +26912,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_COMMA_AT, - [29793] = 3, + [30014] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1646), 9, + ACTIONS(1636), 9, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, @@ -26763,7 +26925,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_loop, anon_sym_defun, anon_sym_defmacro, - ACTIONS(1644), 20, + ACTIONS(1634), 20, sym__ws, sym_comment, anon_sym_POUND_, @@ -26784,10 +26946,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_COMMA_AT, - [29830] = 3, + [30051] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1554), 9, + ACTIONS(1648), 9, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, @@ -26797,7 +26959,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_loop, anon_sym_defun, anon_sym_defmacro, - ACTIONS(1552), 20, + ACTIONS(1646), 20, sym__ws, sym_comment, anon_sym_POUND_, @@ -26818,10 +26980,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_COMMA_AT, - [29867] = 3, + [30088] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1554), 9, + ACTIONS(1648), 9, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, @@ -26831,7 +26993,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_loop, anon_sym_defun, anon_sym_defmacro, - ACTIONS(1552), 20, + ACTIONS(1646), 20, sym__ws, sym_comment, anon_sym_POUND_, @@ -26852,10 +27014,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_COMMA_AT, - [29904] = 3, + [30125] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1554), 9, + ACTIONS(1652), 9, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, @@ -26865,7 +27027,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_loop, anon_sym_defun, anon_sym_defmacro, - ACTIONS(1552), 20, + ACTIONS(1650), 20, sym__ws, sym_comment, anon_sym_POUND_, @@ -26886,10 +27048,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_COMMA_AT, - [29941] = 3, + [30162] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1422), 9, + ACTIONS(1440), 9, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, @@ -26899,7 +27061,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_loop, anon_sym_defun, anon_sym_defmacro, - ACTIONS(1420), 20, + ACTIONS(1438), 20, sym__ws, sym_comment, anon_sym_POUND_, @@ -26920,10 +27082,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_COMMA_AT, - [29978] = 3, + [30199] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1438), 9, + ACTIONS(1444), 9, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, @@ -26933,7 +27095,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_loop, anon_sym_defun, anon_sym_defmacro, - ACTIONS(1436), 20, + ACTIONS(1442), 20, sym__ws, sym_comment, anon_sym_POUND_, @@ -26954,10 +27116,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_COMMA_AT, - [30015] = 3, + [30236] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1450), 9, + ACTIONS(1644), 9, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, @@ -26967,7 +27129,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_loop, anon_sym_defun, anon_sym_defmacro, - ACTIONS(1448), 20, + ACTIONS(1642), 20, sym__ws, sym_comment, anon_sym_POUND_, @@ -26988,10 +27150,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_COMMA_AT, - [30052] = 3, + [30273] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1518), 9, + ACTIONS(1564), 9, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, @@ -27001,7 +27163,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_loop, anon_sym_defun, anon_sym_defmacro, - ACTIONS(1516), 20, + ACTIONS(1562), 20, sym__ws, sym_comment, anon_sym_POUND_, @@ -27022,10 +27184,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_COMMA_AT, - [30089] = 3, + [30310] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1414), 9, + ACTIONS(1436), 9, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, @@ -27035,7 +27197,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_loop, anon_sym_defun, anon_sym_defmacro, - ACTIONS(1412), 20, + ACTIONS(1434), 20, sym__ws, sym_comment, anon_sym_POUND_, @@ -27056,10 +27218,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_COMMA_AT, - [30126] = 3, + [30347] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1522), 9, + ACTIONS(1524), 9, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, @@ -27069,7 +27231,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_loop, anon_sym_defun, anon_sym_defmacro, - ACTIONS(1520), 20, + ACTIONS(1522), 20, sym__ws, sym_comment, anon_sym_POUND_, @@ -27090,10 +27252,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_COMMA_AT, - [30163] = 3, + [30384] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1526), 9, + ACTIONS(1452), 9, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, @@ -27103,7 +27265,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_loop, anon_sym_defun, anon_sym_defmacro, - ACTIONS(1524), 20, + ACTIONS(1450), 20, sym__ws, sym_comment, anon_sym_POUND_, @@ -27124,10 +27286,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_COMMA_AT, - [30200] = 3, + [30421] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1454), 9, + ACTIONS(1460), 9, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, @@ -27137,7 +27299,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_loop, anon_sym_defun, anon_sym_defmacro, - ACTIONS(1452), 20, + ACTIONS(1458), 20, sym__ws, sym_comment, anon_sym_POUND_, @@ -27158,10 +27320,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_COMMA_AT, - [30237] = 3, + [30458] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1458), 9, + ACTIONS(1464), 9, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, @@ -27171,7 +27333,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_loop, anon_sym_defun, anon_sym_defmacro, - ACTIONS(1456), 20, + ACTIONS(1462), 20, sym__ws, sym_comment, anon_sym_POUND_, @@ -27192,10 +27354,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_COMMA_AT, - [30274] = 3, + [30495] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1462), 9, + ACTIONS(1678), 9, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, @@ -27205,7 +27367,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_loop, anon_sym_defun, anon_sym_defmacro, - ACTIONS(1460), 20, + ACTIONS(1676), 20, sym__ws, sym_comment, anon_sym_POUND_, @@ -27226,10 +27388,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_COMMA_AT, - [30311] = 3, + [30532] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1668), 9, + ACTIONS(1468), 9, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, @@ -27239,7 +27401,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_loop, anon_sym_defun, anon_sym_defmacro, - ACTIONS(1666), 20, + ACTIONS(1466), 20, sym__ws, sym_comment, anon_sym_POUND_, @@ -27260,10 +27422,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_COMMA_AT, - [30348] = 3, + [30569] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1530), 9, + ACTIONS(1472), 9, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, @@ -27273,7 +27435,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_loop, anon_sym_defun, anon_sym_defmacro, - ACTIONS(1528), 20, + ACTIONS(1470), 20, sym__ws, sym_comment, anon_sym_POUND_, @@ -27294,10 +27456,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_COMMA_AT, - [30385] = 3, + [30606] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1466), 9, + ACTIONS(1476), 9, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, @@ -27307,7 +27469,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_loop, anon_sym_defun, anon_sym_defmacro, - ACTIONS(1464), 20, + ACTIONS(1474), 20, sym__ws, sym_comment, anon_sym_POUND_, @@ -27328,10 +27490,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_COMMA_AT, - [30422] = 3, + [30643] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1470), 9, + ACTIONS(1480), 9, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, @@ -27341,7 +27503,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_loop, anon_sym_defun, anon_sym_defmacro, - ACTIONS(1468), 20, + ACTIONS(1478), 20, sym__ws, sym_comment, anon_sym_POUND_, @@ -27362,10 +27524,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_COMMA_AT, - [30459] = 3, + [30680] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1474), 9, + ACTIONS(1484), 9, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, @@ -27375,7 +27537,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_loop, anon_sym_defun, anon_sym_defmacro, - ACTIONS(1472), 20, + ACTIONS(1482), 20, sym__ws, sym_comment, anon_sym_POUND_, @@ -27396,10 +27558,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_COMMA_AT, - [30496] = 3, + [30717] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1478), 9, + ACTIONS(1488), 9, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, @@ -27409,7 +27571,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_loop, anon_sym_defun, anon_sym_defmacro, - ACTIONS(1476), 20, + ACTIONS(1486), 20, sym__ws, sym_comment, anon_sym_POUND_, @@ -27430,10 +27592,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_COMMA_AT, - [30533] = 3, + [30754] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1482), 9, + ACTIONS(1520), 9, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, @@ -27443,7 +27605,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_loop, anon_sym_defun, anon_sym_defmacro, - ACTIONS(1480), 20, + ACTIONS(1518), 20, sym__ws, sym_comment, anon_sym_POUND_, @@ -27464,10 +27626,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_COMMA_AT, - [30570] = 3, + [30791] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1486), 9, + ACTIONS(1492), 9, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, @@ -27477,7 +27639,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_loop, anon_sym_defun, anon_sym_defmacro, - ACTIONS(1484), 20, + ACTIONS(1490), 20, sym__ws, sym_comment, anon_sym_POUND_, @@ -27498,10 +27660,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_COMMA_AT, - [30607] = 3, + [30828] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1490), 9, + ACTIONS(1424), 9, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, @@ -27511,7 +27673,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_loop, anon_sym_defun, anon_sym_defmacro, - ACTIONS(1488), 20, + ACTIONS(1422), 20, sym__ws, sym_comment, anon_sym_POUND_, @@ -27532,10 +27694,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_COMMA_AT, - [30644] = 3, + [30865] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1534), 9, + ACTIONS(1496), 9, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, @@ -27545,7 +27707,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_loop, anon_sym_defun, anon_sym_defmacro, - ACTIONS(1532), 20, + ACTIONS(1494), 20, sym__ws, sym_comment, anon_sym_POUND_, @@ -27566,10 +27728,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_COMMA_AT, - [30681] = 3, + [30902] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1494), 9, + ACTIONS(1500), 9, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, @@ -27579,7 +27741,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_loop, anon_sym_defun, anon_sym_defmacro, - ACTIONS(1492), 20, + ACTIONS(1498), 20, sym__ws, sym_comment, anon_sym_POUND_, @@ -27600,10 +27762,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_COMMA_AT, - [30718] = 3, + [30939] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1538), 9, + ACTIONS(1528), 9, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, @@ -27613,7 +27775,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_loop, anon_sym_defun, anon_sym_defmacro, - ACTIONS(1536), 20, + ACTIONS(1526), 20, sym__ws, sym_comment, anon_sym_POUND_, @@ -27634,10 +27796,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_COMMA_AT, - [30755] = 3, + [30976] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1498), 9, + ACTIONS(1504), 9, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, @@ -27647,7 +27809,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_loop, anon_sym_defun, anon_sym_defmacro, - ACTIONS(1496), 20, + ACTIONS(1502), 20, sym__ws, sym_comment, anon_sym_POUND_, @@ -27668,10 +27830,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_COMMA_AT, - [30792] = 3, + [31013] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1542), 9, + ACTIONS(1508), 9, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, @@ -27681,7 +27843,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_loop, anon_sym_defun, anon_sym_defmacro, - ACTIONS(1540), 20, + ACTIONS(1506), 20, sym__ws, sym_comment, anon_sym_POUND_, @@ -27702,10 +27864,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_COMMA_AT, - [30829] = 3, + [31050] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1502), 9, + ACTIONS(1532), 9, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, @@ -27715,7 +27877,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_loop, anon_sym_defun, anon_sym_defmacro, - ACTIONS(1500), 20, + ACTIONS(1530), 20, sym__ws, sym_comment, anon_sym_POUND_, @@ -27736,10 +27898,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_COMMA_AT, - [30866] = 3, + [31087] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1506), 9, + ACTIONS(1512), 9, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, @@ -27749,7 +27911,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_loop, anon_sym_defun, anon_sym_defmacro, - ACTIONS(1504), 20, + ACTIONS(1510), 20, sym__ws, sym_comment, anon_sym_POUND_, @@ -27770,10 +27932,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_COMMA_AT, - [30903] = 3, + [31124] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1546), 9, + ACTIONS(1536), 9, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, @@ -27783,7 +27945,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_loop, anon_sym_defun, anon_sym_defmacro, - ACTIONS(1544), 20, + ACTIONS(1534), 20, sym__ws, sym_comment, anon_sym_POUND_, @@ -27804,10 +27966,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_COMMA_AT, - [30940] = 3, + [31161] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1510), 9, + ACTIONS(1516), 9, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, @@ -27817,7 +27979,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_loop, anon_sym_defun, anon_sym_defmacro, - ACTIONS(1508), 20, + ACTIONS(1514), 20, sym__ws, sym_comment, anon_sym_POUND_, @@ -27838,10 +28000,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_COMMA_AT, - [30977] = 3, + [31198] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1550), 9, + ACTIONS(1540), 9, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, @@ -27851,7 +28013,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_loop, anon_sym_defun, anon_sym_defmacro, - ACTIONS(1548), 20, + ACTIONS(1538), 20, sym__ws, sym_comment, anon_sym_POUND_, @@ -27872,10 +28034,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_COMMA_AT, - [31014] = 3, + [31235] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1514), 9, + ACTIONS(1544), 9, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, @@ -27885,7 +28047,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_loop, anon_sym_defun, anon_sym_defmacro, - ACTIONS(1512), 20, + ACTIONS(1542), 20, sym__ws, sym_comment, anon_sym_POUND_, @@ -27906,10 +28068,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_COMMA_AT, - [31051] = 3, + [31272] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1418), 9, + ACTIONS(1548), 9, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, @@ -27919,7 +28081,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_loop, anon_sym_defun, anon_sym_defmacro, - ACTIONS(1416), 20, + ACTIONS(1546), 20, sym__ws, sym_comment, anon_sym_POUND_, @@ -27940,10 +28102,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_COMMA_AT, - [31088] = 3, + [31309] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1434), 9, + ACTIONS(1552), 9, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, @@ -27953,7 +28115,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_loop, anon_sym_defun, anon_sym_defmacro, - ACTIONS(1432), 20, + ACTIONS(1550), 20, sym__ws, sym_comment, anon_sym_POUND_, @@ -27974,10 +28136,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_COMMA_AT, - [31125] = 3, + [31346] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1426), 9, + ACTIONS(1556), 9, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, @@ -27987,7 +28149,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_loop, anon_sym_defun, anon_sym_defmacro, - ACTIONS(1424), 20, + ACTIONS(1554), 20, sym__ws, sym_comment, anon_sym_POUND_, @@ -28008,10 +28170,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_COMMA_AT, - [31162] = 3, + [31383] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1642), 9, + ACTIONS(1656), 9, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, @@ -28021,7 +28183,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_loop, anon_sym_defun, anon_sym_defmacro, - ACTIONS(1640), 20, + ACTIONS(1654), 20, sym__ws, sym_comment, anon_sym_POUND_, @@ -28042,10 +28204,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_COMMA_AT, - [31199] = 3, + [31420] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1672), 9, + ACTIONS(1640), 9, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, @@ -28055,7 +28217,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_loop, anon_sym_defun, anon_sym_defmacro, - ACTIONS(1670), 20, + ACTIONS(1638), 20, sym__ws, sym_comment, anon_sym_POUND_, @@ -28076,10 +28238,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_COMMA_AT, - [31236] = 3, + [31457] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1638), 9, + ACTIONS(1632), 9, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, @@ -28089,7 +28251,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_loop, anon_sym_defun, anon_sym_defmacro, - ACTIONS(1636), 20, + ACTIONS(1630), 20, sym__ws, sym_comment, anon_sym_POUND_, @@ -28110,10 +28272,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_COMMA_AT, - [31273] = 3, + [31494] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1630), 9, + ACTIONS(1682), 9, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, @@ -28123,7 +28285,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_loop, anon_sym_defun, anon_sym_defmacro, - ACTIONS(1628), 20, + ACTIONS(1680), 20, sym__ws, sym_comment, anon_sym_POUND_, @@ -28144,10 +28306,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_COMMA_AT, - [31310] = 3, + [31531] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1622), 9, + ACTIONS(1624), 9, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, @@ -28157,7 +28319,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_loop, anon_sym_defun, anon_sym_defmacro, - ACTIONS(1620), 20, + ACTIONS(1622), 20, sym__ws, sym_comment, anon_sym_POUND_, @@ -28178,10 +28340,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_COMMA_AT, - [31347] = 3, + [31568] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1574), 9, + ACTIONS(1616), 9, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, @@ -28191,7 +28353,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_loop, anon_sym_defun, anon_sym_defmacro, - ACTIONS(1572), 20, + ACTIONS(1614), 20, sym__ws, sym_comment, anon_sym_POUND_, @@ -28212,10 +28374,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_COMMA_AT, - [31384] = 3, + [31605] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1562), 9, + ACTIONS(1576), 9, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, @@ -28225,7 +28387,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_loop, anon_sym_defun, anon_sym_defmacro, - ACTIONS(1560), 20, + ACTIONS(1574), 20, sym__ws, sym_comment, anon_sym_POUND_, @@ -28246,17 +28408,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_COMMA_AT, - [31421] = 3, + [31642] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1668), 6, + ACTIONS(1424), 6, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - ACTIONS(1666), 22, + ACTIONS(1422), 22, ts_builtin_sym_end, sym__ws, sym_comment, @@ -28279,50 +28441,59 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_COMMA_AT, - [31457] = 3, + [31678] = 12, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1534), 6, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - ACTIONS(1532), 22, - ts_builtin_sym_end, - sym__ws, - sym_comment, + ACTIONS(1686), 1, anon_sym_POUND_, - sym_num_lit, - sym_kwd_lit, - aux_sym_str_lit_token1, - sym_char_lit, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LPAREN, + ACTIONS(1688), 1, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_POUND0A, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_POUND_POUND, - anon_sym_POUND_EQ, - anon_sym_AT, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - [31493] = 3, + ACTIONS(1690), 1, + sym_accumulation_verb, + ACTIONS(1694), 1, + anon_sym_with, + ACTIONS(1696), 1, + anon_sym_do, + ACTIONS(1684), 2, + sym__ws, + sym_comment, + ACTIONS(1692), 2, + anon_sym_for, + anon_sym_and, + ACTIONS(1700), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(434), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(1698), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(724), 6, + sym_for_clause, + sym_with_clause, + sym_do_clause, + sym_condition_clause, + sym_accumulation_clause, + sym_termination_clause, + [31732] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1450), 6, + ACTIONS(1628), 6, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - ACTIONS(1448), 22, + ACTIONS(1626), 22, ts_builtin_sym_end, sym__ws, sym_comment, @@ -28345,17 +28516,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_COMMA_AT, - [31529] = 3, + [31768] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1566), 6, + ACTIONS(1464), 6, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - ACTIONS(1564), 22, + ACTIONS(1462), 22, ts_builtin_sym_end, sym__ws, sym_comment, @@ -28378,17 +28549,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_COMMA_AT, - [31565] = 3, + [31804] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1634), 6, + ACTIONS(1620), 6, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - ACTIONS(1632), 22, + ACTIONS(1618), 22, ts_builtin_sym_end, sym__ws, sym_comment, @@ -28411,59 +28582,59 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_COMMA_AT, - [31601] = 12, + [31840] = 12, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1676), 1, + ACTIONS(1686), 1, anon_sym_POUND_, - ACTIONS(1678), 1, - anon_sym_RPAREN, - ACTIONS(1680), 1, + ACTIONS(1690), 1, sym_accumulation_verb, - ACTIONS(1684), 1, + ACTIONS(1694), 1, anon_sym_with, - ACTIONS(1686), 1, + ACTIONS(1696), 1, anon_sym_do, - ACTIONS(1674), 2, - sym__ws, - sym_comment, - ACTIONS(1682), 2, + ACTIONS(1704), 1, + anon_sym_RPAREN, + ACTIONS(1692), 2, anon_sym_for, anon_sym_and, - ACTIONS(1690), 3, + ACTIONS(1702), 2, + sym__ws, + sym_comment, + ACTIONS(1700), 3, anon_sym_finally, anon_sym_return, anon_sym_initially, - STATE(419), 4, + STATE(435), 4, sym__gap, sym_dis_expr, sym_loop_clause, aux_sym_loop_macro_repeat1, - ACTIONS(1688), 6, + ACTIONS(1698), 6, anon_sym_when, anon_sym_if, anon_sym_unless, anon_sym_always, anon_sym_thereis, anon_sym_never, - STATE(714), 6, + STATE(724), 6, sym_for_clause, sym_with_clause, sym_do_clause, sym_condition_clause, sym_accumulation_clause, sym_termination_clause, - [31655] = 3, + [31894] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1626), 6, + ACTIONS(1460), 6, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - ACTIONS(1624), 22, + ACTIONS(1458), 22, ts_builtin_sym_end, sym__ws, sym_comment, @@ -28486,218 +28657,176 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_COMMA_AT, - [31691] = 12, + [31930] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1676), 1, - anon_sym_POUND_, - ACTIONS(1680), 1, - sym_accumulation_verb, - ACTIONS(1684), 1, - anon_sym_with, - ACTIONS(1686), 1, - anon_sym_do, - ACTIONS(1692), 1, - anon_sym_RPAREN, - ACTIONS(1674), 2, + ACTIONS(1452), 6, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + ACTIONS(1450), 22, + ts_builtin_sym_end, sym__ws, sym_comment, - ACTIONS(1682), 2, - anon_sym_for, - anon_sym_and, - ACTIONS(1690), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(419), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(1688), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(714), 6, - sym_for_clause, - sym_with_clause, - sym_do_clause, - sym_condition_clause, - sym_accumulation_clause, - sym_termination_clause, - [31745] = 12, + anon_sym_POUND_, + sym_num_lit, + sym_kwd_lit, + aux_sym_str_lit_token1, + sym_char_lit, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_POUND0A, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_POUND_POUND, + anon_sym_POUND_EQ, + anon_sym_AT, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA_AT, + [31966] = 12, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1676), 1, + ACTIONS(1686), 1, anon_sym_POUND_, - ACTIONS(1680), 1, + ACTIONS(1690), 1, sym_accumulation_verb, - ACTIONS(1684), 1, + ACTIONS(1694), 1, anon_sym_with, - ACTIONS(1686), 1, - anon_sym_do, ACTIONS(1696), 1, + anon_sym_do, + ACTIONS(1708), 1, anon_sym_RPAREN, - ACTIONS(1682), 2, + ACTIONS(1692), 2, anon_sym_for, anon_sym_and, - ACTIONS(1694), 2, + ACTIONS(1706), 2, sym__ws, sym_comment, - ACTIONS(1690), 3, + ACTIONS(1700), 3, anon_sym_finally, anon_sym_return, anon_sym_initially, - STATE(395), 4, + STATE(425), 4, sym__gap, sym_dis_expr, sym_loop_clause, aux_sym_loop_macro_repeat1, - ACTIONS(1688), 6, + ACTIONS(1698), 6, anon_sym_when, anon_sym_if, anon_sym_unless, anon_sym_always, anon_sym_thereis, anon_sym_never, - STATE(714), 6, + STATE(724), 6, sym_for_clause, sym_with_clause, sym_do_clause, sym_condition_clause, sym_accumulation_clause, sym_termination_clause, - [31799] = 12, + [32020] = 12, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1676), 1, + ACTIONS(1686), 1, anon_sym_POUND_, - ACTIONS(1680), 1, + ACTIONS(1690), 1, sym_accumulation_verb, - ACTIONS(1684), 1, + ACTIONS(1694), 1, anon_sym_with, - ACTIONS(1686), 1, + ACTIONS(1696), 1, anon_sym_do, - ACTIONS(1700), 1, + ACTIONS(1704), 1, anon_sym_RPAREN, - ACTIONS(1682), 2, + ACTIONS(1692), 2, anon_sym_for, anon_sym_and, - ACTIONS(1698), 2, + ACTIONS(1706), 2, sym__ws, sym_comment, - ACTIONS(1690), 3, + ACTIONS(1700), 3, anon_sym_finally, anon_sym_return, anon_sym_initially, - STATE(374), 4, + STATE(425), 4, sym__gap, sym_dis_expr, sym_loop_clause, aux_sym_loop_macro_repeat1, - ACTIONS(1688), 6, + ACTIONS(1698), 6, anon_sym_when, anon_sym_if, anon_sym_unless, anon_sym_always, anon_sym_thereis, anon_sym_never, - STATE(714), 6, + STATE(724), 6, sym_for_clause, sym_with_clause, sym_do_clause, sym_condition_clause, sym_accumulation_clause, sym_termination_clause, - [31853] = 12, + [32074] = 12, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1676), 1, + ACTIONS(1686), 1, anon_sym_POUND_, - ACTIONS(1680), 1, + ACTIONS(1690), 1, sym_accumulation_verb, - ACTIONS(1684), 1, + ACTIONS(1694), 1, anon_sym_with, - ACTIONS(1686), 1, + ACTIONS(1696), 1, anon_sym_do, - ACTIONS(1702), 1, + ACTIONS(1712), 1, anon_sym_RPAREN, - ACTIONS(1674), 2, - sym__ws, - sym_comment, - ACTIONS(1682), 2, + ACTIONS(1692), 2, anon_sym_for, anon_sym_and, - ACTIONS(1690), 3, + ACTIONS(1710), 2, + sym__ws, + sym_comment, + ACTIONS(1700), 3, anon_sym_finally, anon_sym_return, anon_sym_initially, - STATE(419), 4, + STATE(378), 4, sym__gap, sym_dis_expr, sym_loop_clause, aux_sym_loop_macro_repeat1, - ACTIONS(1688), 6, + ACTIONS(1698), 6, anon_sym_when, anon_sym_if, anon_sym_unless, anon_sym_always, anon_sym_thereis, anon_sym_never, - STATE(714), 6, + STATE(724), 6, sym_for_clause, sym_with_clause, sym_do_clause, sym_condition_clause, sym_accumulation_clause, sym_termination_clause, - [31907] = 3, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(1618), 6, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - ACTIONS(1616), 22, - ts_builtin_sym_end, - sym__ws, - sym_comment, - anon_sym_POUND_, - sym_num_lit, - sym_kwd_lit, - aux_sym_str_lit_token1, - sym_char_lit, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_POUND0A, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_POUND_POUND, - anon_sym_POUND_EQ, - anon_sym_AT, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - [31943] = 3, + [32128] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1454), 6, + ACTIONS(1678), 6, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - ACTIONS(1452), 22, + ACTIONS(1676), 22, ts_builtin_sym_end, sym__ws, sym_comment, @@ -28720,125 +28849,59 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_COMMA_AT, - [31979] = 3, + [32164] = 12, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1422), 6, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - ACTIONS(1420), 22, - ts_builtin_sym_end, - sym__ws, - sym_comment, - anon_sym_POUND_, - sym_num_lit, - sym_kwd_lit, - aux_sym_str_lit_token1, - sym_char_lit, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_POUND0A, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_POUND_POUND, - anon_sym_POUND_EQ, - anon_sym_AT, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - [32015] = 3, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(1554), 6, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - ACTIONS(1552), 22, - ts_builtin_sym_end, - sym__ws, - sym_comment, - anon_sym_POUND_, - sym_num_lit, - sym_kwd_lit, - aux_sym_str_lit_token1, - sym_char_lit, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_POUND0A, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_POUND_POUND, - anon_sym_POUND_EQ, - anon_sym_AT, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - [32051] = 12, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(1676), 1, + ACTIONS(1686), 1, anon_sym_POUND_, - ACTIONS(1680), 1, + ACTIONS(1690), 1, sym_accumulation_verb, - ACTIONS(1684), 1, + ACTIONS(1694), 1, anon_sym_with, - ACTIONS(1686), 1, + ACTIONS(1696), 1, anon_sym_do, - ACTIONS(1704), 1, + ACTIONS(1716), 1, anon_sym_RPAREN, - ACTIONS(1674), 2, - sym__ws, - sym_comment, - ACTIONS(1682), 2, + ACTIONS(1692), 2, anon_sym_for, anon_sym_and, - ACTIONS(1690), 3, + ACTIONS(1714), 2, + sym__ws, + sym_comment, + ACTIONS(1700), 3, anon_sym_finally, anon_sym_return, anon_sym_initially, - STATE(419), 4, + STATE(405), 4, sym__gap, sym_dis_expr, sym_loop_clause, aux_sym_loop_macro_repeat1, - ACTIONS(1688), 6, + ACTIONS(1698), 6, anon_sym_when, anon_sym_if, anon_sym_unless, anon_sym_always, anon_sym_thereis, anon_sym_never, - STATE(714), 6, + STATE(724), 6, sym_for_clause, sym_with_clause, sym_do_clause, sym_condition_clause, sym_accumulation_clause, sym_termination_clause, - [32105] = 3, + [32218] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1614), 6, + ACTIONS(1652), 6, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - ACTIONS(1612), 22, + ACTIONS(1650), 22, ts_builtin_sym_end, sym__ws, sym_comment, @@ -28861,17 +28924,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_COMMA_AT, - [32141] = 3, + [32254] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1458), 6, + ACTIONS(1532), 6, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - ACTIONS(1456), 22, + ACTIONS(1530), 22, ts_builtin_sym_end, sym__ws, sym_comment, @@ -28894,17 +28957,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_COMMA_AT, - [32177] = 3, + [32290] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1510), 6, + ACTIONS(1648), 6, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - ACTIONS(1508), 22, + ACTIONS(1646), 22, ts_builtin_sym_end, sym__ws, sym_comment, @@ -28927,17 +28990,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_COMMA_AT, - [32213] = 3, + [32326] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1498), 6, + ACTIONS(1608), 6, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - ACTIONS(1496), 22, + ACTIONS(1606), 22, ts_builtin_sym_end, sym__ws, sym_comment, @@ -28960,59 +29023,134 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_COMMA_AT, - [32249] = 12, + [32362] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1676), 1, + ACTIONS(1488), 6, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + ACTIONS(1486), 22, + ts_builtin_sym_end, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(1680), 1, + sym_num_lit, + sym_kwd_lit, + aux_sym_str_lit_token1, + sym_char_lit, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_POUND0A, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_POUND_POUND, + anon_sym_POUND_EQ, + anon_sym_AT, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA_AT, + [32398] = 12, + ACTIONS(3), 1, + sym_block_comment, + ACTIONS(1686), 1, + anon_sym_POUND_, + ACTIONS(1690), 1, sym_accumulation_verb, - ACTIONS(1684), 1, + ACTIONS(1694), 1, anon_sym_with, - ACTIONS(1686), 1, + ACTIONS(1696), 1, anon_sym_do, - ACTIONS(1708), 1, + ACTIONS(1718), 1, anon_sym_RPAREN, - ACTIONS(1682), 2, + ACTIONS(1692), 2, anon_sym_for, anon_sym_and, ACTIONS(1706), 2, sym__ws, sym_comment, - ACTIONS(1690), 3, + ACTIONS(1700), 3, anon_sym_finally, anon_sym_return, anon_sym_initially, - STATE(446), 4, + STATE(425), 4, sym__gap, sym_dis_expr, sym_loop_clause, aux_sym_loop_macro_repeat1, - ACTIONS(1688), 6, + ACTIONS(1698), 6, anon_sym_when, anon_sym_if, anon_sym_unless, anon_sym_always, anon_sym_thereis, anon_sym_never, - STATE(714), 6, + STATE(724), 6, sym_for_clause, sym_with_clause, sym_do_clause, sym_condition_clause, sym_accumulation_clause, sym_termination_clause, - [32303] = 3, + [32452] = 12, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1610), 6, + ACTIONS(1686), 1, + anon_sym_POUND_, + ACTIONS(1690), 1, + sym_accumulation_verb, + ACTIONS(1694), 1, + anon_sym_with, + ACTIONS(1696), 1, + anon_sym_do, + ACTIONS(1722), 1, + anon_sym_RPAREN, + ACTIONS(1692), 2, + anon_sym_for, + anon_sym_and, + ACTIONS(1720), 2, + sym__ws, + sym_comment, + ACTIONS(1700), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(377), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(1698), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(724), 6, + sym_for_clause, + sym_with_clause, + sym_do_clause, + sym_condition_clause, + sym_accumulation_clause, + sym_termination_clause, + [32506] = 3, + ACTIONS(3), 1, + sym_block_comment, + ACTIONS(1492), 6, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - ACTIONS(1608), 22, + ACTIONS(1490), 22, ts_builtin_sym_end, sym__ws, sym_comment, @@ -29035,17 +29173,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_COMMA_AT, - [32339] = 3, + [32542] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1554), 6, + ACTIONS(1648), 6, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - ACTIONS(1552), 22, + ACTIONS(1646), 22, ts_builtin_sym_end, sym__ws, sym_comment, @@ -29068,17 +29206,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_COMMA_AT, - [32375] = 3, + [32578] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1462), 6, + ACTIONS(1496), 6, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - ACTIONS(1460), 22, + ACTIONS(1494), 22, ts_builtin_sym_end, sym__ws, sym_comment, @@ -29101,17 +29239,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_COMMA_AT, - [32411] = 3, + [32614] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1554), 6, + ACTIONS(1648), 6, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - ACTIONS(1552), 22, + ACTIONS(1646), 22, ts_builtin_sym_end, sym__ws, sym_comment, @@ -29134,17 +29272,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_COMMA_AT, - [32447] = 3, + [32650] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1606), 6, + ACTIONS(1604), 6, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - ACTIONS(1604), 22, + ACTIONS(1602), 22, ts_builtin_sym_end, sym__ws, sym_comment, @@ -29167,59 +29305,59 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_COMMA_AT, - [32483] = 12, + [32686] = 12, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1676), 1, + ACTIONS(1686), 1, anon_sym_POUND_, - ACTIONS(1680), 1, + ACTIONS(1690), 1, sym_accumulation_verb, - ACTIONS(1684), 1, + ACTIONS(1694), 1, anon_sym_with, - ACTIONS(1686), 1, + ACTIONS(1696), 1, anon_sym_do, - ACTIONS(1710), 1, + ACTIONS(1722), 1, anon_sym_RPAREN, - ACTIONS(1674), 2, - sym__ws, - sym_comment, - ACTIONS(1682), 2, + ACTIONS(1692), 2, anon_sym_for, anon_sym_and, - ACTIONS(1690), 3, + ACTIONS(1706), 2, + sym__ws, + sym_comment, + ACTIONS(1700), 3, anon_sym_finally, anon_sym_return, anon_sym_initially, - STATE(419), 4, + STATE(425), 4, sym__gap, sym_dis_expr, sym_loop_clause, aux_sym_loop_macro_repeat1, - ACTIONS(1688), 6, + ACTIONS(1698), 6, anon_sym_when, anon_sym_if, anon_sym_unless, anon_sym_always, anon_sym_thereis, anon_sym_never, - STATE(714), 6, + STATE(724), 6, sym_for_clause, sym_with_clause, sym_do_clause, sym_condition_clause, sym_accumulation_clause, sym_termination_clause, - [32537] = 3, + [32740] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1602), 6, + ACTIONS(1560), 6, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - ACTIONS(1600), 22, + ACTIONS(1558), 22, ts_builtin_sym_end, sym__ws, sym_comment, @@ -29242,59 +29380,59 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_COMMA_AT, - [32573] = 12, + [32776] = 12, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1676), 1, + ACTIONS(1686), 1, anon_sym_POUND_, - ACTIONS(1680), 1, + ACTIONS(1690), 1, sym_accumulation_verb, - ACTIONS(1684), 1, + ACTIONS(1694), 1, anon_sym_with, - ACTIONS(1686), 1, + ACTIONS(1696), 1, anon_sym_do, - ACTIONS(1712), 1, + ACTIONS(1724), 1, anon_sym_RPAREN, - ACTIONS(1674), 2, - sym__ws, - sym_comment, - ACTIONS(1682), 2, + ACTIONS(1692), 2, anon_sym_for, anon_sym_and, - ACTIONS(1690), 3, + ACTIONS(1706), 2, + sym__ws, + sym_comment, + ACTIONS(1700), 3, anon_sym_finally, anon_sym_return, anon_sym_initially, - STATE(419), 4, + STATE(425), 4, sym__gap, sym_dis_expr, sym_loop_clause, aux_sym_loop_macro_repeat1, - ACTIONS(1688), 6, + ACTIONS(1698), 6, anon_sym_when, anon_sym_if, anon_sym_unless, anon_sym_always, anon_sym_thereis, anon_sym_never, - STATE(714), 6, + STATE(724), 6, sym_for_clause, sym_with_clause, sym_do_clause, sym_condition_clause, sym_accumulation_clause, sym_termination_clause, - [32627] = 3, + [32830] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1598), 6, + ACTIONS(1600), 6, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - ACTIONS(1596), 22, + ACTIONS(1598), 22, ts_builtin_sym_end, sym__ws, sym_comment, @@ -29317,17 +29455,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_COMMA_AT, - [32663] = 3, + [32866] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1594), 6, + ACTIONS(1596), 6, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - ACTIONS(1592), 22, + ACTIONS(1594), 22, ts_builtin_sym_end, sym__ws, sym_comment, @@ -29350,59 +29488,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_COMMA_AT, - [32699] = 12, + [32902] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1676), 1, - anon_sym_POUND_, - ACTIONS(1680), 1, - sym_accumulation_verb, - ACTIONS(1684), 1, - anon_sym_with, - ACTIONS(1686), 1, - anon_sym_do, - ACTIONS(1712), 1, - anon_sym_RPAREN, - ACTIONS(1682), 2, - anon_sym_for, - anon_sym_and, - ACTIONS(1714), 2, - sym__ws, - sym_comment, - ACTIONS(1690), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(372), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(1688), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(714), 6, - sym_for_clause, - sym_with_clause, - sym_do_clause, - sym_condition_clause, - sym_accumulation_clause, - sym_termination_clause, - [32753] = 3, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(1590), 6, + ACTIONS(1592), 6, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - ACTIONS(1588), 22, + ACTIONS(1590), 22, ts_builtin_sym_end, sym__ws, sym_comment, @@ -29425,17 +29521,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_COMMA_AT, - [32789] = 3, + [32938] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1590), 6, + ACTIONS(1428), 6, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - ACTIONS(1588), 22, + ACTIONS(1426), 22, ts_builtin_sym_end, sym__ws, sym_comment, @@ -29458,59 +29554,50 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_COMMA_AT, - [32825] = 12, + [32974] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1676), 1, - anon_sym_POUND_, - ACTIONS(1680), 1, - sym_accumulation_verb, - ACTIONS(1684), 1, - anon_sym_with, - ACTIONS(1686), 1, - anon_sym_do, - ACTIONS(1718), 1, - anon_sym_RPAREN, - ACTIONS(1682), 2, - anon_sym_for, - anon_sym_and, - ACTIONS(1716), 2, + ACTIONS(1588), 6, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + ACTIONS(1586), 22, + ts_builtin_sym_end, sym__ws, sym_comment, - ACTIONS(1690), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(377), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(1688), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(714), 6, - sym_for_clause, - sym_with_clause, - sym_do_clause, - sym_condition_clause, - sym_accumulation_clause, - sym_termination_clause, - [32879] = 3, + anon_sym_POUND_, + sym_num_lit, + sym_kwd_lit, + aux_sym_str_lit_token1, + sym_char_lit, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_POUND0A, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_POUND_POUND, + anon_sym_POUND_EQ, + anon_sym_AT, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA_AT, + [33010] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1590), 6, + ACTIONS(1584), 6, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - ACTIONS(1588), 22, + ACTIONS(1582), 22, ts_builtin_sym_end, sym__ws, sym_comment, @@ -29533,17 +29620,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_COMMA_AT, - [32915] = 3, + [33046] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1586), 6, + ACTIONS(1584), 6, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - ACTIONS(1584), 22, + ACTIONS(1582), 22, ts_builtin_sym_end, sym__ws, sym_comment, @@ -29566,17 +29653,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_COMMA_AT, - [32951] = 3, + [33082] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1582), 6, + ACTIONS(1584), 6, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - ACTIONS(1580), 22, + ACTIONS(1582), 22, ts_builtin_sym_end, sym__ws, sym_comment, @@ -29599,59 +29686,92 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_COMMA_AT, - [32987] = 12, + [33118] = 12, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1676), 1, + ACTIONS(1686), 1, anon_sym_POUND_, - ACTIONS(1680), 1, + ACTIONS(1690), 1, sym_accumulation_verb, - ACTIONS(1684), 1, + ACTIONS(1694), 1, anon_sym_with, - ACTIONS(1686), 1, + ACTIONS(1696), 1, anon_sym_do, - ACTIONS(1718), 1, + ACTIONS(1726), 1, anon_sym_RPAREN, - ACTIONS(1674), 2, - sym__ws, - sym_comment, - ACTIONS(1682), 2, + ACTIONS(1692), 2, anon_sym_for, anon_sym_and, - ACTIONS(1690), 3, + ACTIONS(1706), 2, + sym__ws, + sym_comment, + ACTIONS(1700), 3, anon_sym_finally, anon_sym_return, anon_sym_initially, - STATE(419), 4, + STATE(425), 4, sym__gap, sym_dis_expr, sym_loop_clause, aux_sym_loop_macro_repeat1, - ACTIONS(1688), 6, + ACTIONS(1698), 6, anon_sym_when, anon_sym_if, anon_sym_unless, anon_sym_always, anon_sym_thereis, anon_sym_never, - STATE(714), 6, + STATE(724), 6, sym_for_clause, sym_with_clause, sym_do_clause, sym_condition_clause, sym_accumulation_clause, sym_termination_clause, - [33041] = 3, + [33172] = 3, + ACTIONS(3), 1, + sym_block_comment, + ACTIONS(1580), 6, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + ACTIONS(1578), 22, + ts_builtin_sym_end, + sym__ws, + sym_comment, + anon_sym_POUND_, + sym_num_lit, + sym_kwd_lit, + aux_sym_str_lit_token1, + sym_char_lit, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_POUND0A, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_POUND_POUND, + anon_sym_POUND_EQ, + anon_sym_AT, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA_AT, + [33208] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1578), 6, + ACTIONS(1572), 6, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - ACTIONS(1576), 22, + ACTIONS(1570), 22, ts_builtin_sym_end, sym__ws, sym_comment, @@ -29674,59 +29794,92 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_COMMA_AT, - [33077] = 12, + [33244] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1676), 1, + ACTIONS(1444), 6, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + ACTIONS(1442), 22, + ts_builtin_sym_end, + sym__ws, + sym_comment, + anon_sym_POUND_, + sym_num_lit, + sym_kwd_lit, + aux_sym_str_lit_token1, + sym_char_lit, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_POUND0A, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_POUND_POUND, + anon_sym_POUND_EQ, + anon_sym_AT, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA_AT, + [33280] = 12, + ACTIONS(3), 1, + sym_block_comment, + ACTIONS(1686), 1, anon_sym_POUND_, - ACTIONS(1680), 1, + ACTIONS(1690), 1, sym_accumulation_verb, - ACTIONS(1684), 1, + ACTIONS(1694), 1, anon_sym_with, - ACTIONS(1686), 1, + ACTIONS(1696), 1, anon_sym_do, - ACTIONS(1722), 1, + ACTIONS(1730), 1, anon_sym_RPAREN, - ACTIONS(1682), 2, + ACTIONS(1692), 2, anon_sym_for, anon_sym_and, - ACTIONS(1720), 2, + ACTIONS(1728), 2, sym__ws, sym_comment, - ACTIONS(1690), 3, + ACTIONS(1700), 3, anon_sym_finally, anon_sym_return, anon_sym_initially, - STATE(421), 4, + STATE(426), 4, sym__gap, sym_dis_expr, sym_loop_clause, aux_sym_loop_macro_repeat1, - ACTIONS(1688), 6, + ACTIONS(1698), 6, anon_sym_when, anon_sym_if, anon_sym_unless, anon_sym_always, anon_sym_thereis, anon_sym_never, - STATE(714), 6, + STATE(724), 6, sym_for_clause, sym_with_clause, sym_do_clause, sym_condition_clause, sym_accumulation_clause, sym_termination_clause, - [33131] = 3, + [33334] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1466), 6, + ACTIONS(1644), 6, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - ACTIONS(1464), 22, + ACTIONS(1642), 22, ts_builtin_sym_end, sym__ws, sym_comment, @@ -29749,59 +29902,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_COMMA_AT, - [33167] = 12, + [33370] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1676), 1, - anon_sym_POUND_, - ACTIONS(1680), 1, - sym_accumulation_verb, - ACTIONS(1684), 1, - anon_sym_with, - ACTIONS(1686), 1, - anon_sym_do, - ACTIONS(1692), 1, - anon_sym_RPAREN, - ACTIONS(1682), 2, - anon_sym_for, - anon_sym_and, - ACTIONS(1724), 2, - sym__ws, - sym_comment, - ACTIONS(1690), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(437), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(1688), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(714), 6, - sym_for_clause, - sym_with_clause, - sym_do_clause, - sym_condition_clause, - sym_accumulation_clause, - sym_termination_clause, - [33221] = 3, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(1518), 6, + ACTIONS(1564), 6, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - ACTIONS(1516), 22, + ACTIONS(1562), 22, ts_builtin_sym_end, sym__ws, sym_comment, @@ -29824,17 +29935,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_COMMA_AT, - [33257] = 3, + [33406] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1414), 6, + ACTIONS(1436), 6, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - ACTIONS(1412), 22, + ACTIONS(1434), 22, ts_builtin_sym_end, sym__ws, sym_comment, @@ -29857,17 +29968,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_COMMA_AT, - [33293] = 3, + [33442] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1522), 6, + ACTIONS(1468), 6, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - ACTIONS(1520), 22, + ACTIONS(1466), 22, ts_builtin_sym_end, sym__ws, sym_comment, @@ -29890,59 +30001,59 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_COMMA_AT, - [33329] = 12, + [33478] = 12, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1676), 1, + ACTIONS(1686), 1, anon_sym_POUND_, - ACTIONS(1680), 1, + ACTIONS(1690), 1, sym_accumulation_verb, - ACTIONS(1684), 1, + ACTIONS(1694), 1, anon_sym_with, - ACTIONS(1686), 1, + ACTIONS(1696), 1, anon_sym_do, - ACTIONS(1728), 1, + ACTIONS(1734), 1, anon_sym_RPAREN, - ACTIONS(1682), 2, + ACTIONS(1692), 2, anon_sym_for, anon_sym_and, - ACTIONS(1726), 2, + ACTIONS(1732), 2, sym__ws, sym_comment, - ACTIONS(1690), 3, + ACTIONS(1700), 3, anon_sym_finally, anon_sym_return, anon_sym_initially, - STATE(393), 4, + STATE(442), 4, sym__gap, sym_dis_expr, sym_loop_clause, aux_sym_loop_macro_repeat1, - ACTIONS(1688), 6, + ACTIONS(1698), 6, anon_sym_when, anon_sym_if, anon_sym_unless, anon_sym_always, anon_sym_thereis, anon_sym_never, - STATE(714), 6, + STATE(724), 6, sym_for_clause, sym_with_clause, sym_do_clause, sym_condition_clause, sym_accumulation_clause, sym_termination_clause, - [33383] = 3, + [33532] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1526), 6, + ACTIONS(1524), 6, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - ACTIONS(1524), 22, + ACTIONS(1522), 22, ts_builtin_sym_end, sym__ws, sym_comment, @@ -29965,17 +30076,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_COMMA_AT, - [33419] = 3, + [33568] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1530), 6, + ACTIONS(1520), 6, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - ACTIONS(1528), 22, + ACTIONS(1518), 22, ts_builtin_sym_end, sym__ws, sym_comment, @@ -29998,17 +30109,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_COMMA_AT, - [33455] = 3, + [33604] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1506), 6, + ACTIONS(1612), 6, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - ACTIONS(1504), 22, + ACTIONS(1610), 22, ts_builtin_sym_end, sym__ws, sym_comment, @@ -30031,17 +30142,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_COMMA_AT, - [33491] = 3, + [33640] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1538), 6, + ACTIONS(1636), 6, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - ACTIONS(1536), 22, + ACTIONS(1634), 22, ts_builtin_sym_end, sym__ws, sym_comment, @@ -30064,92 +30175,101 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_COMMA_AT, - [33527] = 3, + [33676] = 12, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1542), 6, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - ACTIONS(1540), 22, - ts_builtin_sym_end, - sym__ws, - sym_comment, + ACTIONS(1686), 1, anon_sym_POUND_, - sym_num_lit, - sym_kwd_lit, - aux_sym_str_lit_token1, - sym_char_lit, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LPAREN, + ACTIONS(1690), 1, + sym_accumulation_verb, + ACTIONS(1694), 1, + anon_sym_with, + ACTIONS(1696), 1, + anon_sym_do, + ACTIONS(1736), 1, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_POUND0A, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_POUND_POUND, - anon_sym_POUND_EQ, - anon_sym_AT, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - [33563] = 12, + ACTIONS(1692), 2, + anon_sym_for, + anon_sym_and, + ACTIONS(1706), 2, + sym__ws, + sym_comment, + ACTIONS(1700), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(425), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(1698), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(724), 6, + sym_for_clause, + sym_with_clause, + sym_do_clause, + sym_condition_clause, + sym_accumulation_clause, + sym_termination_clause, + [33730] = 12, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1733), 1, + ACTIONS(1686), 1, anon_sym_POUND_, - ACTIONS(1736), 1, - anon_sym_RPAREN, - ACTIONS(1738), 1, + ACTIONS(1690), 1, sym_accumulation_verb, - ACTIONS(1744), 1, + ACTIONS(1694), 1, anon_sym_with, - ACTIONS(1747), 1, + ACTIONS(1696), 1, anon_sym_do, - ACTIONS(1730), 2, - sym__ws, - sym_comment, - ACTIONS(1741), 2, + ACTIONS(1740), 1, + anon_sym_RPAREN, + ACTIONS(1692), 2, anon_sym_for, anon_sym_and, - ACTIONS(1753), 3, + ACTIONS(1738), 2, + sym__ws, + sym_comment, + ACTIONS(1700), 3, anon_sym_finally, anon_sym_return, anon_sym_initially, - STATE(419), 4, + STATE(449), 4, sym__gap, sym_dis_expr, sym_loop_clause, aux_sym_loop_macro_repeat1, - ACTIONS(1750), 6, + ACTIONS(1698), 6, anon_sym_when, anon_sym_if, anon_sym_unless, anon_sym_always, anon_sym_thereis, anon_sym_never, - STATE(714), 6, + STATE(724), 6, sym_for_clause, sym_with_clause, sym_do_clause, sym_condition_clause, sym_accumulation_clause, sym_termination_clause, - [33617] = 3, + [33784] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1546), 6, + ACTIONS(1536), 6, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - ACTIONS(1544), 22, + ACTIONS(1534), 22, ts_builtin_sym_end, sym__ws, sym_comment, @@ -30172,59 +30292,50 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_COMMA_AT, - [33653] = 12, + [33820] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1676), 1, - anon_sym_POUND_, - ACTIONS(1680), 1, - sym_accumulation_verb, - ACTIONS(1684), 1, - anon_sym_with, - ACTIONS(1686), 1, - anon_sym_do, - ACTIONS(1756), 1, - anon_sym_RPAREN, - ACTIONS(1674), 2, + ACTIONS(1500), 6, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + ACTIONS(1498), 22, + ts_builtin_sym_end, sym__ws, sym_comment, - ACTIONS(1682), 2, - anon_sym_for, - anon_sym_and, - ACTIONS(1690), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(419), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(1688), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(714), 6, - sym_for_clause, - sym_with_clause, - sym_do_clause, - sym_condition_clause, - sym_accumulation_clause, - sym_termination_clause, - [33707] = 3, + anon_sym_POUND_, + sym_num_lit, + sym_kwd_lit, + aux_sym_str_lit_token1, + sym_char_lit, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_POUND0A, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_POUND_POUND, + anon_sym_POUND_EQ, + anon_sym_AT, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA_AT, + [33856] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1550), 6, + ACTIONS(1540), 6, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - ACTIONS(1548), 22, + ACTIONS(1538), 22, ts_builtin_sym_end, sym__ws, sym_comment, @@ -30247,17 +30358,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_COMMA_AT, - [33743] = 3, + [33892] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1418), 6, + ACTIONS(1544), 6, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - ACTIONS(1416), 22, + ACTIONS(1542), 22, ts_builtin_sym_end, sym__ws, sym_comment, @@ -30280,59 +30391,101 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_COMMA_AT, - [33779] = 12, + [33928] = 12, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1676), 1, + ACTIONS(1745), 1, anon_sym_POUND_, - ACTIONS(1680), 1, + ACTIONS(1748), 1, + anon_sym_RPAREN, + ACTIONS(1750), 1, sym_accumulation_verb, - ACTIONS(1684), 1, + ACTIONS(1756), 1, anon_sym_with, - ACTIONS(1686), 1, + ACTIONS(1759), 1, anon_sym_do, - ACTIONS(1756), 1, + ACTIONS(1742), 2, + sym__ws, + sym_comment, + ACTIONS(1753), 2, + anon_sym_for, + anon_sym_and, + ACTIONS(1765), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(425), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(1762), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(724), 6, + sym_for_clause, + sym_with_clause, + sym_do_clause, + sym_condition_clause, + sym_accumulation_clause, + sym_termination_clause, + [33982] = 12, + ACTIONS(3), 1, + sym_block_comment, + ACTIONS(1686), 1, + anon_sym_POUND_, + ACTIONS(1688), 1, anon_sym_RPAREN, - ACTIONS(1682), 2, + ACTIONS(1690), 1, + sym_accumulation_verb, + ACTIONS(1694), 1, + anon_sym_with, + ACTIONS(1696), 1, + anon_sym_do, + ACTIONS(1692), 2, anon_sym_for, anon_sym_and, - ACTIONS(1758), 2, + ACTIONS(1706), 2, sym__ws, sym_comment, - ACTIONS(1690), 3, + ACTIONS(1700), 3, anon_sym_finally, anon_sym_return, anon_sym_initially, - STATE(428), 4, + STATE(425), 4, sym__gap, sym_dis_expr, sym_loop_clause, aux_sym_loop_macro_repeat1, - ACTIONS(1688), 6, + ACTIONS(1698), 6, anon_sym_when, anon_sym_if, anon_sym_unless, anon_sym_always, anon_sym_thereis, anon_sym_never, - STATE(714), 6, + STATE(724), 6, sym_for_clause, sym_with_clause, sym_do_clause, sym_condition_clause, sym_accumulation_clause, sym_termination_clause, - [33833] = 3, + [34036] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1514), 6, + ACTIONS(1548), 6, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - ACTIONS(1512), 22, + ACTIONS(1546), 22, ts_builtin_sym_end, sym__ws, sym_comment, @@ -30355,59 +30508,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_COMMA_AT, - [33869] = 12, + [34072] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1676), 1, - anon_sym_POUND_, - ACTIONS(1680), 1, - sym_accumulation_verb, - ACTIONS(1684), 1, - anon_sym_with, - ACTIONS(1686), 1, - anon_sym_do, - ACTIONS(1708), 1, - anon_sym_RPAREN, - ACTIONS(1674), 2, - sym__ws, - sym_comment, - ACTIONS(1682), 2, - anon_sym_for, - anon_sym_and, - ACTIONS(1690), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(419), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(1688), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(714), 6, - sym_for_clause, - sym_with_clause, - sym_do_clause, - sym_condition_clause, - sym_accumulation_clause, - sym_termination_clause, - [33923] = 3, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(1558), 6, + ACTIONS(1528), 6, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - ACTIONS(1556), 22, + ACTIONS(1526), 22, ts_builtin_sym_end, sym__ws, sym_comment, @@ -30430,59 +30541,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_COMMA_AT, - [33959] = 12, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(1676), 1, - anon_sym_POUND_, - ACTIONS(1680), 1, - sym_accumulation_verb, - ACTIONS(1684), 1, - anon_sym_with, - ACTIONS(1686), 1, - anon_sym_do, - ACTIONS(1760), 1, - anon_sym_RPAREN, - ACTIONS(1674), 2, - sym__ws, - sym_comment, - ACTIONS(1682), 2, - anon_sym_for, - anon_sym_and, - ACTIONS(1690), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(419), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(1688), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(714), 6, - sym_for_clause, - sym_with_clause, - sym_do_clause, - sym_condition_clause, - sym_accumulation_clause, - sym_termination_clause, - [34013] = 3, + [34108] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1562), 6, + ACTIONS(1552), 6, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - ACTIONS(1560), 22, + ACTIONS(1550), 22, ts_builtin_sym_end, sym__ws, sym_comment, @@ -30505,17 +30574,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_COMMA_AT, - [34049] = 3, + [34144] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1574), 6, + ACTIONS(1556), 6, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - ACTIONS(1572), 22, + ACTIONS(1554), 22, ts_builtin_sym_end, sym__ws, sym_comment, @@ -30538,17 +30607,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_COMMA_AT, - [34085] = 3, + [34180] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1570), 6, + ACTIONS(1504), 6, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - ACTIONS(1568), 22, + ACTIONS(1502), 22, ts_builtin_sym_end, sym__ws, sym_comment, @@ -30571,101 +30640,176 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_COMMA_AT, - [34121] = 12, + [34216] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1676), 1, + ACTIONS(1472), 6, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + ACTIONS(1470), 22, + ts_builtin_sym_end, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(1680), 1, + sym_num_lit, + sym_kwd_lit, + aux_sym_str_lit_token1, + sym_char_lit, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_POUND0A, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_POUND_POUND, + anon_sym_POUND_EQ, + anon_sym_AT, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA_AT, + [34252] = 12, + ACTIONS(3), 1, + sym_block_comment, + ACTIONS(1686), 1, + anon_sym_POUND_, + ACTIONS(1690), 1, sym_accumulation_verb, - ACTIONS(1684), 1, + ACTIONS(1694), 1, anon_sym_with, - ACTIONS(1686), 1, + ACTIONS(1696), 1, anon_sym_do, - ACTIONS(1762), 1, + ACTIONS(1770), 1, anon_sym_RPAREN, - ACTIONS(1674), 2, + ACTIONS(1692), 2, + anon_sym_for, + anon_sym_and, + ACTIONS(1768), 2, sym__ws, sym_comment, - ACTIONS(1682), 2, + ACTIONS(1700), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(394), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(1698), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(724), 6, + sym_for_clause, + sym_with_clause, + sym_do_clause, + sym_condition_clause, + sym_accumulation_clause, + sym_termination_clause, + [34306] = 12, + ACTIONS(3), 1, + sym_block_comment, + ACTIONS(1686), 1, + anon_sym_POUND_, + ACTIONS(1690), 1, + sym_accumulation_verb, + ACTIONS(1694), 1, + anon_sym_with, + ACTIONS(1696), 1, + anon_sym_do, + ACTIONS(1772), 1, + anon_sym_RPAREN, + ACTIONS(1692), 2, anon_sym_for, anon_sym_and, - ACTIONS(1690), 3, + ACTIONS(1706), 2, + sym__ws, + sym_comment, + ACTIONS(1700), 3, anon_sym_finally, anon_sym_return, anon_sym_initially, - STATE(419), 4, + STATE(425), 4, sym__gap, sym_dis_expr, sym_loop_clause, aux_sym_loop_macro_repeat1, - ACTIONS(1688), 6, + ACTIONS(1698), 6, anon_sym_when, anon_sym_if, anon_sym_unless, anon_sym_always, anon_sym_thereis, anon_sym_never, - STATE(714), 6, + STATE(724), 6, sym_for_clause, sym_with_clause, sym_do_clause, sym_condition_clause, sym_accumulation_clause, sym_termination_clause, - [34175] = 12, + [34360] = 12, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1676), 1, + ACTIONS(1686), 1, anon_sym_POUND_, - ACTIONS(1680), 1, + ACTIONS(1690), 1, sym_accumulation_verb, - ACTIONS(1684), 1, + ACTIONS(1694), 1, anon_sym_with, - ACTIONS(1686), 1, + ACTIONS(1696), 1, anon_sym_do, - ACTIONS(1766), 1, + ACTIONS(1774), 1, anon_sym_RPAREN, - ACTIONS(1682), 2, + ACTIONS(1692), 2, anon_sym_for, anon_sym_and, - ACTIONS(1764), 2, + ACTIONS(1706), 2, sym__ws, sym_comment, - ACTIONS(1690), 3, + ACTIONS(1700), 3, anon_sym_finally, anon_sym_return, anon_sym_initially, - STATE(432), 4, + STATE(425), 4, sym__gap, sym_dis_expr, sym_loop_clause, aux_sym_loop_macro_repeat1, - ACTIONS(1688), 6, + ACTIONS(1698), 6, anon_sym_when, anon_sym_if, anon_sym_unless, anon_sym_always, anon_sym_thereis, anon_sym_never, - STATE(714), 6, + STATE(724), 6, sym_for_clause, sym_with_clause, sym_do_clause, sym_condition_clause, sym_accumulation_clause, sym_termination_clause, - [34229] = 3, + [34414] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1470), 6, + ACTIONS(1476), 6, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - ACTIONS(1468), 22, + ACTIONS(1474), 22, ts_builtin_sym_end, sym__ws, sym_comment, @@ -30688,17 +30832,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_COMMA_AT, - [34265] = 3, + [34450] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1622), 6, + ACTIONS(1576), 6, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - ACTIONS(1620), 22, + ACTIONS(1574), 22, ts_builtin_sym_end, sym__ws, sym_comment, @@ -30721,17 +30865,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_COMMA_AT, - [34301] = 3, + [34486] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1630), 6, + ACTIONS(1616), 6, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - ACTIONS(1628), 22, + ACTIONS(1614), 22, ts_builtin_sym_end, sym__ws, sym_comment, @@ -30754,101 +30898,92 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_COMMA_AT, - [34337] = 12, + [34522] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1676), 1, - anon_sym_POUND_, - ACTIONS(1680), 1, - sym_accumulation_verb, - ACTIONS(1684), 1, - anon_sym_with, - ACTIONS(1686), 1, - anon_sym_do, - ACTIONS(1768), 1, - anon_sym_RPAREN, - ACTIONS(1674), 2, + ACTIONS(1568), 6, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + ACTIONS(1566), 22, + ts_builtin_sym_end, sym__ws, sym_comment, - ACTIONS(1682), 2, - anon_sym_for, - anon_sym_and, - ACTIONS(1690), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(419), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(1688), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(714), 6, - sym_for_clause, - sym_with_clause, - sym_do_clause, - sym_condition_clause, - sym_accumulation_clause, - sym_termination_clause, - [34391] = 12, + anon_sym_POUND_, + sym_num_lit, + sym_kwd_lit, + aux_sym_str_lit_token1, + sym_char_lit, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_POUND0A, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_POUND_POUND, + anon_sym_POUND_EQ, + anon_sym_AT, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA_AT, + [34558] = 12, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1676), 1, + ACTIONS(1686), 1, anon_sym_POUND_, - ACTIONS(1680), 1, + ACTIONS(1690), 1, sym_accumulation_verb, - ACTIONS(1684), 1, + ACTIONS(1694), 1, anon_sym_with, - ACTIONS(1686), 1, + ACTIONS(1696), 1, anon_sym_do, - ACTIONS(1772), 1, + ACTIONS(1778), 1, anon_sym_RPAREN, - ACTIONS(1682), 2, + ACTIONS(1692), 2, anon_sym_for, anon_sym_and, - ACTIONS(1770), 2, + ACTIONS(1776), 2, sym__ws, sym_comment, - ACTIONS(1690), 3, + ACTIONS(1700), 3, anon_sym_finally, anon_sym_return, anon_sym_initially, - STATE(405), 4, + STATE(419), 4, sym__gap, sym_dis_expr, sym_loop_clause, aux_sym_loop_macro_repeat1, - ACTIONS(1688), 6, + ACTIONS(1698), 6, anon_sym_when, anon_sym_if, anon_sym_unless, anon_sym_always, anon_sym_thereis, anon_sym_never, - STATE(714), 6, + STATE(724), 6, sym_for_clause, sym_with_clause, sym_do_clause, sym_condition_clause, sym_accumulation_clause, sym_termination_clause, - [34445] = 3, + [34612] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1474), 6, + ACTIONS(1480), 6, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - ACTIONS(1472), 22, + ACTIONS(1478), 22, ts_builtin_sym_end, sym__ws, sym_comment, @@ -30871,125 +31006,101 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_COMMA_AT, - [34481] = 12, + [34648] = 12, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1676), 1, + ACTIONS(1686), 1, anon_sym_POUND_, - ACTIONS(1680), 1, + ACTIONS(1690), 1, sym_accumulation_verb, - ACTIONS(1684), 1, + ACTIONS(1694), 1, anon_sym_with, - ACTIONS(1686), 1, + ACTIONS(1696), 1, anon_sym_do, - ACTIONS(1710), 1, + ACTIONS(1778), 1, anon_sym_RPAREN, - ACTIONS(1682), 2, + ACTIONS(1692), 2, anon_sym_for, anon_sym_and, - ACTIONS(1774), 2, + ACTIONS(1706), 2, sym__ws, sym_comment, - ACTIONS(1690), 3, + ACTIONS(1700), 3, anon_sym_finally, anon_sym_return, anon_sym_initially, - STATE(382), 4, + STATE(425), 4, sym__gap, sym_dis_expr, sym_loop_clause, aux_sym_loop_macro_repeat1, - ACTIONS(1688), 6, + ACTIONS(1698), 6, anon_sym_when, anon_sym_if, anon_sym_unless, anon_sym_always, anon_sym_thereis, anon_sym_never, - STATE(714), 6, + STATE(724), 6, sym_for_clause, sym_with_clause, sym_do_clause, sym_condition_clause, sym_accumulation_clause, sym_termination_clause, - [34535] = 3, + [34702] = 12, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1478), 6, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - ACTIONS(1476), 22, - ts_builtin_sym_end, - sym__ws, - sym_comment, + ACTIONS(1686), 1, anon_sym_POUND_, - sym_num_lit, - sym_kwd_lit, - aux_sym_str_lit_token1, - sym_char_lit, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LPAREN, + ACTIONS(1690), 1, + sym_accumulation_verb, + ACTIONS(1694), 1, + anon_sym_with, + ACTIONS(1696), 1, + anon_sym_do, + ACTIONS(1726), 1, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_POUND0A, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_POUND_POUND, - anon_sym_POUND_EQ, - anon_sym_AT, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - [34571] = 3, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(1438), 6, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - ACTIONS(1436), 22, - ts_builtin_sym_end, + ACTIONS(1692), 2, + anon_sym_for, + anon_sym_and, + ACTIONS(1780), 2, sym__ws, sym_comment, - anon_sym_POUND_, - sym_num_lit, - sym_kwd_lit, - aux_sym_str_lit_token1, - sym_char_lit, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_POUND0A, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_POUND_POUND, - anon_sym_POUND_EQ, - anon_sym_AT, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - [34607] = 3, + ACTIONS(1700), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(396), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(1698), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(724), 6, + sym_for_clause, + sym_with_clause, + sym_do_clause, + sym_condition_clause, + sym_accumulation_clause, + sym_termination_clause, + [34756] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1482), 6, + ACTIONS(1624), 6, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - ACTIONS(1480), 22, + ACTIONS(1622), 22, ts_builtin_sym_end, sym__ws, sym_comment, @@ -31012,17 +31123,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_COMMA_AT, - [34643] = 3, + [34792] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1638), 6, + ACTIONS(1484), 6, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - ACTIONS(1636), 22, + ACTIONS(1482), 22, ts_builtin_sym_end, sym__ws, sym_comment, @@ -31045,17 +31156,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_COMMA_AT, - [34679] = 3, + [34828] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1486), 6, + ACTIONS(1440), 6, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - ACTIONS(1484), 22, + ACTIONS(1438), 22, ts_builtin_sym_end, sym__ws, sym_comment, @@ -31078,110 +31189,68 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_COMMA_AT, - [34715] = 12, + [34864] = 12, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1676), 1, - anon_sym_POUND_, - ACTIONS(1680), 1, - sym_accumulation_verb, - ACTIONS(1684), 1, - anon_sym_with, ACTIONS(1686), 1, - anon_sym_do, - ACTIONS(1776), 1, - anon_sym_RPAREN, - ACTIONS(1674), 2, - sym__ws, - sym_comment, - ACTIONS(1682), 2, - anon_sym_for, - anon_sym_and, - ACTIONS(1690), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(419), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(1688), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(714), 6, - sym_for_clause, - sym_with_clause, - sym_do_clause, - sym_condition_clause, - sym_accumulation_clause, - sym_termination_clause, - [34769] = 12, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(1676), 1, anon_sym_POUND_, - ACTIONS(1680), 1, + ACTIONS(1690), 1, sym_accumulation_verb, - ACTIONS(1684), 1, + ACTIONS(1694), 1, anon_sym_with, - ACTIONS(1686), 1, + ACTIONS(1696), 1, anon_sym_do, - ACTIONS(1780), 1, + ACTIONS(1784), 1, anon_sym_RPAREN, - ACTIONS(1682), 2, + ACTIONS(1692), 2, anon_sym_for, anon_sym_and, - ACTIONS(1778), 2, + ACTIONS(1782), 2, sym__ws, sym_comment, - ACTIONS(1690), 3, + ACTIONS(1700), 3, anon_sym_finally, anon_sym_return, anon_sym_initially, - STATE(426), 4, + STATE(457), 4, sym__gap, sym_dis_expr, sym_loop_clause, aux_sym_loop_macro_repeat1, - ACTIONS(1688), 6, + ACTIONS(1698), 6, anon_sym_when, anon_sym_if, anon_sym_unless, anon_sym_always, anon_sym_thereis, anon_sym_never, - STATE(714), 6, + STATE(724), 6, sym_for_clause, sym_with_clause, sym_do_clause, sym_condition_clause, sym_accumulation_clause, sym_termination_clause, - [34823] = 6, + [34918] = 6, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1785), 1, + ACTIONS(1789), 1, anon_sym_POUND_, - ACTIONS(1782), 2, + ACTIONS(1786), 2, sym__ws, sym_comment, STATE(448), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(1790), 6, + ACTIONS(1794), 6, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - ACTIONS(1788), 16, + ACTIONS(1792), 16, sym_num_lit, sym_kwd_lit, aux_sym_str_lit_token1, @@ -31198,92 +31267,101 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_COMMA_AT, - [34865] = 3, + [34960] = 12, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1490), 6, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - ACTIONS(1488), 22, - ts_builtin_sym_end, - sym__ws, - sym_comment, + ACTIONS(1686), 1, anon_sym_POUND_, - sym_num_lit, - sym_kwd_lit, - aux_sym_str_lit_token1, - sym_char_lit, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LPAREN, + ACTIONS(1690), 1, + sym_accumulation_verb, + ACTIONS(1694), 1, + anon_sym_with, + ACTIONS(1696), 1, + anon_sym_do, + ACTIONS(1796), 1, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_POUND0A, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_POUND_POUND, - anon_sym_POUND_EQ, - anon_sym_AT, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - [34901] = 12, + ACTIONS(1692), 2, + anon_sym_for, + anon_sym_and, + ACTIONS(1706), 2, + sym__ws, + sym_comment, + ACTIONS(1700), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(425), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(1698), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(724), 6, + sym_for_clause, + sym_with_clause, + sym_do_clause, + sym_condition_clause, + sym_accumulation_clause, + sym_termination_clause, + [35014] = 12, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1676), 1, + ACTIONS(1686), 1, anon_sym_POUND_, - ACTIONS(1680), 1, + ACTIONS(1690), 1, sym_accumulation_verb, - ACTIONS(1684), 1, + ACTIONS(1694), 1, anon_sym_with, - ACTIONS(1686), 1, + ACTIONS(1696), 1, anon_sym_do, - ACTIONS(1794), 1, + ACTIONS(1796), 1, anon_sym_RPAREN, - ACTIONS(1682), 2, + ACTIONS(1692), 2, anon_sym_for, anon_sym_and, - ACTIONS(1792), 2, + ACTIONS(1798), 2, sym__ws, sym_comment, - ACTIONS(1690), 3, + ACTIONS(1700), 3, anon_sym_finally, anon_sym_return, anon_sym_initially, - STATE(458), 4, + STATE(455), 4, sym__gap, sym_dis_expr, sym_loop_clause, aux_sym_loop_macro_repeat1, - ACTIONS(1688), 6, + ACTIONS(1698), 6, anon_sym_when, anon_sym_if, anon_sym_unless, anon_sym_always, anon_sym_thereis, anon_sym_never, - STATE(714), 6, + STATE(724), 6, sym_for_clause, sym_with_clause, sym_do_clause, sym_condition_clause, sym_accumulation_clause, sym_termination_clause, - [34955] = 3, + [35068] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1646), 6, + ACTIONS(1682), 6, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - ACTIONS(1644), 22, + ACTIONS(1680), 22, ts_builtin_sym_end, sym__ws, sym_comment, @@ -31306,17 +31384,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_COMMA_AT, - [34991] = 3, + [35104] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1494), 6, + ACTIONS(1632), 6, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - ACTIONS(1492), 22, + ACTIONS(1630), 22, ts_builtin_sym_end, sym__ws, sym_comment, @@ -31339,17 +31417,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_COMMA_AT, - [35027] = 3, + [35140] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1672), 6, + ACTIONS(1640), 6, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - ACTIONS(1670), 22, + ACTIONS(1638), 22, ts_builtin_sym_end, sym__ws, sym_comment, @@ -31372,17 +31450,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_COMMA_AT, - [35063] = 3, + [35176] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1642), 6, + ACTIONS(1656), 6, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - ACTIONS(1640), 22, + ACTIONS(1654), 22, ts_builtin_sym_end, sym__ws, sym_comment, @@ -31405,50 +31483,59 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_COMMA_AT, - [35099] = 3, + [35212] = 12, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1426), 6, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - ACTIONS(1424), 22, - ts_builtin_sym_end, - sym__ws, - sym_comment, + ACTIONS(1686), 1, anon_sym_POUND_, - sym_num_lit, - sym_kwd_lit, - aux_sym_str_lit_token1, - sym_char_lit, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LPAREN, + ACTIONS(1690), 1, + sym_accumulation_verb, + ACTIONS(1694), 1, + anon_sym_with, + ACTIONS(1696), 1, + anon_sym_do, + ACTIONS(1800), 1, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_POUND0A, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_POUND_POUND, - anon_sym_POUND_EQ, - anon_sym_AT, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - [35135] = 3, + ACTIONS(1692), 2, + anon_sym_for, + anon_sym_and, + ACTIONS(1706), 2, + sym__ws, + sym_comment, + ACTIONS(1700), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(425), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(1698), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(724), 6, + sym_for_clause, + sym_with_clause, + sym_do_clause, + sym_condition_clause, + sym_accumulation_clause, + sym_termination_clause, + [35266] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1434), 6, + ACTIONS(1508), 6, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - ACTIONS(1432), 22, + ACTIONS(1506), 22, ts_builtin_sym_end, sym__ws, sym_comment, @@ -31471,17 +31558,59 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_COMMA_AT, - [35171] = 3, + [35302] = 12, + ACTIONS(3), 1, + sym_block_comment, + ACTIONS(1686), 1, + anon_sym_POUND_, + ACTIONS(1690), 1, + sym_accumulation_verb, + ACTIONS(1694), 1, + anon_sym_with, + ACTIONS(1696), 1, + anon_sym_do, + ACTIONS(1802), 1, + anon_sym_RPAREN, + ACTIONS(1692), 2, + anon_sym_for, + anon_sym_and, + ACTIONS(1706), 2, + sym__ws, + sym_comment, + ACTIONS(1700), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(425), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(1698), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(724), 6, + sym_for_clause, + sym_with_clause, + sym_do_clause, + sym_condition_clause, + sym_accumulation_clause, + sym_termination_clause, + [35356] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1502), 6, + ACTIONS(1516), 6, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - ACTIONS(1500), 22, + ACTIONS(1514), 22, ts_builtin_sym_end, sym__ws, sym_comment, @@ -31504,59 +31633,60 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_COMMA_AT, - [35207] = 12, + [35392] = 12, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1676), 1, + ACTIONS(1686), 1, anon_sym_POUND_, - ACTIONS(1680), 1, + ACTIONS(1690), 1, sym_accumulation_verb, - ACTIONS(1684), 1, + ACTIONS(1694), 1, anon_sym_with, - ACTIONS(1686), 1, + ACTIONS(1696), 1, anon_sym_do, - ACTIONS(1766), 1, + ACTIONS(1802), 1, anon_sym_RPAREN, - ACTIONS(1674), 2, - sym__ws, - sym_comment, - ACTIONS(1682), 2, + ACTIONS(1692), 2, anon_sym_for, anon_sym_and, - ACTIONS(1690), 3, + ACTIONS(1804), 2, + sym__ws, + sym_comment, + ACTIONS(1700), 3, anon_sym_finally, anon_sym_return, anon_sym_initially, - STATE(419), 4, + STATE(387), 4, sym__gap, sym_dis_expr, sym_loop_clause, aux_sym_loop_macro_repeat1, - ACTIONS(1688), 6, + ACTIONS(1698), 6, anon_sym_when, anon_sym_if, anon_sym_unless, anon_sym_always, anon_sym_thereis, anon_sym_never, - STATE(714), 6, + STATE(724), 6, sym_for_clause, sym_with_clause, sym_do_clause, sym_condition_clause, sym_accumulation_clause, sym_termination_clause, - [35261] = 3, + [35446] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1798), 6, + ACTIONS(1512), 6, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - ACTIONS(1796), 21, + ACTIONS(1510), 22, + ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, @@ -31578,17 +31708,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_COMMA_AT, - [35296] = 3, + [35482] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1802), 6, + ACTIONS(1808), 6, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - ACTIONS(1800), 20, + ACTIONS(1806), 21, sym__ws, sym_comment, anon_sym_POUND_, @@ -31600,6 +31730,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, anon_sym_POUND_SQUOTE, @@ -31609,17 +31740,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_COMMA_AT, - [35330] = 3, + [35517] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1806), 6, + ACTIONS(1812), 6, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - ACTIONS(1804), 20, + ACTIONS(1810), 20, sym__ws, sym_comment, anon_sym_POUND_, @@ -31640,17 +31771,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_COMMA_AT, - [35364] = 3, + [35551] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1810), 6, + ACTIONS(1816), 6, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - ACTIONS(1808), 20, + ACTIONS(1814), 20, sym__ws, sym_comment, anon_sym_POUND_, @@ -31671,17 +31802,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_COMMA_AT, - [35398] = 3, + [35585] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1814), 6, + ACTIONS(1820), 6, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - ACTIONS(1812), 20, + ACTIONS(1818), 20, sym__ws, sym_comment, anon_sym_POUND_, @@ -31702,17 +31833,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_COMMA_AT, - [35432] = 3, + [35619] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1818), 6, + ACTIONS(1824), 6, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - ACTIONS(1816), 19, + ACTIONS(1822), 20, sym__ws, sym_comment, anon_sym_POUND_, @@ -31723,6 +31854,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, anon_sym_POUND_SQUOTE, @@ -31732,17 +31864,20 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_COMMA_AT, - [35465] = 3, + [35653] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1514), 6, + ACTIONS(1828), 6, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - ACTIONS(1512), 16, + ACTIONS(1826), 19, + sym__ws, + sym_comment, + anon_sym_POUND_, sym_num_lit, sym_kwd_lit, aux_sym_str_lit_token1, @@ -31759,71 +31894,58 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_COMMA_AT, - [35495] = 3, + [35686] = 17, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1594), 6, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - ACTIONS(1592), 16, - sym_num_lit, - sym_kwd_lit, + ACTIONS(11), 1, aux_sym_str_lit_token1, - sym_char_lit, + ACTIONS(17), 1, anon_sym_CARET, + ACTIONS(19), 1, anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_POUND0A, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_POUND_POUND, - anon_sym_POUND_EQ, - anon_sym_AT, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - [35525] = 3, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(1606), 6, - sym_nil_lit, + ACTIONS(1832), 1, + anon_sym_POUND_, + ACTIONS(1834), 1, + sym_kwd_lit, + ACTIONS(1836), 1, aux_sym_sym_lit_token1, - anon_sym_POUND, + ACTIONS(1838), 1, + anon_sym_LBRACE, + ACTIONS(1840), 1, anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - ACTIONS(1604), 16, - sym_num_lit, - sym_kwd_lit, - aux_sym_str_lit_token1, - sym_char_lit, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_POUND0A, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_POUND_POUND, - anon_sym_POUND_EQ, - anon_sym_AT, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - [35555] = 3, + STATE(581), 1, + sym_old_meta_lit, + STATE(582), 1, + sym_meta_lit, + STATE(792), 1, + sym__bare_map_lit, + STATE(829), 1, + sym__metadata_lit, + STATE(852), 1, + aux_sym_sym_lit_repeat1, + ACTIONS(1830), 2, + sym__ws, + sym_comment, + STATE(479), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(765), 4, + sym_str_lit, + sym_sym_lit, + sym_map_lit, + sym_read_cond_lit, + [35744] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1610), 6, + ACTIONS(1624), 6, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - ACTIONS(1608), 16, + ACTIONS(1622), 16, sym_num_lit, sym_kwd_lit, aux_sym_str_lit_token1, @@ -31840,17 +31962,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_COMMA_AT, - [35585] = 3, + [35774] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1614), 6, + ACTIONS(1584), 6, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - ACTIONS(1612), 16, + ACTIONS(1582), 16, sym_num_lit, sym_kwd_lit, aux_sym_str_lit_token1, @@ -31867,58 +31989,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_COMMA_AT, - [35615] = 17, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(11), 1, - aux_sym_str_lit_token1, - ACTIONS(17), 1, - anon_sym_CARET, - ACTIONS(19), 1, - anon_sym_POUND_CARET, - ACTIONS(1822), 1, - anon_sym_POUND_, - ACTIONS(1824), 1, - sym_kwd_lit, - ACTIONS(1826), 1, - aux_sym_sym_lit_token1, - ACTIONS(1828), 1, - anon_sym_LBRACE, - ACTIONS(1830), 1, - anon_sym_POUND_QMARK, - STATE(584), 1, - sym_old_meta_lit, - STATE(587), 1, - sym_meta_lit, - STATE(748), 1, - sym__bare_map_lit, - STATE(761), 1, - sym__metadata_lit, - STATE(861), 1, - aux_sym_sym_lit_repeat1, - ACTIONS(1820), 2, - sym__ws, - sym_comment, - STATE(483), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(730), 4, - sym_str_lit, - sym_sym_lit, - sym_map_lit, - sym_read_cond_lit, - [35673] = 3, + [35804] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1618), 6, + ACTIONS(1588), 6, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - ACTIONS(1616), 16, + ACTIONS(1586), 16, sym_num_lit, sym_kwd_lit, aux_sym_str_lit_token1, @@ -31935,7 +32016,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_COMMA_AT, - [35703] = 17, + [35834] = 17, ACTIONS(3), 1, sym_block_comment, ACTIONS(11), 1, @@ -31944,49 +32025,49 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(19), 1, anon_sym_POUND_CARET, - ACTIONS(1822), 1, + ACTIONS(1832), 1, anon_sym_POUND_, - ACTIONS(1826), 1, + ACTIONS(1836), 1, aux_sym_sym_lit_token1, - ACTIONS(1828), 1, + ACTIONS(1838), 1, anon_sym_LBRACE, - ACTIONS(1830), 1, + ACTIONS(1840), 1, anon_sym_POUND_QMARK, - ACTIONS(1834), 1, + ACTIONS(1844), 1, sym_kwd_lit, - STATE(584), 1, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(748), 1, + STATE(792), 1, sym__bare_map_lit, - STATE(761), 1, + STATE(829), 1, sym__metadata_lit, - STATE(861), 1, + STATE(852), 1, aux_sym_sym_lit_repeat1, - ACTIONS(1832), 2, + ACTIONS(1842), 2, sym__ws, sym_comment, - STATE(485), 3, + STATE(467), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(747), 4, + STATE(783), 4, sym_str_lit, sym_sym_lit, sym_map_lit, sym_read_cond_lit, - [35761] = 3, + [35892] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1626), 6, + ACTIONS(1452), 6, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - ACTIONS(1624), 16, + ACTIONS(1450), 16, sym_num_lit, sym_kwd_lit, aux_sym_str_lit_token1, @@ -32003,103 +32084,112 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_COMMA_AT, - [35791] = 21, + [35922] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(17), 1, + ACTIONS(1592), 6, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + ACTIONS(1590), 16, + sym_num_lit, + sym_kwd_lit, + aux_sym_str_lit_token1, + sym_char_lit, anon_sym_CARET, - ACTIONS(19), 1, anon_sym_POUND_CARET, - ACTIONS(428), 1, anon_sym_LPAREN, - ACTIONS(430), 1, anon_sym_POUND0A, - ACTIONS(432), 1, - anon_sym_POUND, - ACTIONS(1836), 1, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_POUND_POUND, + anon_sym_POUND_EQ, + anon_sym_AT, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA_AT, + [35952] = 3, + ACTIONS(3), 1, + sym_block_comment, + ACTIONS(1596), 6, + sym_nil_lit, aux_sym_sym_lit_token1, - ACTIONS(1838), 1, + anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(1840), 1, + anon_sym_COMMA, + sym_fancy_literal, + ACTIONS(1594), 16, + sym_num_lit, + sym_kwd_lit, + aux_sym_str_lit_token1, + sym_char_lit, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - ACTIONS(1842), 1, anon_sym_POUND_SQUOTE, - ACTIONS(1844), 1, + anon_sym_POUND_POUND, anon_sym_POUND_EQ, - ACTIONS(1846), 1, anon_sym_AT, - ACTIONS(1848), 1, anon_sym_SQUOTE, - ACTIONS(1850), 1, + anon_sym_BQUOTE, anon_sym_COMMA_AT, - STATE(584), 1, - sym_old_meta_lit, - STATE(587), 1, - sym_meta_lit, - STATE(716), 1, - aux_sym_sym_lit_repeat1, - STATE(761), 1, - sym__metadata_lit, - STATE(834), 1, - sym__bare_set_lit, - STATE(835), 1, - sym__bare_vec_lit, - STATE(836), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - [35857] = 17, + [35982] = 17, ACTIONS(3), 1, sym_block_comment, ACTIONS(17), 1, anon_sym_CARET, ACTIONS(19), 1, anon_sym_POUND_CARET, - ACTIONS(732), 1, + ACTIONS(694), 1, aux_sym_str_lit_token1, - ACTIONS(1822), 1, + ACTIONS(1832), 1, anon_sym_POUND_, - ACTIONS(1824), 1, - sym_kwd_lit, - ACTIONS(1828), 1, + ACTIONS(1838), 1, anon_sym_LBRACE, - ACTIONS(1854), 1, + ACTIONS(1844), 1, + sym_kwd_lit, + ACTIONS(1848), 1, aux_sym_sym_lit_token1, - ACTIONS(1856), 1, + ACTIONS(1850), 1, anon_sym_POUND_QMARK, - STATE(584), 1, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(748), 1, + STATE(792), 1, sym__bare_map_lit, - STATE(761), 1, + STATE(829), 1, sym__metadata_lit, - STATE(858), 1, + STATE(859), 1, aux_sym_sym_lit_repeat1, - ACTIONS(1852), 2, + ACTIONS(1846), 2, sym__ws, sym_comment, - STATE(502), 3, + STATE(535), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(730), 4, + STATE(783), 4, sym_str_lit, sym_sym_lit, sym_map_lit, sym_read_cond_lit, - [35915] = 3, + [36040] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1634), 6, + ACTIONS(1600), 6, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - ACTIONS(1632), 16, + ACTIONS(1598), 16, sym_num_lit, sym_kwd_lit, aux_sym_str_lit_token1, @@ -32116,148 +32206,58 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_COMMA_AT, - [35945] = 21, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(17), 1, - anon_sym_CARET, - ACTIONS(19), 1, - anon_sym_POUND_CARET, - ACTIONS(700), 1, - anon_sym_LPAREN, - ACTIONS(702), 1, - anon_sym_POUND0A, - ACTIONS(704), 1, - anon_sym_POUND, - ACTIONS(1858), 1, - aux_sym_sym_lit_token1, - ACTIONS(1860), 1, - anon_sym_POUND_QMARK, - ACTIONS(1862), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(1864), 1, - anon_sym_POUND_SQUOTE, - ACTIONS(1866), 1, - anon_sym_POUND_EQ, - ACTIONS(1868), 1, - anon_sym_AT, - ACTIONS(1870), 1, - anon_sym_SQUOTE, - ACTIONS(1872), 1, - anon_sym_COMMA_AT, - STATE(359), 1, - sym__bare_vec_lit, - STATE(360), 1, - sym__bare_set_lit, - STATE(584), 1, - sym_old_meta_lit, - STATE(587), 1, - sym_meta_lit, - STATE(716), 1, - aux_sym_sym_lit_repeat1, - STATE(761), 1, - sym__metadata_lit, - STATE(358), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - [36011] = 21, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(17), 1, - anon_sym_CARET, - ACTIONS(19), 1, - anon_sym_POUND_CARET, - ACTIONS(574), 1, - anon_sym_LPAREN, - ACTIONS(576), 1, - anon_sym_POUND0A, - ACTIONS(578), 1, - anon_sym_POUND, - ACTIONS(1874), 1, - aux_sym_sym_lit_token1, - ACTIONS(1876), 1, - anon_sym_POUND_QMARK, - ACTIONS(1878), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(1880), 1, - anon_sym_POUND_SQUOTE, - ACTIONS(1882), 1, - anon_sym_POUND_EQ, - ACTIONS(1884), 1, - anon_sym_AT, - ACTIONS(1886), 1, - anon_sym_SQUOTE, - ACTIONS(1888), 1, - anon_sym_COMMA_AT, - STATE(238), 1, - sym__bare_vec_lit, - STATE(294), 1, - sym__bare_set_lit, - STATE(584), 1, - sym_old_meta_lit, - STATE(587), 1, - sym_meta_lit, - STATE(716), 1, - aux_sym_sym_lit_repeat1, - STATE(761), 1, - sym__metadata_lit, - STATE(240), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - [36077] = 17, + [36070] = 17, ACTIONS(3), 1, sym_block_comment, ACTIONS(17), 1, anon_sym_CARET, ACTIONS(19), 1, anon_sym_POUND_CARET, - ACTIONS(732), 1, + ACTIONS(694), 1, aux_sym_str_lit_token1, - ACTIONS(1822), 1, + ACTIONS(1832), 1, anon_sym_POUND_, - ACTIONS(1828), 1, + ACTIONS(1838), 1, anon_sym_LBRACE, - ACTIONS(1834), 1, - sym_kwd_lit, - ACTIONS(1854), 1, + ACTIONS(1848), 1, aux_sym_sym_lit_token1, - ACTIONS(1856), 1, + ACTIONS(1850), 1, anon_sym_POUND_QMARK, - STATE(584), 1, + ACTIONS(1854), 1, + sym_kwd_lit, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(748), 1, + STATE(792), 1, sym__bare_map_lit, - STATE(761), 1, + STATE(829), 1, sym__metadata_lit, - STATE(858), 1, + STATE(859), 1, aux_sym_sym_lit_repeat1, - ACTIONS(1890), 2, + ACTIONS(1852), 2, sym__ws, sym_comment, - STATE(489), 3, + STATE(533), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(747), 4, + STATE(795), 4, sym_str_lit, sym_sym_lit, sym_map_lit, sym_read_cond_lit, - [36135] = 3, + [36128] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1646), 6, + ACTIONS(1604), 6, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - ACTIONS(1644), 16, + ACTIONS(1602), 16, sym_num_lit, sym_kwd_lit, aux_sym_str_lit_token1, @@ -32274,112 +32274,47 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_COMMA_AT, - [36165] = 3, + [36158] = 6, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1554), 6, - sym_nil_lit, - aux_sym_sym_lit_token1, + ACTIONS(1859), 1, + anon_sym_POUND_, + ACTIONS(1794), 2, anon_sym_POUND, anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - ACTIONS(1552), 16, - sym_num_lit, + ACTIONS(1856), 2, + sym__ws, + sym_comment, + STATE(479), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(1792), 14, sym_kwd_lit, aux_sym_str_lit_token1, - sym_char_lit, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_POUND0A, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_POUND_POUND, - anon_sym_POUND_EQ, - anon_sym_AT, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - [36195] = 3, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(1554), 6, - sym_nil_lit, aux_sym_sym_lit_token1, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - ACTIONS(1552), 16, - sym_num_lit, - sym_kwd_lit, - aux_sym_str_lit_token1, - sym_char_lit, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, anon_sym_POUND_SQUOTE, - anon_sym_POUND_POUND, anon_sym_POUND_EQ, anon_sym_AT, anon_sym_SQUOTE, - anon_sym_BQUOTE, anon_sym_COMMA_AT, - [36225] = 17, + [36194] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(11), 1, - aux_sym_str_lit_token1, - ACTIONS(17), 1, - anon_sym_CARET, - ACTIONS(19), 1, - anon_sym_POUND_CARET, - ACTIONS(1822), 1, - anon_sym_POUND_, - ACTIONS(1826), 1, - aux_sym_sym_lit_token1, - ACTIONS(1828), 1, - anon_sym_LBRACE, - ACTIONS(1830), 1, - anon_sym_POUND_QMARK, - ACTIONS(1894), 1, - sym_kwd_lit, - STATE(584), 1, - sym_old_meta_lit, - STATE(587), 1, - sym_meta_lit, - STATE(748), 1, - sym__bare_map_lit, - STATE(761), 1, - sym__metadata_lit, - STATE(861), 1, - aux_sym_sym_lit_repeat1, - ACTIONS(1892), 2, - sym__ws, - sym_comment, - STATE(510), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(736), 4, - sym_str_lit, - sym_sym_lit, - sym_map_lit, - sym_read_cond_lit, - [36283] = 3, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(1554), 6, + ACTIONS(1608), 6, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - ACTIONS(1552), 16, + ACTIONS(1606), 16, sym_num_lit, sym_kwd_lit, aux_sym_str_lit_token1, @@ -32396,7 +32331,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_COMMA_AT, - [36313] = 17, + [36224] = 17, ACTIONS(3), 1, sym_block_comment, ACTIONS(11), 1, @@ -32405,49 +32340,49 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(19), 1, anon_sym_POUND_CARET, - ACTIONS(1822), 1, + ACTIONS(1832), 1, anon_sym_POUND_, - ACTIONS(1826), 1, + ACTIONS(1836), 1, aux_sym_sym_lit_token1, - ACTIONS(1828), 1, + ACTIONS(1838), 1, anon_sym_LBRACE, - ACTIONS(1830), 1, + ACTIONS(1840), 1, anon_sym_POUND_QMARK, - ACTIONS(1896), 1, + ACTIONS(1854), 1, sym_kwd_lit, - STATE(584), 1, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(748), 1, + STATE(792), 1, sym__bare_map_lit, - STATE(761), 1, + STATE(829), 1, sym__metadata_lit, - STATE(861), 1, + STATE(852), 1, aux_sym_sym_lit_repeat1, - ACTIONS(1892), 2, + ACTIONS(1862), 2, sym__ws, sym_comment, - STATE(510), 3, + STATE(522), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(727), 4, + STATE(795), 4, sym_str_lit, sym_sym_lit, sym_map_lit, sym_read_cond_lit, - [36371] = 3, + [36282] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1602), 6, + ACTIONS(1612), 6, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - ACTIONS(1600), 16, + ACTIONS(1610), 16, sym_num_lit, sym_kwd_lit, aux_sym_str_lit_token1, @@ -32464,17 +32399,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_COMMA_AT, - [36401] = 3, + [36312] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1422), 6, + ACTIONS(1560), 6, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - ACTIONS(1420), 16, + ACTIONS(1558), 16, sym_num_lit, sym_kwd_lit, aux_sym_str_lit_token1, @@ -32491,17 +32426,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_COMMA_AT, - [36431] = 3, + [36342] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1518), 6, + ACTIONS(1620), 6, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - ACTIONS(1516), 16, + ACTIONS(1618), 16, sym_num_lit, sym_kwd_lit, aux_sym_str_lit_token1, @@ -32518,58 +32453,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_COMMA_AT, - [36461] = 17, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(17), 1, - anon_sym_CARET, - ACTIONS(19), 1, - anon_sym_POUND_CARET, - ACTIONS(732), 1, - aux_sym_str_lit_token1, - ACTIONS(1822), 1, - anon_sym_POUND_, - ACTIONS(1828), 1, - anon_sym_LBRACE, - ACTIONS(1854), 1, - aux_sym_sym_lit_token1, - ACTIONS(1856), 1, - anon_sym_POUND_QMARK, - ACTIONS(1896), 1, - sym_kwd_lit, - STATE(584), 1, - sym_old_meta_lit, - STATE(587), 1, - sym_meta_lit, - STATE(748), 1, - sym__bare_map_lit, - STATE(761), 1, - sym__metadata_lit, - STATE(858), 1, - aux_sym_sym_lit_repeat1, - ACTIONS(1892), 2, - sym__ws, - sym_comment, - STATE(510), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(727), 4, - sym_str_lit, - sym_sym_lit, - sym_map_lit, - sym_read_cond_lit, - [36519] = 3, + [36372] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1450), 6, + ACTIONS(1428), 6, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - ACTIONS(1448), 16, + ACTIONS(1426), 16, sym_num_lit, sym_kwd_lit, aux_sym_str_lit_token1, @@ -32586,17 +32480,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_COMMA_AT, - [36549] = 3, + [36402] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1566), 6, + ACTIONS(1628), 6, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - ACTIONS(1564), 16, + ACTIONS(1626), 16, sym_num_lit, sym_kwd_lit, aux_sym_str_lit_token1, @@ -32613,17 +32507,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_COMMA_AT, - [36579] = 3, + [36432] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1570), 6, + ACTIONS(1568), 6, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - ACTIONS(1568), 16, + ACTIONS(1566), 16, sym_num_lit, sym_kwd_lit, aux_sym_str_lit_token1, @@ -32640,17 +32534,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_COMMA_AT, - [36609] = 3, + [36462] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1578), 6, + ACTIONS(1636), 6, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - ACTIONS(1576), 16, + ACTIONS(1634), 16, sym_num_lit, sym_kwd_lit, aux_sym_str_lit_token1, @@ -32667,17 +32561,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_COMMA_AT, - [36639] = 3, + [36492] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1582), 6, + ACTIONS(1444), 6, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - ACTIONS(1580), 16, + ACTIONS(1442), 16, sym_num_lit, sym_kwd_lit, aux_sym_str_lit_token1, @@ -32694,17 +32588,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_COMMA_AT, - [36669] = 3, + [36522] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1586), 6, + ACTIONS(1648), 6, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - ACTIONS(1584), 16, + ACTIONS(1646), 16, sym_num_lit, sym_kwd_lit, aux_sym_str_lit_token1, @@ -32721,17 +32615,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_COMMA_AT, - [36699] = 3, + [36552] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1590), 6, + ACTIONS(1648), 6, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - ACTIONS(1588), 16, + ACTIONS(1646), 16, sym_num_lit, sym_kwd_lit, aux_sym_str_lit_token1, @@ -32748,17 +32642,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_COMMA_AT, - [36729] = 3, + [36582] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1438), 6, + ACTIONS(1648), 6, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - ACTIONS(1436), 16, + ACTIONS(1646), 16, sym_num_lit, sym_kwd_lit, aux_sym_str_lit_token1, @@ -32775,17 +32669,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_COMMA_AT, - [36759] = 3, + [36612] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1590), 6, + ACTIONS(1440), 6, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - ACTIONS(1588), 16, + ACTIONS(1438), 16, sym_num_lit, sym_kwd_lit, aux_sym_str_lit_token1, @@ -32802,17 +32696,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_COMMA_AT, - [36789] = 3, + [36642] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1414), 6, + ACTIONS(1652), 6, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - ACTIONS(1412), 16, + ACTIONS(1650), 16, sym_num_lit, sym_kwd_lit, aux_sym_str_lit_token1, @@ -32829,17 +32723,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_COMMA_AT, - [36819] = 3, + [36672] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1590), 6, + ACTIONS(1644), 6, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - ACTIONS(1588), 16, + ACTIONS(1642), 16, sym_num_lit, sym_kwd_lit, aux_sym_str_lit_token1, @@ -32856,17 +32750,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_COMMA_AT, - [36849] = 3, + [36702] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1522), 6, + ACTIONS(1564), 6, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - ACTIONS(1520), 16, + ACTIONS(1562), 16, sym_num_lit, sym_kwd_lit, aux_sym_str_lit_token1, @@ -32883,58 +32777,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_COMMA_AT, - [36879] = 17, + [36732] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(17), 1, - anon_sym_CARET, - ACTIONS(19), 1, - anon_sym_POUND_CARET, - ACTIONS(732), 1, - aux_sym_str_lit_token1, - ACTIONS(1822), 1, - anon_sym_POUND_, - ACTIONS(1828), 1, - anon_sym_LBRACE, - ACTIONS(1854), 1, - aux_sym_sym_lit_token1, - ACTIONS(1856), 1, - anon_sym_POUND_QMARK, - ACTIONS(1894), 1, - sym_kwd_lit, - STATE(584), 1, - sym_old_meta_lit, - STATE(587), 1, - sym_meta_lit, - STATE(748), 1, - sym__bare_map_lit, - STATE(761), 1, - sym__metadata_lit, - STATE(858), 1, - aux_sym_sym_lit_repeat1, - ACTIONS(1892), 2, - sym__ws, - sym_comment, - STATE(510), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(736), 4, - sym_str_lit, - sym_sym_lit, - sym_map_lit, - sym_read_cond_lit, - [36937] = 3, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(1526), 6, + ACTIONS(1436), 6, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - ACTIONS(1524), 16, + ACTIONS(1434), 16, sym_num_lit, sym_kwd_lit, aux_sym_str_lit_token1, @@ -32951,107 +32804,44 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_COMMA_AT, - [36967] = 21, + [36762] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(17), 1, - anon_sym_CARET, - ACTIONS(19), 1, - anon_sym_POUND_CARET, - ACTIONS(738), 1, - anon_sym_LPAREN, - ACTIONS(740), 1, - anon_sym_POUND0A, - ACTIONS(742), 1, - anon_sym_POUND, - ACTIONS(1898), 1, + ACTIONS(1524), 6, + sym_nil_lit, aux_sym_sym_lit_token1, - ACTIONS(1900), 1, + anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(1902), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(1904), 1, - anon_sym_POUND_SQUOTE, - ACTIONS(1906), 1, - anon_sym_POUND_EQ, - ACTIONS(1908), 1, - anon_sym_AT, - ACTIONS(1910), 1, - anon_sym_SQUOTE, - ACTIONS(1912), 1, - anon_sym_COMMA_AT, - STATE(584), 1, - sym_old_meta_lit, - STATE(587), 1, - sym_meta_lit, - STATE(644), 1, - sym__bare_set_lit, - STATE(669), 1, - sym__bare_vec_lit, - STATE(716), 1, - aux_sym_sym_lit_repeat1, - STATE(761), 1, - sym__metadata_lit, - STATE(643), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - [37033] = 21, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(17), 1, + anon_sym_COMMA, + sym_fancy_literal, + ACTIONS(1522), 16, + sym_num_lit, + sym_kwd_lit, + aux_sym_str_lit_token1, + sym_char_lit, anon_sym_CARET, - ACTIONS(19), 1, anon_sym_POUND_CARET, - ACTIONS(21), 1, anon_sym_LPAREN, - ACTIONS(23), 1, anon_sym_POUND0A, - ACTIONS(25), 1, - anon_sym_POUND, - ACTIONS(1914), 1, - aux_sym_sym_lit_token1, - ACTIONS(1916), 1, - anon_sym_POUND_QMARK, - ACTIONS(1918), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(1920), 1, anon_sym_POUND_SQUOTE, - ACTIONS(1922), 1, + anon_sym_POUND_POUND, anon_sym_POUND_EQ, - ACTIONS(1924), 1, anon_sym_AT, - ACTIONS(1926), 1, anon_sym_SQUOTE, - ACTIONS(1928), 1, + anon_sym_BQUOTE, anon_sym_COMMA_AT, - STATE(454), 1, - sym__bare_set_lit, - STATE(455), 1, - sym__bare_vec_lit, - STATE(584), 1, - sym_old_meta_lit, - STATE(587), 1, - sym_meta_lit, - STATE(716), 1, - aux_sym_sym_lit_repeat1, - STATE(761), 1, - sym__metadata_lit, - STATE(456), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - [37099] = 3, + [36792] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1454), 6, + ACTIONS(1572), 6, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - ACTIONS(1452), 16, + ACTIONS(1570), 16, sym_num_lit, sym_kwd_lit, aux_sym_str_lit_token1, @@ -33068,17 +32858,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_COMMA_AT, - [37129] = 3, + [36822] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1458), 6, + ACTIONS(1520), 6, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - ACTIONS(1456), 16, + ACTIONS(1518), 16, sym_num_lit, sym_kwd_lit, aux_sym_str_lit_token1, @@ -33095,44 +32885,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_COMMA_AT, - [37159] = 3, + [36852] = 21, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1462), 6, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - ACTIONS(1460), 16, - sym_num_lit, - sym_kwd_lit, - aux_sym_str_lit_token1, - sym_char_lit, + ACTIONS(17), 1, anon_sym_CARET, + ACTIONS(19), 1, anon_sym_POUND_CARET, + ACTIONS(428), 1, anon_sym_LPAREN, + ACTIONS(430), 1, anon_sym_POUND0A, + ACTIONS(432), 1, + anon_sym_POUND, + ACTIONS(1864), 1, + aux_sym_sym_lit_token1, + ACTIONS(1866), 1, + anon_sym_POUND_QMARK, + ACTIONS(1868), 1, anon_sym_POUND_QMARK_AT, + ACTIONS(1870), 1, anon_sym_POUND_SQUOTE, - anon_sym_POUND_POUND, + ACTIONS(1872), 1, anon_sym_POUND_EQ, + ACTIONS(1874), 1, anon_sym_AT, + ACTIONS(1876), 1, anon_sym_SQUOTE, - anon_sym_BQUOTE, + ACTIONS(1878), 1, anon_sym_COMMA_AT, - [37189] = 3, + STATE(581), 1, + sym_old_meta_lit, + STATE(582), 1, + sym_meta_lit, + STATE(725), 1, + aux_sym_sym_lit_repeat1, + STATE(766), 1, + sym__bare_vec_lit, + STATE(767), 1, + sym__bare_set_lit, + STATE(829), 1, + sym__metadata_lit, + STATE(763), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + [36918] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1668), 6, + ACTIONS(1580), 6, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - ACTIONS(1666), 16, + ACTIONS(1578), 16, sym_num_lit, sym_kwd_lit, aux_sym_str_lit_token1, @@ -33149,74 +32957,89 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_COMMA_AT, - [37219] = 6, + [36948] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1933), 1, - anon_sym_POUND_, - ACTIONS(1790), 2, + ACTIONS(1584), 6, + sym_nil_lit, + aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(1930), 2, - sym__ws, - sym_comment, - STATE(510), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - ACTIONS(1788), 14, + anon_sym_COMMA, + sym_fancy_literal, + ACTIONS(1582), 16, + sym_num_lit, sym_kwd_lit, aux_sym_str_lit_token1, - aux_sym_sym_lit_token1, + sym_char_lit, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_LBRACE, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, anon_sym_POUND_SQUOTE, + anon_sym_POUND_POUND, anon_sym_POUND_EQ, anon_sym_AT, anon_sym_SQUOTE, + anon_sym_BQUOTE, anon_sym_COMMA_AT, - [37255] = 3, + [36978] = 21, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1466), 6, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - ACTIONS(1464), 16, - sym_num_lit, - sym_kwd_lit, - aux_sym_str_lit_token1, - sym_char_lit, + ACTIONS(17), 1, anon_sym_CARET, + ACTIONS(19), 1, anon_sym_POUND_CARET, + ACTIONS(752), 1, anon_sym_LPAREN, + ACTIONS(754), 1, anon_sym_POUND0A, + ACTIONS(756), 1, + anon_sym_POUND, + ACTIONS(1880), 1, + aux_sym_sym_lit_token1, + ACTIONS(1882), 1, + anon_sym_POUND_QMARK, + ACTIONS(1884), 1, anon_sym_POUND_QMARK_AT, + ACTIONS(1886), 1, anon_sym_POUND_SQUOTE, - anon_sym_POUND_POUND, + ACTIONS(1888), 1, anon_sym_POUND_EQ, + ACTIONS(1890), 1, anon_sym_AT, + ACTIONS(1892), 1, anon_sym_SQUOTE, - anon_sym_BQUOTE, + ACTIONS(1894), 1, anon_sym_COMMA_AT, - [37285] = 3, + STATE(363), 1, + sym__bare_vec_lit, + STATE(364), 1, + sym__bare_set_lit, + STATE(581), 1, + sym_old_meta_lit, + STATE(582), 1, + sym_meta_lit, + STATE(725), 1, + aux_sym_sym_lit_repeat1, + STATE(829), 1, + sym__metadata_lit, + STATE(362), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + [37044] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1470), 6, + ACTIONS(1464), 6, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - ACTIONS(1468), 16, + ACTIONS(1462), 16, sym_num_lit, sym_kwd_lit, aux_sym_str_lit_token1, @@ -33233,17 +33056,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_COMMA_AT, - [37315] = 3, + [37074] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1474), 6, + ACTIONS(1424), 6, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - ACTIONS(1472), 16, + ACTIONS(1422), 16, sym_num_lit, sym_kwd_lit, aux_sym_str_lit_token1, @@ -33260,17 +33083,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_COMMA_AT, - [37345] = 3, + [37104] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1478), 6, + ACTIONS(1528), 6, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - ACTIONS(1476), 16, + ACTIONS(1526), 16, sym_num_lit, sym_kwd_lit, aux_sym_str_lit_token1, @@ -33287,17 +33110,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_COMMA_AT, - [37375] = 3, + [37134] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1482), 6, + ACTIONS(1532), 6, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - ACTIONS(1480), 16, + ACTIONS(1530), 16, sym_num_lit, sym_kwd_lit, aux_sym_str_lit_token1, @@ -33314,17 +33137,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_COMMA_AT, - [37405] = 3, + [37164] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1530), 6, + ACTIONS(1678), 6, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - ACTIONS(1528), 16, + ACTIONS(1676), 16, sym_num_lit, sym_kwd_lit, aux_sym_str_lit_token1, @@ -33341,44 +33164,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_COMMA_AT, - [37435] = 3, + [37194] = 21, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1486), 6, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - ACTIONS(1484), 16, - sym_num_lit, - sym_kwd_lit, - aux_sym_str_lit_token1, - sym_char_lit, + ACTIONS(17), 1, anon_sym_CARET, + ACTIONS(19), 1, anon_sym_POUND_CARET, + ACTIONS(584), 1, anon_sym_LPAREN, + ACTIONS(586), 1, anon_sym_POUND0A, + ACTIONS(588), 1, + anon_sym_POUND, + ACTIONS(1896), 1, + aux_sym_sym_lit_token1, + ACTIONS(1898), 1, + anon_sym_POUND_QMARK, + ACTIONS(1900), 1, anon_sym_POUND_QMARK_AT, + ACTIONS(1902), 1, anon_sym_POUND_SQUOTE, - anon_sym_POUND_POUND, + ACTIONS(1904), 1, anon_sym_POUND_EQ, + ACTIONS(1906), 1, anon_sym_AT, + ACTIONS(1908), 1, anon_sym_SQUOTE, - anon_sym_BQUOTE, + ACTIONS(1910), 1, anon_sym_COMMA_AT, - [37465] = 3, + STATE(291), 1, + sym__bare_set_lit, + STATE(293), 1, + sym__bare_vec_lit, + STATE(581), 1, + sym_old_meta_lit, + STATE(582), 1, + sym_meta_lit, + STATE(725), 1, + aux_sym_sym_lit_repeat1, + STATE(829), 1, + sym__metadata_lit, + STATE(299), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + [37260] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1534), 6, + ACTIONS(1536), 6, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - ACTIONS(1532), 16, + ACTIONS(1534), 16, sym_num_lit, sym_kwd_lit, aux_sym_str_lit_token1, @@ -33395,17 +33236,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_COMMA_AT, - [37495] = 3, + [37290] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1490), 6, + ACTIONS(1540), 6, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - ACTIONS(1488), 16, + ACTIONS(1538), 16, sym_num_lit, sym_kwd_lit, aux_sym_str_lit_token1, @@ -33422,17 +33263,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_COMMA_AT, - [37525] = 3, + [37320] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1538), 6, + ACTIONS(1544), 6, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - ACTIONS(1536), 16, + ACTIONS(1542), 16, sym_num_lit, sym_kwd_lit, aux_sym_str_lit_token1, @@ -33449,17 +33290,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_COMMA_AT, - [37555] = 3, + [37350] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1494), 6, + ACTIONS(1548), 6, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - ACTIONS(1492), 16, + ACTIONS(1546), 16, sym_num_lit, sym_kwd_lit, aux_sym_str_lit_token1, @@ -33476,17 +33317,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_COMMA_AT, - [37585] = 3, + [37380] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1542), 6, + ACTIONS(1552), 6, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - ACTIONS(1540), 16, + ACTIONS(1550), 16, sym_num_lit, sym_kwd_lit, aux_sym_str_lit_token1, @@ -33503,44 +33344,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_COMMA_AT, - [37615] = 3, + [37410] = 21, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1498), 6, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - ACTIONS(1496), 16, - sym_num_lit, - sym_kwd_lit, - aux_sym_str_lit_token1, - sym_char_lit, + ACTIONS(17), 1, anon_sym_CARET, + ACTIONS(19), 1, anon_sym_POUND_CARET, + ACTIONS(700), 1, anon_sym_LPAREN, + ACTIONS(702), 1, anon_sym_POUND0A, + ACTIONS(704), 1, + anon_sym_POUND, + ACTIONS(1912), 1, + aux_sym_sym_lit_token1, + ACTIONS(1914), 1, + anon_sym_POUND_QMARK, + ACTIONS(1916), 1, anon_sym_POUND_QMARK_AT, + ACTIONS(1918), 1, anon_sym_POUND_SQUOTE, - anon_sym_POUND_POUND, + ACTIONS(1920), 1, anon_sym_POUND_EQ, + ACTIONS(1922), 1, anon_sym_AT, + ACTIONS(1924), 1, anon_sym_SQUOTE, - anon_sym_BQUOTE, + ACTIONS(1926), 1, anon_sym_COMMA_AT, - [37645] = 3, + STATE(581), 1, + sym_old_meta_lit, + STATE(582), 1, + sym_meta_lit, + STATE(651), 1, + sym__bare_vec_lit, + STATE(676), 1, + sym__bare_set_lit, + STATE(725), 1, + aux_sym_sym_lit_repeat1, + STATE(829), 1, + sym__metadata_lit, + STATE(677), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + [37476] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1546), 6, + ACTIONS(1556), 6, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - ACTIONS(1544), 16, + ACTIONS(1554), 16, sym_num_lit, sym_kwd_lit, aux_sym_str_lit_token1, @@ -33557,17 +33416,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_COMMA_AT, - [37675] = 3, + [37506] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1502), 6, + ACTIONS(1576), 6, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - ACTIONS(1500), 16, + ACTIONS(1574), 16, sym_num_lit, sym_kwd_lit, aux_sym_str_lit_token1, @@ -33584,17 +33443,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_COMMA_AT, - [37705] = 3, + [37536] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1506), 6, + ACTIONS(1616), 6, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - ACTIONS(1504), 16, + ACTIONS(1614), 16, sym_num_lit, sym_kwd_lit, aux_sym_str_lit_token1, @@ -33611,62 +33470,166 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_COMMA_AT, - [37735] = 21, + [37566] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(17), 1, + ACTIONS(1468), 6, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + ACTIONS(1466), 16, + sym_num_lit, + sym_kwd_lit, + aux_sym_str_lit_token1, + sym_char_lit, anon_sym_CARET, - ACTIONS(19), 1, anon_sym_POUND_CARET, - ACTIONS(394), 1, anon_sym_LPAREN, - ACTIONS(396), 1, anon_sym_POUND0A, - ACTIONS(398), 1, - anon_sym_POUND, - ACTIONS(1936), 1, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_POUND_POUND, + anon_sym_POUND_EQ, + anon_sym_AT, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA_AT, + [37596] = 3, + ACTIONS(3), 1, + sym_block_comment, + ACTIONS(1584), 6, + sym_nil_lit, aux_sym_sym_lit_token1, - ACTIONS(1938), 1, + anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(1940), 1, + anon_sym_COMMA, + sym_fancy_literal, + ACTIONS(1582), 16, + sym_num_lit, + sym_kwd_lit, + aux_sym_str_lit_token1, + sym_char_lit, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - ACTIONS(1942), 1, anon_sym_POUND_SQUOTE, - ACTIONS(1944), 1, + anon_sym_POUND_POUND, anon_sym_POUND_EQ, - ACTIONS(1946), 1, anon_sym_AT, - ACTIONS(1948), 1, anon_sym_SQUOTE, - ACTIONS(1950), 1, + anon_sym_BQUOTE, anon_sym_COMMA_AT, - STATE(537), 1, - sym__bare_vec_lit, - STATE(538), 1, - sym__bare_set_lit, - STATE(584), 1, + [37626] = 17, + ACTIONS(3), 1, + sym_block_comment, + ACTIONS(11), 1, + aux_sym_str_lit_token1, + ACTIONS(17), 1, + anon_sym_CARET, + ACTIONS(19), 1, + anon_sym_POUND_CARET, + ACTIONS(1832), 1, + anon_sym_POUND_, + ACTIONS(1836), 1, + aux_sym_sym_lit_token1, + ACTIONS(1838), 1, + anon_sym_LBRACE, + ACTIONS(1840), 1, + anon_sym_POUND_QMARK, + ACTIONS(1928), 1, + sym_kwd_lit, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(716), 1, - aux_sym_sym_lit_repeat1, - STATE(761), 1, + STATE(792), 1, + sym__bare_map_lit, + STATE(829), 1, sym__metadata_lit, - STATE(536), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - [37801] = 3, + STATE(852), 1, + aux_sym_sym_lit_repeat1, + ACTIONS(1830), 2, + sym__ws, + sym_comment, + STATE(479), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(772), 4, + sym_str_lit, + sym_sym_lit, + sym_map_lit, + sym_read_cond_lit, + [37684] = 3, + ACTIONS(3), 1, + sym_block_comment, + ACTIONS(1632), 6, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + ACTIONS(1630), 16, + sym_num_lit, + sym_kwd_lit, + aux_sym_str_lit_token1, + sym_char_lit, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_POUND0A, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_POUND_POUND, + anon_sym_POUND_EQ, + anon_sym_AT, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA_AT, + [37714] = 3, + ACTIONS(3), 1, + sym_block_comment, + ACTIONS(1472), 6, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + ACTIONS(1470), 16, + sym_num_lit, + sym_kwd_lit, + aux_sym_str_lit_token1, + sym_char_lit, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_POUND0A, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_POUND_POUND, + anon_sym_POUND_EQ, + anon_sym_AT, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA_AT, + [37744] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1510), 6, + ACTIONS(1640), 6, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - ACTIONS(1508), 16, + ACTIONS(1638), 16, sym_num_lit, sym_kwd_lit, aux_sym_str_lit_token1, @@ -33683,17 +33646,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_COMMA_AT, - [37831] = 3, + [37774] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1550), 6, + ACTIONS(1656), 6, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - ACTIONS(1548), 16, + ACTIONS(1654), 16, sym_num_lit, sym_kwd_lit, aux_sym_str_lit_token1, @@ -33710,17 +33673,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_COMMA_AT, - [37861] = 3, + [37804] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1598), 6, + ACTIONS(1476), 6, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - ACTIONS(1596), 16, + ACTIONS(1474), 16, sym_num_lit, sym_kwd_lit, aux_sym_str_lit_token1, @@ -33737,62 +33700,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_COMMA_AT, - [37891] = 21, + [37834] = 21, ACTIONS(3), 1, sym_block_comment, ACTIONS(17), 1, anon_sym_CARET, ACTIONS(19), 1, anon_sym_POUND_CARET, - ACTIONS(462), 1, + ACTIONS(528), 1, anon_sym_LPAREN, - ACTIONS(464), 1, + ACTIONS(530), 1, anon_sym_POUND0A, - ACTIONS(466), 1, + ACTIONS(532), 1, anon_sym_POUND, - ACTIONS(1952), 1, + ACTIONS(1930), 1, aux_sym_sym_lit_token1, - ACTIONS(1954), 1, + ACTIONS(1932), 1, anon_sym_POUND_QMARK, - ACTIONS(1956), 1, + ACTIONS(1934), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(1958), 1, + ACTIONS(1936), 1, anon_sym_POUND_SQUOTE, - ACTIONS(1960), 1, + ACTIONS(1938), 1, anon_sym_POUND_EQ, - ACTIONS(1962), 1, + ACTIONS(1940), 1, anon_sym_AT, - ACTIONS(1964), 1, + ACTIONS(1942), 1, anon_sym_SQUOTE, - ACTIONS(1966), 1, + ACTIONS(1944), 1, anon_sym_COMMA_AT, - STATE(584), 1, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(595), 1, + STATE(623), 1, sym__bare_set_lit, - STATE(598), 1, + STATE(624), 1, sym__bare_vec_lit, - STATE(716), 1, + STATE(725), 1, aux_sym_sym_lit_repeat1, - STATE(761), 1, + STATE(829), 1, sym__metadata_lit, - STATE(599), 3, + STATE(625), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [37957] = 3, + [37900] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1418), 6, + ACTIONS(1480), 6, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - ACTIONS(1416), 16, + ACTIONS(1478), 16, sym_num_lit, sym_kwd_lit, aux_sym_str_lit_token1, @@ -33809,17 +33772,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_COMMA_AT, - [37987] = 3, + [37930] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1558), 6, + ACTIONS(1484), 6, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - ACTIONS(1556), 16, + ACTIONS(1482), 16, sym_num_lit, sym_kwd_lit, aux_sym_str_lit_token1, @@ -33836,17 +33799,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_COMMA_AT, - [38017] = 3, + [37960] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1562), 6, + ACTIONS(1488), 6, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - ACTIONS(1560), 16, + ACTIONS(1486), 16, sym_num_lit, sym_kwd_lit, aux_sym_str_lit_token1, @@ -33863,17 +33826,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_COMMA_AT, - [38047] = 3, + [37990] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1574), 6, + ACTIONS(1492), 6, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - ACTIONS(1572), 16, + ACTIONS(1490), 16, sym_num_lit, sym_kwd_lit, aux_sym_str_lit_token1, @@ -33890,17 +33853,58 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_COMMA_AT, - [38077] = 3, + [38020] = 17, + ACTIONS(3), 1, + sym_block_comment, + ACTIONS(17), 1, + anon_sym_CARET, + ACTIONS(19), 1, + anon_sym_POUND_CARET, + ACTIONS(694), 1, + aux_sym_str_lit_token1, + ACTIONS(1832), 1, + anon_sym_POUND_, + ACTIONS(1838), 1, + anon_sym_LBRACE, + ACTIONS(1848), 1, + aux_sym_sym_lit_token1, + ACTIONS(1850), 1, + anon_sym_POUND_QMARK, + ACTIONS(1928), 1, + sym_kwd_lit, + STATE(581), 1, + sym_old_meta_lit, + STATE(582), 1, + sym_meta_lit, + STATE(792), 1, + sym__bare_map_lit, + STATE(829), 1, + sym__metadata_lit, + STATE(859), 1, + aux_sym_sym_lit_repeat1, + ACTIONS(1830), 2, + sym__ws, + sym_comment, + STATE(479), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(772), 4, + sym_str_lit, + sym_sym_lit, + sym_map_lit, + sym_read_cond_lit, + [38078] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1434), 6, + ACTIONS(1496), 6, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - ACTIONS(1432), 16, + ACTIONS(1494), 16, sym_num_lit, sym_kwd_lit, aux_sym_str_lit_token1, @@ -33917,17 +33921,103 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_COMMA_AT, - [38107] = 3, + [38108] = 17, + ACTIONS(3), 1, + sym_block_comment, + ACTIONS(17), 1, + anon_sym_CARET, + ACTIONS(19), 1, + anon_sym_POUND_CARET, + ACTIONS(694), 1, + aux_sym_str_lit_token1, + ACTIONS(1832), 1, + anon_sym_POUND_, + ACTIONS(1834), 1, + sym_kwd_lit, + ACTIONS(1838), 1, + anon_sym_LBRACE, + ACTIONS(1848), 1, + aux_sym_sym_lit_token1, + ACTIONS(1850), 1, + anon_sym_POUND_QMARK, + STATE(581), 1, + sym_old_meta_lit, + STATE(582), 1, + sym_meta_lit, + STATE(792), 1, + sym__bare_map_lit, + STATE(829), 1, + sym__metadata_lit, + STATE(859), 1, + aux_sym_sym_lit_repeat1, + ACTIONS(1830), 2, + sym__ws, + sym_comment, + STATE(479), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(765), 4, + sym_str_lit, + sym_sym_lit, + sym_map_lit, + sym_read_cond_lit, + [38166] = 21, + ACTIONS(3), 1, + sym_block_comment, + ACTIONS(17), 1, + anon_sym_CARET, + ACTIONS(19), 1, + anon_sym_POUND_CARET, + ACTIONS(394), 1, + anon_sym_LPAREN, + ACTIONS(396), 1, + anon_sym_POUND0A, + ACTIONS(398), 1, + anon_sym_POUND, + ACTIONS(1946), 1, + aux_sym_sym_lit_token1, + ACTIONS(1948), 1, + anon_sym_POUND_QMARK, + ACTIONS(1950), 1, + anon_sym_POUND_QMARK_AT, + ACTIONS(1952), 1, + anon_sym_POUND_SQUOTE, + ACTIONS(1954), 1, + anon_sym_POUND_EQ, + ACTIONS(1956), 1, + anon_sym_AT, + ACTIONS(1958), 1, + anon_sym_SQUOTE, + ACTIONS(1960), 1, + anon_sym_COMMA_AT, + STATE(523), 1, + sym__bare_set_lit, + STATE(525), 1, + sym__bare_vec_lit, + STATE(581), 1, + sym_old_meta_lit, + STATE(582), 1, + sym_meta_lit, + STATE(725), 1, + aux_sym_sym_lit_repeat1, + STATE(829), 1, + sym__metadata_lit, + STATE(526), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + [38232] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1426), 6, + ACTIONS(1460), 6, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - ACTIONS(1424), 16, + ACTIONS(1458), 16, sym_num_lit, sym_kwd_lit, aux_sym_str_lit_token1, @@ -33944,17 +34034,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_COMMA_AT, - [38137] = 3, + [38262] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1642), 6, + ACTIONS(1500), 6, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - ACTIONS(1640), 16, + ACTIONS(1498), 16, sym_num_lit, sym_kwd_lit, aux_sym_str_lit_token1, @@ -33971,17 +34061,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_COMMA_AT, - [38167] = 3, + [38292] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1672), 6, + ACTIONS(1682), 6, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - ACTIONS(1670), 16, + ACTIONS(1680), 16, sym_num_lit, sym_kwd_lit, aux_sym_str_lit_token1, @@ -33998,17 +34088,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_COMMA_AT, - [38197] = 3, + [38322] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1638), 6, + ACTIONS(1516), 6, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - ACTIONS(1636), 16, + ACTIONS(1514), 16, sym_num_lit, sym_kwd_lit, aux_sym_str_lit_token1, @@ -34025,17 +34115,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_COMMA_AT, - [38227] = 3, + [38352] = 21, + ACTIONS(3), 1, + sym_block_comment, + ACTIONS(17), 1, + anon_sym_CARET, + ACTIONS(19), 1, + anon_sym_POUND_CARET, + ACTIONS(21), 1, + anon_sym_LPAREN, + ACTIONS(23), 1, + anon_sym_POUND0A, + ACTIONS(25), 1, + anon_sym_POUND, + ACTIONS(1962), 1, + aux_sym_sym_lit_token1, + ACTIONS(1964), 1, + anon_sym_POUND_QMARK, + ACTIONS(1966), 1, + anon_sym_POUND_QMARK_AT, + ACTIONS(1968), 1, + anon_sym_POUND_SQUOTE, + ACTIONS(1970), 1, + anon_sym_POUND_EQ, + ACTIONS(1972), 1, + anon_sym_AT, + ACTIONS(1974), 1, + anon_sym_SQUOTE, + ACTIONS(1976), 1, + anon_sym_COMMA_AT, + STATE(452), 1, + sym__bare_set_lit, + STATE(453), 1, + sym__bare_vec_lit, + STATE(581), 1, + sym_old_meta_lit, + STATE(582), 1, + sym_meta_lit, + STATE(725), 1, + aux_sym_sym_lit_repeat1, + STATE(829), 1, + sym__metadata_lit, + STATE(454), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + [38418] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1630), 6, + ACTIONS(1512), 6, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - ACTIONS(1628), 16, + ACTIONS(1510), 16, sym_num_lit, sym_kwd_lit, aux_sym_str_lit_token1, @@ -34052,17 +34187,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_COMMA_AT, - [38257] = 3, + [38448] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1622), 6, + ACTIONS(1504), 6, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - ACTIONS(1620), 16, + ACTIONS(1502), 16, sym_num_lit, sym_kwd_lit, aux_sym_str_lit_token1, @@ -34079,45 +34214,34 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_COMMA_AT, - [38287] = 15, + [38478] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(17), 1, + ACTIONS(1508), 6, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + ACTIONS(1506), 16, + sym_num_lit, + sym_kwd_lit, + aux_sym_str_lit_token1, + sym_char_lit, anon_sym_CARET, - ACTIONS(19), 1, anon_sym_POUND_CARET, - ACTIONS(462), 1, anon_sym_LPAREN, - ACTIONS(1822), 1, - anon_sym_POUND_, - ACTIONS(1970), 1, - aux_sym_sym_lit_token1, - ACTIONS(1972), 1, - anon_sym_POUND_QMARK, - STATE(584), 1, - sym_old_meta_lit, - STATE(587), 1, - sym_meta_lit, - STATE(761), 1, - sym__metadata_lit, - STATE(842), 1, - aux_sym_sym_lit_repeat1, - ACTIONS(1968), 2, - sym__ws, - sym_comment, - STATE(546), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(615), 3, - sym_sym_lit, - sym_list_lit, - sym_read_cond_lit, - STATE(633), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - [38340] = 15, + anon_sym_POUND0A, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_POUND_POUND, + anon_sym_POUND_EQ, + anon_sym_AT, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA_AT, + [38508] = 17, ACTIONS(3), 1, sym_block_comment, ACTIONS(17), 1, @@ -34126,217 +34250,118 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(21), 1, anon_sym_LPAREN, - ACTIONS(1822), 1, + ACTIONS(1832), 1, anon_sym_POUND_, - ACTIONS(1826), 1, + ACTIONS(1836), 1, aux_sym_sym_lit_token1, - ACTIONS(1830), 1, + ACTIONS(1840), 1, anon_sym_POUND_QMARK, - STATE(584), 1, - sym_old_meta_lit, - STATE(587), 1, - sym_meta_lit, - STATE(761), 1, - sym__metadata_lit, - STATE(844), 1, - aux_sym_sym_lit_repeat1, - ACTIONS(1974), 2, - sym__ws, - sym_comment, - STATE(379), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(449), 3, + STATE(402), 1, sym_sym_lit, + STATE(403), 1, sym_list_lit, + STATE(404), 1, sym_read_cond_lit, - STATE(569), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - [38393] = 4, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(1978), 1, - anon_sym_into, - STATE(651), 2, - sym__gap, - sym_dis_expr, - ACTIONS(1976), 18, - sym__ws, - sym_comment, - anon_sym_POUND_, - anon_sym_RPAREN, - sym_accumulation_verb, - anon_sym_for, - anon_sym_and, - anon_sym_with, - anon_sym_do, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - [38424] = 15, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(17), 1, - anon_sym_CARET, - ACTIONS(19), 1, - anon_sym_POUND_CARET, - ACTIONS(462), 1, - anon_sym_LPAREN, - ACTIONS(1822), 1, - anon_sym_POUND_, - ACTIONS(1970), 1, - aux_sym_sym_lit_token1, - ACTIONS(1972), 1, - anon_sym_POUND_QMARK, - STATE(584), 1, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(761), 1, + STATE(829), 1, sym__metadata_lit, - STATE(842), 1, + STATE(843), 1, aux_sym_sym_lit_repeat1, - ACTIONS(1892), 2, + ACTIONS(1830), 2, sym__ws, sym_comment, - STATE(510), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(606), 3, - sym_sym_lit, - sym_list_lit, - sym_read_cond_lit, - STATE(633), 3, + STATE(376), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [38477] = 15, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(17), 1, - anon_sym_CARET, - ACTIONS(19), 1, - anon_sym_POUND_CARET, - ACTIONS(738), 1, - anon_sym_LPAREN, - ACTIONS(1822), 1, - anon_sym_POUND_, - ACTIONS(1854), 1, - aux_sym_sym_lit_token1, - ACTIONS(1856), 1, - anon_sym_POUND_QMARK, - STATE(584), 1, - sym_old_meta_lit, - STATE(587), 1, - sym_meta_lit, - STATE(761), 1, - sym__metadata_lit, - STATE(840), 1, - aux_sym_sym_lit_repeat1, - ACTIONS(1892), 2, - sym__ws, - sym_comment, - STATE(510), 3, + STATE(479), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(656), 3, - sym_sym_lit, - sym_list_lit, - sym_read_cond_lit, - STATE(683), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - [38530] = 15, + [38565] = 17, ACTIONS(3), 1, sym_block_comment, ACTIONS(17), 1, anon_sym_CARET, ACTIONS(19), 1, anon_sym_POUND_CARET, - ACTIONS(700), 1, + ACTIONS(752), 1, anon_sym_LPAREN, - ACTIONS(1822), 1, + ACTIONS(1832), 1, anon_sym_POUND_, - ACTIONS(1982), 1, + ACTIONS(1980), 1, aux_sym_sym_lit_token1, - ACTIONS(1984), 1, + ACTIONS(1982), 1, anon_sym_POUND_QMARK, - STATE(584), 1, + STATE(308), 1, + sym_list_lit, + STATE(326), 1, + sym_read_cond_lit, + STATE(327), 1, + sym_sym_lit, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(761), 1, + STATE(829), 1, sym__metadata_lit, - STATE(845), 1, + STATE(842), 1, aux_sym_sym_lit_repeat1, - ACTIONS(1980), 2, + ACTIONS(1978), 2, sym__ws, sym_comment, - STATE(334), 3, + STATE(335), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(345), 3, - sym_sym_lit, - sym_list_lit, - sym_read_cond_lit, - STATE(557), 3, + STATE(547), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [38583] = 17, + [38622] = 17, ACTIONS(3), 1, sym_block_comment, ACTIONS(17), 1, anon_sym_CARET, ACTIONS(19), 1, anon_sym_POUND_CARET, - ACTIONS(700), 1, + ACTIONS(752), 1, anon_sym_LPAREN, - ACTIONS(1822), 1, + ACTIONS(1832), 1, anon_sym_POUND_, - ACTIONS(1982), 1, + ACTIONS(1980), 1, aux_sym_sym_lit_token1, - ACTIONS(1984), 1, + ACTIONS(1982), 1, anon_sym_POUND_QMARK, - STATE(312), 1, + STATE(314), 1, sym_read_cond_lit, - STATE(313), 1, + STATE(315), 1, sym_list_lit, - STATE(314), 1, + STATE(316), 1, sym_sym_lit, - STATE(584), 1, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(761), 1, + STATE(829), 1, sym__metadata_lit, - STATE(845), 1, + STATE(842), 1, aux_sym_sym_lit_repeat1, - ACTIONS(1892), 2, + ACTIONS(1830), 2, sym__ws, sym_comment, - STATE(334), 3, + STATE(335), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(510), 3, + STATE(479), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [38640] = 15, + [38679] = 17, ACTIONS(3), 1, sym_block_comment, ACTIONS(17), 1, @@ -34345,205 +34370,207 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(394), 1, anon_sym_LPAREN, - ACTIONS(1822), 1, + ACTIONS(1832), 1, anon_sym_POUND_, ACTIONS(1986), 1, aux_sym_sym_lit_token1, ACTIONS(1988), 1, anon_sym_POUND_QMARK, - STATE(584), 1, + STATE(490), 1, + sym_read_cond_lit, + STATE(491), 1, + sym_list_lit, + STATE(492), 1, + sym_sym_lit, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(761), 1, + STATE(829), 1, sym__metadata_lit, - STATE(839), 1, + STATE(841), 1, aux_sym_sym_lit_repeat1, - ACTIONS(1892), 2, + ACTIONS(1984), 2, sym__ws, sym_comment, - STATE(506), 3, + STATE(472), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(510), 3, + STATE(567), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(522), 3, - sym_sym_lit, - sym_list_lit, - sym_read_cond_lit, - [38693] = 17, + [38736] = 17, ACTIONS(3), 1, sym_block_comment, ACTIONS(17), 1, anon_sym_CARET, ACTIONS(19), 1, anon_sym_POUND_CARET, - ACTIONS(21), 1, + ACTIONS(584), 1, anon_sym_LPAREN, - ACTIONS(1822), 1, + ACTIONS(1832), 1, anon_sym_POUND_, - ACTIONS(1826), 1, + ACTIONS(1992), 1, aux_sym_sym_lit_token1, - ACTIONS(1830), 1, + ACTIONS(1994), 1, anon_sym_POUND_QMARK, - STATE(381), 1, + STATE(295), 1, sym_read_cond_lit, - STATE(389), 1, + STATE(296), 1, sym_list_lit, - STATE(391), 1, + STATE(297), 1, sym_sym_lit, - STATE(584), 1, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(761), 1, + STATE(829), 1, sym__metadata_lit, STATE(844), 1, aux_sym_sym_lit_repeat1, ACTIONS(1990), 2, sym__ws, sym_comment, - STATE(379), 3, + STATE(244), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(570), 3, + STATE(568), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [38750] = 17, + [38793] = 15, ACTIONS(3), 1, sym_block_comment, ACTIONS(17), 1, anon_sym_CARET, ACTIONS(19), 1, anon_sym_POUND_CARET, - ACTIONS(738), 1, + ACTIONS(394), 1, anon_sym_LPAREN, - ACTIONS(1822), 1, + ACTIONS(1832), 1, anon_sym_POUND_, - ACTIONS(1854), 1, + ACTIONS(1986), 1, aux_sym_sym_lit_token1, - ACTIONS(1856), 1, + ACTIONS(1988), 1, anon_sym_POUND_QMARK, - STATE(584), 1, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(679), 1, - sym_sym_lit, - STATE(682), 1, - sym_list_lit, - STATE(684), 1, - sym_read_cond_lit, - STATE(761), 1, + STATE(829), 1, sym__metadata_lit, - STATE(840), 1, + STATE(841), 1, aux_sym_sym_lit_repeat1, - ACTIONS(1892), 2, + ACTIONS(1830), 2, sym__ws, sym_comment, - STATE(510), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(683), 3, + STATE(472), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [38807] = 17, + STATE(479), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(508), 3, + sym_sym_lit, + sym_list_lit, + sym_read_cond_lit, + [38846] = 17, ACTIONS(3), 1, sym_block_comment, ACTIONS(17), 1, anon_sym_CARET, ACTIONS(19), 1, anon_sym_POUND_CARET, - ACTIONS(738), 1, + ACTIONS(428), 1, anon_sym_LPAREN, - ACTIONS(1822), 1, + ACTIONS(1832), 1, anon_sym_POUND_, - ACTIONS(1854), 1, + ACTIONS(1998), 1, aux_sym_sym_lit_token1, - ACTIONS(1856), 1, + ACTIONS(2000), 1, anon_sym_POUND_QMARK, - STATE(584), 1, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(666), 1, - sym_sym_lit, - STATE(667), 1, + STATE(727), 1, sym_list_lit, - STATE(668), 1, + STATE(799), 1, sym_read_cond_lit, - STATE(761), 1, + STATE(800), 1, + sym_sym_lit, + STATE(829), 1, sym__metadata_lit, STATE(840), 1, aux_sym_sym_lit_repeat1, - ACTIONS(1992), 2, + ACTIONS(1996), 2, sym__ws, sym_comment, - STATE(552), 3, + STATE(562), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(683), 3, + STATE(744), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [38864] = 15, + [38903] = 15, ACTIONS(3), 1, sym_block_comment, ACTIONS(17), 1, anon_sym_CARET, ACTIONS(19), 1, anon_sym_POUND_CARET, - ACTIONS(394), 1, + ACTIONS(528), 1, anon_sym_LPAREN, - ACTIONS(1822), 1, + ACTIONS(1832), 1, anon_sym_POUND_, - ACTIONS(1986), 1, + ACTIONS(2004), 1, aux_sym_sym_lit_token1, - ACTIONS(1988), 1, + ACTIONS(2006), 1, anon_sym_POUND_QMARK, - STATE(584), 1, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(761), 1, + STATE(829), 1, sym__metadata_lit, STATE(839), 1, aux_sym_sym_lit_repeat1, - ACTIONS(1994), 2, + ACTIONS(2002), 2, sym__ws, sym_comment, - STATE(506), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(519), 3, - sym_sym_lit, - sym_list_lit, - sym_read_cond_lit, - STATE(550), 3, + STATE(557), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [38917] = 4, + STATE(634), 3, + sym_sym_lit, + sym_list_lit, + sym_read_cond_lit, + STATE(635), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + [38956] = 6, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1998), 1, + ACTIONS(2011), 1, + anon_sym_POUND_, + ACTIONS(2016), 1, anon_sym_into, - STATE(663), 2, - sym__gap, - sym_dis_expr, - ACTIONS(1996), 18, + ACTIONS(2008), 2, sym__ws, sym_comment, - anon_sym_POUND_, + STATE(944), 2, + sym__gap, + sym_dis_expr, + ACTIONS(2014), 15, anon_sym_RPAREN, sym_accumulation_verb, anon_sym_for, @@ -34559,45 +34586,36 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [38948] = 15, + [38991] = 6, ACTIONS(3), 1, sym_block_comment, - ACTIONS(17), 1, - anon_sym_CARET, - ACTIONS(19), 1, - anon_sym_POUND_CARET, - ACTIONS(428), 1, - anon_sym_LPAREN, - ACTIONS(1822), 1, + ACTIONS(2021), 1, anon_sym_POUND_, - ACTIONS(2002), 1, - aux_sym_sym_lit_token1, - ACTIONS(2004), 1, - anon_sym_POUND_QMARK, - STATE(584), 1, - sym_old_meta_lit, - STATE(587), 1, - sym_meta_lit, - STATE(761), 1, - sym__metadata_lit, - STATE(843), 1, - aux_sym_sym_lit_repeat1, - ACTIONS(2000), 2, + ACTIONS(2026), 1, + anon_sym_into, + ACTIONS(2018), 2, sym__ws, sym_comment, - STATE(563), 3, + STATE(941), 2, sym__gap, sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(759), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(822), 3, - sym_sym_lit, - sym_list_lit, - sym_read_cond_lit, - [39001] = 15, + ACTIONS(2024), 15, + anon_sym_RPAREN, + sym_accumulation_verb, + anon_sym_for, + anon_sym_and, + anon_sym_with, + anon_sym_do, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + [39026] = 15, ACTIONS(3), 1, sym_block_comment, ACTIONS(17), 1, @@ -34606,232 +34624,266 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(700), 1, anon_sym_LPAREN, - ACTIONS(1822), 1, + ACTIONS(1832), 1, anon_sym_POUND_, - ACTIONS(1982), 1, + ACTIONS(1848), 1, aux_sym_sym_lit_token1, - ACTIONS(1984), 1, + ACTIONS(1850), 1, anon_sym_POUND_QMARK, - STATE(584), 1, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(761), 1, + STATE(829), 1, sym__metadata_lit, - STATE(845), 1, + STATE(838), 1, aux_sym_sym_lit_repeat1, - ACTIONS(1892), 2, + ACTIONS(1830), 2, sym__ws, sym_comment, - STATE(334), 3, + STATE(479), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(647), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(350), 3, + STATE(696), 3, sym_sym_lit, sym_list_lit, sym_read_cond_lit, - STATE(510), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - [39054] = 15, + [39079] = 15, ACTIONS(3), 1, sym_block_comment, ACTIONS(17), 1, anon_sym_CARET, ACTIONS(19), 1, anon_sym_POUND_CARET, - ACTIONS(574), 1, + ACTIONS(584), 1, anon_sym_LPAREN, - ACTIONS(1822), 1, + ACTIONS(1832), 1, anon_sym_POUND_, - ACTIONS(2008), 1, + ACTIONS(1992), 1, aux_sym_sym_lit_token1, - ACTIONS(2010), 1, + ACTIONS(1994), 1, anon_sym_POUND_QMARK, - STATE(584), 1, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(761), 1, + STATE(829), 1, sym__metadata_lit, - STATE(841), 1, + STATE(844), 1, aux_sym_sym_lit_repeat1, - ACTIONS(2006), 2, + ACTIONS(1830), 2, sym__ws, sym_comment, - STATE(245), 3, + STATE(244), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(254), 3, + STATE(264), 3, sym_sym_lit, sym_list_lit, sym_read_cond_lit, - STATE(560), 3, + STATE(479), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [39107] = 17, + [39132] = 15, ACTIONS(3), 1, sym_block_comment, ACTIONS(17), 1, anon_sym_CARET, ACTIONS(19), 1, anon_sym_POUND_CARET, - ACTIONS(394), 1, + ACTIONS(528), 1, anon_sym_LPAREN, - ACTIONS(1822), 1, + ACTIONS(1832), 1, anon_sym_POUND_, - ACTIONS(1986), 1, + ACTIONS(2004), 1, aux_sym_sym_lit_token1, - ACTIONS(1988), 1, + ACTIONS(2006), 1, anon_sym_POUND_QMARK, - STATE(481), 1, - sym_read_cond_lit, - STATE(482), 1, - sym_list_lit, - STATE(484), 1, - sym_sym_lit, - STATE(584), 1, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(761), 1, + STATE(829), 1, sym__metadata_lit, STATE(839), 1, aux_sym_sym_lit_repeat1, - ACTIONS(2012), 2, + ACTIONS(1830), 2, sym__ws, sym_comment, - STATE(506), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(562), 3, + STATE(479), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [39164] = 15, + STATE(611), 3, + sym_sym_lit, + sym_list_lit, + sym_read_cond_lit, + STATE(635), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + [39185] = 15, ACTIONS(3), 1, sym_block_comment, ACTIONS(17), 1, anon_sym_CARET, ACTIONS(19), 1, anon_sym_POUND_CARET, - ACTIONS(574), 1, + ACTIONS(752), 1, anon_sym_LPAREN, - ACTIONS(1822), 1, + ACTIONS(1832), 1, anon_sym_POUND_, - ACTIONS(2008), 1, + ACTIONS(1980), 1, aux_sym_sym_lit_token1, - ACTIONS(2010), 1, + ACTIONS(1982), 1, anon_sym_POUND_QMARK, - STATE(584), 1, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(761), 1, + STATE(829), 1, sym__metadata_lit, - STATE(841), 1, + STATE(842), 1, aux_sym_sym_lit_repeat1, - ACTIONS(1892), 2, + ACTIONS(1830), 2, sym__ws, sym_comment, - STATE(245), 3, + STATE(335), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(267), 3, + STATE(353), 3, sym_sym_lit, sym_list_lit, sym_read_cond_lit, - STATE(510), 3, + STATE(479), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [39217] = 17, + [39238] = 15, ACTIONS(3), 1, sym_block_comment, ACTIONS(17), 1, anon_sym_CARET, ACTIONS(19), 1, anon_sym_POUND_CARET, - ACTIONS(574), 1, + ACTIONS(428), 1, anon_sym_LPAREN, - ACTIONS(1822), 1, + ACTIONS(1832), 1, anon_sym_POUND_, - ACTIONS(2008), 1, + ACTIONS(1998), 1, aux_sym_sym_lit_token1, - ACTIONS(2010), 1, + ACTIONS(2000), 1, anon_sym_POUND_QMARK, - STATE(270), 1, + STATE(581), 1, + sym_old_meta_lit, + STATE(582), 1, + sym_meta_lit, + STATE(829), 1, + sym__metadata_lit, + STATE(840), 1, + aux_sym_sym_lit_repeat1, + ACTIONS(1830), 2, + sym__ws, + sym_comment, + STATE(479), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(744), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(789), 3, sym_sym_lit, - STATE(296), 1, - sym_read_cond_lit, - STATE(297), 1, sym_list_lit, - STATE(584), 1, + sym_read_cond_lit, + [39291] = 15, + ACTIONS(3), 1, + sym_block_comment, + ACTIONS(17), 1, + anon_sym_CARET, + ACTIONS(19), 1, + anon_sym_POUND_CARET, + ACTIONS(21), 1, + anon_sym_LPAREN, + ACTIONS(1832), 1, + anon_sym_POUND_, + ACTIONS(1836), 1, + aux_sym_sym_lit_token1, + ACTIONS(1840), 1, + anon_sym_POUND_QMARK, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(761), 1, + STATE(829), 1, sym__metadata_lit, - STATE(841), 1, + STATE(843), 1, aux_sym_sym_lit_repeat1, - ACTIONS(2014), 2, + ACTIONS(2028), 2, sym__ws, sym_comment, - STATE(245), 3, + STATE(376), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(564), 3, + STATE(389), 3, + sym_sym_lit, + sym_list_lit, + sym_read_cond_lit, + STATE(566), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [39274] = 17, + [39344] = 17, ACTIONS(3), 1, sym_block_comment, ACTIONS(17), 1, anon_sym_CARET, ACTIONS(19), 1, anon_sym_POUND_CARET, - ACTIONS(394), 1, + ACTIONS(528), 1, anon_sym_LPAREN, - ACTIONS(1822), 1, + ACTIONS(1832), 1, anon_sym_POUND_, - ACTIONS(1986), 1, + ACTIONS(2004), 1, aux_sym_sym_lit_token1, - ACTIONS(1988), 1, + ACTIONS(2006), 1, anon_sym_POUND_QMARK, - STATE(496), 1, - sym_read_cond_lit, - STATE(498), 1, - sym_list_lit, - STATE(500), 1, + STATE(575), 1, sym_sym_lit, - STATE(584), 1, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(761), 1, + STATE(601), 1, + sym_read_cond_lit, + STATE(602), 1, + sym_list_lit, + STATE(829), 1, sym__metadata_lit, STATE(839), 1, aux_sym_sym_lit_repeat1, - ACTIONS(1892), 2, + ACTIONS(2030), 2, sym__ws, sym_comment, - STATE(506), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(510), 3, + STATE(572), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [39331] = 15, + STATE(635), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + [39401] = 17, ACTIONS(3), 1, sym_block_comment, ACTIONS(17), 1, @@ -34840,395 +34892,509 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(428), 1, anon_sym_LPAREN, - ACTIONS(1822), 1, + ACTIONS(1832), 1, anon_sym_POUND_, - ACTIONS(2002), 1, + ACTIONS(1998), 1, aux_sym_sym_lit_token1, - ACTIONS(2004), 1, + ACTIONS(2000), 1, anon_sym_POUND_QMARK, - STATE(584), 1, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(761), 1, + STATE(759), 1, + sym_sym_lit, + STATE(776), 1, + sym_list_lit, + STATE(806), 1, + sym_read_cond_lit, + STATE(829), 1, sym__metadata_lit, - STATE(843), 1, + STATE(840), 1, aux_sym_sym_lit_repeat1, - ACTIONS(1892), 2, + ACTIONS(1830), 2, sym__ws, sym_comment, - STATE(510), 3, + STATE(479), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(759), 3, + STATE(744), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(817), 3, - sym_sym_lit, - sym_list_lit, - sym_read_cond_lit, - [39384] = 17, + [39458] = 15, ACTIONS(3), 1, sym_block_comment, ACTIONS(17), 1, anon_sym_CARET, ACTIONS(19), 1, anon_sym_POUND_CARET, - ACTIONS(574), 1, + ACTIONS(752), 1, anon_sym_LPAREN, - ACTIONS(1822), 1, + ACTIONS(1832), 1, anon_sym_POUND_, - ACTIONS(2008), 1, + ACTIONS(1980), 1, aux_sym_sym_lit_token1, - ACTIONS(2010), 1, + ACTIONS(1982), 1, anon_sym_POUND_QMARK, - STATE(279), 1, - sym_read_cond_lit, - STATE(280), 1, - sym_list_lit, - STATE(281), 1, - sym_sym_lit, - STATE(584), 1, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(761), 1, + STATE(829), 1, sym__metadata_lit, - STATE(841), 1, + STATE(842), 1, aux_sym_sym_lit_repeat1, - ACTIONS(1892), 2, + ACTIONS(2032), 2, sym__ws, sym_comment, - STATE(245), 3, + STATE(335), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(510), 3, + STATE(346), 3, + sym_sym_lit, + sym_list_lit, + sym_read_cond_lit, + STATE(558), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [39441] = 17, + [39511] = 15, ACTIONS(3), 1, sym_block_comment, ACTIONS(17), 1, anon_sym_CARET, ACTIONS(19), 1, anon_sym_POUND_CARET, - ACTIONS(462), 1, + ACTIONS(428), 1, anon_sym_LPAREN, - ACTIONS(1822), 1, + ACTIONS(1832), 1, anon_sym_POUND_, - ACTIONS(1970), 1, + ACTIONS(1998), 1, aux_sym_sym_lit_token1, - ACTIONS(1972), 1, + ACTIONS(2000), 1, anon_sym_POUND_QMARK, - STATE(573), 1, - sym_sym_lit, - STATE(584), 1, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(616), 1, - sym_read_cond_lit, - STATE(617), 1, - sym_list_lit, - STATE(761), 1, + STATE(829), 1, sym__metadata_lit, - STATE(842), 1, + STATE(840), 1, aux_sym_sym_lit_repeat1, - ACTIONS(2016), 2, + ACTIONS(2034), 2, sym__ws, sym_comment, - STATE(566), 3, + STATE(559), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(633), 3, + STATE(734), 3, + sym_sym_lit, + sym_list_lit, + sym_read_cond_lit, + STATE(744), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [39498] = 17, + [39564] = 17, ACTIONS(3), 1, sym_block_comment, ACTIONS(17), 1, anon_sym_CARET, ACTIONS(19), 1, anon_sym_POUND_CARET, - ACTIONS(462), 1, + ACTIONS(700), 1, anon_sym_LPAREN, - ACTIONS(1822), 1, + ACTIONS(1832), 1, anon_sym_POUND_, - ACTIONS(1970), 1, + ACTIONS(1848), 1, aux_sym_sym_lit_token1, - ACTIONS(1972), 1, + ACTIONS(1850), 1, anon_sym_POUND_QMARK, - STATE(584), 1, + STATE(581), 1, sym_old_meta_lit, - STATE(585), 1, - sym_read_cond_lit, - STATE(586), 1, - sym_list_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(588), 1, + STATE(655), 1, sym_sym_lit, - STATE(761), 1, + STATE(656), 1, + sym_list_lit, + STATE(657), 1, + sym_read_cond_lit, + STATE(829), 1, sym__metadata_lit, - STATE(842), 1, + STATE(838), 1, aux_sym_sym_lit_repeat1, - ACTIONS(1892), 2, + ACTIONS(1830), 2, sym__ws, sym_comment, - STATE(510), 3, + STATE(479), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(633), 3, + STATE(647), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [39555] = 15, + [39621] = 15, ACTIONS(3), 1, sym_block_comment, ACTIONS(17), 1, anon_sym_CARET, ACTIONS(19), 1, anon_sym_POUND_CARET, - ACTIONS(738), 1, + ACTIONS(21), 1, anon_sym_LPAREN, - ACTIONS(1822), 1, + ACTIONS(1832), 1, anon_sym_POUND_, - ACTIONS(1854), 1, + ACTIONS(1836), 1, aux_sym_sym_lit_token1, - ACTIONS(1856), 1, + ACTIONS(1840), 1, anon_sym_POUND_QMARK, - STATE(584), 1, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(761), 1, + STATE(829), 1, sym__metadata_lit, - STATE(840), 1, + STATE(843), 1, aux_sym_sym_lit_repeat1, - ACTIONS(2018), 2, + ACTIONS(1830), 2, sym__ws, sym_comment, - STATE(547), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(683), 3, + STATE(376), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(693), 3, + STATE(383), 3, sym_sym_lit, sym_list_lit, sym_read_cond_lit, - [39608] = 17, + STATE(479), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + [39674] = 17, ACTIONS(3), 1, sym_block_comment, ACTIONS(17), 1, anon_sym_CARET, ACTIONS(19), 1, anon_sym_POUND_CARET, - ACTIONS(700), 1, + ACTIONS(394), 1, anon_sym_LPAREN, - ACTIONS(1822), 1, + ACTIONS(1832), 1, anon_sym_POUND_, - ACTIONS(1982), 1, + ACTIONS(1986), 1, aux_sym_sym_lit_token1, - ACTIONS(1984), 1, + ACTIONS(1988), 1, anon_sym_POUND_QMARK, - STATE(324), 1, + STATE(469), 1, + sym_sym_lit, + STATE(503), 1, sym_read_cond_lit, - STATE(325), 1, + STATE(521), 1, sym_list_lit, - STATE(326), 1, - sym_sym_lit, - STATE(584), 1, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(761), 1, + STATE(829), 1, sym__metadata_lit, - STATE(845), 1, + STATE(841), 1, aux_sym_sym_lit_repeat1, - ACTIONS(2020), 2, + ACTIONS(1830), 2, sym__ws, sym_comment, - STATE(334), 3, + STATE(472), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(549), 3, + STATE(479), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [39665] = 15, + [39731] = 17, ACTIONS(3), 1, sym_block_comment, ACTIONS(17), 1, anon_sym_CARET, ACTIONS(19), 1, anon_sym_POUND_CARET, - ACTIONS(21), 1, + ACTIONS(584), 1, anon_sym_LPAREN, - ACTIONS(1822), 1, + ACTIONS(1832), 1, anon_sym_POUND_, - ACTIONS(1826), 1, + ACTIONS(1992), 1, aux_sym_sym_lit_token1, - ACTIONS(1830), 1, + ACTIONS(1994), 1, anon_sym_POUND_QMARK, - STATE(584), 1, + STATE(277), 1, + sym_read_cond_lit, + STATE(278), 1, + sym_list_lit, + STATE(279), 1, + sym_sym_lit, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(761), 1, + STATE(829), 1, sym__metadata_lit, STATE(844), 1, aux_sym_sym_lit_repeat1, - ACTIONS(1892), 2, + ACTIONS(1830), 2, sym__ws, sym_comment, - STATE(379), 3, + STATE(244), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(418), 3, + STATE(479), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + [39788] = 15, + ACTIONS(3), 1, + sym_block_comment, + ACTIONS(17), 1, + anon_sym_CARET, + ACTIONS(19), 1, + anon_sym_POUND_CARET, + ACTIONS(394), 1, + anon_sym_LPAREN, + ACTIONS(1832), 1, + anon_sym_POUND_, + ACTIONS(1986), 1, + aux_sym_sym_lit_token1, + ACTIONS(1988), 1, + anon_sym_POUND_QMARK, + STATE(581), 1, + sym_old_meta_lit, + STATE(582), 1, + sym_meta_lit, + STATE(829), 1, + sym__metadata_lit, + STATE(841), 1, + aux_sym_sym_lit_repeat1, + ACTIONS(2036), 2, + sym__ws, + sym_comment, + STATE(472), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(532), 3, sym_sym_lit, sym_list_lit, sym_read_cond_lit, - STATE(510), 3, + STATE(550), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [39718] = 17, + [39841] = 15, ACTIONS(3), 1, sym_block_comment, ACTIONS(17), 1, anon_sym_CARET, ACTIONS(19), 1, anon_sym_POUND_CARET, - ACTIONS(21), 1, + ACTIONS(700), 1, anon_sym_LPAREN, - ACTIONS(1822), 1, + ACTIONS(1832), 1, anon_sym_POUND_, - ACTIONS(1826), 1, + ACTIONS(1848), 1, aux_sym_sym_lit_token1, - ACTIONS(1830), 1, + ACTIONS(1850), 1, anon_sym_POUND_QMARK, - STATE(399), 1, + STATE(581), 1, + sym_old_meta_lit, + STATE(582), 1, + sym_meta_lit, + STATE(829), 1, + sym__metadata_lit, + STATE(838), 1, + aux_sym_sym_lit_repeat1, + ACTIONS(2038), 2, + sym__ws, + sym_comment, + STATE(555), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(647), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(669), 3, sym_sym_lit, - STATE(400), 1, sym_list_lit, - STATE(402), 1, sym_read_cond_lit, - STATE(584), 1, + [39894] = 17, + ACTIONS(3), 1, + sym_block_comment, + ACTIONS(17), 1, + anon_sym_CARET, + ACTIONS(19), 1, + anon_sym_POUND_CARET, + ACTIONS(21), 1, + anon_sym_LPAREN, + ACTIONS(1832), 1, + anon_sym_POUND_, + ACTIONS(1836), 1, + aux_sym_sym_lit_token1, + ACTIONS(1840), 1, + anon_sym_POUND_QMARK, + STATE(384), 1, + sym_read_cond_lit, + STATE(390), 1, + sym_list_lit, + STATE(392), 1, + sym_sym_lit, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(761), 1, + STATE(829), 1, sym__metadata_lit, - STATE(844), 1, + STATE(843), 1, aux_sym_sym_lit_repeat1, - ACTIONS(1892), 2, + ACTIONS(2040), 2, sym__ws, sym_comment, - STATE(379), 3, + STATE(376), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(510), 3, + STATE(545), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [39775] = 17, + [39951] = 17, ACTIONS(3), 1, sym_block_comment, ACTIONS(17), 1, anon_sym_CARET, ACTIONS(19), 1, anon_sym_POUND_CARET, - ACTIONS(428), 1, + ACTIONS(528), 1, anon_sym_LPAREN, - ACTIONS(1822), 1, + ACTIONS(1832), 1, anon_sym_POUND_, - ACTIONS(2002), 1, - aux_sym_sym_lit_token1, ACTIONS(2004), 1, + aux_sym_sym_lit_token1, + ACTIONS(2006), 1, anon_sym_POUND_QMARK, - STATE(584), 1, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(761), 1, - sym__metadata_lit, - STATE(796), 1, + STATE(588), 1, sym_read_cond_lit, - STATE(800), 1, + STATE(589), 1, sym_list_lit, - STATE(801), 1, + STATE(590), 1, sym_sym_lit, - STATE(843), 1, + STATE(829), 1, + sym__metadata_lit, + STATE(839), 1, aux_sym_sym_lit_repeat1, - ACTIONS(2022), 2, + ACTIONS(1830), 2, sym__ws, sym_comment, - STATE(572), 3, + STATE(479), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(759), 3, + STATE(635), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [39832] = 17, + [40008] = 17, ACTIONS(3), 1, sym_block_comment, ACTIONS(17), 1, anon_sym_CARET, ACTIONS(19), 1, anon_sym_POUND_CARET, - ACTIONS(428), 1, + ACTIONS(700), 1, anon_sym_LPAREN, - ACTIONS(1822), 1, + ACTIONS(1832), 1, anon_sym_POUND_, - ACTIONS(2002), 1, + ACTIONS(1848), 1, aux_sym_sym_lit_token1, - ACTIONS(2004), 1, + ACTIONS(1850), 1, anon_sym_POUND_QMARK, - STATE(584), 1, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(761), 1, - sym__metadata_lit, - STATE(776), 1, + STATE(685), 1, sym_read_cond_lit, - STATE(777), 1, + STATE(686), 1, sym_list_lit, - STATE(778), 1, + STATE(687), 1, sym_sym_lit, - STATE(843), 1, + STATE(829), 1, + sym__metadata_lit, + STATE(838), 1, aux_sym_sym_lit_repeat1, - ACTIONS(1892), 2, + ACTIONS(2042), 2, sym__ws, sym_comment, - STATE(510), 3, + STATE(565), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(759), 3, + STATE(647), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + [40065] = 15, + ACTIONS(3), 1, + sym_block_comment, + ACTIONS(17), 1, + anon_sym_CARET, + ACTIONS(19), 1, + anon_sym_POUND_CARET, + ACTIONS(584), 1, + anon_sym_LPAREN, + ACTIONS(1832), 1, + anon_sym_POUND_, + ACTIONS(1992), 1, + aux_sym_sym_lit_token1, + ACTIONS(1994), 1, + anon_sym_POUND_QMARK, + STATE(581), 1, + sym_old_meta_lit, + STATE(582), 1, + sym_meta_lit, + STATE(829), 1, + sym__metadata_lit, + STATE(844), 1, + aux_sym_sym_lit_repeat1, + ACTIONS(2044), 2, + sym__ws, + sym_comment, + STATE(244), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [39889] = 2, + STATE(254), 3, + sym_sym_lit, + sym_list_lit, + sym_read_cond_lit, + STATE(556), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + [40118] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1552), 20, + ACTIONS(1646), 20, sym__ws, sym_comment, anon_sym_POUND_, @@ -35249,10 +35415,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [39915] = 2, + [40144] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1628), 20, + ACTIONS(1558), 20, sym__ws, sym_comment, anon_sym_POUND_, @@ -35273,22 +35439,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [39941] = 7, + [40170] = 7, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2026), 1, + ACTIONS(2048), 1, anon_sym_POUND_, - ACTIONS(2030), 1, + ACTIONS(2052), 1, anon_sym_being, - STATE(234), 1, + STATE(235), 1, sym__for_part, - ACTIONS(2024), 2, + ACTIONS(2046), 2, sym__ws, sym_comment, - STATE(807), 2, + STATE(814), 2, sym__gap, sym_dis_expr, - ACTIONS(2028), 13, + ACTIONS(2050), 13, anon_sym_in, anon_sym_across, anon_sym_using, @@ -35302,22 +35468,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_by, anon_sym_then, - [39977] = 7, + [40206] = 7, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2026), 1, + ACTIONS(2048), 1, anon_sym_POUND_, - ACTIONS(2030), 1, + ACTIONS(2052), 1, anon_sym_being, - STATE(233), 1, + STATE(236), 1, sym__for_part, - ACTIONS(2024), 2, + ACTIONS(2046), 2, sym__ws, sym_comment, - STATE(807), 2, + STATE(814), 2, sym__gap, sym_dis_expr, - ACTIONS(2028), 13, + ACTIONS(2050), 13, anon_sym_in, anon_sym_across, anon_sym_using, @@ -35331,22 +35497,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_by, anon_sym_then, - [40013] = 6, + [40242] = 6, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1822), 1, + ACTIONS(1832), 1, anon_sym_POUND_, - ACTIONS(1892), 2, + ACTIONS(1830), 2, sym__ws, sym_comment, - ACTIONS(2034), 2, + ACTIONS(2056), 2, anon_sym_POUND, anon_sym_POUND_QMARK, - STATE(510), 3, + STATE(479), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(2032), 12, + ACTIONS(2054), 12, aux_sym_sym_lit_token1, anon_sym_CARET, anon_sym_POUND_CARET, @@ -35359,22 +35525,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_SQUOTE, anon_sym_COMMA_AT, - [40047] = 6, + [40276] = 6, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1822), 1, + ACTIONS(1832), 1, anon_sym_POUND_, - ACTIONS(1892), 2, + ACTIONS(1830), 2, sym__ws, sym_comment, - ACTIONS(2038), 2, + ACTIONS(2060), 2, anon_sym_POUND, anon_sym_POUND_QMARK, - STATE(510), 3, + STATE(479), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(2036), 12, + ACTIONS(2058), 12, aux_sym_sym_lit_token1, anon_sym_CARET, anon_sym_POUND_CARET, @@ -35387,10 +35553,66 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_SQUOTE, anon_sym_COMMA_AT, - [40081] = 2, + [40310] = 6, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1564), 20, + ACTIONS(1832), 1, + anon_sym_POUND_, + ACTIONS(2062), 2, + sym__ws, + sym_comment, + ACTIONS(2066), 2, + anon_sym_POUND, + anon_sym_POUND_QMARK, + STATE(579), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(2064), 12, + aux_sym_sym_lit_token1, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_POUND0A, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_POUND_EQ, + anon_sym_AT, + anon_sym_SQUOTE, + anon_sym_COMMA_AT, + [40344] = 6, + ACTIONS(3), 1, + sym_block_comment, + ACTIONS(1832), 1, + anon_sym_POUND_, + ACTIONS(2068), 2, + sym__ws, + sym_comment, + ACTIONS(2072), 2, + anon_sym_POUND, + anon_sym_POUND_QMARK, + STATE(580), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(2070), 12, + aux_sym_sym_lit_token1, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_POUND0A, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_POUND_EQ, + anon_sym_AT, + anon_sym_SQUOTE, + anon_sym_COMMA_AT, + [40378] = 2, + ACTIONS(3), 1, + sym_block_comment, + ACTIONS(1442), 20, sym__ws, sym_comment, anon_sym_POUND_, @@ -35411,10 +35633,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [40107] = 2, + [40404] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1568), 20, + ACTIONS(1426), 20, sym__ws, sym_comment, anon_sym_POUND_, @@ -35435,10 +35657,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [40133] = 2, + [40430] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1576), 20, + ACTIONS(1566), 20, sym__ws, sym_comment, anon_sym_POUND_, @@ -35459,10 +35681,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [40159] = 2, + [40456] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1580), 20, + ACTIONS(1570), 20, sym__ws, sym_comment, anon_sym_POUND_, @@ -35483,10 +35705,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [40185] = 2, + [40482] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1584), 20, + ACTIONS(1578), 20, sym__ws, sym_comment, anon_sym_POUND_, @@ -35507,38 +35729,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [40211] = 6, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(1822), 1, - anon_sym_POUND_, - ACTIONS(2040), 2, - sym__ws, - sym_comment, - ACTIONS(2044), 2, - anon_sym_POUND, - anon_sym_POUND_QMARK, - STATE(577), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - ACTIONS(2042), 12, - aux_sym_sym_lit_token1, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_POUND0A, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_POUND_EQ, - anon_sym_AT, - anon_sym_SQUOTE, - anon_sym_COMMA_AT, - [40245] = 2, + [40508] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1588), 20, + ACTIONS(1582), 20, sym__ws, sym_comment, anon_sym_POUND_, @@ -35559,10 +35753,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [40271] = 2, + [40534] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1588), 20, + ACTIONS(1582), 20, sym__ws, sym_comment, anon_sym_POUND_, @@ -35583,38 +35777,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [40297] = 6, + [40560] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1822), 1, - anon_sym_POUND_, - ACTIONS(2046), 2, - sym__ws, - sym_comment, - ACTIONS(2050), 2, - anon_sym_POUND, - anon_sym_POUND_QMARK, - STATE(578), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - ACTIONS(2048), 12, - aux_sym_sym_lit_token1, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_POUND0A, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_POUND_EQ, - anon_sym_AT, - anon_sym_SQUOTE, - anon_sym_COMMA_AT, - [40331] = 2, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(1588), 20, + ACTIONS(1582), 20, sym__ws, sym_comment, anon_sym_POUND_, @@ -35635,10 +35801,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [40357] = 2, + [40586] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1592), 20, + ACTIONS(1586), 20, sym__ws, sym_comment, anon_sym_POUND_, @@ -35659,10 +35825,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [40383] = 2, + [40612] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1596), 20, + ACTIONS(1590), 20, sym__ws, sym_comment, anon_sym_POUND_, @@ -35683,10 +35849,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [40409] = 2, + [40638] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1600), 20, + ACTIONS(1594), 20, sym__ws, sym_comment, anon_sym_POUND_, @@ -35707,10 +35873,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [40435] = 2, + [40664] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1604), 20, + ACTIONS(1598), 20, sym__ws, sym_comment, anon_sym_POUND_, @@ -35731,10 +35897,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [40461] = 2, + [40690] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1636), 20, + ACTIONS(1602), 20, sym__ws, sym_comment, anon_sym_POUND_, @@ -35755,10 +35921,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [40487] = 2, + [40716] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1670), 20, + ACTIONS(1606), 20, sym__ws, sym_comment, anon_sym_POUND_, @@ -35779,10 +35945,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [40513] = 2, + [40742] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1640), 20, + ACTIONS(1610), 20, sym__ws, sym_comment, anon_sym_POUND_, @@ -35803,10 +35969,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [40539] = 2, + [40768] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1528), 20, + ACTIONS(1618), 20, sym__ws, sym_comment, anon_sym_POUND_, @@ -35827,10 +35993,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [40565] = 2, + [40794] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1608), 20, + ACTIONS(1626), 20, sym__ws, sym_comment, anon_sym_POUND_, @@ -35851,10 +36017,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [40591] = 2, + [40820] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1424), 20, + ACTIONS(1634), 20, sym__ws, sym_comment, anon_sym_POUND_, @@ -35875,10 +36041,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [40617] = 2, + [40846] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1432), 20, + ACTIONS(1646), 20, sym__ws, sym_comment, anon_sym_POUND_, @@ -35899,10 +36065,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [40643] = 2, + [40872] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1512), 20, + ACTIONS(1646), 20, sym__ws, sym_comment, anon_sym_POUND_, @@ -35923,10 +36089,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [40669] = 2, + [40898] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1532), 20, + ACTIONS(1650), 20, sym__ws, sym_comment, anon_sym_POUND_, @@ -35947,10 +36113,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [40695] = 2, + [40924] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1508), 20, + ACTIONS(1642), 20, sym__ws, sym_comment, anon_sym_POUND_, @@ -35971,10 +36137,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [40721] = 2, + [40950] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1612), 20, + ACTIONS(1562), 20, sym__ws, sym_comment, anon_sym_POUND_, @@ -35995,10 +36161,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [40747] = 2, + [40976] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1536), 20, + ACTIONS(1434), 20, sym__ws, sym_comment, anon_sym_POUND_, @@ -36019,10 +36185,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [40773] = 2, + [41002] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1504), 20, + ACTIONS(1522), 20, sym__ws, sym_comment, anon_sym_POUND_, @@ -36043,10 +36209,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [40799] = 2, + [41028] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1540), 20, + ACTIONS(1518), 20, sym__ws, sym_comment, anon_sym_POUND_, @@ -36067,10 +36233,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [40825] = 2, + [41054] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1616), 20, + ACTIONS(1422), 20, sym__ws, sym_comment, anon_sym_POUND_, @@ -36091,10 +36257,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [40851] = 2, + [41080] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1500), 20, + ACTIONS(1526), 20, sym__ws, sym_comment, anon_sym_POUND_, @@ -36115,10 +36281,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [40877] = 2, + [41106] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1624), 20, + ACTIONS(1530), 20, sym__ws, sym_comment, anon_sym_POUND_, @@ -36139,10 +36305,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [40903] = 2, + [41132] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1544), 20, + ACTIONS(1534), 20, sym__ws, sym_comment, anon_sym_POUND_, @@ -36163,10 +36329,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [40929] = 2, + [41158] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1632), 20, + ACTIONS(1538), 20, sym__ws, sym_comment, anon_sym_POUND_, @@ -36187,10 +36353,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [40955] = 2, + [41184] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1496), 20, + ACTIONS(1462), 20, sym__ws, sym_comment, anon_sym_POUND_, @@ -36211,10 +36377,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [40981] = 2, + [41210] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1492), 20, + ACTIONS(1542), 20, sym__ws, sym_comment, anon_sym_POUND_, @@ -36235,10 +36401,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [41007] = 2, + [41236] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1644), 20, + ACTIONS(1546), 20, sym__ws, sym_comment, anon_sym_POUND_, @@ -36259,10 +36425,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [41033] = 2, + [41262] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1488), 20, + ACTIONS(1550), 20, sym__ws, sym_comment, anon_sym_POUND_, @@ -36283,10 +36449,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [41059] = 2, + [41288] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1552), 20, + ACTIONS(1554), 20, sym__ws, sym_comment, anon_sym_POUND_, @@ -36307,10 +36473,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [41085] = 2, + [41314] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1552), 20, + ACTIONS(1574), 20, sym__ws, sym_comment, anon_sym_POUND_, @@ -36331,10 +36497,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [41111] = 2, + [41340] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1420), 20, + ACTIONS(1614), 20, sym__ws, sym_comment, anon_sym_POUND_, @@ -36355,10 +36521,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [41137] = 2, + [41366] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1516), 20, + ACTIONS(1622), 20, sym__ws, sym_comment, anon_sym_POUND_, @@ -36379,10 +36545,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [41163] = 2, + [41392] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1412), 20, + ACTIONS(1680), 20, sym__ws, sym_comment, anon_sym_POUND_, @@ -36403,10 +36569,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [41189] = 2, + [41418] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1520), 20, + ACTIONS(1630), 20, sym__ws, sym_comment, anon_sym_POUND_, @@ -36427,10 +36593,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [41215] = 2, + [41444] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1524), 20, + ACTIONS(1638), 20, sym__ws, sym_comment, anon_sym_POUND_, @@ -36451,10 +36617,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [41241] = 2, + [41470] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1436), 20, + ACTIONS(1654), 20, sym__ws, sym_comment, anon_sym_POUND_, @@ -36475,10 +36641,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [41267] = 2, + [41496] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1484), 20, + ACTIONS(1514), 20, sym__ws, sym_comment, anon_sym_POUND_, @@ -36499,10 +36665,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [41293] = 2, + [41522] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1480), 20, + ACTIONS(1510), 20, sym__ws, sym_comment, anon_sym_POUND_, @@ -36523,10 +36689,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [41319] = 2, + [41548] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1476), 20, + ACTIONS(1498), 20, sym__ws, sym_comment, anon_sym_POUND_, @@ -36547,10 +36713,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [41345] = 2, + [41574] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1472), 20, + ACTIONS(1506), 20, sym__ws, sym_comment, anon_sym_POUND_, @@ -36571,10 +36737,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [41371] = 2, + [41600] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1468), 20, + ACTIONS(1502), 20, sym__ws, sym_comment, anon_sym_POUND_, @@ -36595,10 +36761,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [41397] = 2, + [41626] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1464), 20, + ACTIONS(1458), 20, sym__ws, sym_comment, anon_sym_POUND_, @@ -36619,10 +36785,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [41423] = 2, + [41652] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1666), 20, + ACTIONS(1438), 20, sym__ws, sym_comment, anon_sym_POUND_, @@ -36643,10 +36809,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [41449] = 2, + [41678] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1460), 20, + ACTIONS(1494), 20, sym__ws, sym_comment, anon_sym_POUND_, @@ -36667,10 +36833,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [41475] = 2, + [41704] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1456), 20, + ACTIONS(1490), 20, sym__ws, sym_comment, anon_sym_POUND_, @@ -36691,10 +36857,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [41501] = 2, + [41730] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1452), 20, + ACTIONS(1450), 20, sym__ws, sym_comment, anon_sym_POUND_, @@ -36715,10 +36881,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [41527] = 2, + [41756] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1448), 20, + ACTIONS(1486), 20, sym__ws, sym_comment, anon_sym_POUND_, @@ -36739,10 +36905,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [41553] = 2, + [41782] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1548), 20, + ACTIONS(1482), 20, sym__ws, sym_comment, anon_sym_POUND_, @@ -36763,10 +36929,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [41579] = 2, + [41808] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1416), 20, + ACTIONS(1478), 20, sym__ws, sym_comment, anon_sym_POUND_, @@ -36787,10 +36953,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [41605] = 2, + [41834] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1556), 20, + ACTIONS(1474), 20, sym__ws, sym_comment, anon_sym_POUND_, @@ -36811,10 +36977,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [41631] = 2, + [41860] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1560), 20, + ACTIONS(1470), 20, sym__ws, sym_comment, anon_sym_POUND_, @@ -36835,10 +37001,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [41657] = 2, + [41886] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1572), 20, + ACTIONS(1466), 20, sym__ws, sym_comment, anon_sym_POUND_, @@ -36859,10 +37025,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [41683] = 2, + [41912] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1620), 20, + ACTIONS(1676), 20, sym__ws, sym_comment, anon_sym_POUND_, @@ -36883,13 +37049,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [41709] = 3, + [41938] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1458), 2, + ACTIONS(1600), 2, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(1456), 17, + ACTIONS(1598), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -36907,13 +37073,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_SQUOTE, anon_sym_COMMA_AT, - [41736] = 3, + [41965] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1646), 2, + ACTIONS(1636), 2, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(1644), 17, + ACTIONS(1634), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -36931,13 +37097,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_SQUOTE, anon_sym_COMMA_AT, - [41763] = 3, + [41992] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1434), 2, + ACTIONS(1440), 2, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(1432), 17, + ACTIONS(1438), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -36955,13 +37121,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_SQUOTE, anon_sym_COMMA_AT, - [41790] = 3, + [42019] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1642), 2, + ACTIONS(1444), 2, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(1640), 17, + ACTIONS(1442), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -36979,13 +37145,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_SQUOTE, anon_sym_COMMA_AT, - [41817] = 3, + [42046] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1672), 2, + ACTIONS(1452), 2, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(1670), 17, + ACTIONS(1450), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -37003,13 +37169,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_SQUOTE, anon_sym_COMMA_AT, - [41844] = 3, + [42073] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1638), 2, + ACTIONS(1460), 2, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(1636), 17, + ACTIONS(1458), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -37027,13 +37193,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_SQUOTE, anon_sym_COMMA_AT, - [41871] = 3, + [42100] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1630), 2, + ACTIONS(1464), 2, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(1628), 17, + ACTIONS(1462), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -37051,13 +37217,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_SQUOTE, anon_sym_COMMA_AT, - [41898] = 3, + [42127] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1622), 2, + ACTIONS(1604), 2, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(1620), 17, + ACTIONS(1602), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -37075,13 +37241,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_SQUOTE, anon_sym_COMMA_AT, - [41925] = 3, + [42154] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1574), 2, + ACTIONS(1640), 2, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(1572), 17, + ACTIONS(1638), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -37099,13 +37265,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_SQUOTE, anon_sym_COMMA_AT, - [41952] = 3, + [42181] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1562), 2, + ACTIONS(1596), 2, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(1560), 17, + ACTIONS(1594), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -37123,37 +37289,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_SQUOTE, anon_sym_COMMA_AT, - [41979] = 3, + [42208] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1998), 1, - anon_sym_into, - ACTIONS(1996), 18, - sym__ws, - sym_comment, - anon_sym_POUND_, - anon_sym_RPAREN, - sym_accumulation_verb, - anon_sym_for, - anon_sym_and, - anon_sym_with, - anon_sym_do, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - [42006] = 3, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(1558), 2, + ACTIONS(1592), 2, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(1556), 17, + ACTIONS(1590), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -37171,13 +37313,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_SQUOTE, anon_sym_COMMA_AT, - [42033] = 3, + [42235] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1418), 2, + ACTIONS(1588), 2, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(1416), 17, + ACTIONS(1586), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -37195,13 +37337,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_SQUOTE, anon_sym_COMMA_AT, - [42060] = 3, + [42262] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1550), 2, + ACTIONS(1584), 2, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(1548), 17, + ACTIONS(1582), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -37219,13 +37361,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_SQUOTE, anon_sym_COMMA_AT, - [42087] = 3, + [42289] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1546), 2, + ACTIONS(1584), 2, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(1544), 17, + ACTIONS(1582), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -37243,13 +37385,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_SQUOTE, anon_sym_COMMA_AT, - [42114] = 3, + [42316] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1542), 2, + ACTIONS(1584), 2, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(1540), 17, + ACTIONS(1582), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -37267,13 +37409,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_SQUOTE, anon_sym_COMMA_AT, - [42141] = 3, + [42343] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1538), 2, + ACTIONS(1580), 2, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(1536), 17, + ACTIONS(1578), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -37291,13 +37433,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_SQUOTE, anon_sym_COMMA_AT, - [42168] = 3, + [42370] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1534), 2, + ACTIONS(1572), 2, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(1532), 17, + ACTIONS(1570), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -37315,13 +37457,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_SQUOTE, anon_sym_COMMA_AT, - [42195] = 3, + [42397] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1530), 2, + ACTIONS(1568), 2, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(1528), 17, + ACTIONS(1566), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -37339,13 +37481,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_SQUOTE, anon_sym_COMMA_AT, - [42222] = 3, + [42424] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1526), 2, + ACTIONS(1428), 2, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(1524), 17, + ACTIONS(1426), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -37363,13 +37505,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_SQUOTE, anon_sym_COMMA_AT, - [42249] = 3, + [42451] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1522), 2, + ACTIONS(1678), 2, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(1520), 17, + ACTIONS(1676), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -37387,13 +37529,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_SQUOTE, anon_sym_COMMA_AT, - [42276] = 3, + [42478] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1414), 2, + ACTIONS(1468), 2, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(1412), 17, + ACTIONS(1466), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -37411,37 +37553,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_SQUOTE, anon_sym_COMMA_AT, - [42303] = 3, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(2054), 1, - anon_sym_into, - ACTIONS(2052), 18, - sym__ws, - sym_comment, - anon_sym_POUND_, - anon_sym_RPAREN, - sym_accumulation_verb, - anon_sym_for, - anon_sym_and, - anon_sym_with, - anon_sym_do, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - [42330] = 3, + [42505] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1518), 2, + ACTIONS(1472), 2, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(1516), 17, + ACTIONS(1470), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -37459,13 +37577,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_SQUOTE, anon_sym_COMMA_AT, - [42357] = 3, + [42532] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1422), 2, + ACTIONS(1476), 2, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(1420), 17, + ACTIONS(1474), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -37483,13 +37601,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_SQUOTE, anon_sym_COMMA_AT, - [42384] = 3, + [42559] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1554), 2, + ACTIONS(1480), 2, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(1552), 17, + ACTIONS(1478), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -37507,13 +37625,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_SQUOTE, anon_sym_COMMA_AT, - [42411] = 3, + [42586] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1554), 2, + ACTIONS(1484), 2, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(1552), 17, + ACTIONS(1482), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -37531,13 +37649,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_SQUOTE, anon_sym_COMMA_AT, - [42438] = 3, + [42613] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1554), 2, + ACTIONS(1488), 2, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(1552), 17, + ACTIONS(1486), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -37555,13 +37673,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_SQUOTE, anon_sym_COMMA_AT, - [42465] = 3, + [42640] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1426), 2, + ACTIONS(1492), 2, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(1424), 17, + ACTIONS(1490), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -37579,13 +37697,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_SQUOTE, anon_sym_COMMA_AT, - [42492] = 3, + [42667] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1634), 2, + ACTIONS(1496), 2, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(1632), 17, + ACTIONS(1494), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -37603,13 +37721,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_SQUOTE, anon_sym_COMMA_AT, - [42519] = 3, + [42694] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1626), 2, + ACTIONS(1500), 2, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(1624), 17, + ACTIONS(1498), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -37627,13 +37745,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_SQUOTE, anon_sym_COMMA_AT, - [42546] = 3, + [42721] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1618), 2, + ACTIONS(1504), 2, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(1616), 17, + ACTIONS(1502), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -37651,13 +37769,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_SQUOTE, anon_sym_COMMA_AT, - [42573] = 3, + [42748] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1614), 2, + ACTIONS(1508), 2, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(1612), 17, + ACTIONS(1506), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -37675,13 +37793,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_SQUOTE, anon_sym_COMMA_AT, - [42600] = 3, + [42775] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1610), 2, + ACTIONS(1512), 2, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(1608), 17, + ACTIONS(1510), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -37699,13 +37817,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_SQUOTE, anon_sym_COMMA_AT, - [42627] = 3, + [42802] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1606), 2, + ACTIONS(1560), 2, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(1604), 17, + ACTIONS(1558), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -37723,13 +37841,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_SQUOTE, anon_sym_COMMA_AT, - [42654] = 3, + [42829] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1602), 2, + ACTIONS(1632), 2, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(1600), 17, + ACTIONS(1630), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -37747,13 +37865,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_SQUOTE, anon_sym_COMMA_AT, - [42681] = 3, + [42856] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1598), 2, + ACTIONS(1656), 2, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(1596), 17, + ACTIONS(1654), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -37771,13 +37889,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_SQUOTE, anon_sym_COMMA_AT, - [42708] = 3, + [42883] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1594), 2, + ACTIONS(1516), 2, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(1592), 17, + ACTIONS(1514), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -37795,13 +37913,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_SQUOTE, anon_sym_COMMA_AT, - [42735] = 3, + [42910] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1590), 2, + ACTIONS(1682), 2, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(1588), 17, + ACTIONS(1680), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -37819,13 +37937,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_SQUOTE, anon_sym_COMMA_AT, - [42762] = 3, + [42937] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1438), 2, + ACTIONS(1624), 2, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(1436), 17, + ACTIONS(1622), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -37843,13 +37961,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_SQUOTE, anon_sym_COMMA_AT, - [42789] = 3, + [42964] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1450), 2, + ACTIONS(1612), 2, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(1448), 17, + ACTIONS(1610), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -37867,13 +37985,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_SQUOTE, anon_sym_COMMA_AT, - [42816] = 3, + [42991] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1590), 2, + ACTIONS(1620), 2, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(1588), 17, + ACTIONS(1618), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -37891,13 +38009,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_SQUOTE, anon_sym_COMMA_AT, - [42843] = 3, + [43018] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1454), 2, + ACTIONS(1628), 2, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(1452), 17, + ACTIONS(1626), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -37915,13 +38033,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_SQUOTE, anon_sym_COMMA_AT, - [42870] = 3, + [43045] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1590), 2, + ACTIONS(1608), 2, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(1588), 17, + ACTIONS(1606), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -37939,13 +38057,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_SQUOTE, anon_sym_COMMA_AT, - [42897] = 3, + [43072] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1462), 2, + ACTIONS(1648), 2, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(1460), 17, + ACTIONS(1646), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -37963,13 +38081,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_SQUOTE, anon_sym_COMMA_AT, - [42924] = 3, + [43099] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1668), 2, + ACTIONS(1648), 2, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(1666), 17, + ACTIONS(1646), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -37987,13 +38105,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_SQUOTE, anon_sym_COMMA_AT, - [42951] = 3, + [43126] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1466), 2, + ACTIONS(1648), 2, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(1464), 17, + ACTIONS(1646), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -38011,13 +38129,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_SQUOTE, anon_sym_COMMA_AT, - [42978] = 3, + [43153] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1470), 2, + ACTIONS(1652), 2, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(1468), 17, + ACTIONS(1650), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -38035,13 +38153,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_SQUOTE, anon_sym_COMMA_AT, - [43005] = 3, + [43180] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1474), 2, + ACTIONS(1644), 2, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(1472), 17, + ACTIONS(1642), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -38059,13 +38177,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_SQUOTE, anon_sym_COMMA_AT, - [43032] = 3, + [43207] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1478), 2, + ACTIONS(1564), 2, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(1476), 17, + ACTIONS(1562), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -38083,13 +38201,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_SQUOTE, anon_sym_COMMA_AT, - [43059] = 3, + [43234] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1482), 2, + ACTIONS(1436), 2, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(1480), 17, + ACTIONS(1434), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -38107,13 +38225,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_SQUOTE, anon_sym_COMMA_AT, - [43086] = 3, + [43261] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1486), 2, + ACTIONS(1524), 2, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(1484), 17, + ACTIONS(1522), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -38131,13 +38249,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_SQUOTE, anon_sym_COMMA_AT, - [43113] = 3, + [43288] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1490), 2, + ACTIONS(1520), 2, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(1488), 17, + ACTIONS(1518), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -38155,13 +38273,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_SQUOTE, anon_sym_COMMA_AT, - [43140] = 3, + [43315] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1586), 2, + ACTIONS(1424), 2, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(1584), 17, + ACTIONS(1422), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -38179,13 +38297,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_SQUOTE, anon_sym_COMMA_AT, - [43167] = 3, + [43342] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1582), 2, + ACTIONS(1528), 2, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(1580), 17, + ACTIONS(1526), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -38203,13 +38321,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_SQUOTE, anon_sym_COMMA_AT, - [43194] = 3, + [43369] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1494), 2, + ACTIONS(1532), 2, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(1492), 17, + ACTIONS(1530), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -38227,13 +38345,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_SQUOTE, anon_sym_COMMA_AT, - [43221] = 3, + [43396] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1498), 2, + ACTIONS(1536), 2, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(1496), 17, + ACTIONS(1534), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -38251,13 +38369,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_SQUOTE, anon_sym_COMMA_AT, - [43248] = 3, + [43423] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1502), 2, + ACTIONS(1540), 2, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(1500), 17, + ACTIONS(1538), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -38275,13 +38393,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_SQUOTE, anon_sym_COMMA_AT, - [43275] = 3, + [43450] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1506), 2, + ACTIONS(1544), 2, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(1504), 17, + ACTIONS(1542), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -38299,13 +38417,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_SQUOTE, anon_sym_COMMA_AT, - [43302] = 3, + [43477] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1510), 2, + ACTIONS(1548), 2, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(1508), 17, + ACTIONS(1546), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -38323,13 +38441,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_SQUOTE, anon_sym_COMMA_AT, - [43329] = 3, + [43504] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1578), 2, + ACTIONS(1552), 2, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(1576), 17, + ACTIONS(1550), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -38347,13 +38465,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_SQUOTE, anon_sym_COMMA_AT, - [43356] = 3, + [43531] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1570), 2, + ACTIONS(1556), 2, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(1568), 17, + ACTIONS(1554), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -38371,13 +38489,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_SQUOTE, anon_sym_COMMA_AT, - [43383] = 3, + [43558] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1514), 2, + ACTIONS(1576), 2, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(1512), 17, + ACTIONS(1574), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -38395,13 +38513,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_SQUOTE, anon_sym_COMMA_AT, - [43410] = 3, + [43585] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1566), 2, + ACTIONS(1616), 2, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(1564), 17, + ACTIONS(1614), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -38419,10 +38537,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_SQUOTE, anon_sym_COMMA_AT, - [43437] = 2, + [43612] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2056), 18, + ACTIONS(2074), 18, sym__ws, sym_comment, anon_sym_POUND_, @@ -38441,10 +38559,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [43461] = 2, + [43636] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1444), 18, + ACTIONS(2076), 18, sym__ws, sym_comment, anon_sym_POUND_, @@ -38463,10 +38581,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [43485] = 2, + [43660] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1440), 18, + ACTIONS(2078), 18, sym__ws, sym_comment, anon_sym_POUND_, @@ -38485,10 +38603,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [43509] = 2, + [43684] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1428), 18, + ACTIONS(2080), 18, sym__ws, sym_comment, anon_sym_POUND_, @@ -38507,10 +38625,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [43533] = 2, + [43708] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2058), 18, + ACTIONS(2082), 18, sym__ws, sym_comment, anon_sym_POUND_, @@ -38529,10 +38647,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [43557] = 2, + [43732] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2060), 18, + ACTIONS(1454), 18, sym__ws, sym_comment, anon_sym_POUND_, @@ -38551,10 +38669,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [43581] = 2, + [43756] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2062), 18, + ACTIONS(1446), 18, sym__ws, sym_comment, anon_sym_POUND_, @@ -38573,10 +38691,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [43605] = 2, + [43780] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2064), 18, + ACTIONS(1430), 18, sym__ws, sym_comment, anon_sym_POUND_, @@ -38595,10 +38713,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [43629] = 2, + [43804] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2066), 18, + ACTIONS(2084), 18, sym__ws, sym_comment, anon_sym_POUND_, @@ -38617,10 +38735,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [43653] = 2, + [43828] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2068), 18, + ACTIONS(2086), 18, sym__ws, sym_comment, anon_sym_POUND_, @@ -38639,10 +38757,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [43677] = 2, + [43852] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2070), 18, + ACTIONS(2088), 18, sym__ws, sym_comment, anon_sym_POUND_, @@ -38661,39 +38779,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [43701] = 9, + [43876] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2074), 1, - anon_sym_CARET, - ACTIONS(2077), 1, - anon_sym_POUND_CARET, - STATE(584), 1, - sym_old_meta_lit, - STATE(587), 1, - sym_meta_lit, - STATE(716), 1, - aux_sym_sym_lit_repeat1, - STATE(761), 1, - sym__metadata_lit, - ACTIONS(2080), 2, - anon_sym_POUND, - anon_sym_POUND_QMARK, - ACTIONS(2072), 10, - aux_sym_sym_lit_token1, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_POUND0A, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_POUND_EQ, - anon_sym_AT, - anon_sym_SQUOTE, - anon_sym_COMMA_AT, - [43739] = 2, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(2082), 18, + ACTIONS(2090), 18, sym__ws, sym_comment, anon_sym_POUND_, @@ -38712,10 +38801,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [43763] = 2, + [43900] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2052), 18, + ACTIONS(2092), 18, sym__ws, sym_comment, anon_sym_POUND_, @@ -38734,10 +38823,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [43787] = 2, + [43924] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2084), 18, + ACTIONS(2094), 18, sym__ws, sym_comment, anon_sym_POUND_, @@ -38756,10 +38845,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [43811] = 2, + [43948] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2086), 18, + ACTIONS(2096), 18, sym__ws, sym_comment, anon_sym_POUND_, @@ -38778,10 +38867,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [43835] = 2, + [43972] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2088), 18, + ACTIONS(2098), 18, sym__ws, sym_comment, anon_sym_POUND_, @@ -38800,10 +38889,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [43859] = 2, + [43996] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2090), 18, + ACTIONS(2100), 18, sym__ws, sym_comment, anon_sym_POUND_, @@ -38822,10 +38911,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [43883] = 2, + [44020] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2092), 18, + ACTIONS(2102), 18, sym__ws, sym_comment, anon_sym_POUND_, @@ -38844,10 +38933,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [43907] = 2, + [44044] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2094), 18, + ACTIONS(2104), 18, sym__ws, sym_comment, anon_sym_POUND_, @@ -38866,10 +38955,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [43931] = 2, + [44068] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2096), 18, + ACTIONS(2106), 18, sym__ws, sym_comment, anon_sym_POUND_, @@ -38888,51 +38977,26 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [43955] = 13, + [44092] = 9, ACTIONS(3), 1, sym_block_comment, - ACTIONS(9), 1, - anon_sym_POUND_, - ACTIONS(700), 1, - anon_sym_LPAREN, - ACTIONS(2098), 1, + ACTIONS(2110), 1, anon_sym_CARET, - ACTIONS(2100), 1, + ACTIONS(2113), 1, anon_sym_POUND_CARET, - STATE(338), 1, - sym_list_lit, - STATE(761), 1, - sym__metadata_lit, - STATE(853), 1, - aux_sym_sym_lit_repeat1, - STATE(864), 1, + STATE(581), 1, sym_old_meta_lit, - STATE(865), 1, + STATE(582), 1, sym_meta_lit, - ACTIONS(378), 2, - sym__ws, - sym_comment, - STATE(334), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(448), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - [44000] = 3, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(2104), 2, + STATE(725), 1, + aux_sym_sym_lit_repeat1, + STATE(829), 1, + sym__metadata_lit, + ACTIONS(2116), 2, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(2102), 15, - sym__ws, - sym_comment, - anon_sym_POUND_, + ACTIONS(2108), 10, aux_sym_sym_lit_token1, - anon_sym_CARET, - anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_POUND0A, @@ -38942,98 +39006,56 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_SQUOTE, anon_sym_COMMA_AT, - [44025] = 13, + [44130] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(9), 1, - anon_sym_POUND_, - ACTIONS(428), 1, - anon_sym_LPAREN, - ACTIONS(2098), 1, - anon_sym_CARET, - ACTIONS(2100), 1, - anon_sym_POUND_CARET, - STATE(761), 1, - sym__metadata_lit, - STATE(813), 1, - sym_list_lit, - STATE(857), 1, - aux_sym_sym_lit_repeat1, - STATE(864), 1, - sym_old_meta_lit, - STATE(865), 1, - sym_meta_lit, - ACTIONS(378), 2, + ACTIONS(1440), 1, + anon_sym_being, + ACTIONS(1438), 16, sym__ws, sym_comment, - STATE(448), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(759), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - [44070] = 13, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(462), 1, - anon_sym_LPAREN, - ACTIONS(2098), 1, - anon_sym_CARET, - ACTIONS(2100), 1, - anon_sym_POUND_CARET, - STATE(608), 1, - sym_list_lit, - STATE(761), 1, - sym__metadata_lit, - STATE(855), 1, - aux_sym_sym_lit_repeat1, - STATE(864), 1, - sym_old_meta_lit, - STATE(865), 1, - sym_meta_lit, - ACTIONS(2106), 2, - sym__ws, - sym_comment, - STATE(633), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(737), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - [44115] = 3, + anon_sym_in, + anon_sym_across, + anon_sym_using, + aux_sym__for_part_token1, + anon_sym_below, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + [44155] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2110), 2, - anon_sym_POUND, - anon_sym_POUND_QMARK, - ACTIONS(2108), 15, + ACTIONS(1648), 1, + anon_sym_being, + ACTIONS(1646), 16, sym__ws, sym_comment, anon_sym_POUND_, - aux_sym_sym_lit_token1, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_POUND0A, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_POUND_EQ, - anon_sym_AT, - anon_sym_SQUOTE, - anon_sym_COMMA_AT, - [44140] = 3, + anon_sym_in, + anon_sym_across, + anon_sym_using, + aux_sym__for_part_token1, + anon_sym_below, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + [44180] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1450), 1, + ACTIONS(1516), 1, anon_sym_being, - ACTIONS(1448), 16, + ACTIONS(1514), 16, sym__ws, sym_comment, anon_sym_POUND_, @@ -39050,76 +39072,56 @@ static uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_by, anon_sym_then, - [44165] = 13, + [44205] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(9), 1, - anon_sym_POUND_, - ACTIONS(21), 1, - anon_sym_LPAREN, - ACTIONS(2098), 1, - anon_sym_CARET, - ACTIONS(2100), 1, - anon_sym_POUND_CARET, - STATE(461), 1, - sym_list_lit, - STATE(761), 1, - sym__metadata_lit, - STATE(854), 1, - aux_sym_sym_lit_repeat1, - STATE(864), 1, - sym_old_meta_lit, - STATE(865), 1, - sym_meta_lit, - ACTIONS(378), 2, + ACTIONS(1512), 1, + anon_sym_being, + ACTIONS(1510), 16, sym__ws, sym_comment, - STATE(379), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(448), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - [44210] = 13, + anon_sym_POUND_, + anon_sym_in, + anon_sym_across, + anon_sym_using, + aux_sym__for_part_token1, + anon_sym_below, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + [44230] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(9), 1, - anon_sym_POUND_, - ACTIONS(21), 1, - anon_sym_LPAREN, - ACTIONS(2098), 1, - anon_sym_CARET, - ACTIONS(2100), 1, - anon_sym_POUND_CARET, - STATE(415), 1, - sym_list_lit, - STATE(761), 1, - sym__metadata_lit, - STATE(854), 1, - aux_sym_sym_lit_repeat1, - STATE(864), 1, - sym_old_meta_lit, - STATE(865), 1, - sym_meta_lit, - ACTIONS(378), 2, + ACTIONS(1508), 1, + anon_sym_being, + ACTIONS(1506), 16, sym__ws, sym_comment, - STATE(379), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(448), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, + anon_sym_POUND_, + anon_sym_in, + anon_sym_across, + anon_sym_using, + aux_sym__for_part_token1, + anon_sym_below, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, [44255] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1514), 1, + ACTIONS(1504), 1, anon_sym_being, - ACTIONS(1512), 16, + ACTIONS(1502), 16, sym__ws, sym_comment, anon_sym_POUND_, @@ -39139,585 +39141,232 @@ static uint16_t ts_small_parse_table[] = { [44280] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2114), 2, - anon_sym_POUND, - anon_sym_POUND_QMARK, - ACTIONS(2112), 15, + ACTIONS(1612), 1, + anon_sym_being, + ACTIONS(1610), 16, sym__ws, sym_comment, anon_sym_POUND_, - aux_sym_sym_lit_token1, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_POUND0A, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_POUND_EQ, - anon_sym_AT, - anon_sym_SQUOTE, - anon_sym_COMMA_AT, + anon_sym_in, + anon_sym_across, + anon_sym_using, + aux_sym__for_part_token1, + anon_sym_below, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, [44305] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2118), 2, - anon_sym_POUND, - anon_sym_POUND_QMARK, - ACTIONS(2116), 15, - sym__ws, - sym_comment, - anon_sym_POUND_, - aux_sym_sym_lit_token1, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_POUND0A, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_POUND_EQ, - anon_sym_AT, - anon_sym_SQUOTE, - anon_sym_COMMA_AT, - [44330] = 13, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(9), 1, - anon_sym_POUND_, - ACTIONS(462), 1, - anon_sym_LPAREN, - ACTIONS(2098), 1, - anon_sym_CARET, - ACTIONS(2100), 1, - anon_sym_POUND_CARET, - STATE(596), 1, - sym_list_lit, - STATE(761), 1, - sym__metadata_lit, - STATE(855), 1, - aux_sym_sym_lit_repeat1, - STATE(864), 1, - sym_old_meta_lit, - STATE(865), 1, - sym_meta_lit, - ACTIONS(378), 2, - sym__ws, - sym_comment, - STATE(448), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(633), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - [44375] = 3, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(2122), 2, - anon_sym_POUND, - anon_sym_POUND_QMARK, - ACTIONS(2120), 15, + ACTIONS(1500), 1, + anon_sym_being, + ACTIONS(1498), 16, sym__ws, sym_comment, anon_sym_POUND_, - aux_sym_sym_lit_token1, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_POUND0A, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_POUND_EQ, - anon_sym_AT, - anon_sym_SQUOTE, - anon_sym_COMMA_AT, - [44400] = 3, + anon_sym_in, + anon_sym_across, + anon_sym_using, + aux_sym__for_part_token1, + anon_sym_below, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + [44330] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2126), 2, - anon_sym_POUND, - anon_sym_POUND_QMARK, - ACTIONS(2124), 15, + ACTIONS(1492), 1, + anon_sym_being, + ACTIONS(1490), 16, sym__ws, sym_comment, anon_sym_POUND_, - aux_sym_sym_lit_token1, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_POUND0A, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_POUND_EQ, - anon_sym_AT, - anon_sym_SQUOTE, - anon_sym_COMMA_AT, - [44425] = 13, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(9), 1, - anon_sym_POUND_, - ACTIONS(574), 1, - anon_sym_LPAREN, - ACTIONS(2098), 1, - anon_sym_CARET, - ACTIONS(2100), 1, - anon_sym_POUND_CARET, - STATE(257), 1, - sym_list_lit, - STATE(761), 1, - sym__metadata_lit, - STATE(856), 1, - aux_sym_sym_lit_repeat1, - STATE(864), 1, - sym_old_meta_lit, - STATE(865), 1, - sym_meta_lit, - ACTIONS(2128), 2, - sym__ws, - sym_comment, - STATE(245), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(746), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - [44470] = 13, + anon_sym_in, + anon_sym_across, + anon_sym_using, + aux_sym__for_part_token1, + anon_sym_below, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + [44355] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(9), 1, - anon_sym_POUND_, - ACTIONS(700), 1, - anon_sym_LPAREN, - ACTIONS(2098), 1, - anon_sym_CARET, - ACTIONS(2100), 1, - anon_sym_POUND_CARET, - STATE(351), 1, - sym_list_lit, - STATE(761), 1, - sym__metadata_lit, - STATE(853), 1, - aux_sym_sym_lit_repeat1, - STATE(864), 1, - sym_old_meta_lit, - STATE(865), 1, - sym_meta_lit, - ACTIONS(2130), 2, + ACTIONS(1608), 1, + anon_sym_being, + ACTIONS(1606), 16, sym__ws, sym_comment, - STATE(334), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(726), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - [44515] = 13, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(428), 1, - anon_sym_LPAREN, - ACTIONS(2098), 1, - anon_sym_CARET, - ACTIONS(2100), 1, - anon_sym_POUND_CARET, - STATE(761), 1, - sym__metadata_lit, - STATE(832), 1, - sym_list_lit, - STATE(857), 1, - aux_sym_sym_lit_repeat1, - STATE(864), 1, - sym_old_meta_lit, - STATE(865), 1, - sym_meta_lit, - ACTIONS(2132), 2, - sym__ws, - sym_comment, - STATE(728), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(759), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - [44560] = 13, + anon_sym_in, + anon_sym_across, + anon_sym_using, + aux_sym__for_part_token1, + anon_sym_below, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + [44380] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(9), 1, - anon_sym_POUND_, - ACTIONS(21), 1, - anon_sym_LPAREN, - ACTIONS(2098), 1, - anon_sym_CARET, - ACTIONS(2100), 1, - anon_sym_POUND_CARET, - STATE(462), 1, - sym_list_lit, - STATE(761), 1, - sym__metadata_lit, - STATE(854), 1, - aux_sym_sym_lit_repeat1, - STATE(864), 1, - sym_old_meta_lit, - STATE(865), 1, - sym_meta_lit, - ACTIONS(2134), 2, + ACTIONS(1488), 1, + anon_sym_being, + ACTIONS(1486), 16, sym__ws, sym_comment, - STATE(379), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(732), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - [44605] = 13, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(21), 1, - anon_sym_LPAREN, - ACTIONS(2098), 1, - anon_sym_CARET, - ACTIONS(2100), 1, - anon_sym_POUND_CARET, - STATE(463), 1, - sym_list_lit, - STATE(761), 1, - sym__metadata_lit, - STATE(854), 1, - aux_sym_sym_lit_repeat1, - STATE(864), 1, - sym_old_meta_lit, - STATE(865), 1, - sym_meta_lit, - ACTIONS(378), 2, - sym__ws, - sym_comment, - STATE(379), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(448), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - [44650] = 13, + anon_sym_in, + anon_sym_across, + anon_sym_using, + aux_sym__for_part_token1, + anon_sym_below, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + [44405] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(9), 1, - anon_sym_POUND_, - ACTIONS(394), 1, - anon_sym_LPAREN, - ACTIONS(2098), 1, - anon_sym_CARET, - ACTIONS(2100), 1, - anon_sym_POUND_CARET, - STATE(525), 1, - sym_list_lit, - STATE(761), 1, - sym__metadata_lit, - STATE(860), 1, - aux_sym_sym_lit_repeat1, - STATE(864), 1, - sym_old_meta_lit, - STATE(865), 1, - sym_meta_lit, - ACTIONS(2136), 2, + ACTIONS(1484), 1, + anon_sym_being, + ACTIONS(1482), 16, sym__ws, sym_comment, - STATE(506), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(750), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - [44695] = 13, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(574), 1, - anon_sym_LPAREN, - ACTIONS(2098), 1, - anon_sym_CARET, - ACTIONS(2100), 1, - anon_sym_POUND_CARET, - STATE(264), 1, - sym_list_lit, - STATE(761), 1, - sym__metadata_lit, - STATE(856), 1, - aux_sym_sym_lit_repeat1, - STATE(864), 1, - sym_old_meta_lit, - STATE(865), 1, - sym_meta_lit, - ACTIONS(378), 2, - sym__ws, - sym_comment, - STATE(245), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(448), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - [44740] = 3, + anon_sym_in, + anon_sym_across, + anon_sym_using, + aux_sym__for_part_token1, + anon_sym_below, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + [44430] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2140), 2, - anon_sym_POUND, - anon_sym_POUND_QMARK, - ACTIONS(2138), 15, + ACTIONS(1480), 1, + anon_sym_being, + ACTIONS(1478), 16, sym__ws, sym_comment, anon_sym_POUND_, - aux_sym_sym_lit_token1, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_POUND0A, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_POUND_EQ, - anon_sym_AT, - anon_sym_SQUOTE, - anon_sym_COMMA_AT, - [44765] = 3, + anon_sym_in, + anon_sym_across, + anon_sym_using, + aux_sym__for_part_token1, + anon_sym_below, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + [44455] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2144), 2, - anon_sym_POUND, - anon_sym_POUND_QMARK, - ACTIONS(2142), 15, + ACTIONS(1476), 1, + anon_sym_being, + ACTIONS(1474), 16, sym__ws, sym_comment, anon_sym_POUND_, - aux_sym_sym_lit_token1, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_POUND0A, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_POUND_EQ, - anon_sym_AT, - anon_sym_SQUOTE, - anon_sym_COMMA_AT, - [44790] = 13, + anon_sym_in, + anon_sym_across, + anon_sym_using, + aux_sym__for_part_token1, + anon_sym_below, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + [44480] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(9), 1, - anon_sym_POUND_, - ACTIONS(738), 1, - anon_sym_LPAREN, - ACTIONS(2098), 1, - anon_sym_CARET, - ACTIONS(2100), 1, - anon_sym_POUND_CARET, - STATE(659), 1, - sym_list_lit, - STATE(761), 1, - sym__metadata_lit, - STATE(859), 1, - aux_sym_sym_lit_repeat1, - STATE(864), 1, - sym_old_meta_lit, - STATE(865), 1, - sym_meta_lit, - ACTIONS(378), 2, + ACTIONS(1472), 1, + anon_sym_being, + ACTIONS(1470), 16, sym__ws, sym_comment, - STATE(448), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(683), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - [44835] = 13, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(394), 1, - anon_sym_LPAREN, - ACTIONS(2098), 1, - anon_sym_CARET, - ACTIONS(2100), 1, - anon_sym_POUND_CARET, - STATE(516), 1, - sym_list_lit, - STATE(761), 1, - sym__metadata_lit, - STATE(860), 1, - aux_sym_sym_lit_repeat1, - STATE(864), 1, - sym_old_meta_lit, - STATE(865), 1, - sym_meta_lit, - ACTIONS(378), 2, - sym__ws, - sym_comment, - STATE(448), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(506), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - [44880] = 13, + anon_sym_in, + anon_sym_across, + anon_sym_using, + aux_sym__for_part_token1, + anon_sym_below, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + [44505] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(9), 1, - anon_sym_POUND_, - ACTIONS(21), 1, - anon_sym_LPAREN, - ACTIONS(2098), 1, - anon_sym_CARET, - ACTIONS(2100), 1, - anon_sym_POUND_CARET, - STATE(460), 1, - sym_list_lit, - STATE(761), 1, - sym__metadata_lit, - STATE(854), 1, - aux_sym_sym_lit_repeat1, - STATE(864), 1, - sym_old_meta_lit, - STATE(865), 1, - sym_meta_lit, - ACTIONS(2146), 2, + ACTIONS(1468), 1, + anon_sym_being, + ACTIONS(1466), 16, sym__ws, sym_comment, - STATE(379), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(744), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - [44925] = 13, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(21), 1, - anon_sym_LPAREN, - ACTIONS(2098), 1, - anon_sym_CARET, - ACTIONS(2100), 1, - anon_sym_POUND_CARET, - STATE(457), 1, - sym_list_lit, - STATE(761), 1, - sym__metadata_lit, - STATE(854), 1, - aux_sym_sym_lit_repeat1, - STATE(864), 1, - sym_old_meta_lit, - STATE(865), 1, - sym_meta_lit, - ACTIONS(2148), 2, - sym__ws, - sym_comment, - STATE(379), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(733), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - [44970] = 13, + anon_sym_in, + anon_sym_across, + anon_sym_using, + aux_sym__for_part_token1, + anon_sym_below, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + [44530] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(9), 1, - anon_sym_POUND_, - ACTIONS(738), 1, - anon_sym_LPAREN, - ACTIONS(2098), 1, - anon_sym_CARET, - ACTIONS(2100), 1, - anon_sym_POUND_CARET, - STATE(698), 1, - sym_list_lit, - STATE(761), 1, - sym__metadata_lit, - STATE(859), 1, - aux_sym_sym_lit_repeat1, - STATE(864), 1, - sym_old_meta_lit, - STATE(865), 1, - sym_meta_lit, - ACTIONS(2150), 2, + ACTIONS(1464), 1, + anon_sym_being, + ACTIONS(1462), 16, sym__ws, sym_comment, - STATE(683), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(749), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - [45015] = 12, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(17), 1, - anon_sym_CARET, - ACTIONS(19), 1, - anon_sym_POUND_CARET, - ACTIONS(1822), 1, anon_sym_POUND_, - ACTIONS(1826), 1, - aux_sym_sym_lit_token1, - STATE(445), 1, - sym_sym_lit, - STATE(584), 1, - sym_old_meta_lit, - STATE(587), 1, - sym_meta_lit, - STATE(761), 1, - sym__metadata_lit, - STATE(872), 1, - aux_sym_sym_lit_repeat1, - ACTIONS(2152), 2, - sym__ws, - sym_comment, - STATE(806), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - [45055] = 3, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(1518), 1, - anon_sym_being, - ACTIONS(1516), 13, anon_sym_in, anon_sym_across, anon_sym_using, @@ -39731,12 +39380,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_by, anon_sym_then, - [45077] = 3, + [44555] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2156), 1, + ACTIONS(1460), 1, anon_sym_being, - ACTIONS(2154), 13, + ACTIONS(1458), 16, + sym__ws, + sym_comment, + anon_sym_POUND_, anon_sym_in, anon_sym_across, anon_sym_using, @@ -39750,12 +39402,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_by, anon_sym_then, - [45099] = 3, + [44580] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1462), 1, + ACTIONS(1452), 1, anon_sym_being, - ACTIONS(1460), 13, + ACTIONS(1450), 16, + sym__ws, + sym_comment, + anon_sym_POUND_, anon_sym_in, anon_sym_across, anon_sym_using, @@ -39769,12 +39424,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_by, anon_sym_then, - [45121] = 3, + [44605] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1458), 1, + ACTIONS(1604), 1, anon_sym_being, - ACTIONS(1456), 13, + ACTIONS(1602), 16, + sym__ws, + sym_comment, + anon_sym_POUND_, anon_sym_in, anon_sym_across, anon_sym_using, @@ -39788,12 +39446,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_by, anon_sym_then, - [45143] = 3, + [44630] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1454), 1, + ACTIONS(1444), 1, anon_sym_being, - ACTIONS(1452), 13, + ACTIONS(1442), 16, + sym__ws, + sym_comment, + anon_sym_POUND_, anon_sym_in, anon_sym_across, anon_sym_using, @@ -39807,60 +39468,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_by, anon_sym_then, - [45165] = 13, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(21), 1, - anon_sym_LPAREN, - ACTIONS(2098), 1, - anon_sym_CARET, - ACTIONS(2100), 1, - anon_sym_POUND_CARET, - ACTIONS(2158), 1, - sym_num_lit, - ACTIONS(2160), 1, - anon_sym_LBRACE, - STATE(434), 1, - sym_list_lit, - STATE(761), 1, - sym__metadata_lit, - STATE(846), 1, - sym_array_dimension, - STATE(854), 1, - aux_sym_sym_lit_repeat1, - STATE(864), 1, - sym_old_meta_lit, - STATE(865), 1, - sym_meta_lit, - STATE(379), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - [45207] = 3, + [44655] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2164), 2, - anon_sym_POUND, - anon_sym_POUND_QMARK, - ACTIONS(2162), 12, - aux_sym_sym_lit_token1, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_POUND0A, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_POUND_EQ, - anon_sym_AT, - anon_sym_SQUOTE, - anon_sym_COMMA_AT, - [45229] = 3, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(1668), 1, + ACTIONS(1636), 1, anon_sym_being, - ACTIONS(1666), 13, + ACTIONS(1634), 16, + sym__ws, + sym_comment, + anon_sym_POUND_, anon_sym_in, anon_sym_across, anon_sym_using, @@ -39874,124 +39490,133 @@ static uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_by, anon_sym_then, - [45251] = 12, + [44680] = 13, ACTIONS(3), 1, sym_block_comment, - ACTIONS(17), 1, + ACTIONS(9), 1, + anon_sym_POUND_, + ACTIONS(21), 1, + anon_sym_LPAREN, + ACTIONS(2118), 1, anon_sym_CARET, - ACTIONS(19), 1, + ACTIONS(2120), 1, anon_sym_POUND_CARET, - ACTIONS(1822), 1, - anon_sym_POUND_, - ACTIONS(1986), 1, - aux_sym_sym_lit_token1, - STATE(524), 1, - sym_sym_lit, - STATE(584), 1, - sym_old_meta_lit, - STATE(587), 1, - sym_meta_lit, - STATE(761), 1, + STATE(463), 1, + sym_list_lit, + STATE(829), 1, sym__metadata_lit, - STATE(874), 1, + STATE(854), 1, aux_sym_sym_lit_repeat1, - ACTIONS(1892), 2, + STATE(861), 1, + sym_meta_lit, + STATE(862), 1, + sym_old_meta_lit, + ACTIONS(378), 2, sym__ws, sym_comment, - STATE(510), 3, + STATE(376), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(448), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [45291] = 12, + [44725] = 13, ACTIONS(3), 1, sym_block_comment, - ACTIONS(17), 1, + ACTIONS(9), 1, + anon_sym_POUND_, + ACTIONS(21), 1, + anon_sym_LPAREN, + ACTIONS(2118), 1, anon_sym_CARET, - ACTIONS(19), 1, + ACTIONS(2120), 1, anon_sym_POUND_CARET, - ACTIONS(1822), 1, - anon_sym_POUND_, - ACTIONS(1970), 1, - aux_sym_sym_lit_token1, - STATE(584), 1, - sym_old_meta_lit, - STATE(587), 1, - sym_meta_lit, - STATE(610), 1, - sym_sym_lit, - STATE(761), 1, + STATE(464), 1, + sym_list_lit, + STATE(829), 1, sym__metadata_lit, - STATE(869), 1, + STATE(854), 1, aux_sym_sym_lit_repeat1, - ACTIONS(1892), 2, + STATE(861), 1, + sym_meta_lit, + STATE(862), 1, + sym_old_meta_lit, + ACTIONS(2122), 2, sym__ws, sym_comment, - STATE(510), 3, + STATE(376), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(758), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [45331] = 12, + [44770] = 13, ACTIONS(3), 1, sym_block_comment, - ACTIONS(17), 1, + ACTIONS(9), 1, + anon_sym_POUND_, + ACTIONS(428), 1, + anon_sym_LPAREN, + ACTIONS(2118), 1, anon_sym_CARET, - ACTIONS(19), 1, + ACTIONS(2120), 1, anon_sym_POUND_CARET, - ACTIONS(1822), 1, - anon_sym_POUND_, - ACTIONS(2002), 1, - aux_sym_sym_lit_token1, - STATE(584), 1, - sym_old_meta_lit, - STATE(587), 1, - sym_meta_lit, - STATE(761), 1, + STATE(731), 1, + sym_list_lit, + STATE(829), 1, sym__metadata_lit, - STATE(798), 1, - sym_sym_lit, - STATE(873), 1, + STATE(856), 1, aux_sym_sym_lit_repeat1, - ACTIONS(2166), 2, + STATE(861), 1, + sym_meta_lit, + STATE(862), 1, + sym_old_meta_lit, + ACTIONS(2124), 2, sym__ws, sym_comment, - STATE(802), 3, + STATE(744), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(809), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [45371] = 12, + [44815] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(17), 1, - anon_sym_CARET, - ACTIONS(19), 1, - anon_sym_POUND_CARET, - ACTIONS(1822), 1, - anon_sym_POUND_, - ACTIONS(1982), 1, - aux_sym_sym_lit_token1, - STATE(344), 1, - sym_sym_lit, - STATE(584), 1, - sym_old_meta_lit, - STATE(587), 1, - sym_meta_lit, - STATE(761), 1, - sym__metadata_lit, - STATE(871), 1, - aux_sym_sym_lit_repeat1, - ACTIONS(2168), 2, + ACTIONS(1580), 1, + anon_sym_being, + ACTIONS(1578), 16, sym__ws, sym_comment, - STATE(768), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - [45411] = 3, + anon_sym_POUND_, + anon_sym_in, + anon_sym_across, + anon_sym_using, + aux_sym__for_part_token1, + anon_sym_below, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + [44840] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1466), 1, + ACTIONS(1560), 1, anon_sym_being, - ACTIONS(1464), 13, + ACTIONS(1558), 16, + sym__ws, + sym_comment, + anon_sym_POUND_, anon_sym_in, anon_sym_across, anon_sym_using, @@ -40005,68 +39630,91 @@ static uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_by, anon_sym_then, - [45433] = 12, + [44865] = 13, ACTIONS(3), 1, sym_block_comment, - ACTIONS(17), 1, + ACTIONS(9), 1, + anon_sym_POUND_, + ACTIONS(394), 1, + anon_sym_LPAREN, + ACTIONS(2118), 1, anon_sym_CARET, - ACTIONS(19), 1, + ACTIONS(2120), 1, anon_sym_POUND_CARET, - ACTIONS(1822), 1, - anon_sym_POUND_, - ACTIONS(1982), 1, - aux_sym_sym_lit_token1, - STATE(353), 1, - sym_sym_lit, - STATE(584), 1, - sym_old_meta_lit, - STATE(587), 1, - sym_meta_lit, - STATE(761), 1, + STATE(500), 1, + sym_list_lit, + STATE(829), 1, sym__metadata_lit, - STATE(871), 1, + STATE(853), 1, aux_sym_sym_lit_repeat1, - ACTIONS(1892), 2, + STATE(861), 1, + sym_meta_lit, + STATE(862), 1, + sym_old_meta_lit, + ACTIONS(378), 2, sym__ws, sym_comment, - STATE(510), 3, + STATE(448), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [45473] = 12, + STATE(472), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + [44910] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(17), 1, - anon_sym_CARET, - ACTIONS(19), 1, - anon_sym_POUND_CARET, - ACTIONS(1822), 1, + ACTIONS(1600), 1, + anon_sym_being, + ACTIONS(1598), 16, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(1970), 1, - aux_sym_sym_lit_token1, - STATE(584), 1, - sym_old_meta_lit, - STATE(587), 1, - sym_meta_lit, - STATE(624), 1, - sym_sym_lit, - STATE(761), 1, - sym__metadata_lit, - STATE(869), 1, - aux_sym_sym_lit_repeat1, - ACTIONS(2170), 2, + anon_sym_in, + anon_sym_across, + anon_sym_using, + aux_sym__for_part_token1, + anon_sym_below, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + [44935] = 3, + ACTIONS(3), 1, + sym_block_comment, + ACTIONS(1596), 1, + anon_sym_being, + ACTIONS(1594), 16, sym__ws, sym_comment, - STATE(764), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - [45513] = 3, + anon_sym_POUND_, + anon_sym_in, + anon_sym_across, + anon_sym_using, + aux_sym__for_part_token1, + anon_sym_below, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + [44960] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1470), 1, + ACTIONS(1628), 1, anon_sym_being, - ACTIONS(1468), 13, + ACTIONS(1626), 16, + sym__ws, + sym_comment, + anon_sym_POUND_, anon_sym_in, anon_sym_across, anon_sym_using, @@ -40080,12 +39728,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_by, anon_sym_then, - [45535] = 3, + [44985] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1566), 1, + ACTIONS(1592), 1, anon_sym_being, - ACTIONS(1564), 13, + ACTIONS(1590), 16, + sym__ws, + sym_comment, + anon_sym_POUND_, anon_sym_in, anon_sym_across, anon_sym_using, @@ -40099,12 +39750,47 @@ static uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_by, anon_sym_then, - [45557] = 3, + [45010] = 13, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1570), 1, + ACTIONS(9), 1, + anon_sym_POUND_, + ACTIONS(21), 1, + anon_sym_LPAREN, + ACTIONS(2118), 1, + anon_sym_CARET, + ACTIONS(2120), 1, + anon_sym_POUND_CARET, + STATE(462), 1, + sym_list_lit, + STATE(829), 1, + sym__metadata_lit, + STATE(854), 1, + aux_sym_sym_lit_repeat1, + STATE(861), 1, + sym_meta_lit, + STATE(862), 1, + sym_old_meta_lit, + ACTIONS(378), 2, + sym__ws, + sym_comment, + STATE(376), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(448), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + [45055] = 3, + ACTIONS(3), 1, + sym_block_comment, + ACTIONS(1584), 1, anon_sym_being, - ACTIONS(1568), 13, + ACTIONS(1582), 16, + sym__ws, + sym_comment, + anon_sym_POUND_, anon_sym_in, anon_sym_across, anon_sym_using, @@ -40118,12 +39804,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_by, anon_sym_then, - [45579] = 3, + [45080] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1578), 1, + ACTIONS(1572), 1, anon_sym_being, - ACTIONS(1576), 13, + ACTIONS(1570), 16, + sym__ws, + sym_comment, + anon_sym_POUND_, anon_sym_in, anon_sym_across, anon_sym_using, @@ -40137,12 +39826,47 @@ static uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_by, anon_sym_then, - [45601] = 3, + [45105] = 13, + ACTIONS(3), 1, + sym_block_comment, + ACTIONS(9), 1, + anon_sym_POUND_, + ACTIONS(700), 1, + anon_sym_LPAREN, + ACTIONS(2118), 1, + anon_sym_CARET, + ACTIONS(2120), 1, + anon_sym_POUND_CARET, + STATE(672), 1, + sym_list_lit, + STATE(829), 1, + sym__metadata_lit, + STATE(860), 1, + aux_sym_sym_lit_repeat1, + STATE(861), 1, + sym_meta_lit, + STATE(862), 1, + sym_old_meta_lit, + ACTIONS(2126), 2, + sym__ws, + sym_comment, + STATE(647), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(774), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + [45150] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1582), 1, + ACTIONS(1620), 1, anon_sym_being, - ACTIONS(1580), 13, + ACTIONS(1618), 16, + sym__ws, + sym_comment, + anon_sym_POUND_, anon_sym_in, anon_sym_across, anon_sym_using, @@ -40156,12 +39880,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_by, anon_sym_then, - [45623] = 3, + [45175] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1586), 1, + ACTIONS(1656), 1, anon_sym_being, - ACTIONS(1584), 13, + ACTIONS(1654), 16, + sym__ws, + sym_comment, + anon_sym_POUND_, anon_sym_in, anon_sym_across, anon_sym_using, @@ -40175,12 +39902,59 @@ static uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_by, anon_sym_then, - [45645] = 3, + [45200] = 3, + ACTIONS(3), 1, + sym_block_comment, + ACTIONS(2130), 2, + anon_sym_POUND, + anon_sym_POUND_QMARK, + ACTIONS(2128), 15, + sym__ws, + sym_comment, + anon_sym_POUND_, + aux_sym_sym_lit_token1, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_POUND0A, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_POUND_EQ, + anon_sym_AT, + anon_sym_SQUOTE, + anon_sym_COMMA_AT, + [45225] = 3, + ACTIONS(3), 1, + sym_block_comment, + ACTIONS(2134), 2, + anon_sym_POUND, + anon_sym_POUND_QMARK, + ACTIONS(2132), 15, + sym__ws, + sym_comment, + anon_sym_POUND_, + aux_sym_sym_lit_token1, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_POUND0A, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_POUND_EQ, + anon_sym_AT, + anon_sym_SQUOTE, + anon_sym_COMMA_AT, + [45250] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1590), 1, + ACTIONS(1640), 1, anon_sym_being, - ACTIONS(1588), 13, + ACTIONS(1638), 16, + sym__ws, + sym_comment, + anon_sym_POUND_, anon_sym_in, anon_sym_across, anon_sym_using, @@ -40194,12 +39968,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_by, anon_sym_then, - [45667] = 3, + [45275] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1590), 1, + ACTIONS(1632), 1, anon_sym_being, - ACTIONS(1588), 13, + ACTIONS(1630), 16, + sym__ws, + sym_comment, + anon_sym_POUND_, anon_sym_in, anon_sym_across, anon_sym_using, @@ -40213,12 +39990,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_by, anon_sym_then, - [45689] = 3, + [45300] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1590), 1, + ACTIONS(1568), 1, anon_sym_being, - ACTIONS(1588), 13, + ACTIONS(1566), 16, + sym__ws, + sym_comment, + anon_sym_POUND_, anon_sym_in, anon_sym_across, anon_sym_using, @@ -40232,59 +40012,187 @@ static uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_by, anon_sym_then, - [45711] = 12, + [45325] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(17), 1, + ACTIONS(2138), 2, + anon_sym_POUND, + anon_sym_POUND_QMARK, + ACTIONS(2136), 15, + sym__ws, + sym_comment, + anon_sym_POUND_, + aux_sym_sym_lit_token1, anon_sym_CARET, - ACTIONS(19), 1, anon_sym_POUND_CARET, - ACTIONS(1822), 1, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_POUND0A, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_POUND_EQ, + anon_sym_AT, + anon_sym_SQUOTE, + anon_sym_COMMA_AT, + [45350] = 13, + ACTIONS(3), 1, + sym_block_comment, + ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(1854), 1, - aux_sym_sym_lit_token1, - STATE(584), 1, + ACTIONS(21), 1, + anon_sym_LPAREN, + ACTIONS(2118), 1, + anon_sym_CARET, + ACTIONS(2120), 1, + anon_sym_POUND_CARET, + STATE(431), 1, + sym_list_lit, + STATE(829), 1, + sym__metadata_lit, + STATE(854), 1, + aux_sym_sym_lit_repeat1, + STATE(861), 1, + sym_meta_lit, + STATE(862), 1, sym_old_meta_lit, - STATE(587), 1, + ACTIONS(2140), 2, + sym__ws, + sym_comment, + STATE(376), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(773), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + [45395] = 13, + ACTIONS(3), 1, + sym_block_comment, + ACTIONS(9), 1, + anon_sym_POUND_, + ACTIONS(528), 1, + anon_sym_LPAREN, + ACTIONS(2118), 1, + anon_sym_CARET, + ACTIONS(2120), 1, + anon_sym_POUND_CARET, + STATE(608), 1, + sym_list_lit, + STATE(829), 1, + sym__metadata_lit, + STATE(855), 1, + aux_sym_sym_lit_repeat1, + STATE(861), 1, sym_meta_lit, - STATE(655), 1, - sym_sym_lit, - STATE(761), 1, + STATE(862), 1, + sym_old_meta_lit, + ACTIONS(378), 2, + sym__ws, + sym_comment, + STATE(448), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(635), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + [45440] = 3, + ACTIONS(3), 1, + sym_block_comment, + ACTIONS(2144), 2, + anon_sym_POUND, + anon_sym_POUND_QMARK, + ACTIONS(2142), 15, + sym__ws, + sym_comment, + anon_sym_POUND_, + aux_sym_sym_lit_token1, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_POUND0A, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_POUND_EQ, + anon_sym_AT, + anon_sym_SQUOTE, + anon_sym_COMMA_AT, + [45465] = 13, + ACTIONS(3), 1, + sym_block_comment, + ACTIONS(9), 1, + anon_sym_POUND_, + ACTIONS(21), 1, + anon_sym_LPAREN, + ACTIONS(2118), 1, + anon_sym_CARET, + ACTIONS(2120), 1, + anon_sym_POUND_CARET, + STATE(416), 1, + sym_list_lit, + STATE(829), 1, sym__metadata_lit, - STATE(868), 1, + STATE(854), 1, aux_sym_sym_lit_repeat1, - ACTIONS(1892), 2, + STATE(861), 1, + sym_meta_lit, + STATE(862), 1, + sym_old_meta_lit, + ACTIONS(378), 2, sym__ws, sym_comment, - STATE(510), 3, + STATE(376), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(448), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [45751] = 3, + [45510] = 13, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1594), 1, - anon_sym_being, - ACTIONS(1592), 13, - anon_sym_in, - anon_sym_across, - anon_sym_using, - aux_sym__for_part_token1, - anon_sym_below, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - [45773] = 3, + ACTIONS(9), 1, + anon_sym_POUND_, + ACTIONS(700), 1, + anon_sym_LPAREN, + ACTIONS(2118), 1, + anon_sym_CARET, + ACTIONS(2120), 1, + anon_sym_POUND_CARET, + STATE(693), 1, + sym_list_lit, + STATE(829), 1, + sym__metadata_lit, + STATE(860), 1, + aux_sym_sym_lit_repeat1, + STATE(861), 1, + sym_meta_lit, + STATE(862), 1, + sym_old_meta_lit, + ACTIONS(378), 2, + sym__ws, + sym_comment, + STATE(448), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(647), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + [45555] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1598), 1, + ACTIONS(1588), 1, anon_sym_being, - ACTIONS(1596), 13, + ACTIONS(1586), 16, + sym__ws, + sym_comment, + anon_sym_POUND_, anon_sym_in, anon_sym_across, anon_sym_using, @@ -40298,12 +40206,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_by, anon_sym_then, - [45795] = 3, + [45580] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1602), 1, + ACTIONS(1584), 1, anon_sym_being, - ACTIONS(1600), 13, + ACTIONS(1582), 16, + sym__ws, + sym_comment, + anon_sym_POUND_, anon_sym_in, anon_sym_across, anon_sym_using, @@ -40317,12 +40228,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_by, anon_sym_then, - [45817] = 3, + [45605] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1606), 1, + ACTIONS(1624), 1, anon_sym_being, - ACTIONS(1604), 13, + ACTIONS(1622), 16, + sym__ws, + sym_comment, + anon_sym_POUND_, anon_sym_in, anon_sym_across, anon_sym_using, @@ -40336,40 +40250,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_by, anon_sym_then, - [45839] = 12, + [45630] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(17), 1, - anon_sym_CARET, - ACTIONS(19), 1, - anon_sym_POUND_CARET, - ACTIONS(1822), 1, - anon_sym_POUND_, - ACTIONS(2008), 1, - aux_sym_sym_lit_token1, - STATE(253), 1, - sym_sym_lit, - STATE(584), 1, - sym_old_meta_lit, - STATE(587), 1, - sym_meta_lit, - STATE(761), 1, - sym__metadata_lit, - STATE(870), 1, - aux_sym_sym_lit_repeat1, - ACTIONS(2172), 2, + ACTIONS(1616), 1, + anon_sym_being, + ACTIONS(1614), 16, sym__ws, sym_comment, - STATE(786), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - [45879] = 3, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(1610), 1, - anon_sym_being, - ACTIONS(1608), 13, + anon_sym_POUND_, anon_sym_in, anon_sym_across, anon_sym_using, @@ -40383,40 +40272,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_by, anon_sym_then, - [45901] = 12, + [45655] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(17), 1, - anon_sym_CARET, - ACTIONS(19), 1, - anon_sym_POUND_CARET, - ACTIONS(1822), 1, - anon_sym_POUND_, - ACTIONS(2008), 1, - aux_sym_sym_lit_token1, - STATE(268), 1, - sym_sym_lit, - STATE(584), 1, - sym_old_meta_lit, - STATE(587), 1, - sym_meta_lit, - STATE(761), 1, - sym__metadata_lit, - STATE(870), 1, - aux_sym_sym_lit_repeat1, - ACTIONS(1892), 2, + ACTIONS(1576), 1, + anon_sym_being, + ACTIONS(1574), 16, sym__ws, sym_comment, - STATE(510), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - [45941] = 3, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(1614), 1, - anon_sym_being, - ACTIONS(1612), 13, + anon_sym_POUND_, anon_sym_in, anon_sym_across, anon_sym_using, @@ -40430,12 +40294,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_by, anon_sym_then, - [45963] = 3, + [45680] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1618), 1, + ACTIONS(1556), 1, anon_sym_being, - ACTIONS(1616), 13, + ACTIONS(1554), 16, + sym__ws, + sym_comment, + anon_sym_POUND_, anon_sym_in, anon_sym_across, anon_sym_using, @@ -40449,12 +40316,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_by, anon_sym_then, - [45985] = 3, + [45705] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1626), 1, + ACTIONS(1496), 1, anon_sym_being, - ACTIONS(1624), 13, + ACTIONS(1494), 16, + sym__ws, + sym_comment, + anon_sym_POUND_, anon_sym_in, anon_sym_across, anon_sym_using, @@ -40468,12 +40338,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_by, anon_sym_then, - [46007] = 3, + [45730] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1634), 1, + ACTIONS(1428), 1, anon_sym_being, - ACTIONS(1632), 13, + ACTIONS(1426), 16, + sym__ws, + sym_comment, + anon_sym_POUND_, anon_sym_in, anon_sym_across, anon_sym_using, @@ -40487,12 +40360,37 @@ static uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_by, anon_sym_then, - [46029] = 3, + [45755] = 3, + ACTIONS(3), 1, + sym_block_comment, + ACTIONS(2148), 2, + anon_sym_POUND, + anon_sym_POUND_QMARK, + ACTIONS(2146), 15, + sym__ws, + sym_comment, + anon_sym_POUND_, + aux_sym_sym_lit_token1, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_POUND0A, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_POUND_EQ, + anon_sym_AT, + anon_sym_SQUOTE, + anon_sym_COMMA_AT, + [45780] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1646), 1, + ACTIONS(1552), 1, anon_sym_being, - ACTIONS(1644), 13, + ACTIONS(1550), 16, + sym__ws, + sym_comment, + anon_sym_POUND_, anon_sym_in, anon_sym_across, anon_sym_using, @@ -40506,12 +40404,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_by, anon_sym_then, - [46051] = 3, + [45805] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1474), 1, + ACTIONS(1548), 1, anon_sym_being, - ACTIONS(1472), 13, + ACTIONS(1546), 16, + sym__ws, + sym_comment, + anon_sym_POUND_, anon_sym_in, anon_sym_across, anon_sym_using, @@ -40525,41 +40426,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_by, anon_sym_then, - [46073] = 13, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(700), 1, - anon_sym_LPAREN, - ACTIONS(2098), 1, - anon_sym_CARET, - ACTIONS(2100), 1, - anon_sym_POUND_CARET, - ACTIONS(2158), 1, - sym_num_lit, - ACTIONS(2174), 1, - anon_sym_LBRACE, - STATE(340), 1, - sym_list_lit, - STATE(761), 1, - sym__metadata_lit, - STATE(847), 1, - sym_array_dimension, - STATE(853), 1, - aux_sym_sym_lit_repeat1, - STATE(864), 1, - sym_old_meta_lit, - STATE(865), 1, - sym_meta_lit, - STATE(334), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - [46115] = 3, + [45830] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1478), 1, + ACTIONS(1544), 1, anon_sym_being, - ACTIONS(1476), 13, + ACTIONS(1542), 16, + sym__ws, + sym_comment, + anon_sym_POUND_, anon_sym_in, anon_sym_across, anon_sym_using, @@ -40573,41 +40448,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_by, anon_sym_then, - [46137] = 13, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(394), 1, - anon_sym_LPAREN, - ACTIONS(2098), 1, - anon_sym_CARET, - ACTIONS(2100), 1, - anon_sym_POUND_CARET, - ACTIONS(2158), 1, - sym_num_lit, - ACTIONS(2176), 1, - anon_sym_LBRACE, - STATE(512), 1, - sym_list_lit, - STATE(761), 1, - sym__metadata_lit, - STATE(850), 1, - sym_array_dimension, - STATE(860), 1, - aux_sym_sym_lit_repeat1, - STATE(864), 1, - sym_old_meta_lit, - STATE(865), 1, - sym_meta_lit, - STATE(506), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - [46179] = 3, + [45855] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1554), 1, + ACTIONS(1540), 1, anon_sym_being, - ACTIONS(1552), 13, + ACTIONS(1538), 16, + sym__ws, + sym_comment, + anon_sym_POUND_, anon_sym_in, anon_sym_across, anon_sym_using, @@ -40621,12 +40470,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_by, anon_sym_then, - [46201] = 3, + [45880] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1482), 1, + ACTIONS(1536), 1, anon_sym_being, - ACTIONS(1480), 13, + ACTIONS(1534), 16, + sym__ws, + sym_comment, + anon_sym_POUND_, anon_sym_in, anon_sym_across, anon_sym_using, @@ -40640,12 +40492,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_by, anon_sym_then, - [46223] = 3, + [45905] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1486), 1, + ACTIONS(1532), 1, anon_sym_being, - ACTIONS(1484), 13, + ACTIONS(1530), 16, + sym__ws, + sym_comment, + anon_sym_POUND_, anon_sym_in, anon_sym_across, anon_sym_using, @@ -40659,40 +40514,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_by, anon_sym_then, - [46245] = 12, + [45930] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(17), 1, - anon_sym_CARET, - ACTIONS(19), 1, - anon_sym_POUND_CARET, - ACTIONS(1822), 1, - anon_sym_POUND_, - ACTIONS(1854), 1, - aux_sym_sym_lit_token1, - STATE(584), 1, - sym_old_meta_lit, - STATE(587), 1, - sym_meta_lit, - STATE(692), 1, - sym_sym_lit, - STATE(761), 1, - sym__metadata_lit, - STATE(868), 1, - aux_sym_sym_lit_repeat1, - ACTIONS(2178), 2, + ACTIONS(1528), 1, + anon_sym_being, + ACTIONS(1526), 16, sym__ws, sym_comment, - STATE(779), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - [46285] = 3, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(1554), 1, - anon_sym_being, - ACTIONS(1552), 13, + anon_sym_POUND_, anon_sym_in, anon_sym_across, anon_sym_using, @@ -40706,12 +40536,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_by, anon_sym_then, - [46307] = 3, + [45955] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1554), 1, + ACTIONS(1424), 1, anon_sym_being, - ACTIONS(1552), 13, + ACTIONS(1422), 16, + sym__ws, + sym_comment, + anon_sym_POUND_, anon_sym_in, anon_sym_across, anon_sym_using, @@ -40725,221 +40558,155 @@ static uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_by, anon_sym_then, - [46329] = 12, + [45980] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(17), 1, - anon_sym_CARET, - ACTIONS(19), 1, - anon_sym_POUND_CARET, - ACTIONS(1822), 1, - anon_sym_POUND_, - ACTIONS(2002), 1, - aux_sym_sym_lit_token1, - STATE(584), 1, - sym_old_meta_lit, - STATE(587), 1, - sym_meta_lit, - STATE(761), 1, - sym__metadata_lit, - STATE(818), 1, - sym_sym_lit, - STATE(873), 1, - aux_sym_sym_lit_repeat1, - ACTIONS(1892), 2, + ACTIONS(2152), 2, + anon_sym_POUND, + anon_sym_POUND_QMARK, + ACTIONS(2150), 15, sym__ws, sym_comment, - STATE(510), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - [46369] = 12, + anon_sym_POUND_, + aux_sym_sym_lit_token1, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_POUND0A, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_POUND_EQ, + anon_sym_AT, + anon_sym_SQUOTE, + anon_sym_COMMA_AT, + [46005] = 13, ACTIONS(3), 1, sym_block_comment, - ACTIONS(17), 1, + ACTIONS(9), 1, + anon_sym_POUND_, + ACTIONS(528), 1, + anon_sym_LPAREN, + ACTIONS(2118), 1, anon_sym_CARET, - ACTIONS(19), 1, + ACTIONS(2120), 1, anon_sym_POUND_CARET, - ACTIONS(1822), 1, - anon_sym_POUND_, - ACTIONS(1986), 1, - aux_sym_sym_lit_token1, - STATE(517), 1, - sym_sym_lit, - STATE(584), 1, - sym_old_meta_lit, - STATE(587), 1, - sym_meta_lit, - STATE(761), 1, + STATE(630), 1, + sym_list_lit, + STATE(829), 1, sym__metadata_lit, - STATE(874), 1, + STATE(855), 1, aux_sym_sym_lit_repeat1, - ACTIONS(2180), 2, + STATE(861), 1, + sym_meta_lit, + STATE(862), 1, + sym_old_meta_lit, + ACTIONS(2154), 2, sym__ws, sym_comment, - STATE(763), 3, + STATE(635), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(771), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [46409] = 3, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(1422), 1, - anon_sym_being, - ACTIONS(1420), 13, - anon_sym_in, - anon_sym_across, - anon_sym_using, - aux_sym__for_part_token1, - anon_sym_below, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - [46431] = 13, + [46050] = 13, ACTIONS(3), 1, sym_block_comment, - ACTIONS(574), 1, + ACTIONS(9), 1, + anon_sym_POUND_, + ACTIONS(394), 1, anon_sym_LPAREN, - ACTIONS(2098), 1, + ACTIONS(2118), 1, anon_sym_CARET, - ACTIONS(2100), 1, + ACTIONS(2120), 1, anon_sym_POUND_CARET, - ACTIONS(2158), 1, - sym_num_lit, - ACTIONS(2182), 1, - anon_sym_LBRACE, - STATE(249), 1, + STATE(543), 1, sym_list_lit, - STATE(761), 1, + STATE(829), 1, sym__metadata_lit, - STATE(848), 1, - sym_array_dimension, - STATE(856), 1, + STATE(853), 1, aux_sym_sym_lit_repeat1, - STATE(864), 1, - sym_old_meta_lit, - STATE(865), 1, + STATE(861), 1, sym_meta_lit, - STATE(245), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - [46473] = 12, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(17), 1, - anon_sym_CARET, - ACTIONS(19), 1, - anon_sym_POUND_CARET, - ACTIONS(1822), 1, - anon_sym_POUND_, - ACTIONS(1826), 1, - aux_sym_sym_lit_token1, - STATE(420), 1, - sym_sym_lit, - STATE(584), 1, + STATE(862), 1, sym_old_meta_lit, - STATE(587), 1, - sym_meta_lit, - STATE(761), 1, - sym__metadata_lit, - STATE(872), 1, - aux_sym_sym_lit_repeat1, - ACTIONS(1892), 2, + ACTIONS(2156), 2, sym__ws, sym_comment, - STATE(510), 3, + STATE(472), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(753), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [46513] = 3, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(2186), 1, - anon_sym_being, - ACTIONS(2184), 13, - anon_sym_in, - anon_sym_across, - anon_sym_using, - aux_sym__for_part_token1, - anon_sym_below, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - [46535] = 13, + [46095] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(738), 1, - anon_sym_LPAREN, - ACTIONS(2098), 1, + ACTIONS(2160), 2, + anon_sym_POUND, + anon_sym_POUND_QMARK, + ACTIONS(2158), 15, + sym__ws, + sym_comment, + anon_sym_POUND_, + aux_sym_sym_lit_token1, anon_sym_CARET, - ACTIONS(2100), 1, anon_sym_POUND_CARET, - ACTIONS(2158), 1, - sym_num_lit, - ACTIONS(2188), 1, + anon_sym_LPAREN, anon_sym_LBRACE, - STATE(688), 1, - sym_list_lit, - STATE(761), 1, - sym__metadata_lit, - STATE(852), 1, - sym_array_dimension, - STATE(859), 1, - aux_sym_sym_lit_repeat1, - STATE(864), 1, - sym_old_meta_lit, - STATE(865), 1, - sym_meta_lit, - STATE(683), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - [46577] = 13, + anon_sym_POUND0A, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_POUND_EQ, + anon_sym_AT, + anon_sym_SQUOTE, + anon_sym_COMMA_AT, + [46120] = 13, ACTIONS(3), 1, sym_block_comment, - ACTIONS(428), 1, + ACTIONS(9), 1, + anon_sym_POUND_, + ACTIONS(752), 1, anon_sym_LPAREN, - ACTIONS(2098), 1, + ACTIONS(2118), 1, anon_sym_CARET, - ACTIONS(2100), 1, - anon_sym_POUND_CARET, - ACTIONS(2158), 1, - sym_num_lit, - ACTIONS(2190), 1, - anon_sym_LBRACE, - STATE(761), 1, - sym__metadata_lit, - STATE(770), 1, + ACTIONS(2120), 1, + anon_sym_POUND_CARET, + STATE(351), 1, sym_list_lit, - STATE(849), 1, - sym_array_dimension, - STATE(857), 1, + STATE(829), 1, + sym__metadata_lit, + STATE(858), 1, aux_sym_sym_lit_repeat1, - STATE(864), 1, - sym_old_meta_lit, - STATE(865), 1, + STATE(861), 1, sym_meta_lit, - STATE(759), 3, + STATE(862), 1, + sym_old_meta_lit, + ACTIONS(2162), 2, + sym__ws, + sym_comment, + STATE(335), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [46619] = 3, + STATE(808), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + [46165] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1414), 1, + ACTIONS(1520), 1, anon_sym_being, - ACTIONS(1412), 13, + ACTIONS(1518), 16, + sym__ws, + sym_comment, + anon_sym_POUND_, anon_sym_in, anon_sym_across, anon_sym_using, @@ -40953,31 +40720,47 @@ static uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_by, anon_sym_then, - [46641] = 3, + [46190] = 13, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1522), 1, - anon_sym_being, - ACTIONS(1520), 13, - anon_sym_in, - anon_sym_across, - anon_sym_using, - aux_sym__for_part_token1, - anon_sym_below, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - [46663] = 3, + ACTIONS(9), 1, + anon_sym_POUND_, + ACTIONS(584), 1, + anon_sym_LPAREN, + ACTIONS(2118), 1, + anon_sym_CARET, + ACTIONS(2120), 1, + anon_sym_POUND_CARET, + STATE(257), 1, + sym_list_lit, + STATE(829), 1, + sym__metadata_lit, + STATE(857), 1, + aux_sym_sym_lit_repeat1, + STATE(861), 1, + sym_meta_lit, + STATE(862), 1, + sym_old_meta_lit, + ACTIONS(2164), 2, + sym__ws, + sym_comment, + STATE(244), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(804), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + [46235] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1526), 1, + ACTIONS(1648), 1, anon_sym_being, - ACTIONS(1524), 13, + ACTIONS(1646), 16, + sym__ws, + sym_comment, + anon_sym_POUND_, anon_sym_in, anon_sym_across, anon_sym_using, @@ -40991,12 +40774,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_by, anon_sym_then, - [46685] = 3, + [46260] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1530), 1, + ACTIONS(1648), 1, anon_sym_being, - ACTIONS(1528), 13, + ACTIONS(1646), 16, + sym__ws, + sym_comment, + anon_sym_POUND_, anon_sym_in, anon_sym_across, anon_sym_using, @@ -41010,31 +40796,37 @@ static uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_by, anon_sym_then, - [46707] = 3, + [46285] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1534), 1, - anon_sym_being, - ACTIONS(1532), 13, - anon_sym_in, - anon_sym_across, - anon_sym_using, - aux_sym__for_part_token1, - anon_sym_below, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - [46729] = 3, + ACTIONS(2168), 2, + anon_sym_POUND, + anon_sym_POUND_QMARK, + ACTIONS(2166), 15, + sym__ws, + sym_comment, + anon_sym_POUND_, + aux_sym_sym_lit_token1, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_POUND0A, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_POUND_EQ, + anon_sym_AT, + anon_sym_SQUOTE, + anon_sym_COMMA_AT, + [46310] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1538), 1, + ACTIONS(1652), 1, anon_sym_being, - ACTIONS(1536), 13, + ACTIONS(1650), 16, + sym__ws, + sym_comment, + anon_sym_POUND_, anon_sym_in, anon_sym_across, anon_sym_using, @@ -41048,50 +40840,79 @@ static uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_by, anon_sym_then, - [46751] = 3, + [46335] = 13, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1438), 1, - anon_sym_being, - ACTIONS(1436), 13, - anon_sym_in, - anon_sym_across, - anon_sym_using, - aux_sym__for_part_token1, - anon_sym_below, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - [46773] = 3, + ACTIONS(9), 1, + anon_sym_POUND_, + ACTIONS(21), 1, + anon_sym_LPAREN, + ACTIONS(2118), 1, + anon_sym_CARET, + ACTIONS(2120), 1, + anon_sym_POUND_CARET, + STATE(465), 1, + sym_list_lit, + STATE(829), 1, + sym__metadata_lit, + STATE(854), 1, + aux_sym_sym_lit_repeat1, + STATE(861), 1, + sym_meta_lit, + STATE(862), 1, + sym_old_meta_lit, + ACTIONS(2170), 2, + sym__ws, + sym_comment, + STATE(376), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(748), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + [46380] = 13, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1542), 1, - anon_sym_being, - ACTIONS(1540), 13, - anon_sym_in, - anon_sym_across, - anon_sym_using, - aux_sym__for_part_token1, - anon_sym_below, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - [46795] = 3, + ACTIONS(9), 1, + anon_sym_POUND_, + ACTIONS(584), 1, + anon_sym_LPAREN, + ACTIONS(2118), 1, + anon_sym_CARET, + ACTIONS(2120), 1, + anon_sym_POUND_CARET, + STATE(261), 1, + sym_list_lit, + STATE(829), 1, + sym__metadata_lit, + STATE(857), 1, + aux_sym_sym_lit_repeat1, + STATE(861), 1, + sym_meta_lit, + STATE(862), 1, + sym_old_meta_lit, + ACTIONS(378), 2, + sym__ws, + sym_comment, + STATE(244), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(448), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + [46425] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1546), 1, + ACTIONS(1644), 1, anon_sym_being, - ACTIONS(1544), 13, + ACTIONS(1642), 16, + sym__ws, + sym_comment, + anon_sym_POUND_, anon_sym_in, anon_sym_across, anon_sym_using, @@ -41105,12 +40926,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_by, anon_sym_then, - [46817] = 3, + [46450] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1550), 1, + ACTIONS(1584), 1, anon_sym_being, - ACTIONS(1548), 13, + ACTIONS(1582), 16, + sym__ws, + sym_comment, + anon_sym_POUND_, anon_sym_in, anon_sym_across, anon_sym_using, @@ -41124,12 +40948,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_by, anon_sym_then, - [46839] = 3, + [46475] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1418), 1, + ACTIONS(1564), 1, anon_sym_being, - ACTIONS(1416), 13, + ACTIONS(1562), 16, + sym__ws, + sym_comment, + anon_sym_POUND_, anon_sym_in, anon_sym_across, anon_sym_using, @@ -41143,12 +40970,79 @@ static uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_by, anon_sym_then, - [46861] = 3, + [46500] = 13, + ACTIONS(3), 1, + sym_block_comment, + ACTIONS(9), 1, + anon_sym_POUND_, + ACTIONS(752), 1, + anon_sym_LPAREN, + ACTIONS(2118), 1, + anon_sym_CARET, + ACTIONS(2120), 1, + anon_sym_POUND_CARET, + STATE(345), 1, + sym_list_lit, + STATE(829), 1, + sym__metadata_lit, + STATE(858), 1, + aux_sym_sym_lit_repeat1, + STATE(861), 1, + sym_meta_lit, + STATE(862), 1, + sym_old_meta_lit, + ACTIONS(378), 2, + sym__ws, + sym_comment, + STATE(335), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(448), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + [46545] = 13, + ACTIONS(3), 1, + sym_block_comment, + ACTIONS(9), 1, + anon_sym_POUND_, + ACTIONS(428), 1, + anon_sym_LPAREN, + ACTIONS(2118), 1, + anon_sym_CARET, + ACTIONS(2120), 1, + anon_sym_POUND_CARET, + STATE(797), 1, + sym_list_lit, + STATE(829), 1, + sym__metadata_lit, + STATE(856), 1, + aux_sym_sym_lit_repeat1, + STATE(861), 1, + sym_meta_lit, + STATE(862), 1, + sym_old_meta_lit, + ACTIONS(378), 2, + sym__ws, + sym_comment, + STATE(448), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(744), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + [46590] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1558), 1, + ACTIONS(1436), 1, anon_sym_being, - ACTIONS(1556), 13, + ACTIONS(1434), 16, + sym__ws, + sym_comment, + anon_sym_POUND_, anon_sym_in, anon_sym_across, anon_sym_using, @@ -41162,12 +41056,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_by, anon_sym_then, - [46883] = 3, + [46615] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1490), 1, + ACTIONS(1524), 1, anon_sym_being, - ACTIONS(1488), 13, + ACTIONS(1522), 16, + sym__ws, + sym_comment, + anon_sym_POUND_, anon_sym_in, anon_sym_across, anon_sym_using, @@ -41181,60 +41078,69 @@ static uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_by, anon_sym_then, - [46905] = 13, + [46640] = 13, ACTIONS(3), 1, sym_block_comment, - ACTIONS(462), 1, + ACTIONS(584), 1, anon_sym_LPAREN, - ACTIONS(2098), 1, + ACTIONS(2118), 1, anon_sym_CARET, - ACTIONS(2100), 1, + ACTIONS(2120), 1, anon_sym_POUND_CARET, - ACTIONS(2158), 1, + ACTIONS(2172), 1, sym_num_lit, - ACTIONS(2192), 1, + ACTIONS(2174), 1, anon_sym_LBRACE, - STATE(628), 1, + STATE(249), 1, sym_list_lit, - STATE(761), 1, + STATE(829), 1, sym__metadata_lit, - STATE(851), 1, + STATE(850), 1, sym_array_dimension, - STATE(855), 1, + STATE(857), 1, aux_sym_sym_lit_repeat1, - STATE(864), 1, - sym_old_meta_lit, - STATE(865), 1, + STATE(861), 1, sym_meta_lit, - STATE(633), 3, + STATE(862), 1, + sym_old_meta_lit, + STATE(244), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [46947] = 3, + [46682] = 12, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1494), 1, - anon_sym_being, - ACTIONS(1492), 13, - anon_sym_in, - anon_sym_across, - anon_sym_using, - aux_sym__for_part_token1, - anon_sym_below, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - [46969] = 3, + ACTIONS(17), 1, + anon_sym_CARET, + ACTIONS(19), 1, + anon_sym_POUND_CARET, + ACTIONS(1832), 1, + anon_sym_POUND_, + ACTIONS(1848), 1, + aux_sym_sym_lit_token1, + STATE(581), 1, + sym_old_meta_lit, + STATE(582), 1, + sym_meta_lit, + STATE(697), 1, + sym_sym_lit, + STATE(829), 1, + sym__metadata_lit, + STATE(872), 1, + aux_sym_sym_lit_repeat1, + ACTIONS(1830), 2, + sym__ws, + sym_comment, + STATE(479), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + [46722] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1498), 1, + ACTIONS(2178), 1, anon_sym_being, - ACTIONS(1496), 13, + ACTIONS(2176), 13, anon_sym_in, anon_sym_across, anon_sym_using, @@ -41248,69 +41154,294 @@ static uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_by, anon_sym_then, - [46991] = 3, + [46744] = 12, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1562), 1, - anon_sym_being, - ACTIONS(1560), 13, - anon_sym_in, - anon_sym_across, - anon_sym_using, - aux_sym__for_part_token1, - anon_sym_below, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - [47013] = 3, + ACTIONS(17), 1, + anon_sym_CARET, + ACTIONS(19), 1, + anon_sym_POUND_CARET, + ACTIONS(1832), 1, + anon_sym_POUND_, + ACTIONS(1998), 1, + aux_sym_sym_lit_token1, + STATE(581), 1, + sym_old_meta_lit, + STATE(582), 1, + sym_meta_lit, + STATE(736), 1, + sym_sym_lit, + STATE(829), 1, + sym__metadata_lit, + STATE(868), 1, + aux_sym_sym_lit_repeat1, + ACTIONS(2180), 2, + sym__ws, + sym_comment, + STATE(824), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + [46784] = 12, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1574), 1, - anon_sym_being, - ACTIONS(1572), 13, - anon_sym_in, - anon_sym_across, - anon_sym_using, - aux_sym__for_part_token1, - anon_sym_below, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - [47035] = 3, + ACTIONS(17), 1, + anon_sym_CARET, + ACTIONS(19), 1, + anon_sym_POUND_CARET, + ACTIONS(1832), 1, + anon_sym_POUND_, + ACTIONS(1992), 1, + aux_sym_sym_lit_token1, + STATE(253), 1, + sym_sym_lit, + STATE(581), 1, + sym_old_meta_lit, + STATE(582), 1, + sym_meta_lit, + STATE(829), 1, + sym__metadata_lit, + STATE(870), 1, + aux_sym_sym_lit_repeat1, + ACTIONS(2182), 2, + sym__ws, + sym_comment, + STATE(817), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + [46824] = 12, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1622), 1, - anon_sym_being, - ACTIONS(1620), 13, - anon_sym_in, - anon_sym_across, - anon_sym_using, - aux_sym__for_part_token1, - anon_sym_below, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - [47057] = 3, + ACTIONS(17), 1, + anon_sym_CARET, + ACTIONS(19), 1, + anon_sym_POUND_CARET, + ACTIONS(1832), 1, + anon_sym_POUND_, + ACTIONS(1992), 1, + aux_sym_sym_lit_token1, + STATE(265), 1, + sym_sym_lit, + STATE(581), 1, + sym_old_meta_lit, + STATE(582), 1, + sym_meta_lit, + STATE(829), 1, + sym__metadata_lit, + STATE(870), 1, + aux_sym_sym_lit_repeat1, + ACTIONS(1830), 2, + sym__ws, + sym_comment, + STATE(479), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + [46864] = 12, + ACTIONS(3), 1, + sym_block_comment, + ACTIONS(17), 1, + anon_sym_CARET, + ACTIONS(19), 1, + anon_sym_POUND_CARET, + ACTIONS(1832), 1, + anon_sym_POUND_, + ACTIONS(1848), 1, + aux_sym_sym_lit_token1, + STATE(581), 1, + sym_old_meta_lit, + STATE(582), 1, + sym_meta_lit, + STATE(668), 1, + sym_sym_lit, + STATE(829), 1, + sym__metadata_lit, + STATE(872), 1, + aux_sym_sym_lit_repeat1, + ACTIONS(2184), 2, + sym__ws, + sym_comment, + STATE(813), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + [46904] = 12, + ACTIONS(3), 1, + sym_block_comment, + ACTIONS(17), 1, + anon_sym_CARET, + ACTIONS(19), 1, + anon_sym_POUND_CARET, + ACTIONS(1832), 1, + anon_sym_POUND_, + ACTIONS(1986), 1, + aux_sym_sym_lit_token1, + STATE(531), 1, + sym_sym_lit, + STATE(581), 1, + sym_old_meta_lit, + STATE(582), 1, + sym_meta_lit, + STATE(829), 1, + sym__metadata_lit, + STATE(865), 1, + aux_sym_sym_lit_repeat1, + ACTIONS(2186), 2, + sym__ws, + sym_comment, + STATE(823), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + [46944] = 12, + ACTIONS(3), 1, + sym_block_comment, + ACTIONS(17), 1, + anon_sym_CARET, + ACTIONS(19), 1, + anon_sym_POUND_CARET, + ACTIONS(1832), 1, + anon_sym_POUND_, + ACTIONS(2004), 1, + aux_sym_sym_lit_token1, + STATE(581), 1, + sym_old_meta_lit, + STATE(582), 1, + sym_meta_lit, + STATE(612), 1, + sym_sym_lit, + STATE(829), 1, + sym__metadata_lit, + STATE(866), 1, + aux_sym_sym_lit_repeat1, + ACTIONS(1830), 2, + sym__ws, + sym_comment, + STATE(479), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + [46984] = 13, + ACTIONS(3), 1, + sym_block_comment, + ACTIONS(394), 1, + anon_sym_LPAREN, + ACTIONS(2118), 1, + anon_sym_CARET, + ACTIONS(2120), 1, + anon_sym_POUND_CARET, + ACTIONS(2172), 1, + sym_num_lit, + ACTIONS(2188), 1, + anon_sym_LBRACE, + STATE(524), 1, + sym_list_lit, + STATE(829), 1, + sym__metadata_lit, + STATE(845), 1, + sym_array_dimension, + STATE(853), 1, + aux_sym_sym_lit_repeat1, + STATE(861), 1, + sym_meta_lit, + STATE(862), 1, + sym_old_meta_lit, + STATE(472), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + [47026] = 13, + ACTIONS(3), 1, + sym_block_comment, + ACTIONS(528), 1, + anon_sym_LPAREN, + ACTIONS(2118), 1, + anon_sym_CARET, + ACTIONS(2120), 1, + anon_sym_POUND_CARET, + ACTIONS(2172), 1, + sym_num_lit, + ACTIONS(2190), 1, + anon_sym_LBRACE, + STATE(640), 1, + sym_list_lit, + STATE(829), 1, + sym__metadata_lit, + STATE(847), 1, + sym_array_dimension, + STATE(855), 1, + aux_sym_sym_lit_repeat1, + STATE(861), 1, + sym_meta_lit, + STATE(862), 1, + sym_old_meta_lit, + STATE(635), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + [47068] = 12, + ACTIONS(3), 1, + sym_block_comment, + ACTIONS(17), 1, + anon_sym_CARET, + ACTIONS(19), 1, + anon_sym_POUND_CARET, + ACTIONS(1832), 1, + anon_sym_POUND_, + ACTIONS(1986), 1, + aux_sym_sym_lit_token1, + STATE(511), 1, + sym_sym_lit, + STATE(581), 1, + sym_old_meta_lit, + STATE(582), 1, + sym_meta_lit, + STATE(829), 1, + sym__metadata_lit, + STATE(865), 1, + aux_sym_sym_lit_repeat1, + ACTIONS(1830), 2, + sym__ws, + sym_comment, + STATE(479), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + [47108] = 12, + ACTIONS(3), 1, + sym_block_comment, + ACTIONS(17), 1, + anon_sym_CARET, + ACTIONS(19), 1, + anon_sym_POUND_CARET, + ACTIONS(1832), 1, + anon_sym_POUND_, + ACTIONS(1998), 1, + aux_sym_sym_lit_token1, + STATE(581), 1, + sym_old_meta_lit, + STATE(582), 1, + sym_meta_lit, + STATE(788), 1, + sym_sym_lit, + STATE(829), 1, + sym__metadata_lit, + STATE(868), 1, + aux_sym_sym_lit_repeat1, + ACTIONS(1830), 2, + sym__ws, + sym_comment, + STATE(479), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + [47148] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1630), 1, + ACTIONS(1682), 1, anon_sym_being, - ACTIONS(1628), 13, + ACTIONS(1680), 13, anon_sym_in, anon_sym_across, anon_sym_using, @@ -41324,126 +41455,173 @@ static uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_by, anon_sym_then, - [47079] = 3, + [47170] = 12, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1638), 1, - anon_sym_being, - ACTIONS(1636), 13, - anon_sym_in, - anon_sym_across, - anon_sym_using, - aux_sym__for_part_token1, - anon_sym_below, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - [47101] = 3, + ACTIONS(17), 1, + anon_sym_CARET, + ACTIONS(19), 1, + anon_sym_POUND_CARET, + ACTIONS(1832), 1, + anon_sym_POUND_, + ACTIONS(1980), 1, + aux_sym_sym_lit_token1, + STATE(355), 1, + sym_sym_lit, + STATE(581), 1, + sym_old_meta_lit, + STATE(582), 1, + sym_meta_lit, + STATE(829), 1, + sym__metadata_lit, + STATE(871), 1, + aux_sym_sym_lit_repeat1, + ACTIONS(1830), 2, + sym__ws, + sym_comment, + STATE(479), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + [47210] = 12, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1672), 1, - anon_sym_being, - ACTIONS(1670), 13, - anon_sym_in, - anon_sym_across, - anon_sym_using, - aux_sym__for_part_token1, - anon_sym_below, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - [47123] = 3, + ACTIONS(17), 1, + anon_sym_CARET, + ACTIONS(19), 1, + anon_sym_POUND_CARET, + ACTIONS(1832), 1, + anon_sym_POUND_, + ACTIONS(1836), 1, + aux_sym_sym_lit_token1, + STATE(421), 1, + sym_sym_lit, + STATE(581), 1, + sym_old_meta_lit, + STATE(582), 1, + sym_meta_lit, + STATE(829), 1, + sym__metadata_lit, + STATE(867), 1, + aux_sym_sym_lit_repeat1, + ACTIONS(1830), 2, + sym__ws, + sym_comment, + STATE(479), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + [47250] = 13, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1502), 1, - anon_sym_being, - ACTIONS(1500), 13, - anon_sym_in, - anon_sym_across, - anon_sym_using, - aux_sym__for_part_token1, - anon_sym_below, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - [47145] = 3, + ACTIONS(752), 1, + anon_sym_LPAREN, + ACTIONS(2118), 1, + anon_sym_CARET, + ACTIONS(2120), 1, + anon_sym_POUND_CARET, + ACTIONS(2172), 1, + sym_num_lit, + ACTIONS(2192), 1, + anon_sym_LBRACE, + STATE(340), 1, + sym_list_lit, + STATE(829), 1, + sym__metadata_lit, + STATE(851), 1, + sym_array_dimension, + STATE(858), 1, + aux_sym_sym_lit_repeat1, + STATE(861), 1, + sym_meta_lit, + STATE(862), 1, + sym_old_meta_lit, + STATE(335), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + [47292] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1506), 1, - anon_sym_being, - ACTIONS(1504), 13, - anon_sym_in, - anon_sym_across, - anon_sym_using, - aux_sym__for_part_token1, - anon_sym_below, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - [47167] = 3, + ACTIONS(2196), 2, + anon_sym_POUND, + anon_sym_POUND_QMARK, + ACTIONS(2194), 12, + aux_sym_sym_lit_token1, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_POUND0A, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_POUND_EQ, + anon_sym_AT, + anon_sym_SQUOTE, + anon_sym_COMMA_AT, + [47314] = 13, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1642), 1, - anon_sym_being, - ACTIONS(1640), 13, - anon_sym_in, - anon_sym_across, - anon_sym_using, - aux_sym__for_part_token1, - anon_sym_below, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - [47189] = 3, + ACTIONS(428), 1, + anon_sym_LPAREN, + ACTIONS(2118), 1, + anon_sym_CARET, + ACTIONS(2120), 1, + anon_sym_POUND_CARET, + ACTIONS(2172), 1, + sym_num_lit, + ACTIONS(2198), 1, + anon_sym_LBRACE, + STATE(740), 1, + sym_list_lit, + STATE(829), 1, + sym__metadata_lit, + STATE(848), 1, + sym_array_dimension, + STATE(856), 1, + aux_sym_sym_lit_repeat1, + STATE(861), 1, + sym_meta_lit, + STATE(862), 1, + sym_old_meta_lit, + STATE(744), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + [47356] = 12, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1426), 1, - anon_sym_being, - ACTIONS(1424), 13, - anon_sym_in, - anon_sym_across, - anon_sym_using, - aux_sym__for_part_token1, - anon_sym_below, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - [47211] = 3, + ACTIONS(17), 1, + anon_sym_CARET, + ACTIONS(19), 1, + anon_sym_POUND_CARET, + ACTIONS(1832), 1, + anon_sym_POUND_, + ACTIONS(2004), 1, + aux_sym_sym_lit_token1, + STATE(581), 1, + sym_old_meta_lit, + STATE(582), 1, + sym_meta_lit, + STATE(636), 1, + sym_sym_lit, + STATE(829), 1, + sym__metadata_lit, + STATE(866), 1, + aux_sym_sym_lit_repeat1, + ACTIONS(2200), 2, + sym__ws, + sym_comment, + STATE(820), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + [47396] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1434), 1, + ACTIONS(2204), 1, anon_sym_being, - ACTIONS(1432), 13, + ACTIONS(2202), 13, anon_sym_in, anon_sym_across, anon_sym_using, @@ -41457,178 +41635,265 @@ static uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_by, anon_sym_then, - [47233] = 3, + [47418] = 12, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1510), 1, - anon_sym_being, - ACTIONS(1508), 13, - anon_sym_in, - anon_sym_across, - anon_sym_using, - aux_sym__for_part_token1, - anon_sym_below, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - [47255] = 12, + ACTIONS(17), 1, + anon_sym_CARET, + ACTIONS(19), 1, + anon_sym_POUND_CARET, + ACTIONS(1832), 1, + anon_sym_POUND_, + ACTIONS(1836), 1, + aux_sym_sym_lit_token1, + STATE(386), 1, + sym_sym_lit, + STATE(581), 1, + sym_old_meta_lit, + STATE(582), 1, + sym_meta_lit, + STATE(829), 1, + sym__metadata_lit, + STATE(867), 1, + aux_sym_sym_lit_repeat1, + ACTIONS(2206), 2, + sym__ws, + sym_comment, + STATE(827), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + [47458] = 13, + ACTIONS(3), 1, + sym_block_comment, + ACTIONS(700), 1, + anon_sym_LPAREN, + ACTIONS(2118), 1, + anon_sym_CARET, + ACTIONS(2120), 1, + anon_sym_POUND_CARET, + ACTIONS(2172), 1, + sym_num_lit, + ACTIONS(2208), 1, + anon_sym_LBRACE, + STATE(664), 1, + sym_list_lit, + STATE(829), 1, + sym__metadata_lit, + STATE(846), 1, + sym_array_dimension, + STATE(860), 1, + aux_sym_sym_lit_repeat1, + STATE(861), 1, + sym_meta_lit, + STATE(862), 1, + sym_old_meta_lit, + STATE(647), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + [47500] = 13, + ACTIONS(3), 1, + sym_block_comment, + ACTIONS(21), 1, + anon_sym_LPAREN, + ACTIONS(2118), 1, + anon_sym_CARET, + ACTIONS(2120), 1, + anon_sym_POUND_CARET, + ACTIONS(2172), 1, + sym_num_lit, + ACTIONS(2210), 1, + anon_sym_LBRACE, + STATE(432), 1, + sym_list_lit, + STATE(829), 1, + sym__metadata_lit, + STATE(849), 1, + sym_array_dimension, + STATE(854), 1, + aux_sym_sym_lit_repeat1, + STATE(861), 1, + sym_meta_lit, + STATE(862), 1, + sym_old_meta_lit, + STATE(376), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + [47542] = 12, ACTIONS(3), 1, sym_block_comment, ACTIONS(17), 1, anon_sym_CARET, ACTIONS(19), 1, anon_sym_POUND_CARET, - ACTIONS(1822), 1, + ACTIONS(1832), 1, anon_sym_POUND_, - ACTIONS(2002), 1, + ACTIONS(1980), 1, aux_sym_sym_lit_token1, - STATE(575), 1, + STATE(344), 1, sym_sym_lit, - STATE(584), 1, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(761), 1, + STATE(829), 1, sym__metadata_lit, - STATE(873), 1, + STATE(871), 1, aux_sym_sym_lit_repeat1, - ACTIONS(2194), 2, + ACTIONS(2212), 2, sym__ws, sym_comment, - STATE(866), 2, + STATE(826), 3, sym__gap, sym_dis_expr, - [47294] = 11, + aux_sym_dis_expr_repeat1, + [47582] = 3, + ACTIONS(3), 1, + sym_block_comment, + ACTIONS(1678), 1, + anon_sym_being, + ACTIONS(1676), 13, + anon_sym_in, + anon_sym_across, + anon_sym_using, + aux_sym__for_part_token1, + anon_sym_below, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + [47604] = 11, ACTIONS(3), 1, sym_block_comment, ACTIONS(17), 1, anon_sym_CARET, ACTIONS(19), 1, anon_sym_POUND_CARET, - ACTIONS(394), 1, + ACTIONS(700), 1, anon_sym_LPAREN, - ACTIONS(1936), 1, + ACTIONS(1912), 1, aux_sym_sym_lit_token1, - ACTIONS(2196), 1, + ACTIONS(2214), 1, anon_sym_POUND_QMARK, - STATE(584), 1, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(716), 1, + STATE(725), 1, aux_sym_sym_lit_repeat1, - STATE(761), 1, + STATE(829), 1, sym__metadata_lit, - STATE(536), 3, + STATE(677), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [47330] = 11, + [47640] = 11, ACTIONS(3), 1, sym_block_comment, ACTIONS(17), 1, anon_sym_CARET, ACTIONS(19), 1, anon_sym_POUND_CARET, - ACTIONS(738), 1, + ACTIONS(528), 1, anon_sym_LPAREN, - ACTIONS(1898), 1, + ACTIONS(1930), 1, aux_sym_sym_lit_token1, - ACTIONS(2198), 1, + ACTIONS(2216), 1, anon_sym_POUND_QMARK, - STATE(584), 1, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(716), 1, + STATE(725), 1, aux_sym_sym_lit_repeat1, - STATE(761), 1, + STATE(829), 1, sym__metadata_lit, - STATE(643), 3, + STATE(625), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [47366] = 11, + [47676] = 11, ACTIONS(3), 1, sym_block_comment, ACTIONS(17), 1, anon_sym_CARET, ACTIONS(19), 1, anon_sym_POUND_CARET, - ACTIONS(574), 1, + ACTIONS(428), 1, anon_sym_LPAREN, - ACTIONS(1874), 1, + ACTIONS(1864), 1, aux_sym_sym_lit_token1, - ACTIONS(2200), 1, + ACTIONS(2218), 1, anon_sym_POUND_QMARK, - STATE(584), 1, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(716), 1, + STATE(725), 1, aux_sym_sym_lit_repeat1, - STATE(761), 1, + STATE(829), 1, sym__metadata_lit, - STATE(240), 3, + STATE(763), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [47402] = 11, + [47712] = 11, ACTIONS(3), 1, sym_block_comment, ACTIONS(17), 1, anon_sym_CARET, ACTIONS(19), 1, anon_sym_POUND_CARET, - ACTIONS(462), 1, + ACTIONS(394), 1, anon_sym_LPAREN, - ACTIONS(1952), 1, + ACTIONS(1946), 1, aux_sym_sym_lit_token1, - ACTIONS(2202), 1, + ACTIONS(2220), 1, anon_sym_POUND_QMARK, - STATE(584), 1, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(716), 1, + STATE(725), 1, aux_sym_sym_lit_repeat1, - STATE(761), 1, + STATE(829), 1, sym__metadata_lit, - STATE(599), 3, + STATE(526), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [47438] = 11, + [47748] = 11, ACTIONS(3), 1, sym_block_comment, ACTIONS(17), 1, anon_sym_CARET, ACTIONS(19), 1, anon_sym_POUND_CARET, - ACTIONS(428), 1, + ACTIONS(752), 1, anon_sym_LPAREN, - ACTIONS(1836), 1, + ACTIONS(1880), 1, aux_sym_sym_lit_token1, - ACTIONS(2204), 1, + ACTIONS(2222), 1, anon_sym_POUND_QMARK, - STATE(584), 1, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(716), 1, + STATE(725), 1, aux_sym_sym_lit_repeat1, - STATE(761), 1, + STATE(829), 1, sym__metadata_lit, - STATE(836), 3, + STATE(362), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [47474] = 11, + [47784] = 11, ACTIONS(3), 1, sym_block_comment, ACTIONS(17), 1, @@ -41637,402 +41902,434 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(21), 1, anon_sym_LPAREN, - ACTIONS(1914), 1, + ACTIONS(1962), 1, aux_sym_sym_lit_token1, - ACTIONS(2206), 1, + ACTIONS(2224), 1, anon_sym_POUND_QMARK, - STATE(584), 1, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(716), 1, + STATE(725), 1, aux_sym_sym_lit_repeat1, - STATE(761), 1, + STATE(829), 1, sym__metadata_lit, - STATE(456), 3, + STATE(454), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [47510] = 11, + [47820] = 11, ACTIONS(3), 1, sym_block_comment, ACTIONS(17), 1, anon_sym_CARET, ACTIONS(19), 1, anon_sym_POUND_CARET, - ACTIONS(700), 1, + ACTIONS(584), 1, anon_sym_LPAREN, - ACTIONS(1858), 1, + ACTIONS(1896), 1, aux_sym_sym_lit_token1, - ACTIONS(2208), 1, + ACTIONS(2226), 1, anon_sym_POUND_QMARK, - STATE(584), 1, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(716), 1, + STATE(725), 1, aux_sym_sym_lit_repeat1, - STATE(761), 1, + STATE(829), 1, sym__metadata_lit, - STATE(358), 3, + STATE(299), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [47546] = 10, + [47856] = 10, ACTIONS(3), 1, sym_block_comment, - ACTIONS(21), 1, + ACTIONS(394), 1, anon_sym_LPAREN, - ACTIONS(2098), 1, + ACTIONS(2118), 1, anon_sym_CARET, - ACTIONS(2100), 1, + ACTIONS(2120), 1, anon_sym_POUND_CARET, - STATE(429), 1, + STATE(515), 1, sym_list_lit, - STATE(761), 1, + STATE(829), 1, sym__metadata_lit, - STATE(854), 1, + STATE(853), 1, aux_sym_sym_lit_repeat1, - STATE(864), 1, - sym_old_meta_lit, - STATE(865), 1, + STATE(861), 1, sym_meta_lit, - STATE(379), 3, + STATE(862), 1, + sym_old_meta_lit, + STATE(472), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [47579] = 10, + [47889] = 10, ACTIONS(3), 1, sym_block_comment, ACTIONS(700), 1, anon_sym_LPAREN, - ACTIONS(2098), 1, + ACTIONS(2118), 1, anon_sym_CARET, - ACTIONS(2100), 1, + ACTIONS(2120), 1, anon_sym_POUND_CARET, - STATE(366), 1, + STATE(701), 1, sym_list_lit, - STATE(761), 1, + STATE(829), 1, sym__metadata_lit, - STATE(853), 1, + STATE(860), 1, aux_sym_sym_lit_repeat1, - STATE(864), 1, - sym_old_meta_lit, - STATE(865), 1, + STATE(861), 1, sym_meta_lit, - STATE(334), 3, + STATE(862), 1, + sym_old_meta_lit, + STATE(647), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [47612] = 10, + [47922] = 10, ACTIONS(3), 1, sym_block_comment, - ACTIONS(574), 1, + ACTIONS(528), 1, anon_sym_LPAREN, - ACTIONS(2098), 1, + ACTIONS(2118), 1, anon_sym_CARET, - ACTIONS(2100), 1, + ACTIONS(2120), 1, anon_sym_POUND_CARET, - STATE(272), 1, + STATE(617), 1, sym_list_lit, - STATE(761), 1, + STATE(829), 1, sym__metadata_lit, - STATE(856), 1, + STATE(855), 1, aux_sym_sym_lit_repeat1, - STATE(864), 1, - sym_old_meta_lit, - STATE(865), 1, + STATE(861), 1, sym_meta_lit, - STATE(245), 3, + STATE(862), 1, + sym_old_meta_lit, + STATE(635), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [47645] = 10, + [47955] = 10, ACTIONS(3), 1, sym_block_comment, ACTIONS(428), 1, anon_sym_LPAREN, - ACTIONS(2098), 1, + ACTIONS(2118), 1, anon_sym_CARET, - ACTIONS(2100), 1, + ACTIONS(2120), 1, anon_sym_POUND_CARET, - STATE(761), 1, - sym__metadata_lit, - STATE(826), 1, + STATE(784), 1, sym_list_lit, - STATE(857), 1, + STATE(829), 1, + sym__metadata_lit, + STATE(856), 1, aux_sym_sym_lit_repeat1, - STATE(864), 1, - sym_old_meta_lit, - STATE(865), 1, + STATE(861), 1, sym_meta_lit, - STATE(759), 3, + STATE(862), 1, + sym_old_meta_lit, + STATE(744), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [47678] = 10, + [47988] = 10, ACTIONS(3), 1, sym_block_comment, - ACTIONS(394), 1, + ACTIONS(21), 1, anon_sym_LPAREN, - ACTIONS(2098), 1, + ACTIONS(2118), 1, anon_sym_CARET, - ACTIONS(2100), 1, + ACTIONS(2120), 1, anon_sym_POUND_CARET, - STATE(534), 1, + STATE(429), 1, sym_list_lit, - STATE(761), 1, + STATE(829), 1, sym__metadata_lit, - STATE(860), 1, + STATE(854), 1, aux_sym_sym_lit_repeat1, - STATE(864), 1, - sym_old_meta_lit, - STATE(865), 1, + STATE(861), 1, sym_meta_lit, - STATE(506), 3, + STATE(862), 1, + sym_old_meta_lit, + STATE(376), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [47711] = 10, + [48021] = 10, ACTIONS(3), 1, sym_block_comment, - ACTIONS(462), 1, + ACTIONS(584), 1, anon_sym_LPAREN, - ACTIONS(2098), 1, + ACTIONS(2118), 1, anon_sym_CARET, - ACTIONS(2100), 1, + ACTIONS(2120), 1, anon_sym_POUND_CARET, - STATE(638), 1, + STATE(269), 1, sym_list_lit, - STATE(761), 1, + STATE(829), 1, sym__metadata_lit, - STATE(855), 1, + STATE(857), 1, aux_sym_sym_lit_repeat1, - STATE(864), 1, - sym_old_meta_lit, - STATE(865), 1, + STATE(861), 1, sym_meta_lit, - STATE(633), 3, + STATE(862), 1, + sym_old_meta_lit, + STATE(244), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [47744] = 10, + [48054] = 10, ACTIONS(3), 1, sym_block_comment, - ACTIONS(738), 1, + ACTIONS(752), 1, anon_sym_LPAREN, - ACTIONS(2098), 1, + ACTIONS(2118), 1, anon_sym_CARET, - ACTIONS(2100), 1, + ACTIONS(2120), 1, anon_sym_POUND_CARET, - STATE(650), 1, + STATE(360), 1, sym_list_lit, - STATE(761), 1, + STATE(829), 1, sym__metadata_lit, - STATE(859), 1, + STATE(858), 1, aux_sym_sym_lit_repeat1, - STATE(864), 1, - sym_old_meta_lit, - STATE(865), 1, + STATE(861), 1, sym_meta_lit, - STATE(683), 3, + STATE(862), 1, + sym_old_meta_lit, + STATE(335), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [47777] = 9, + [48087] = 11, ACTIONS(3), 1, sym_block_comment, - ACTIONS(700), 1, + ACTIONS(17), 1, + anon_sym_CARET, + ACTIONS(19), 1, + anon_sym_POUND_CARET, + ACTIONS(1838), 1, + anon_sym_LBRACE, + ACTIONS(1962), 1, + aux_sym_sym_lit_token1, + ACTIONS(2224), 1, + anon_sym_POUND_QMARK, + STATE(581), 1, + sym_old_meta_lit, + STATE(582), 1, + sym_meta_lit, + STATE(725), 1, + aux_sym_sym_lit_repeat1, + STATE(769), 1, + sym__bare_map_lit, + STATE(829), 1, + sym__metadata_lit, + [48121] = 9, + ACTIONS(3), 1, + sym_block_comment, + ACTIONS(394), 1, anon_sym_LPAREN, - ACTIONS(2098), 1, + ACTIONS(2118), 1, anon_sym_CARET, - ACTIONS(2100), 1, + ACTIONS(2120), 1, anon_sym_POUND_CARET, - STATE(761), 1, + STATE(829), 1, sym__metadata_lit, - STATE(864), 1, - sym_old_meta_lit, - STATE(865), 1, + STATE(861), 1, sym_meta_lit, - STATE(867), 1, + STATE(862), 1, + sym_old_meta_lit, + STATE(869), 1, aux_sym_sym_lit_repeat1, - STATE(358), 3, + STATE(526), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [47807] = 9, + [48151] = 9, ACTIONS(3), 1, sym_block_comment, ACTIONS(21), 1, anon_sym_LPAREN, - ACTIONS(2098), 1, + ACTIONS(2118), 1, anon_sym_CARET, - ACTIONS(2100), 1, + ACTIONS(2120), 1, anon_sym_POUND_CARET, - STATE(761), 1, + STATE(829), 1, sym__metadata_lit, - STATE(864), 1, - sym_old_meta_lit, - STATE(865), 1, + STATE(861), 1, sym_meta_lit, - STATE(867), 1, + STATE(862), 1, + sym_old_meta_lit, + STATE(869), 1, aux_sym_sym_lit_repeat1, - STATE(456), 3, + STATE(454), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [47837] = 9, + [48181] = 9, ACTIONS(3), 1, sym_block_comment, - ACTIONS(462), 1, + ACTIONS(528), 1, anon_sym_LPAREN, - ACTIONS(2098), 1, + ACTIONS(2118), 1, anon_sym_CARET, - ACTIONS(2100), 1, + ACTIONS(2120), 1, anon_sym_POUND_CARET, - STATE(761), 1, + STATE(829), 1, sym__metadata_lit, - STATE(864), 1, - sym_old_meta_lit, - STATE(865), 1, + STATE(861), 1, sym_meta_lit, - STATE(867), 1, + STATE(862), 1, + sym_old_meta_lit, + STATE(869), 1, aux_sym_sym_lit_repeat1, - STATE(599), 3, + STATE(625), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [47867] = 9, + [48211] = 9, ACTIONS(3), 1, sym_block_comment, - ACTIONS(574), 1, + ACTIONS(428), 1, anon_sym_LPAREN, - ACTIONS(2098), 1, + ACTIONS(2118), 1, anon_sym_CARET, - ACTIONS(2100), 1, + ACTIONS(2120), 1, anon_sym_POUND_CARET, - STATE(761), 1, + STATE(829), 1, sym__metadata_lit, - STATE(864), 1, - sym_old_meta_lit, - STATE(865), 1, + STATE(861), 1, sym_meta_lit, - STATE(867), 1, + STATE(862), 1, + sym_old_meta_lit, + STATE(869), 1, aux_sym_sym_lit_repeat1, - STATE(240), 3, + STATE(763), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [47897] = 9, + [48241] = 9, ACTIONS(3), 1, sym_block_comment, - ACTIONS(428), 1, + ACTIONS(584), 1, anon_sym_LPAREN, - ACTIONS(2098), 1, + ACTIONS(2118), 1, anon_sym_CARET, - ACTIONS(2100), 1, + ACTIONS(2120), 1, anon_sym_POUND_CARET, - STATE(761), 1, + STATE(829), 1, sym__metadata_lit, - STATE(864), 1, + STATE(861), 1, + sym_meta_lit, + STATE(862), 1, sym_old_meta_lit, - STATE(865), 1, + STATE(869), 1, + aux_sym_sym_lit_repeat1, + STATE(299), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + [48271] = 9, + ACTIONS(3), 1, + sym_block_comment, + ACTIONS(752), 1, + anon_sym_LPAREN, + ACTIONS(2118), 1, + anon_sym_CARET, + ACTIONS(2120), 1, + anon_sym_POUND_CARET, + STATE(829), 1, + sym__metadata_lit, + STATE(861), 1, sym_meta_lit, - STATE(867), 1, + STATE(862), 1, + sym_old_meta_lit, + STATE(869), 1, aux_sym_sym_lit_repeat1, - STATE(836), 3, + STATE(362), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [47927] = 11, + [48301] = 11, ACTIONS(3), 1, sym_block_comment, ACTIONS(17), 1, anon_sym_CARET, ACTIONS(19), 1, anon_sym_POUND_CARET, - ACTIONS(1828), 1, + ACTIONS(1838), 1, anon_sym_LBRACE, - ACTIONS(1898), 1, + ACTIONS(1912), 1, aux_sym_sym_lit_token1, - ACTIONS(2198), 1, + ACTIONS(2214), 1, anon_sym_POUND_QMARK, - STATE(584), 1, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(716), 1, + STATE(725), 1, aux_sym_sym_lit_repeat1, - STATE(738), 1, + STATE(769), 1, sym__bare_map_lit, - STATE(761), 1, + STATE(829), 1, sym__metadata_lit, - [47961] = 9, + [48335] = 9, ACTIONS(3), 1, sym_block_comment, - ACTIONS(738), 1, + ACTIONS(700), 1, anon_sym_LPAREN, - ACTIONS(2098), 1, + ACTIONS(2118), 1, anon_sym_CARET, - ACTIONS(2100), 1, + ACTIONS(2120), 1, anon_sym_POUND_CARET, - STATE(761), 1, + STATE(829), 1, sym__metadata_lit, - STATE(864), 1, - sym_old_meta_lit, - STATE(865), 1, + STATE(861), 1, sym_meta_lit, - STATE(867), 1, + STATE(862), 1, + sym_old_meta_lit, + STATE(869), 1, aux_sym_sym_lit_repeat1, - STATE(643), 3, + STATE(677), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [47991] = 9, + [48365] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(394), 1, - anon_sym_LPAREN, - ACTIONS(2098), 1, + ACTIONS(9), 1, + anon_sym_POUND_, + ACTIONS(2228), 2, + sym__ws, + sym_comment, + ACTIONS(2070), 3, anon_sym_CARET, - ACTIONS(2100), 1, anon_sym_POUND_CARET, - STATE(761), 1, - sym__metadata_lit, - STATE(864), 1, - sym_old_meta_lit, - STATE(865), 1, - sym_meta_lit, - STATE(867), 1, - aux_sym_sym_lit_repeat1, - STATE(536), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - [48021] = 11, + anon_sym_LPAREN, + STATE(863), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + [48386] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(17), 1, + ACTIONS(9), 1, + anon_sym_POUND_, + ACTIONS(2230), 2, + sym__ws, + sym_comment, + ACTIONS(2064), 3, anon_sym_CARET, - ACTIONS(19), 1, anon_sym_POUND_CARET, - ACTIONS(1828), 1, - anon_sym_LBRACE, - ACTIONS(1914), 1, - aux_sym_sym_lit_token1, - ACTIONS(2206), 1, - anon_sym_POUND_QMARK, - STATE(584), 1, - sym_old_meta_lit, - STATE(587), 1, - sym_meta_lit, - STATE(716), 1, - aux_sym_sym_lit_repeat1, - STATE(738), 1, - sym__bare_map_lit, - STATE(761), 1, - sym__metadata_lit, - [48055] = 5, + anon_sym_LPAREN, + STATE(864), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + [48407] = 5, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, @@ -42040,7 +42337,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(378), 2, sym__ws, sym_comment, - ACTIONS(2032), 3, + ACTIONS(2058), 3, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -42048,7 +42345,7 @@ static uint16_t ts_small_parse_table[] = { sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [48076] = 5, + [48428] = 5, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, @@ -42056,7 +42353,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(378), 2, sym__ws, sym_comment, - ACTIONS(2036), 3, + ACTIONS(2054), 3, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -42064,1017 +42361,976 @@ static uint16_t ts_small_parse_table[] = { sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [48097] = 5, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(9), 1, - anon_sym_POUND_, - ACTIONS(2210), 2, - sym__ws, - sym_comment, - ACTIONS(2042), 3, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LPAREN, - STATE(862), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - [48118] = 5, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(9), 1, - anon_sym_POUND_, - ACTIONS(2212), 2, - sym__ws, - sym_comment, - ACTIONS(2048), 3, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LPAREN, - STATE(863), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - [48139] = 9, + [48449] = 8, ACTIONS(3), 1, sym_block_comment, ACTIONS(17), 1, anon_sym_CARET, ACTIONS(19), 1, anon_sym_POUND_CARET, - ACTIONS(2002), 1, + ACTIONS(1946), 1, aux_sym_sym_lit_token1, - STATE(576), 1, - sym_sym_lit, - STATE(584), 1, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(761), 1, - sym__metadata_lit, - STATE(873), 1, + STATE(725), 1, aux_sym_sym_lit_repeat1, - [48167] = 8, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(2072), 1, - anon_sym_LPAREN, - ACTIONS(2214), 1, - anon_sym_CARET, - ACTIONS(2217), 1, - anon_sym_POUND_CARET, - STATE(761), 1, + STATE(829), 1, sym__metadata_lit, - STATE(864), 1, - sym_old_meta_lit, - STATE(865), 1, - sym_meta_lit, - STATE(867), 1, - aux_sym_sym_lit_repeat1, - [48192] = 8, + [48474] = 8, ACTIONS(3), 1, sym_block_comment, ACTIONS(17), 1, anon_sym_CARET, ACTIONS(19), 1, anon_sym_POUND_CARET, - ACTIONS(1898), 1, + ACTIONS(1930), 1, aux_sym_sym_lit_token1, - STATE(584), 1, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(716), 1, + STATE(725), 1, aux_sym_sym_lit_repeat1, - STATE(761), 1, + STATE(829), 1, sym__metadata_lit, - [48217] = 8, + [48499] = 8, ACTIONS(3), 1, sym_block_comment, ACTIONS(17), 1, anon_sym_CARET, ACTIONS(19), 1, anon_sym_POUND_CARET, - ACTIONS(1952), 1, + ACTIONS(1962), 1, aux_sym_sym_lit_token1, - STATE(584), 1, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(716), 1, + STATE(725), 1, aux_sym_sym_lit_repeat1, - STATE(761), 1, + STATE(829), 1, sym__metadata_lit, - [48242] = 8, + [48524] = 8, ACTIONS(3), 1, sym_block_comment, ACTIONS(17), 1, anon_sym_CARET, ACTIONS(19), 1, anon_sym_POUND_CARET, - ACTIONS(1874), 1, + ACTIONS(1864), 1, aux_sym_sym_lit_token1, - STATE(584), 1, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(716), 1, + STATE(725), 1, aux_sym_sym_lit_repeat1, - STATE(761), 1, + STATE(829), 1, sym__metadata_lit, - [48267] = 8, + [48549] = 8, ACTIONS(3), 1, sym_block_comment, - ACTIONS(17), 1, + ACTIONS(2108), 1, + anon_sym_LPAREN, + ACTIONS(2232), 1, anon_sym_CARET, - ACTIONS(19), 1, + ACTIONS(2235), 1, anon_sym_POUND_CARET, - ACTIONS(1858), 1, - aux_sym_sym_lit_token1, - STATE(584), 1, - sym_old_meta_lit, - STATE(587), 1, + STATE(829), 1, + sym__metadata_lit, + STATE(861), 1, sym_meta_lit, - STATE(716), 1, + STATE(862), 1, + sym_old_meta_lit, + STATE(869), 1, aux_sym_sym_lit_repeat1, - STATE(761), 1, - sym__metadata_lit, - [48292] = 8, + [48574] = 8, ACTIONS(3), 1, sym_block_comment, ACTIONS(17), 1, anon_sym_CARET, ACTIONS(19), 1, anon_sym_POUND_CARET, - ACTIONS(1914), 1, + ACTIONS(1896), 1, aux_sym_sym_lit_token1, - STATE(584), 1, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(716), 1, + STATE(725), 1, aux_sym_sym_lit_repeat1, - STATE(761), 1, + STATE(829), 1, sym__metadata_lit, - [48317] = 8, + [48599] = 8, ACTIONS(3), 1, sym_block_comment, ACTIONS(17), 1, anon_sym_CARET, ACTIONS(19), 1, anon_sym_POUND_CARET, - ACTIONS(1836), 1, + ACTIONS(1880), 1, aux_sym_sym_lit_token1, - STATE(584), 1, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(716), 1, + STATE(725), 1, aux_sym_sym_lit_repeat1, - STATE(761), 1, + STATE(829), 1, sym__metadata_lit, - [48342] = 8, + [48624] = 8, ACTIONS(3), 1, sym_block_comment, ACTIONS(17), 1, anon_sym_CARET, ACTIONS(19), 1, anon_sym_POUND_CARET, - ACTIONS(1936), 1, + ACTIONS(1912), 1, aux_sym_sym_lit_token1, - STATE(584), 1, + STATE(581), 1, sym_old_meta_lit, - STATE(587), 1, + STATE(582), 1, sym_meta_lit, - STATE(716), 1, + STATE(725), 1, aux_sym_sym_lit_repeat1, - STATE(761), 1, + STATE(829), 1, sym__metadata_lit, - [48367] = 5, + [48649] = 5, ACTIONS(3), 1, sym_block_comment, ACTIONS(700), 1, anon_sym_LPAREN, - ACTIONS(2220), 1, + ACTIONS(2238), 1, sym__ws, - STATE(934), 1, + STATE(893), 1, aux_sym_read_cond_lit_repeat1, - STATE(316), 3, + STATE(665), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [48385] = 5, + [48667] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(700), 1, + ACTIONS(21), 1, anon_sym_LPAREN, - ACTIONS(2222), 1, + ACTIONS(2240), 1, sym__ws, - STATE(905), 1, + STATE(875), 1, aux_sym_read_cond_lit_repeat1, - STATE(331), 3, + STATE(411), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [48403] = 5, + [48685] = 5, ACTIONS(3), 1, sym_block_comment, ACTIONS(21), 1, anon_sym_LPAREN, - ACTIONS(2220), 1, + ACTIONS(2242), 1, sym__ws, - STATE(934), 1, + STATE(932), 1, aux_sym_read_cond_lit_repeat1, - STATE(394), 3, + STATE(398), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [48421] = 5, + [48703] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(21), 1, + ACTIONS(428), 1, anon_sym_LPAREN, - ACTIONS(2224), 1, + ACTIONS(2242), 1, sym__ws, - STATE(917), 1, + STATE(932), 1, aux_sym_read_cond_lit_repeat1, - STATE(439), 3, + STATE(755), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [48439] = 5, + [48721] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(394), 1, + ACTIONS(428), 1, anon_sym_LPAREN, - ACTIONS(2220), 1, + ACTIONS(2242), 1, sym__ws, - STATE(934), 1, + STATE(932), 1, aux_sym_read_cond_lit_repeat1, - STATE(486), 3, + STATE(757), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [48457] = 5, + [48739] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(394), 1, + ACTIONS(584), 1, anon_sym_LPAREN, - ACTIONS(2220), 1, + ACTIONS(2242), 1, sym__ws, - STATE(934), 1, + STATE(932), 1, aux_sym_read_cond_lit_repeat1, - STATE(530), 3, + STATE(282), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [48475] = 5, + [48757] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(21), 1, + ACTIONS(700), 1, anon_sym_LPAREN, - ACTIONS(2226), 1, + ACTIONS(2242), 1, sym__ws, - STATE(916), 1, + STATE(932), 1, aux_sym_read_cond_lit_repeat1, - STATE(441), 3, + STATE(653), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [48493] = 5, + [48775] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(738), 1, + ACTIONS(428), 1, anon_sym_LPAREN, - ACTIONS(2228), 1, + ACTIONS(2242), 1, sym__ws, - STATE(898), 1, + STATE(932), 1, aux_sym_read_cond_lit_repeat1, - STATE(689), 3, + STATE(785), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [48511] = 5, + [48793] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(462), 1, + ACTIONS(428), 1, anon_sym_LPAREN, - ACTIONS(2220), 1, + ACTIONS(2242), 1, sym__ws, - STATE(934), 1, + STATE(932), 1, aux_sym_read_cond_lit_repeat1, - STATE(590), 3, + STATE(786), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [48529] = 5, + [48811] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(738), 1, + ACTIONS(700), 1, anon_sym_LPAREN, - ACTIONS(2230), 1, + ACTIONS(2244), 1, sym__ws, STATE(903), 1, aux_sym_read_cond_lit_repeat1, - STATE(690), 3, + STATE(666), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [48547] = 5, + [48829] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(462), 1, + ACTIONS(21), 1, anon_sym_LPAREN, - ACTIONS(2220), 1, + ACTIONS(2246), 1, sym__ws, - STATE(934), 1, + STATE(917), 1, aux_sym_read_cond_lit_repeat1, - STATE(591), 3, + STATE(436), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [48565] = 5, + [48847] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(428), 1, + ACTIONS(394), 1, anon_sym_LPAREN, - ACTIONS(2232), 1, + ACTIONS(2248), 1, sym__ws, - STATE(895), 1, + STATE(894), 1, aux_sym_read_cond_lit_repeat1, - STATE(792), 3, + STATE(527), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [48583] = 5, + [48865] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(428), 1, + ACTIONS(394), 1, anon_sym_LPAREN, - ACTIONS(2234), 1, + ACTIONS(2250), 1, sym__ws, - STATE(896), 1, + STATE(895), 1, aux_sym_read_cond_lit_repeat1, - STATE(794), 3, + STATE(529), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [48601] = 5, + [48883] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1676), 1, - anon_sym_POUND_, - ACTIONS(2238), 1, - anon_sym_EQ, - ACTIONS(2236), 2, + ACTIONS(21), 1, + anon_sym_LPAREN, + ACTIONS(2252), 1, sym__ws, - sym_comment, - STATE(939), 2, - sym__gap, - sym_dis_expr, - [48619] = 5, + STATE(916), 1, + aux_sym_read_cond_lit_repeat1, + STATE(441), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + [48901] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(394), 1, + ACTIONS(428), 1, anon_sym_LPAREN, - ACTIONS(2220), 1, + ACTIONS(2254), 1, sym__ws, - STATE(934), 1, + STATE(880), 1, aux_sym_read_cond_lit_repeat1, - STATE(532), 3, + STATE(739), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [48637] = 5, + [48919] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(462), 1, + ACTIONS(428), 1, anon_sym_LPAREN, - ACTIONS(2240), 1, + ACTIONS(2256), 1, sym__ws, - STATE(883), 1, + STATE(876), 1, aux_sym_read_cond_lit_repeat1, - STATE(619), 3, + STATE(807), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [48655] = 5, + [48937] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(462), 1, + ACTIONS(428), 1, anon_sym_LPAREN, - ACTIONS(2242), 1, + ACTIONS(2258), 1, sym__ws, - STATE(885), 1, + STATE(877), 1, aux_sym_read_cond_lit_repeat1, - STATE(620), 3, + STATE(805), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [48673] = 5, + [48955] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(462), 1, + ACTIONS(1686), 1, + anon_sym_POUND_, + ACTIONS(2262), 1, + anon_sym_EQ, + ACTIONS(2260), 2, + sym__ws, + sym_comment, + STATE(942), 2, + sym__gap, + sym_dis_expr, + [48973] = 5, + ACTIONS(3), 1, + sym_block_comment, + ACTIONS(428), 1, anon_sym_LPAREN, - ACTIONS(2220), 1, + ACTIONS(2264), 1, sym__ws, - STATE(934), 1, + STATE(881), 1, aux_sym_read_cond_lit_repeat1, - STATE(636), 3, + STATE(738), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [48691] = 5, + [48991] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(462), 1, + ACTIONS(21), 1, anon_sym_LPAREN, - ACTIONS(2220), 1, + ACTIONS(2242), 1, sym__ws, - STATE(934), 1, + STATE(932), 1, aux_sym_read_cond_lit_repeat1, - STATE(637), 3, + STATE(399), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [48709] = 5, + [49009] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(462), 1, + ACTIONS(700), 1, anon_sym_LPAREN, - ACTIONS(2244), 1, + ACTIONS(2242), 1, sym__ws, - STATE(892), 1, + STATE(932), 1, aux_sym_read_cond_lit_repeat1, - STATE(626), 3, + STATE(700), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [48727] = 5, + [49027] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(428), 1, + ACTIONS(394), 1, anon_sym_LPAREN, - ACTIONS(2220), 1, + ACTIONS(2242), 1, sym__ws, - STATE(934), 1, + STATE(932), 1, aux_sym_read_cond_lit_repeat1, - STATE(821), 3, + STATE(514), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [48745] = 5, + [49045] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(428), 1, + ACTIONS(394), 1, anon_sym_LPAREN, - ACTIONS(2220), 1, + ACTIONS(2242), 1, sym__ws, - STATE(934), 1, + STATE(932), 1, aux_sym_read_cond_lit_repeat1, - STATE(820), 3, + STATE(513), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [48763] = 5, + [49063] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(462), 1, + ACTIONS(1686), 1, + anon_sym_POUND_, + ACTIONS(2268), 1, + anon_sym_EQ, + ACTIONS(2266), 2, + sym__ws, + sym_comment, + STATE(938), 2, + sym__gap, + sym_dis_expr, + [49081] = 5, + ACTIONS(3), 1, + sym_block_comment, + ACTIONS(528), 1, anon_sym_LPAREN, - ACTIONS(2246), 1, + ACTIONS(2242), 1, sym__ws, - STATE(893), 1, + STATE(932), 1, aux_sym_read_cond_lit_repeat1, - STATE(627), 3, + STATE(592), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [48781] = 5, + [49099] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(738), 1, + ACTIONS(528), 1, anon_sym_LPAREN, - ACTIONS(2220), 1, + ACTIONS(2242), 1, sym__ws, - STATE(934), 1, + STATE(932), 1, aux_sym_read_cond_lit_repeat1, - STATE(652), 3, + STATE(593), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [48799] = 5, + [49117] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(428), 1, + ACTIONS(394), 1, anon_sym_LPAREN, - ACTIONS(2248), 1, + ACTIONS(2270), 1, sym__ws, STATE(906), 1, aux_sym_read_cond_lit_repeat1, - STATE(810), 3, + STATE(496), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [48817] = 5, + [49135] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(428), 1, + ACTIONS(394), 1, anon_sym_LPAREN, - ACTIONS(2250), 1, + ACTIONS(2272), 1, sym__ws, STATE(907), 1, aux_sym_read_cond_lit_repeat1, - STATE(755), 3, + STATE(495), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [48835] = 5, + [49153] = 5, ACTIONS(3), 1, sym_block_comment, ACTIONS(21), 1, anon_sym_LPAREN, - ACTIONS(2252), 1, + ACTIONS(2274), 1, sym__ws, - STATE(910), 1, + STATE(892), 1, aux_sym_read_cond_lit_repeat1, STATE(410), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [48853] = 5, + [49171] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(21), 1, + ACTIONS(584), 1, anon_sym_LPAREN, - ACTIONS(2254), 1, + ACTIONS(2242), 1, sym__ws, - STATE(877), 1, + STATE(932), 1, aux_sym_read_cond_lit_repeat1, - STATE(411), 3, + STATE(281), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [48871] = 5, + [49189] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(738), 1, + ACTIONS(700), 1, anon_sym_LPAREN, - ACTIONS(2220), 1, + ACTIONS(2242), 1, sym__ws, - STATE(934), 1, + STATE(932), 1, aux_sym_read_cond_lit_repeat1, - STATE(653), 3, + STATE(699), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [48889] = 5, + [49207] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(394), 1, + ACTIONS(528), 1, anon_sym_LPAREN, - ACTIONS(2256), 1, + ACTIONS(2276), 1, sym__ws, - STATE(909), 1, + STATE(897), 1, aux_sym_read_cond_lit_repeat1, - STATE(513), 3, + STATE(604), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [48907] = 5, + [49225] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(700), 1, + ACTIONS(528), 1, anon_sym_LPAREN, - ACTIONS(2220), 1, + ACTIONS(2278), 1, sym__ws, - STATE(934), 1, + STATE(898), 1, aux_sym_read_cond_lit_repeat1, - STATE(317), 3, + STATE(605), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [48925] = 5, + [49243] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(428), 1, + ACTIONS(394), 1, anon_sym_LPAREN, - ACTIONS(2220), 1, + ACTIONS(2242), 1, sym__ws, - STATE(934), 1, + STATE(932), 1, aux_sym_read_cond_lit_repeat1, - STATE(782), 3, + STATE(474), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [48943] = 5, + [49261] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(428), 1, + ACTIONS(394), 1, anon_sym_LPAREN, - ACTIONS(2220), 1, + ACTIONS(2242), 1, sym__ws, - STATE(934), 1, + STATE(932), 1, aux_sym_read_cond_lit_repeat1, - STATE(781), 3, + STATE(473), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [48961] = 5, + [49279] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(700), 1, + ACTIONS(528), 1, anon_sym_LPAREN, - ACTIONS(2258), 1, + ACTIONS(2242), 1, sym__ws, - STATE(875), 1, + STATE(932), 1, aux_sym_read_cond_lit_repeat1, - STATE(330), 3, + STATE(615), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [48979] = 5, + [49297] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(394), 1, + ACTIONS(528), 1, anon_sym_LPAREN, - ACTIONS(2220), 1, + ACTIONS(2242), 1, sym__ws, - STATE(934), 1, + STATE(932), 1, aux_sym_read_cond_lit_repeat1, - STATE(533), 3, + STATE(616), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [48997] = 5, + [49315] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(21), 1, + ACTIONS(700), 1, anon_sym_LPAREN, - ACTIONS(2220), 1, + ACTIONS(2280), 1, sym__ws, - STATE(934), 1, + STATE(912), 1, aux_sym_read_cond_lit_repeat1, - STATE(396), 3, + STATE(690), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [49015] = 5, + [49333] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(574), 1, + ACTIONS(700), 1, anon_sym_LPAREN, - ACTIONS(2220), 1, + ACTIONS(2282), 1, sym__ws, - STATE(934), 1, + STATE(879), 1, aux_sym_read_cond_lit_repeat1, - STATE(283), 3, + STATE(689), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [49033] = 5, + [49351] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(574), 1, + ACTIONS(700), 1, anon_sym_LPAREN, - ACTIONS(2220), 1, + ACTIONS(2242), 1, sym__ws, - STATE(934), 1, + STATE(932), 1, aux_sym_read_cond_lit_repeat1, - STATE(284), 3, + STATE(652), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [49051] = 5, + [49369] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(574), 1, + ACTIONS(584), 1, anon_sym_LPAREN, - ACTIONS(2260), 1, + ACTIONS(2284), 1, sym__ws, - STATE(923), 1, + STATE(921), 1, aux_sym_read_cond_lit_repeat1, STATE(250), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [49069] = 5, + [49387] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(574), 1, + ACTIONS(584), 1, anon_sym_LPAREN, - ACTIONS(2262), 1, + ACTIONS(2286), 1, sym__ws, - STATE(924), 1, + STATE(922), 1, aux_sym_read_cond_lit_repeat1, STATE(251), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [49087] = 5, + [49405] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(700), 1, + ACTIONS(528), 1, anon_sym_LPAREN, - ACTIONS(2220), 1, + ACTIONS(2288), 1, sym__ws, - STATE(934), 1, + STATE(908), 1, aux_sym_read_cond_lit_repeat1, - STATE(357), 3, + STATE(638), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [49105] = 5, + [49423] = 5, ACTIONS(3), 1, sym_block_comment, ACTIONS(21), 1, anon_sym_LPAREN, - ACTIONS(2220), 1, + ACTIONS(2242), 1, sym__ws, - STATE(934), 1, + STATE(932), 1, aux_sym_read_cond_lit_repeat1, - STATE(423), 3, + STATE(424), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [49123] = 5, + [49441] = 5, ACTIONS(3), 1, sym_block_comment, ACTIONS(21), 1, anon_sym_LPAREN, - ACTIONS(2220), 1, + ACTIONS(2242), 1, sym__ws, - STATE(934), 1, + STATE(932), 1, aux_sym_read_cond_lit_repeat1, STATE(427), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [49141] = 5, + [49459] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(700), 1, + ACTIONS(528), 1, anon_sym_LPAREN, - ACTIONS(2220), 1, + ACTIONS(2290), 1, sym__ws, - STATE(934), 1, - aux_sym_read_cond_lit_repeat1, - STATE(306), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - [49159] = 5, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(394), 1, - anon_sym_LPAREN, - ACTIONS(2264), 1, - sym__ws, - STATE(880), 1, + STATE(909), 1, aux_sym_read_cond_lit_repeat1, - STATE(488), 3, + STATE(639), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [49177] = 5, + [49477] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(394), 1, + ACTIONS(752), 1, anon_sym_LPAREN, - ACTIONS(2266), 1, + ACTIONS(2242), 1, sym__ws, - STATE(889), 1, + STATE(932), 1, aux_sym_read_cond_lit_repeat1, - STATE(514), 3, + STATE(318), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [49195] = 5, + [49495] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(394), 1, + ACTIONS(752), 1, anon_sym_LPAREN, - ACTIONS(2268), 1, + ACTIONS(2242), 1, sym__ws, - STATE(879), 1, + STATE(932), 1, aux_sym_read_cond_lit_repeat1, - STATE(499), 3, + STATE(319), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [49213] = 5, + [49513] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(700), 1, + ACTIONS(584), 1, anon_sym_LPAREN, - ACTIONS(2270), 1, + ACTIONS(2242), 1, sym__ws, - STATE(915), 1, + STATE(932), 1, aux_sym_read_cond_lit_repeat1, - STATE(342), 3, + STATE(268), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [49231] = 5, + [49531] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(574), 1, + ACTIONS(584), 1, anon_sym_LPAREN, - ACTIONS(2220), 1, + ACTIONS(2242), 1, sym__ws, - STATE(934), 1, + STATE(932), 1, aux_sym_read_cond_lit_repeat1, - STATE(271), 3, + STATE(267), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [49249] = 5, + [49549] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(574), 1, + ACTIONS(752), 1, anon_sym_LPAREN, - ACTIONS(2220), 1, + ACTIONS(2292), 1, sym__ws, - STATE(934), 1, + STATE(919), 1, aux_sym_read_cond_lit_repeat1, - STATE(236), 3, + STATE(331), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [49267] = 5, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(1676), 1, - anon_sym_POUND_, - ACTIONS(2274), 1, - anon_sym_EQ, - ACTIONS(2272), 2, - sym__ws, - sym_comment, - STATE(942), 2, - sym__gap, - sym_dis_expr, - [49285] = 5, + [49567] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(700), 1, + ACTIONS(752), 1, anon_sym_LPAREN, - ACTIONS(2276), 1, + ACTIONS(2294), 1, sym__ws, - STATE(918), 1, + STATE(920), 1, aux_sym_read_cond_lit_repeat1, - STATE(341), 3, + STATE(332), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [49303] = 5, + [49585] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(738), 1, + ACTIONS(752), 1, anon_sym_LPAREN, - ACTIONS(2278), 1, + ACTIONS(2242), 1, sym__ws, - STATE(931), 1, + STATE(932), 1, aux_sym_read_cond_lit_repeat1, - STATE(662), 3, + STATE(358), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [49321] = 5, + [49603] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(574), 1, + ACTIONS(584), 1, anon_sym_LPAREN, - ACTIONS(2280), 1, + ACTIONS(2296), 1, sym__ws, - STATE(912), 1, + STATE(878), 1, aux_sym_read_cond_lit_repeat1, - STATE(235), 3, + STATE(272), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [49339] = 5, + [49621] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(574), 1, + ACTIONS(584), 1, anon_sym_LPAREN, - ACTIONS(2282), 1, + ACTIONS(2298), 1, sym__ws, - STATE(911), 1, + STATE(902), 1, aux_sym_read_cond_lit_repeat1, - STATE(261), 3, + STATE(294), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [49357] = 5, + [49639] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(738), 1, + ACTIONS(752), 1, anon_sym_LPAREN, - ACTIONS(2220), 1, + ACTIONS(2242), 1, sym__ws, - STATE(934), 1, + STATE(932), 1, aux_sym_read_cond_lit_repeat1, - STATE(677), 3, + STATE(359), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [49375] = 5, + [49657] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(738), 1, + ACTIONS(752), 1, anon_sym_LPAREN, - ACTIONS(2220), 1, + ACTIONS(2300), 1, sym__ws, - STATE(934), 1, + STATE(925), 1, aux_sym_read_cond_lit_repeat1, - STATE(676), 3, + STATE(342), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [49393] = 5, + [49675] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(738), 1, + ACTIONS(752), 1, anon_sym_LPAREN, - ACTIONS(2284), 1, + ACTIONS(2302), 1, sym__ws, - STATE(930), 1, + STATE(928), 1, aux_sym_read_cond_lit_repeat1, - STATE(664), 3, + STATE(341), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [49411] = 2, + [49693] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2286), 3, + ACTIONS(2304), 3, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - [49420] = 4, + [49702] = 4, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2288), 1, + ACTIONS(2306), 1, sym__ws, - ACTIONS(2291), 1, + ACTIONS(2309), 1, anon_sym_LPAREN, - STATE(934), 1, + STATE(932), 1, aux_sym_read_cond_lit_repeat1, - [49433] = 2, + [49715] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2293), 1, + ACTIONS(2311), 1, sym_num_lit, - [49440] = 2, + [49722] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2295), 1, + ACTIONS(2313), 1, + sym_num_lit, + [49729] = 2, + ACTIONS(3), 1, + sym_block_comment, + ACTIONS(2315), 1, anon_sym_A, - [49447] = 2, + [49736] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2297), 1, + ACTIONS(2317), 1, sym_num_lit, - [49454] = 2, + [49743] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2299), 1, + ACTIONS(2319), 1, sym_num_lit, - [49461] = 2, + [49750] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2301), 1, + ACTIONS(2321), 1, anon_sym_EQ, - [49468] = 2, + [49757] = 2, + ACTIONS(3), 1, + sym_block_comment, + ACTIONS(2323), 1, + ts_builtin_sym_end, + [49764] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2303), 1, + ACTIONS(2325), 1, sym_num_lit, - [49475] = 2, + [49771] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2305), 1, - ts_builtin_sym_end, - [49482] = 2, + ACTIONS(2327), 1, + anon_sym_into, + [49778] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2238), 1, + ACTIONS(2268), 1, anon_sym_EQ, - [49489] = 2, + [49785] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2307), 1, + ACTIONS(2329), 1, sym_num_lit, - [49496] = 2, + [49792] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2309), 1, - sym_num_lit, - [49503] = 2, + ACTIONS(2026), 1, + anon_sym_into, + [49799] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2311), 1, + ACTIONS(2331), 1, sym_num_lit, }; @@ -43122,16 +43378,16 @@ static uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(49)] = 4797, [SMALL_STATE(50)] = 4917, [SMALL_STATE(51)] = 5037, - [SMALL_STATE(52)] = 5153, - [SMALL_STATE(53)] = 5273, - [SMALL_STATE(54)] = 5393, - [SMALL_STATE(55)] = 5513, - [SMALL_STATE(56)] = 5633, - [SMALL_STATE(57)] = 5753, - [SMALL_STATE(58)] = 5873, - [SMALL_STATE(59)] = 5993, - [SMALL_STATE(60)] = 6113, - [SMALL_STATE(61)] = 6233, + [SMALL_STATE(52)] = 5157, + [SMALL_STATE(53)] = 5277, + [SMALL_STATE(54)] = 5397, + [SMALL_STATE(55)] = 5517, + [SMALL_STATE(56)] = 5637, + [SMALL_STATE(57)] = 5757, + [SMALL_STATE(58)] = 5877, + [SMALL_STATE(59)] = 5997, + [SMALL_STATE(60)] = 6117, + [SMALL_STATE(61)] = 6237, [SMALL_STATE(62)] = 6353, [SMALL_STATE(63)] = 6473, [SMALL_STATE(64)] = 6590, @@ -43289,733 +43545,733 @@ static uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(216)] = 24361, [SMALL_STATE(217)] = 24477, [SMALL_STATE(218)] = 24593, - [SMALL_STATE(219)] = 24698, - [SMALL_STATE(220)] = 24803, - [SMALL_STATE(221)] = 24908, - [SMALL_STATE(222)] = 25013, - [SMALL_STATE(223)] = 25118, - [SMALL_STATE(224)] = 25223, - [SMALL_STATE(225)] = 25328, - [SMALL_STATE(226)] = 25433, - [SMALL_STATE(227)] = 25538, - [SMALL_STATE(228)] = 25643, - [SMALL_STATE(229)] = 25748, - [SMALL_STATE(230)] = 25853, - [SMALL_STATE(231)] = 25958, - [SMALL_STATE(232)] = 26063, - [SMALL_STATE(233)] = 26168, - [SMALL_STATE(234)] = 26223, - [SMALL_STATE(235)] = 26278, - [SMALL_STATE(236)] = 26318, - [SMALL_STATE(237)] = 26358, - [SMALL_STATE(238)] = 26398, - [SMALL_STATE(239)] = 26438, - [SMALL_STATE(240)] = 26478, - [SMALL_STATE(241)] = 26518, - [SMALL_STATE(242)] = 26558, - [SMALL_STATE(243)] = 26598, - [SMALL_STATE(244)] = 26638, - [SMALL_STATE(245)] = 26678, - [SMALL_STATE(246)] = 26718, - [SMALL_STATE(247)] = 26758, - [SMALL_STATE(248)] = 26798, - [SMALL_STATE(249)] = 26838, - [SMALL_STATE(250)] = 26878, - [SMALL_STATE(251)] = 26918, - [SMALL_STATE(252)] = 26958, - [SMALL_STATE(253)] = 26998, - [SMALL_STATE(254)] = 27038, - [SMALL_STATE(255)] = 27078, - [SMALL_STATE(256)] = 27118, - [SMALL_STATE(257)] = 27158, - [SMALL_STATE(258)] = 27198, - [SMALL_STATE(259)] = 27238, - [SMALL_STATE(260)] = 27278, - [SMALL_STATE(261)] = 27318, - [SMALL_STATE(262)] = 27358, - [SMALL_STATE(263)] = 27398, - [SMALL_STATE(264)] = 27438, - [SMALL_STATE(265)] = 27478, - [SMALL_STATE(266)] = 27518, - [SMALL_STATE(267)] = 27558, - [SMALL_STATE(268)] = 27598, - [SMALL_STATE(269)] = 27638, - [SMALL_STATE(270)] = 27678, - [SMALL_STATE(271)] = 27718, - [SMALL_STATE(272)] = 27758, - [SMALL_STATE(273)] = 27798, - [SMALL_STATE(274)] = 27838, - [SMALL_STATE(275)] = 27878, - [SMALL_STATE(276)] = 27918, - [SMALL_STATE(277)] = 27958, - [SMALL_STATE(278)] = 27998, - [SMALL_STATE(279)] = 28038, - [SMALL_STATE(280)] = 28078, - [SMALL_STATE(281)] = 28118, - [SMALL_STATE(282)] = 28158, - [SMALL_STATE(283)] = 28198, - [SMALL_STATE(284)] = 28238, - [SMALL_STATE(285)] = 28278, - [SMALL_STATE(286)] = 28318, - [SMALL_STATE(287)] = 28358, - [SMALL_STATE(288)] = 28398, - [SMALL_STATE(289)] = 28438, - [SMALL_STATE(290)] = 28478, - [SMALL_STATE(291)] = 28518, - [SMALL_STATE(292)] = 28558, - [SMALL_STATE(293)] = 28598, - [SMALL_STATE(294)] = 28638, - [SMALL_STATE(295)] = 28678, - [SMALL_STATE(296)] = 28718, - [SMALL_STATE(297)] = 28758, - [SMALL_STATE(298)] = 28798, - [SMALL_STATE(299)] = 28845, - [SMALL_STATE(300)] = 28892, - [SMALL_STATE(301)] = 28939, - [SMALL_STATE(302)] = 28986, - [SMALL_STATE(303)] = 29033, - [SMALL_STATE(304)] = 29080, - [SMALL_STATE(305)] = 29127, - [SMALL_STATE(306)] = 29164, - [SMALL_STATE(307)] = 29201, - [SMALL_STATE(308)] = 29238, - [SMALL_STATE(309)] = 29275, - [SMALL_STATE(310)] = 29312, - [SMALL_STATE(311)] = 29349, - [SMALL_STATE(312)] = 29386, - [SMALL_STATE(313)] = 29423, - [SMALL_STATE(314)] = 29460, - [SMALL_STATE(315)] = 29497, - [SMALL_STATE(316)] = 29534, - [SMALL_STATE(317)] = 29571, - [SMALL_STATE(318)] = 29608, - [SMALL_STATE(319)] = 29645, - [SMALL_STATE(320)] = 29682, - [SMALL_STATE(321)] = 29719, - [SMALL_STATE(322)] = 29756, - [SMALL_STATE(323)] = 29793, - [SMALL_STATE(324)] = 29830, - [SMALL_STATE(325)] = 29867, - [SMALL_STATE(326)] = 29904, - [SMALL_STATE(327)] = 29941, - [SMALL_STATE(328)] = 29978, - [SMALL_STATE(329)] = 30015, - [SMALL_STATE(330)] = 30052, - [SMALL_STATE(331)] = 30089, - [SMALL_STATE(332)] = 30126, - [SMALL_STATE(333)] = 30163, - [SMALL_STATE(334)] = 30200, - [SMALL_STATE(335)] = 30237, - [SMALL_STATE(336)] = 30274, - [SMALL_STATE(337)] = 30311, - [SMALL_STATE(338)] = 30348, - [SMALL_STATE(339)] = 30385, - [SMALL_STATE(340)] = 30422, - [SMALL_STATE(341)] = 30459, - [SMALL_STATE(342)] = 30496, - [SMALL_STATE(343)] = 30533, - [SMALL_STATE(344)] = 30570, - [SMALL_STATE(345)] = 30607, - [SMALL_STATE(346)] = 30644, - [SMALL_STATE(347)] = 30681, - [SMALL_STATE(348)] = 30718, - [SMALL_STATE(349)] = 30755, - [SMALL_STATE(350)] = 30792, - [SMALL_STATE(351)] = 30829, - [SMALL_STATE(352)] = 30866, - [SMALL_STATE(353)] = 30903, - [SMALL_STATE(354)] = 30940, - [SMALL_STATE(355)] = 30977, - [SMALL_STATE(356)] = 31014, - [SMALL_STATE(357)] = 31051, - [SMALL_STATE(358)] = 31088, - [SMALL_STATE(359)] = 31125, - [SMALL_STATE(360)] = 31162, - [SMALL_STATE(361)] = 31199, - [SMALL_STATE(362)] = 31236, - [SMALL_STATE(363)] = 31273, - [SMALL_STATE(364)] = 31310, - [SMALL_STATE(365)] = 31347, - [SMALL_STATE(366)] = 31384, - [SMALL_STATE(367)] = 31421, - [SMALL_STATE(368)] = 31457, - [SMALL_STATE(369)] = 31493, - [SMALL_STATE(370)] = 31529, - [SMALL_STATE(371)] = 31565, - [SMALL_STATE(372)] = 31601, - [SMALL_STATE(373)] = 31655, - [SMALL_STATE(374)] = 31691, - [SMALL_STATE(375)] = 31745, - [SMALL_STATE(376)] = 31799, - [SMALL_STATE(377)] = 31853, - [SMALL_STATE(378)] = 31907, - [SMALL_STATE(379)] = 31943, - [SMALL_STATE(380)] = 31979, - [SMALL_STATE(381)] = 32015, - [SMALL_STATE(382)] = 32051, - [SMALL_STATE(383)] = 32105, - [SMALL_STATE(384)] = 32141, - [SMALL_STATE(385)] = 32177, - [SMALL_STATE(386)] = 32213, - [SMALL_STATE(387)] = 32249, - [SMALL_STATE(388)] = 32303, - [SMALL_STATE(389)] = 32339, - [SMALL_STATE(390)] = 32375, - [SMALL_STATE(391)] = 32411, - [SMALL_STATE(392)] = 32447, - [SMALL_STATE(393)] = 32483, - [SMALL_STATE(394)] = 32537, - [SMALL_STATE(395)] = 32573, - [SMALL_STATE(396)] = 32627, - [SMALL_STATE(397)] = 32663, - [SMALL_STATE(398)] = 32699, - [SMALL_STATE(399)] = 32753, - [SMALL_STATE(400)] = 32789, - [SMALL_STATE(401)] = 32825, - [SMALL_STATE(402)] = 32879, - [SMALL_STATE(403)] = 32915, - [SMALL_STATE(404)] = 32951, - [SMALL_STATE(405)] = 32987, - [SMALL_STATE(406)] = 33041, - [SMALL_STATE(407)] = 33077, - [SMALL_STATE(408)] = 33131, - [SMALL_STATE(409)] = 33167, - [SMALL_STATE(410)] = 33221, - [SMALL_STATE(411)] = 33257, - [SMALL_STATE(412)] = 33293, - [SMALL_STATE(413)] = 33329, - [SMALL_STATE(414)] = 33383, - [SMALL_STATE(415)] = 33419, - [SMALL_STATE(416)] = 33455, - [SMALL_STATE(417)] = 33491, - [SMALL_STATE(418)] = 33527, - [SMALL_STATE(419)] = 33563, - [SMALL_STATE(420)] = 33617, - [SMALL_STATE(421)] = 33653, - [SMALL_STATE(422)] = 33707, - [SMALL_STATE(423)] = 33743, - [SMALL_STATE(424)] = 33779, - [SMALL_STATE(425)] = 33833, - [SMALL_STATE(426)] = 33869, - [SMALL_STATE(427)] = 33923, - [SMALL_STATE(428)] = 33959, - [SMALL_STATE(429)] = 34013, - [SMALL_STATE(430)] = 34049, - [SMALL_STATE(431)] = 34085, - [SMALL_STATE(432)] = 34121, - [SMALL_STATE(433)] = 34175, - [SMALL_STATE(434)] = 34229, - [SMALL_STATE(435)] = 34265, - [SMALL_STATE(436)] = 34301, - [SMALL_STATE(437)] = 34337, - [SMALL_STATE(438)] = 34391, - [SMALL_STATE(439)] = 34445, - [SMALL_STATE(440)] = 34481, - [SMALL_STATE(441)] = 34535, - [SMALL_STATE(442)] = 34571, - [SMALL_STATE(443)] = 34607, - [SMALL_STATE(444)] = 34643, - [SMALL_STATE(445)] = 34679, - [SMALL_STATE(446)] = 34715, - [SMALL_STATE(447)] = 34769, - [SMALL_STATE(448)] = 34823, - [SMALL_STATE(449)] = 34865, - [SMALL_STATE(450)] = 34901, - [SMALL_STATE(451)] = 34955, - [SMALL_STATE(452)] = 34991, - [SMALL_STATE(453)] = 35027, - [SMALL_STATE(454)] = 35063, - [SMALL_STATE(455)] = 35099, - [SMALL_STATE(456)] = 35135, - [SMALL_STATE(457)] = 35171, - [SMALL_STATE(458)] = 35207, - [SMALL_STATE(459)] = 35261, - [SMALL_STATE(460)] = 35296, - [SMALL_STATE(461)] = 35330, - [SMALL_STATE(462)] = 35364, - [SMALL_STATE(463)] = 35398, - [SMALL_STATE(464)] = 35432, - [SMALL_STATE(465)] = 35465, - [SMALL_STATE(466)] = 35495, - [SMALL_STATE(467)] = 35525, - [SMALL_STATE(468)] = 35555, - [SMALL_STATE(469)] = 35585, - [SMALL_STATE(470)] = 35615, - [SMALL_STATE(471)] = 35673, - [SMALL_STATE(472)] = 35703, - [SMALL_STATE(473)] = 35761, - [SMALL_STATE(474)] = 35791, - [SMALL_STATE(475)] = 35857, - [SMALL_STATE(476)] = 35915, - [SMALL_STATE(477)] = 35945, - [SMALL_STATE(478)] = 36011, - [SMALL_STATE(479)] = 36077, - [SMALL_STATE(480)] = 36135, - [SMALL_STATE(481)] = 36165, - [SMALL_STATE(482)] = 36195, - [SMALL_STATE(483)] = 36225, - [SMALL_STATE(484)] = 36283, - [SMALL_STATE(485)] = 36313, - [SMALL_STATE(486)] = 36371, - [SMALL_STATE(487)] = 36401, - [SMALL_STATE(488)] = 36431, - [SMALL_STATE(489)] = 36461, - [SMALL_STATE(490)] = 36519, - [SMALL_STATE(491)] = 36549, - [SMALL_STATE(492)] = 36579, - [SMALL_STATE(493)] = 36609, - [SMALL_STATE(494)] = 36639, - [SMALL_STATE(495)] = 36669, - [SMALL_STATE(496)] = 36699, - [SMALL_STATE(497)] = 36729, - [SMALL_STATE(498)] = 36759, - [SMALL_STATE(499)] = 36789, - [SMALL_STATE(500)] = 36819, - [SMALL_STATE(501)] = 36849, - [SMALL_STATE(502)] = 36879, - [SMALL_STATE(503)] = 36937, - [SMALL_STATE(504)] = 36967, - [SMALL_STATE(505)] = 37033, - [SMALL_STATE(506)] = 37099, - [SMALL_STATE(507)] = 37129, - [SMALL_STATE(508)] = 37159, - [SMALL_STATE(509)] = 37189, - [SMALL_STATE(510)] = 37219, - [SMALL_STATE(511)] = 37255, - [SMALL_STATE(512)] = 37285, - [SMALL_STATE(513)] = 37315, - [SMALL_STATE(514)] = 37345, - [SMALL_STATE(515)] = 37375, - [SMALL_STATE(516)] = 37405, - [SMALL_STATE(517)] = 37435, - [SMALL_STATE(518)] = 37465, - [SMALL_STATE(519)] = 37495, - [SMALL_STATE(520)] = 37525, - [SMALL_STATE(521)] = 37555, - [SMALL_STATE(522)] = 37585, - [SMALL_STATE(523)] = 37615, - [SMALL_STATE(524)] = 37645, - [SMALL_STATE(525)] = 37675, - [SMALL_STATE(526)] = 37705, - [SMALL_STATE(527)] = 37735, - [SMALL_STATE(528)] = 37801, - [SMALL_STATE(529)] = 37831, - [SMALL_STATE(530)] = 37861, - [SMALL_STATE(531)] = 37891, - [SMALL_STATE(532)] = 37957, - [SMALL_STATE(533)] = 37987, - [SMALL_STATE(534)] = 38017, - [SMALL_STATE(535)] = 38047, - [SMALL_STATE(536)] = 38077, - [SMALL_STATE(537)] = 38107, - [SMALL_STATE(538)] = 38137, - [SMALL_STATE(539)] = 38167, - [SMALL_STATE(540)] = 38197, - [SMALL_STATE(541)] = 38227, - [SMALL_STATE(542)] = 38257, - [SMALL_STATE(543)] = 38287, - [SMALL_STATE(544)] = 38340, - [SMALL_STATE(545)] = 38393, - [SMALL_STATE(546)] = 38424, - [SMALL_STATE(547)] = 38477, - [SMALL_STATE(548)] = 38530, - [SMALL_STATE(549)] = 38583, - [SMALL_STATE(550)] = 38640, - [SMALL_STATE(551)] = 38693, - [SMALL_STATE(552)] = 38750, - [SMALL_STATE(553)] = 38807, - [SMALL_STATE(554)] = 38864, - [SMALL_STATE(555)] = 38917, - [SMALL_STATE(556)] = 38948, - [SMALL_STATE(557)] = 39001, - [SMALL_STATE(558)] = 39054, - [SMALL_STATE(559)] = 39107, - [SMALL_STATE(560)] = 39164, - [SMALL_STATE(561)] = 39217, - [SMALL_STATE(562)] = 39274, - [SMALL_STATE(563)] = 39331, - [SMALL_STATE(564)] = 39384, - [SMALL_STATE(565)] = 39441, - [SMALL_STATE(566)] = 39498, - [SMALL_STATE(567)] = 39555, - [SMALL_STATE(568)] = 39608, - [SMALL_STATE(569)] = 39665, - [SMALL_STATE(570)] = 39718, - [SMALL_STATE(571)] = 39775, - [SMALL_STATE(572)] = 39832, - [SMALL_STATE(573)] = 39889, - [SMALL_STATE(574)] = 39915, - [SMALL_STATE(575)] = 39941, - [SMALL_STATE(576)] = 39977, - [SMALL_STATE(577)] = 40013, - [SMALL_STATE(578)] = 40047, - [SMALL_STATE(579)] = 40081, - [SMALL_STATE(580)] = 40107, - [SMALL_STATE(581)] = 40133, - [SMALL_STATE(582)] = 40159, - [SMALL_STATE(583)] = 40185, - [SMALL_STATE(584)] = 40211, - [SMALL_STATE(585)] = 40245, - [SMALL_STATE(586)] = 40271, - [SMALL_STATE(587)] = 40297, - [SMALL_STATE(588)] = 40331, - [SMALL_STATE(589)] = 40357, - [SMALL_STATE(590)] = 40383, - [SMALL_STATE(591)] = 40409, - [SMALL_STATE(592)] = 40435, - [SMALL_STATE(593)] = 40461, - [SMALL_STATE(594)] = 40487, - [SMALL_STATE(595)] = 40513, - [SMALL_STATE(596)] = 40539, - [SMALL_STATE(597)] = 40565, - [SMALL_STATE(598)] = 40591, - [SMALL_STATE(599)] = 40617, - [SMALL_STATE(600)] = 40643, - [SMALL_STATE(601)] = 40669, - [SMALL_STATE(602)] = 40695, - [SMALL_STATE(603)] = 40721, - [SMALL_STATE(604)] = 40747, - [SMALL_STATE(605)] = 40773, - [SMALL_STATE(606)] = 40799, - [SMALL_STATE(607)] = 40825, - [SMALL_STATE(608)] = 40851, - [SMALL_STATE(609)] = 40877, - [SMALL_STATE(610)] = 40903, - [SMALL_STATE(611)] = 40929, - [SMALL_STATE(612)] = 40955, - [SMALL_STATE(613)] = 40981, - [SMALL_STATE(614)] = 41007, - [SMALL_STATE(615)] = 41033, - [SMALL_STATE(616)] = 41059, - [SMALL_STATE(617)] = 41085, - [SMALL_STATE(618)] = 41111, - [SMALL_STATE(619)] = 41137, - [SMALL_STATE(620)] = 41163, - [SMALL_STATE(621)] = 41189, - [SMALL_STATE(622)] = 41215, - [SMALL_STATE(623)] = 41241, - [SMALL_STATE(624)] = 41267, - [SMALL_STATE(625)] = 41293, - [SMALL_STATE(626)] = 41319, - [SMALL_STATE(627)] = 41345, - [SMALL_STATE(628)] = 41371, - [SMALL_STATE(629)] = 41397, - [SMALL_STATE(630)] = 41423, - [SMALL_STATE(631)] = 41449, - [SMALL_STATE(632)] = 41475, - [SMALL_STATE(633)] = 41501, - [SMALL_STATE(634)] = 41527, - [SMALL_STATE(635)] = 41553, - [SMALL_STATE(636)] = 41579, - [SMALL_STATE(637)] = 41605, - [SMALL_STATE(638)] = 41631, - [SMALL_STATE(639)] = 41657, - [SMALL_STATE(640)] = 41683, - [SMALL_STATE(641)] = 41709, - [SMALL_STATE(642)] = 41736, - [SMALL_STATE(643)] = 41763, - [SMALL_STATE(644)] = 41790, - [SMALL_STATE(645)] = 41817, - [SMALL_STATE(646)] = 41844, - [SMALL_STATE(647)] = 41871, - [SMALL_STATE(648)] = 41898, - [SMALL_STATE(649)] = 41925, - [SMALL_STATE(650)] = 41952, - [SMALL_STATE(651)] = 41979, - [SMALL_STATE(652)] = 42006, - [SMALL_STATE(653)] = 42033, - [SMALL_STATE(654)] = 42060, - [SMALL_STATE(655)] = 42087, - [SMALL_STATE(656)] = 42114, - [SMALL_STATE(657)] = 42141, - [SMALL_STATE(658)] = 42168, - [SMALL_STATE(659)] = 42195, - [SMALL_STATE(660)] = 42222, - [SMALL_STATE(661)] = 42249, - [SMALL_STATE(662)] = 42276, - [SMALL_STATE(663)] = 42303, - [SMALL_STATE(664)] = 42330, - [SMALL_STATE(665)] = 42357, - [SMALL_STATE(666)] = 42384, - [SMALL_STATE(667)] = 42411, - [SMALL_STATE(668)] = 42438, - [SMALL_STATE(669)] = 42465, - [SMALL_STATE(670)] = 42492, - [SMALL_STATE(671)] = 42519, - [SMALL_STATE(672)] = 42546, - [SMALL_STATE(673)] = 42573, - [SMALL_STATE(674)] = 42600, - [SMALL_STATE(675)] = 42627, - [SMALL_STATE(676)] = 42654, - [SMALL_STATE(677)] = 42681, - [SMALL_STATE(678)] = 42708, - [SMALL_STATE(679)] = 42735, - [SMALL_STATE(680)] = 42762, - [SMALL_STATE(681)] = 42789, - [SMALL_STATE(682)] = 42816, - [SMALL_STATE(683)] = 42843, - [SMALL_STATE(684)] = 42870, - [SMALL_STATE(685)] = 42897, - [SMALL_STATE(686)] = 42924, - [SMALL_STATE(687)] = 42951, - [SMALL_STATE(688)] = 42978, - [SMALL_STATE(689)] = 43005, - [SMALL_STATE(690)] = 43032, - [SMALL_STATE(691)] = 43059, - [SMALL_STATE(692)] = 43086, - [SMALL_STATE(693)] = 43113, - [SMALL_STATE(694)] = 43140, - [SMALL_STATE(695)] = 43167, - [SMALL_STATE(696)] = 43194, - [SMALL_STATE(697)] = 43221, - [SMALL_STATE(698)] = 43248, - [SMALL_STATE(699)] = 43275, - [SMALL_STATE(700)] = 43302, - [SMALL_STATE(701)] = 43329, - [SMALL_STATE(702)] = 43356, - [SMALL_STATE(703)] = 43383, - [SMALL_STATE(704)] = 43410, - [SMALL_STATE(705)] = 43437, - [SMALL_STATE(706)] = 43461, - [SMALL_STATE(707)] = 43485, - [SMALL_STATE(708)] = 43509, - [SMALL_STATE(709)] = 43533, - [SMALL_STATE(710)] = 43557, - [SMALL_STATE(711)] = 43581, - [SMALL_STATE(712)] = 43605, - [SMALL_STATE(713)] = 43629, - [SMALL_STATE(714)] = 43653, - [SMALL_STATE(715)] = 43677, - [SMALL_STATE(716)] = 43701, - [SMALL_STATE(717)] = 43739, - [SMALL_STATE(718)] = 43763, - [SMALL_STATE(719)] = 43787, - [SMALL_STATE(720)] = 43811, - [SMALL_STATE(721)] = 43835, - [SMALL_STATE(722)] = 43859, - [SMALL_STATE(723)] = 43883, - [SMALL_STATE(724)] = 43907, - [SMALL_STATE(725)] = 43931, - [SMALL_STATE(726)] = 43955, - [SMALL_STATE(727)] = 44000, - [SMALL_STATE(728)] = 44025, - [SMALL_STATE(729)] = 44070, - [SMALL_STATE(730)] = 44115, - [SMALL_STATE(731)] = 44140, - [SMALL_STATE(732)] = 44165, - [SMALL_STATE(733)] = 44210, - [SMALL_STATE(734)] = 44255, - [SMALL_STATE(735)] = 44280, - [SMALL_STATE(736)] = 44305, - [SMALL_STATE(737)] = 44330, - [SMALL_STATE(738)] = 44375, - [SMALL_STATE(739)] = 44400, - [SMALL_STATE(740)] = 44425, - [SMALL_STATE(741)] = 44470, - [SMALL_STATE(742)] = 44515, - [SMALL_STATE(743)] = 44560, - [SMALL_STATE(744)] = 44605, - [SMALL_STATE(745)] = 44650, - [SMALL_STATE(746)] = 44695, - [SMALL_STATE(747)] = 44740, - [SMALL_STATE(748)] = 44765, - [SMALL_STATE(749)] = 44790, - [SMALL_STATE(750)] = 44835, - [SMALL_STATE(751)] = 44880, - [SMALL_STATE(752)] = 44925, - [SMALL_STATE(753)] = 44970, - [SMALL_STATE(754)] = 45015, - [SMALL_STATE(755)] = 45055, - [SMALL_STATE(756)] = 45077, - [SMALL_STATE(757)] = 45099, - [SMALL_STATE(758)] = 45121, - [SMALL_STATE(759)] = 45143, - [SMALL_STATE(760)] = 45165, - [SMALL_STATE(761)] = 45207, - [SMALL_STATE(762)] = 45229, - [SMALL_STATE(763)] = 45251, - [SMALL_STATE(764)] = 45291, - [SMALL_STATE(765)] = 45331, - [SMALL_STATE(766)] = 45371, - [SMALL_STATE(767)] = 45411, - [SMALL_STATE(768)] = 45433, - [SMALL_STATE(769)] = 45473, - [SMALL_STATE(770)] = 45513, - [SMALL_STATE(771)] = 45535, - [SMALL_STATE(772)] = 45557, - [SMALL_STATE(773)] = 45579, - [SMALL_STATE(774)] = 45601, - [SMALL_STATE(775)] = 45623, - [SMALL_STATE(776)] = 45645, - [SMALL_STATE(777)] = 45667, - [SMALL_STATE(778)] = 45689, - [SMALL_STATE(779)] = 45711, - [SMALL_STATE(780)] = 45751, - [SMALL_STATE(781)] = 45773, - [SMALL_STATE(782)] = 45795, - [SMALL_STATE(783)] = 45817, - [SMALL_STATE(784)] = 45839, - [SMALL_STATE(785)] = 45879, - [SMALL_STATE(786)] = 45901, - [SMALL_STATE(787)] = 45941, - [SMALL_STATE(788)] = 45963, - [SMALL_STATE(789)] = 45985, - [SMALL_STATE(790)] = 46007, - [SMALL_STATE(791)] = 46029, - [SMALL_STATE(792)] = 46051, - [SMALL_STATE(793)] = 46073, - [SMALL_STATE(794)] = 46115, - [SMALL_STATE(795)] = 46137, - [SMALL_STATE(796)] = 46179, - [SMALL_STATE(797)] = 46201, - [SMALL_STATE(798)] = 46223, - [SMALL_STATE(799)] = 46245, - [SMALL_STATE(800)] = 46285, - [SMALL_STATE(801)] = 46307, - [SMALL_STATE(802)] = 46329, - [SMALL_STATE(803)] = 46369, - [SMALL_STATE(804)] = 46409, - [SMALL_STATE(805)] = 46431, - [SMALL_STATE(806)] = 46473, - [SMALL_STATE(807)] = 46513, - [SMALL_STATE(808)] = 46535, - [SMALL_STATE(809)] = 46577, - [SMALL_STATE(810)] = 46619, - [SMALL_STATE(811)] = 46641, - [SMALL_STATE(812)] = 46663, - [SMALL_STATE(813)] = 46685, - [SMALL_STATE(814)] = 46707, - [SMALL_STATE(815)] = 46729, - [SMALL_STATE(816)] = 46751, - [SMALL_STATE(817)] = 46773, - [SMALL_STATE(818)] = 46795, - [SMALL_STATE(819)] = 46817, - [SMALL_STATE(820)] = 46839, - [SMALL_STATE(821)] = 46861, - [SMALL_STATE(822)] = 46883, - [SMALL_STATE(823)] = 46905, - [SMALL_STATE(824)] = 46947, - [SMALL_STATE(825)] = 46969, - [SMALL_STATE(826)] = 46991, - [SMALL_STATE(827)] = 47013, - [SMALL_STATE(828)] = 47035, - [SMALL_STATE(829)] = 47057, - [SMALL_STATE(830)] = 47079, - [SMALL_STATE(831)] = 47101, - [SMALL_STATE(832)] = 47123, - [SMALL_STATE(833)] = 47145, - [SMALL_STATE(834)] = 47167, - [SMALL_STATE(835)] = 47189, - [SMALL_STATE(836)] = 47211, - [SMALL_STATE(837)] = 47233, - [SMALL_STATE(838)] = 47255, - [SMALL_STATE(839)] = 47294, - [SMALL_STATE(840)] = 47330, - [SMALL_STATE(841)] = 47366, - [SMALL_STATE(842)] = 47402, - [SMALL_STATE(843)] = 47438, - [SMALL_STATE(844)] = 47474, - [SMALL_STATE(845)] = 47510, - [SMALL_STATE(846)] = 47546, - [SMALL_STATE(847)] = 47579, - [SMALL_STATE(848)] = 47612, - [SMALL_STATE(849)] = 47645, - [SMALL_STATE(850)] = 47678, - [SMALL_STATE(851)] = 47711, - [SMALL_STATE(852)] = 47744, - [SMALL_STATE(853)] = 47777, - [SMALL_STATE(854)] = 47807, - [SMALL_STATE(855)] = 47837, - [SMALL_STATE(856)] = 47867, - [SMALL_STATE(857)] = 47897, - [SMALL_STATE(858)] = 47927, - [SMALL_STATE(859)] = 47961, - [SMALL_STATE(860)] = 47991, - [SMALL_STATE(861)] = 48021, - [SMALL_STATE(862)] = 48055, - [SMALL_STATE(863)] = 48076, - [SMALL_STATE(864)] = 48097, - [SMALL_STATE(865)] = 48118, - [SMALL_STATE(866)] = 48139, - [SMALL_STATE(867)] = 48167, - [SMALL_STATE(868)] = 48192, - [SMALL_STATE(869)] = 48217, - [SMALL_STATE(870)] = 48242, - [SMALL_STATE(871)] = 48267, - [SMALL_STATE(872)] = 48292, - [SMALL_STATE(873)] = 48317, - [SMALL_STATE(874)] = 48342, - [SMALL_STATE(875)] = 48367, - [SMALL_STATE(876)] = 48385, - [SMALL_STATE(877)] = 48403, - [SMALL_STATE(878)] = 48421, - [SMALL_STATE(879)] = 48439, - [SMALL_STATE(880)] = 48457, - [SMALL_STATE(881)] = 48475, - [SMALL_STATE(882)] = 48493, - [SMALL_STATE(883)] = 48511, - [SMALL_STATE(884)] = 48529, - [SMALL_STATE(885)] = 48547, - [SMALL_STATE(886)] = 48565, - [SMALL_STATE(887)] = 48583, - [SMALL_STATE(888)] = 48601, - [SMALL_STATE(889)] = 48619, - [SMALL_STATE(890)] = 48637, - [SMALL_STATE(891)] = 48655, - [SMALL_STATE(892)] = 48673, - [SMALL_STATE(893)] = 48691, - [SMALL_STATE(894)] = 48709, - [SMALL_STATE(895)] = 48727, - [SMALL_STATE(896)] = 48745, - [SMALL_STATE(897)] = 48763, - [SMALL_STATE(898)] = 48781, - [SMALL_STATE(899)] = 48799, - [SMALL_STATE(900)] = 48817, - [SMALL_STATE(901)] = 48835, - [SMALL_STATE(902)] = 48853, - [SMALL_STATE(903)] = 48871, - [SMALL_STATE(904)] = 48889, - [SMALL_STATE(905)] = 48907, - [SMALL_STATE(906)] = 48925, - [SMALL_STATE(907)] = 48943, - [SMALL_STATE(908)] = 48961, - [SMALL_STATE(909)] = 48979, - [SMALL_STATE(910)] = 48997, - [SMALL_STATE(911)] = 49015, - [SMALL_STATE(912)] = 49033, - [SMALL_STATE(913)] = 49051, - [SMALL_STATE(914)] = 49069, - [SMALL_STATE(915)] = 49087, - [SMALL_STATE(916)] = 49105, - [SMALL_STATE(917)] = 49123, - [SMALL_STATE(918)] = 49141, - [SMALL_STATE(919)] = 49159, - [SMALL_STATE(920)] = 49177, - [SMALL_STATE(921)] = 49195, - [SMALL_STATE(922)] = 49213, - [SMALL_STATE(923)] = 49231, - [SMALL_STATE(924)] = 49249, - [SMALL_STATE(925)] = 49267, - [SMALL_STATE(926)] = 49285, - [SMALL_STATE(927)] = 49303, - [SMALL_STATE(928)] = 49321, - [SMALL_STATE(929)] = 49339, - [SMALL_STATE(930)] = 49357, - [SMALL_STATE(931)] = 49375, - [SMALL_STATE(932)] = 49393, - [SMALL_STATE(933)] = 49411, - [SMALL_STATE(934)] = 49420, - [SMALL_STATE(935)] = 49433, - [SMALL_STATE(936)] = 49440, - [SMALL_STATE(937)] = 49447, - [SMALL_STATE(938)] = 49454, - [SMALL_STATE(939)] = 49461, - [SMALL_STATE(940)] = 49468, - [SMALL_STATE(941)] = 49475, - [SMALL_STATE(942)] = 49482, - [SMALL_STATE(943)] = 49489, - [SMALL_STATE(944)] = 49496, - [SMALL_STATE(945)] = 49503, + [SMALL_STATE(219)] = 24709, + [SMALL_STATE(220)] = 24814, + [SMALL_STATE(221)] = 24919, + [SMALL_STATE(222)] = 25024, + [SMALL_STATE(223)] = 25129, + [SMALL_STATE(224)] = 25234, + [SMALL_STATE(225)] = 25339, + [SMALL_STATE(226)] = 25444, + [SMALL_STATE(227)] = 25549, + [SMALL_STATE(228)] = 25654, + [SMALL_STATE(229)] = 25759, + [SMALL_STATE(230)] = 25864, + [SMALL_STATE(231)] = 25969, + [SMALL_STATE(232)] = 26074, + [SMALL_STATE(233)] = 26179, + [SMALL_STATE(234)] = 26284, + [SMALL_STATE(235)] = 26389, + [SMALL_STATE(236)] = 26444, + [SMALL_STATE(237)] = 26499, + [SMALL_STATE(238)] = 26539, + [SMALL_STATE(239)] = 26579, + [SMALL_STATE(240)] = 26619, + [SMALL_STATE(241)] = 26659, + [SMALL_STATE(242)] = 26699, + [SMALL_STATE(243)] = 26739, + [SMALL_STATE(244)] = 26779, + [SMALL_STATE(245)] = 26819, + [SMALL_STATE(246)] = 26859, + [SMALL_STATE(247)] = 26899, + [SMALL_STATE(248)] = 26939, + [SMALL_STATE(249)] = 26979, + [SMALL_STATE(250)] = 27019, + [SMALL_STATE(251)] = 27059, + [SMALL_STATE(252)] = 27099, + [SMALL_STATE(253)] = 27139, + [SMALL_STATE(254)] = 27179, + [SMALL_STATE(255)] = 27219, + [SMALL_STATE(256)] = 27259, + [SMALL_STATE(257)] = 27299, + [SMALL_STATE(258)] = 27339, + [SMALL_STATE(259)] = 27379, + [SMALL_STATE(260)] = 27419, + [SMALL_STATE(261)] = 27459, + [SMALL_STATE(262)] = 27499, + [SMALL_STATE(263)] = 27539, + [SMALL_STATE(264)] = 27579, + [SMALL_STATE(265)] = 27619, + [SMALL_STATE(266)] = 27659, + [SMALL_STATE(267)] = 27699, + [SMALL_STATE(268)] = 27739, + [SMALL_STATE(269)] = 27779, + [SMALL_STATE(270)] = 27819, + [SMALL_STATE(271)] = 27859, + [SMALL_STATE(272)] = 27899, + [SMALL_STATE(273)] = 27939, + [SMALL_STATE(274)] = 27979, + [SMALL_STATE(275)] = 28019, + [SMALL_STATE(276)] = 28059, + [SMALL_STATE(277)] = 28099, + [SMALL_STATE(278)] = 28139, + [SMALL_STATE(279)] = 28179, + [SMALL_STATE(280)] = 28219, + [SMALL_STATE(281)] = 28259, + [SMALL_STATE(282)] = 28299, + [SMALL_STATE(283)] = 28339, + [SMALL_STATE(284)] = 28379, + [SMALL_STATE(285)] = 28419, + [SMALL_STATE(286)] = 28459, + [SMALL_STATE(287)] = 28499, + [SMALL_STATE(288)] = 28539, + [SMALL_STATE(289)] = 28579, + [SMALL_STATE(290)] = 28619, + [SMALL_STATE(291)] = 28659, + [SMALL_STATE(292)] = 28699, + [SMALL_STATE(293)] = 28739, + [SMALL_STATE(294)] = 28779, + [SMALL_STATE(295)] = 28819, + [SMALL_STATE(296)] = 28859, + [SMALL_STATE(297)] = 28899, + [SMALL_STATE(298)] = 28939, + [SMALL_STATE(299)] = 28979, + [SMALL_STATE(300)] = 29019, + [SMALL_STATE(301)] = 29066, + [SMALL_STATE(302)] = 29113, + [SMALL_STATE(303)] = 29160, + [SMALL_STATE(304)] = 29207, + [SMALL_STATE(305)] = 29254, + [SMALL_STATE(306)] = 29301, + [SMALL_STATE(307)] = 29348, + [SMALL_STATE(308)] = 29385, + [SMALL_STATE(309)] = 29422, + [SMALL_STATE(310)] = 29459, + [SMALL_STATE(311)] = 29496, + [SMALL_STATE(312)] = 29533, + [SMALL_STATE(313)] = 29570, + [SMALL_STATE(314)] = 29607, + [SMALL_STATE(315)] = 29644, + [SMALL_STATE(316)] = 29681, + [SMALL_STATE(317)] = 29718, + [SMALL_STATE(318)] = 29755, + [SMALL_STATE(319)] = 29792, + [SMALL_STATE(320)] = 29829, + [SMALL_STATE(321)] = 29866, + [SMALL_STATE(322)] = 29903, + [SMALL_STATE(323)] = 29940, + [SMALL_STATE(324)] = 29977, + [SMALL_STATE(325)] = 30014, + [SMALL_STATE(326)] = 30051, + [SMALL_STATE(327)] = 30088, + [SMALL_STATE(328)] = 30125, + [SMALL_STATE(329)] = 30162, + [SMALL_STATE(330)] = 30199, + [SMALL_STATE(331)] = 30236, + [SMALL_STATE(332)] = 30273, + [SMALL_STATE(333)] = 30310, + [SMALL_STATE(334)] = 30347, + [SMALL_STATE(335)] = 30384, + [SMALL_STATE(336)] = 30421, + [SMALL_STATE(337)] = 30458, + [SMALL_STATE(338)] = 30495, + [SMALL_STATE(339)] = 30532, + [SMALL_STATE(340)] = 30569, + [SMALL_STATE(341)] = 30606, + [SMALL_STATE(342)] = 30643, + [SMALL_STATE(343)] = 30680, + [SMALL_STATE(344)] = 30717, + [SMALL_STATE(345)] = 30754, + [SMALL_STATE(346)] = 30791, + [SMALL_STATE(347)] = 30828, + [SMALL_STATE(348)] = 30865, + [SMALL_STATE(349)] = 30902, + [SMALL_STATE(350)] = 30939, + [SMALL_STATE(351)] = 30976, + [SMALL_STATE(352)] = 31013, + [SMALL_STATE(353)] = 31050, + [SMALL_STATE(354)] = 31087, + [SMALL_STATE(355)] = 31124, + [SMALL_STATE(356)] = 31161, + [SMALL_STATE(357)] = 31198, + [SMALL_STATE(358)] = 31235, + [SMALL_STATE(359)] = 31272, + [SMALL_STATE(360)] = 31309, + [SMALL_STATE(361)] = 31346, + [SMALL_STATE(362)] = 31383, + [SMALL_STATE(363)] = 31420, + [SMALL_STATE(364)] = 31457, + [SMALL_STATE(365)] = 31494, + [SMALL_STATE(366)] = 31531, + [SMALL_STATE(367)] = 31568, + [SMALL_STATE(368)] = 31605, + [SMALL_STATE(369)] = 31642, + [SMALL_STATE(370)] = 31678, + [SMALL_STATE(371)] = 31732, + [SMALL_STATE(372)] = 31768, + [SMALL_STATE(373)] = 31804, + [SMALL_STATE(374)] = 31840, + [SMALL_STATE(375)] = 31894, + [SMALL_STATE(376)] = 31930, + [SMALL_STATE(377)] = 31966, + [SMALL_STATE(378)] = 32020, + [SMALL_STATE(379)] = 32074, + [SMALL_STATE(380)] = 32128, + [SMALL_STATE(381)] = 32164, + [SMALL_STATE(382)] = 32218, + [SMALL_STATE(383)] = 32254, + [SMALL_STATE(384)] = 32290, + [SMALL_STATE(385)] = 32326, + [SMALL_STATE(386)] = 32362, + [SMALL_STATE(387)] = 32398, + [SMALL_STATE(388)] = 32452, + [SMALL_STATE(389)] = 32506, + [SMALL_STATE(390)] = 32542, + [SMALL_STATE(391)] = 32578, + [SMALL_STATE(392)] = 32614, + [SMALL_STATE(393)] = 32650, + [SMALL_STATE(394)] = 32686, + [SMALL_STATE(395)] = 32740, + [SMALL_STATE(396)] = 32776, + [SMALL_STATE(397)] = 32830, + [SMALL_STATE(398)] = 32866, + [SMALL_STATE(399)] = 32902, + [SMALL_STATE(400)] = 32938, + [SMALL_STATE(401)] = 32974, + [SMALL_STATE(402)] = 33010, + [SMALL_STATE(403)] = 33046, + [SMALL_STATE(404)] = 33082, + [SMALL_STATE(405)] = 33118, + [SMALL_STATE(406)] = 33172, + [SMALL_STATE(407)] = 33208, + [SMALL_STATE(408)] = 33244, + [SMALL_STATE(409)] = 33280, + [SMALL_STATE(410)] = 33334, + [SMALL_STATE(411)] = 33370, + [SMALL_STATE(412)] = 33406, + [SMALL_STATE(413)] = 33442, + [SMALL_STATE(414)] = 33478, + [SMALL_STATE(415)] = 33532, + [SMALL_STATE(416)] = 33568, + [SMALL_STATE(417)] = 33604, + [SMALL_STATE(418)] = 33640, + [SMALL_STATE(419)] = 33676, + [SMALL_STATE(420)] = 33730, + [SMALL_STATE(421)] = 33784, + [SMALL_STATE(422)] = 33820, + [SMALL_STATE(423)] = 33856, + [SMALL_STATE(424)] = 33892, + [SMALL_STATE(425)] = 33928, + [SMALL_STATE(426)] = 33982, + [SMALL_STATE(427)] = 34036, + [SMALL_STATE(428)] = 34072, + [SMALL_STATE(429)] = 34108, + [SMALL_STATE(430)] = 34144, + [SMALL_STATE(431)] = 34180, + [SMALL_STATE(432)] = 34216, + [SMALL_STATE(433)] = 34252, + [SMALL_STATE(434)] = 34306, + [SMALL_STATE(435)] = 34360, + [SMALL_STATE(436)] = 34414, + [SMALL_STATE(437)] = 34450, + [SMALL_STATE(438)] = 34486, + [SMALL_STATE(439)] = 34522, + [SMALL_STATE(440)] = 34558, + [SMALL_STATE(441)] = 34612, + [SMALL_STATE(442)] = 34648, + [SMALL_STATE(443)] = 34702, + [SMALL_STATE(444)] = 34756, + [SMALL_STATE(445)] = 34792, + [SMALL_STATE(446)] = 34828, + [SMALL_STATE(447)] = 34864, + [SMALL_STATE(448)] = 34918, + [SMALL_STATE(449)] = 34960, + [SMALL_STATE(450)] = 35014, + [SMALL_STATE(451)] = 35068, + [SMALL_STATE(452)] = 35104, + [SMALL_STATE(453)] = 35140, + [SMALL_STATE(454)] = 35176, + [SMALL_STATE(455)] = 35212, + [SMALL_STATE(456)] = 35266, + [SMALL_STATE(457)] = 35302, + [SMALL_STATE(458)] = 35356, + [SMALL_STATE(459)] = 35392, + [SMALL_STATE(460)] = 35446, + [SMALL_STATE(461)] = 35482, + [SMALL_STATE(462)] = 35517, + [SMALL_STATE(463)] = 35551, + [SMALL_STATE(464)] = 35585, + [SMALL_STATE(465)] = 35619, + [SMALL_STATE(466)] = 35653, + [SMALL_STATE(467)] = 35686, + [SMALL_STATE(468)] = 35744, + [SMALL_STATE(469)] = 35774, + [SMALL_STATE(470)] = 35804, + [SMALL_STATE(471)] = 35834, + [SMALL_STATE(472)] = 35892, + [SMALL_STATE(473)] = 35922, + [SMALL_STATE(474)] = 35952, + [SMALL_STATE(475)] = 35982, + [SMALL_STATE(476)] = 36040, + [SMALL_STATE(477)] = 36070, + [SMALL_STATE(478)] = 36128, + [SMALL_STATE(479)] = 36158, + [SMALL_STATE(480)] = 36194, + [SMALL_STATE(481)] = 36224, + [SMALL_STATE(482)] = 36282, + [SMALL_STATE(483)] = 36312, + [SMALL_STATE(484)] = 36342, + [SMALL_STATE(485)] = 36372, + [SMALL_STATE(486)] = 36402, + [SMALL_STATE(487)] = 36432, + [SMALL_STATE(488)] = 36462, + [SMALL_STATE(489)] = 36492, + [SMALL_STATE(490)] = 36522, + [SMALL_STATE(491)] = 36552, + [SMALL_STATE(492)] = 36582, + [SMALL_STATE(493)] = 36612, + [SMALL_STATE(494)] = 36642, + [SMALL_STATE(495)] = 36672, + [SMALL_STATE(496)] = 36702, + [SMALL_STATE(497)] = 36732, + [SMALL_STATE(498)] = 36762, + [SMALL_STATE(499)] = 36792, + [SMALL_STATE(500)] = 36822, + [SMALL_STATE(501)] = 36852, + [SMALL_STATE(502)] = 36918, + [SMALL_STATE(503)] = 36948, + [SMALL_STATE(504)] = 36978, + [SMALL_STATE(505)] = 37044, + [SMALL_STATE(506)] = 37074, + [SMALL_STATE(507)] = 37104, + [SMALL_STATE(508)] = 37134, + [SMALL_STATE(509)] = 37164, + [SMALL_STATE(510)] = 37194, + [SMALL_STATE(511)] = 37260, + [SMALL_STATE(512)] = 37290, + [SMALL_STATE(513)] = 37320, + [SMALL_STATE(514)] = 37350, + [SMALL_STATE(515)] = 37380, + [SMALL_STATE(516)] = 37410, + [SMALL_STATE(517)] = 37476, + [SMALL_STATE(518)] = 37506, + [SMALL_STATE(519)] = 37536, + [SMALL_STATE(520)] = 37566, + [SMALL_STATE(521)] = 37596, + [SMALL_STATE(522)] = 37626, + [SMALL_STATE(523)] = 37684, + [SMALL_STATE(524)] = 37714, + [SMALL_STATE(525)] = 37744, + [SMALL_STATE(526)] = 37774, + [SMALL_STATE(527)] = 37804, + [SMALL_STATE(528)] = 37834, + [SMALL_STATE(529)] = 37900, + [SMALL_STATE(530)] = 37930, + [SMALL_STATE(531)] = 37960, + [SMALL_STATE(532)] = 37990, + [SMALL_STATE(533)] = 38020, + [SMALL_STATE(534)] = 38078, + [SMALL_STATE(535)] = 38108, + [SMALL_STATE(536)] = 38166, + [SMALL_STATE(537)] = 38232, + [SMALL_STATE(538)] = 38262, + [SMALL_STATE(539)] = 38292, + [SMALL_STATE(540)] = 38322, + [SMALL_STATE(541)] = 38352, + [SMALL_STATE(542)] = 38418, + [SMALL_STATE(543)] = 38448, + [SMALL_STATE(544)] = 38478, + [SMALL_STATE(545)] = 38508, + [SMALL_STATE(546)] = 38565, + [SMALL_STATE(547)] = 38622, + [SMALL_STATE(548)] = 38679, + [SMALL_STATE(549)] = 38736, + [SMALL_STATE(550)] = 38793, + [SMALL_STATE(551)] = 38846, + [SMALL_STATE(552)] = 38903, + [SMALL_STATE(553)] = 38956, + [SMALL_STATE(554)] = 38991, + [SMALL_STATE(555)] = 39026, + [SMALL_STATE(556)] = 39079, + [SMALL_STATE(557)] = 39132, + [SMALL_STATE(558)] = 39185, + [SMALL_STATE(559)] = 39238, + [SMALL_STATE(560)] = 39291, + [SMALL_STATE(561)] = 39344, + [SMALL_STATE(562)] = 39401, + [SMALL_STATE(563)] = 39458, + [SMALL_STATE(564)] = 39511, + [SMALL_STATE(565)] = 39564, + [SMALL_STATE(566)] = 39621, + [SMALL_STATE(567)] = 39674, + [SMALL_STATE(568)] = 39731, + [SMALL_STATE(569)] = 39788, + [SMALL_STATE(570)] = 39841, + [SMALL_STATE(571)] = 39894, + [SMALL_STATE(572)] = 39951, + [SMALL_STATE(573)] = 40008, + [SMALL_STATE(574)] = 40065, + [SMALL_STATE(575)] = 40118, + [SMALL_STATE(576)] = 40144, + [SMALL_STATE(577)] = 40170, + [SMALL_STATE(578)] = 40206, + [SMALL_STATE(579)] = 40242, + [SMALL_STATE(580)] = 40276, + [SMALL_STATE(581)] = 40310, + [SMALL_STATE(582)] = 40344, + [SMALL_STATE(583)] = 40378, + [SMALL_STATE(584)] = 40404, + [SMALL_STATE(585)] = 40430, + [SMALL_STATE(586)] = 40456, + [SMALL_STATE(587)] = 40482, + [SMALL_STATE(588)] = 40508, + [SMALL_STATE(589)] = 40534, + [SMALL_STATE(590)] = 40560, + [SMALL_STATE(591)] = 40586, + [SMALL_STATE(592)] = 40612, + [SMALL_STATE(593)] = 40638, + [SMALL_STATE(594)] = 40664, + [SMALL_STATE(595)] = 40690, + [SMALL_STATE(596)] = 40716, + [SMALL_STATE(597)] = 40742, + [SMALL_STATE(598)] = 40768, + [SMALL_STATE(599)] = 40794, + [SMALL_STATE(600)] = 40820, + [SMALL_STATE(601)] = 40846, + [SMALL_STATE(602)] = 40872, + [SMALL_STATE(603)] = 40898, + [SMALL_STATE(604)] = 40924, + [SMALL_STATE(605)] = 40950, + [SMALL_STATE(606)] = 40976, + [SMALL_STATE(607)] = 41002, + [SMALL_STATE(608)] = 41028, + [SMALL_STATE(609)] = 41054, + [SMALL_STATE(610)] = 41080, + [SMALL_STATE(611)] = 41106, + [SMALL_STATE(612)] = 41132, + [SMALL_STATE(613)] = 41158, + [SMALL_STATE(614)] = 41184, + [SMALL_STATE(615)] = 41210, + [SMALL_STATE(616)] = 41236, + [SMALL_STATE(617)] = 41262, + [SMALL_STATE(618)] = 41288, + [SMALL_STATE(619)] = 41314, + [SMALL_STATE(620)] = 41340, + [SMALL_STATE(621)] = 41366, + [SMALL_STATE(622)] = 41392, + [SMALL_STATE(623)] = 41418, + [SMALL_STATE(624)] = 41444, + [SMALL_STATE(625)] = 41470, + [SMALL_STATE(626)] = 41496, + [SMALL_STATE(627)] = 41522, + [SMALL_STATE(628)] = 41548, + [SMALL_STATE(629)] = 41574, + [SMALL_STATE(630)] = 41600, + [SMALL_STATE(631)] = 41626, + [SMALL_STATE(632)] = 41652, + [SMALL_STATE(633)] = 41678, + [SMALL_STATE(634)] = 41704, + [SMALL_STATE(635)] = 41730, + [SMALL_STATE(636)] = 41756, + [SMALL_STATE(637)] = 41782, + [SMALL_STATE(638)] = 41808, + [SMALL_STATE(639)] = 41834, + [SMALL_STATE(640)] = 41860, + [SMALL_STATE(641)] = 41886, + [SMALL_STATE(642)] = 41912, + [SMALL_STATE(643)] = 41938, + [SMALL_STATE(644)] = 41965, + [SMALL_STATE(645)] = 41992, + [SMALL_STATE(646)] = 42019, + [SMALL_STATE(647)] = 42046, + [SMALL_STATE(648)] = 42073, + [SMALL_STATE(649)] = 42100, + [SMALL_STATE(650)] = 42127, + [SMALL_STATE(651)] = 42154, + [SMALL_STATE(652)] = 42181, + [SMALL_STATE(653)] = 42208, + [SMALL_STATE(654)] = 42235, + [SMALL_STATE(655)] = 42262, + [SMALL_STATE(656)] = 42289, + [SMALL_STATE(657)] = 42316, + [SMALL_STATE(658)] = 42343, + [SMALL_STATE(659)] = 42370, + [SMALL_STATE(660)] = 42397, + [SMALL_STATE(661)] = 42424, + [SMALL_STATE(662)] = 42451, + [SMALL_STATE(663)] = 42478, + [SMALL_STATE(664)] = 42505, + [SMALL_STATE(665)] = 42532, + [SMALL_STATE(666)] = 42559, + [SMALL_STATE(667)] = 42586, + [SMALL_STATE(668)] = 42613, + [SMALL_STATE(669)] = 42640, + [SMALL_STATE(670)] = 42667, + [SMALL_STATE(671)] = 42694, + [SMALL_STATE(672)] = 42721, + [SMALL_STATE(673)] = 42748, + [SMALL_STATE(674)] = 42775, + [SMALL_STATE(675)] = 42802, + [SMALL_STATE(676)] = 42829, + [SMALL_STATE(677)] = 42856, + [SMALL_STATE(678)] = 42883, + [SMALL_STATE(679)] = 42910, + [SMALL_STATE(680)] = 42937, + [SMALL_STATE(681)] = 42964, + [SMALL_STATE(682)] = 42991, + [SMALL_STATE(683)] = 43018, + [SMALL_STATE(684)] = 43045, + [SMALL_STATE(685)] = 43072, + [SMALL_STATE(686)] = 43099, + [SMALL_STATE(687)] = 43126, + [SMALL_STATE(688)] = 43153, + [SMALL_STATE(689)] = 43180, + [SMALL_STATE(690)] = 43207, + [SMALL_STATE(691)] = 43234, + [SMALL_STATE(692)] = 43261, + [SMALL_STATE(693)] = 43288, + [SMALL_STATE(694)] = 43315, + [SMALL_STATE(695)] = 43342, + [SMALL_STATE(696)] = 43369, + [SMALL_STATE(697)] = 43396, + [SMALL_STATE(698)] = 43423, + [SMALL_STATE(699)] = 43450, + [SMALL_STATE(700)] = 43477, + [SMALL_STATE(701)] = 43504, + [SMALL_STATE(702)] = 43531, + [SMALL_STATE(703)] = 43558, + [SMALL_STATE(704)] = 43585, + [SMALL_STATE(705)] = 43612, + [SMALL_STATE(706)] = 43636, + [SMALL_STATE(707)] = 43660, + [SMALL_STATE(708)] = 43684, + [SMALL_STATE(709)] = 43708, + [SMALL_STATE(710)] = 43732, + [SMALL_STATE(711)] = 43756, + [SMALL_STATE(712)] = 43780, + [SMALL_STATE(713)] = 43804, + [SMALL_STATE(714)] = 43828, + [SMALL_STATE(715)] = 43852, + [SMALL_STATE(716)] = 43876, + [SMALL_STATE(717)] = 43900, + [SMALL_STATE(718)] = 43924, + [SMALL_STATE(719)] = 43948, + [SMALL_STATE(720)] = 43972, + [SMALL_STATE(721)] = 43996, + [SMALL_STATE(722)] = 44020, + [SMALL_STATE(723)] = 44044, + [SMALL_STATE(724)] = 44068, + [SMALL_STATE(725)] = 44092, + [SMALL_STATE(726)] = 44130, + [SMALL_STATE(727)] = 44155, + [SMALL_STATE(728)] = 44180, + [SMALL_STATE(729)] = 44205, + [SMALL_STATE(730)] = 44230, + [SMALL_STATE(731)] = 44255, + [SMALL_STATE(732)] = 44280, + [SMALL_STATE(733)] = 44305, + [SMALL_STATE(734)] = 44330, + [SMALL_STATE(735)] = 44355, + [SMALL_STATE(736)] = 44380, + [SMALL_STATE(737)] = 44405, + [SMALL_STATE(738)] = 44430, + [SMALL_STATE(739)] = 44455, + [SMALL_STATE(740)] = 44480, + [SMALL_STATE(741)] = 44505, + [SMALL_STATE(742)] = 44530, + [SMALL_STATE(743)] = 44555, + [SMALL_STATE(744)] = 44580, + [SMALL_STATE(745)] = 44605, + [SMALL_STATE(746)] = 44630, + [SMALL_STATE(747)] = 44655, + [SMALL_STATE(748)] = 44680, + [SMALL_STATE(749)] = 44725, + [SMALL_STATE(750)] = 44770, + [SMALL_STATE(751)] = 44815, + [SMALL_STATE(752)] = 44840, + [SMALL_STATE(753)] = 44865, + [SMALL_STATE(754)] = 44910, + [SMALL_STATE(755)] = 44935, + [SMALL_STATE(756)] = 44960, + [SMALL_STATE(757)] = 44985, + [SMALL_STATE(758)] = 45010, + [SMALL_STATE(759)] = 45055, + [SMALL_STATE(760)] = 45080, + [SMALL_STATE(761)] = 45105, + [SMALL_STATE(762)] = 45150, + [SMALL_STATE(763)] = 45175, + [SMALL_STATE(764)] = 45200, + [SMALL_STATE(765)] = 45225, + [SMALL_STATE(766)] = 45250, + [SMALL_STATE(767)] = 45275, + [SMALL_STATE(768)] = 45300, + [SMALL_STATE(769)] = 45325, + [SMALL_STATE(770)] = 45350, + [SMALL_STATE(771)] = 45395, + [SMALL_STATE(772)] = 45440, + [SMALL_STATE(773)] = 45465, + [SMALL_STATE(774)] = 45510, + [SMALL_STATE(775)] = 45555, + [SMALL_STATE(776)] = 45580, + [SMALL_STATE(777)] = 45605, + [SMALL_STATE(778)] = 45630, + [SMALL_STATE(779)] = 45655, + [SMALL_STATE(780)] = 45680, + [SMALL_STATE(781)] = 45705, + [SMALL_STATE(782)] = 45730, + [SMALL_STATE(783)] = 45755, + [SMALL_STATE(784)] = 45780, + [SMALL_STATE(785)] = 45805, + [SMALL_STATE(786)] = 45830, + [SMALL_STATE(787)] = 45855, + [SMALL_STATE(788)] = 45880, + [SMALL_STATE(789)] = 45905, + [SMALL_STATE(790)] = 45930, + [SMALL_STATE(791)] = 45955, + [SMALL_STATE(792)] = 45980, + [SMALL_STATE(793)] = 46005, + [SMALL_STATE(794)] = 46050, + [SMALL_STATE(795)] = 46095, + [SMALL_STATE(796)] = 46120, + [SMALL_STATE(797)] = 46165, + [SMALL_STATE(798)] = 46190, + [SMALL_STATE(799)] = 46235, + [SMALL_STATE(800)] = 46260, + [SMALL_STATE(801)] = 46285, + [SMALL_STATE(802)] = 46310, + [SMALL_STATE(803)] = 46335, + [SMALL_STATE(804)] = 46380, + [SMALL_STATE(805)] = 46425, + [SMALL_STATE(806)] = 46450, + [SMALL_STATE(807)] = 46475, + [SMALL_STATE(808)] = 46500, + [SMALL_STATE(809)] = 46545, + [SMALL_STATE(810)] = 46590, + [SMALL_STATE(811)] = 46615, + [SMALL_STATE(812)] = 46640, + [SMALL_STATE(813)] = 46682, + [SMALL_STATE(814)] = 46722, + [SMALL_STATE(815)] = 46744, + [SMALL_STATE(816)] = 46784, + [SMALL_STATE(817)] = 46824, + [SMALL_STATE(818)] = 46864, + [SMALL_STATE(819)] = 46904, + [SMALL_STATE(820)] = 46944, + [SMALL_STATE(821)] = 46984, + [SMALL_STATE(822)] = 47026, + [SMALL_STATE(823)] = 47068, + [SMALL_STATE(824)] = 47108, + [SMALL_STATE(825)] = 47148, + [SMALL_STATE(826)] = 47170, + [SMALL_STATE(827)] = 47210, + [SMALL_STATE(828)] = 47250, + [SMALL_STATE(829)] = 47292, + [SMALL_STATE(830)] = 47314, + [SMALL_STATE(831)] = 47356, + [SMALL_STATE(832)] = 47396, + [SMALL_STATE(833)] = 47418, + [SMALL_STATE(834)] = 47458, + [SMALL_STATE(835)] = 47500, + [SMALL_STATE(836)] = 47542, + [SMALL_STATE(837)] = 47582, + [SMALL_STATE(838)] = 47604, + [SMALL_STATE(839)] = 47640, + [SMALL_STATE(840)] = 47676, + [SMALL_STATE(841)] = 47712, + [SMALL_STATE(842)] = 47748, + [SMALL_STATE(843)] = 47784, + [SMALL_STATE(844)] = 47820, + [SMALL_STATE(845)] = 47856, + [SMALL_STATE(846)] = 47889, + [SMALL_STATE(847)] = 47922, + [SMALL_STATE(848)] = 47955, + [SMALL_STATE(849)] = 47988, + [SMALL_STATE(850)] = 48021, + [SMALL_STATE(851)] = 48054, + [SMALL_STATE(852)] = 48087, + [SMALL_STATE(853)] = 48121, + [SMALL_STATE(854)] = 48151, + [SMALL_STATE(855)] = 48181, + [SMALL_STATE(856)] = 48211, + [SMALL_STATE(857)] = 48241, + [SMALL_STATE(858)] = 48271, + [SMALL_STATE(859)] = 48301, + [SMALL_STATE(860)] = 48335, + [SMALL_STATE(861)] = 48365, + [SMALL_STATE(862)] = 48386, + [SMALL_STATE(863)] = 48407, + [SMALL_STATE(864)] = 48428, + [SMALL_STATE(865)] = 48449, + [SMALL_STATE(866)] = 48474, + [SMALL_STATE(867)] = 48499, + [SMALL_STATE(868)] = 48524, + [SMALL_STATE(869)] = 48549, + [SMALL_STATE(870)] = 48574, + [SMALL_STATE(871)] = 48599, + [SMALL_STATE(872)] = 48624, + [SMALL_STATE(873)] = 48649, + [SMALL_STATE(874)] = 48667, + [SMALL_STATE(875)] = 48685, + [SMALL_STATE(876)] = 48703, + [SMALL_STATE(877)] = 48721, + [SMALL_STATE(878)] = 48739, + [SMALL_STATE(879)] = 48757, + [SMALL_STATE(880)] = 48775, + [SMALL_STATE(881)] = 48793, + [SMALL_STATE(882)] = 48811, + [SMALL_STATE(883)] = 48829, + [SMALL_STATE(884)] = 48847, + [SMALL_STATE(885)] = 48865, + [SMALL_STATE(886)] = 48883, + [SMALL_STATE(887)] = 48901, + [SMALL_STATE(888)] = 48919, + [SMALL_STATE(889)] = 48937, + [SMALL_STATE(890)] = 48955, + [SMALL_STATE(891)] = 48973, + [SMALL_STATE(892)] = 48991, + [SMALL_STATE(893)] = 49009, + [SMALL_STATE(894)] = 49027, + [SMALL_STATE(895)] = 49045, + [SMALL_STATE(896)] = 49063, + [SMALL_STATE(897)] = 49081, + [SMALL_STATE(898)] = 49099, + [SMALL_STATE(899)] = 49117, + [SMALL_STATE(900)] = 49135, + [SMALL_STATE(901)] = 49153, + [SMALL_STATE(902)] = 49171, + [SMALL_STATE(903)] = 49189, + [SMALL_STATE(904)] = 49207, + [SMALL_STATE(905)] = 49225, + [SMALL_STATE(906)] = 49243, + [SMALL_STATE(907)] = 49261, + [SMALL_STATE(908)] = 49279, + [SMALL_STATE(909)] = 49297, + [SMALL_STATE(910)] = 49315, + [SMALL_STATE(911)] = 49333, + [SMALL_STATE(912)] = 49351, + [SMALL_STATE(913)] = 49369, + [SMALL_STATE(914)] = 49387, + [SMALL_STATE(915)] = 49405, + [SMALL_STATE(916)] = 49423, + [SMALL_STATE(917)] = 49441, + [SMALL_STATE(918)] = 49459, + [SMALL_STATE(919)] = 49477, + [SMALL_STATE(920)] = 49495, + [SMALL_STATE(921)] = 49513, + [SMALL_STATE(922)] = 49531, + [SMALL_STATE(923)] = 49549, + [SMALL_STATE(924)] = 49567, + [SMALL_STATE(925)] = 49585, + [SMALL_STATE(926)] = 49603, + [SMALL_STATE(927)] = 49621, + [SMALL_STATE(928)] = 49639, + [SMALL_STATE(929)] = 49657, + [SMALL_STATE(930)] = 49675, + [SMALL_STATE(931)] = 49693, + [SMALL_STATE(932)] = 49702, + [SMALL_STATE(933)] = 49715, + [SMALL_STATE(934)] = 49722, + [SMALL_STATE(935)] = 49729, + [SMALL_STATE(936)] = 49736, + [SMALL_STATE(937)] = 49743, + [SMALL_STATE(938)] = 49750, + [SMALL_STATE(939)] = 49757, + [SMALL_STATE(940)] = 49764, + [SMALL_STATE(941)] = 49771, + [SMALL_STATE(942)] = 49778, + [SMALL_STATE(943)] = 49785, + [SMALL_STATE(944)] = 49792, + [SMALL_STATE(945)] = 49799, }; static TSParseActionEntry ts_parse_actions[] = { @@ -44024,1127 +44280,1135 @@ static TSParseActionEntry ts_parse_actions[] = { [3] = {.entry = {.count = 1, .reusable = true}}, SHIFT_EXTRA(), [5] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source, 0), [7] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), - [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), - [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(29), - [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(369), + [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(408), [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), - [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), - [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), - [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), - [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(760), - [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(878), - [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), - [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), - [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), - [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), - [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(185), - [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), - [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [51] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), - [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(459), - [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), - [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(450), - [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(464), - [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), - [63] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), - [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(413), - [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), - [69] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), - [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(375), - [73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), - [75] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), - [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(407), - [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), - [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(438), - [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), - [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), - [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(447), - [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), - [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), - [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(376), + [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), + [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), + [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(835), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(883), + [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), + [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), + [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), + [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), + [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(188), + [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [51] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(461), + [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), + [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(381), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(466), + [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [63] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(433), + [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [69] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(447), + [73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [75] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(420), + [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), + [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), + [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(414), + [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), + [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(409), + [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), + [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(379), [97] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 19), SHIFT_REPEAT(9), - [100] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 19), SHIFT_REPEAT(109), - [103] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 19), SHIFT_REPEAT(459), - [106] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 19), SHIFT_REPEAT(442), - [109] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 19), SHIFT_REPEAT(459), - [112] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 19), SHIFT_REPEAT(369), + [100] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 19), SHIFT_REPEAT(111), + [103] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 19), SHIFT_REPEAT(461), + [106] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 19), SHIFT_REPEAT(446), + [109] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 19), SHIFT_REPEAT(461), + [112] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 19), SHIFT_REPEAT(408), [115] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 19), SHIFT_REPEAT(475), - [118] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 19), SHIFT_REPEAT(479), - [121] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 19), SHIFT_REPEAT(3), + [118] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 19), SHIFT_REPEAT(477), + [121] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 19), SHIFT_REPEAT(6), [124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 19), - [126] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 19), SHIFT_REPEAT(937), - [129] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 19), SHIFT_REPEAT(760), - [132] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 19), SHIFT_REPEAT(878), - [135] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 19), SHIFT_REPEAT(881), - [138] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 19), SHIFT_REPEAT(194), - [141] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 19), SHIFT_REPEAT(754), - [144] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 19), SHIFT_REPEAT(544), - [147] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 19), SHIFT_REPEAT(190), - [150] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 19), SHIFT_REPEAT(189), - [153] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 19), SHIFT_REPEAT(752), - [156] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 19), SHIFT_REPEAT(186), - [159] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 19), SHIFT_REPEAT(185), - [162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), - [164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), - [166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), - [168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), - [170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), - [174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), - [178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), - [180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), - [182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), - [184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), - [188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), - [190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), - [192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), - [194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), - [196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), - [198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), - [200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), - [202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), - [204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), - [206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), - [208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), - [212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), - [214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), + [126] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 19), SHIFT_REPEAT(933), + [129] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 19), SHIFT_REPEAT(835), + [132] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 19), SHIFT_REPEAT(883), + [135] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 19), SHIFT_REPEAT(886), + [138] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 19), SHIFT_REPEAT(200), + [141] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 19), SHIFT_REPEAT(833), + [144] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 19), SHIFT_REPEAT(560), + [147] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 19), SHIFT_REPEAT(194), + [150] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 19), SHIFT_REPEAT(192), + [153] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 19), SHIFT_REPEAT(770), + [156] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 19), SHIFT_REPEAT(189), + [159] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 19), SHIFT_REPEAT(188), + [162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), + [166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), + [170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), + [172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), + [174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), + [182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), + [186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), + [188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), + [190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), + [192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), + [194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), + [200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), + [204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), + [210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), [216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source, 1), - [218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(51), + [218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), + [220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(61), [222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), + [224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), [226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), - [230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), - [234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), - [240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), - [242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), - [244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), - [248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), - [250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), - [252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), - [254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), - [256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), - [258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), - [260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), - [262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), - [264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), - [270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), - [272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), - [274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), + [234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), + [236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), + [240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), + [242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), + [248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), + [250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), + [252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), + [254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), + [256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), + [260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), + [262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), + [268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), + [272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), + [274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), [276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), [278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), [280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), - [284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), - [286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2), - [288] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2), SHIFT_REPEAT(51), - [291] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2), SHIFT_REPEAT(109), - [294] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2), SHIFT_REPEAT(442), - [297] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_repeat1, 2), SHIFT_REPEAT(51), - [300] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_repeat1, 2), SHIFT_REPEAT(369), - [303] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2), SHIFT_REPEAT(475), - [306] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2), SHIFT_REPEAT(479), - [309] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2), SHIFT_REPEAT(3), - [312] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2), SHIFT_REPEAT(937), - [315] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_repeat1, 2), SHIFT_REPEAT(760), - [318] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_repeat1, 2), SHIFT_REPEAT(878), - [321] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2), SHIFT_REPEAT(881), - [324] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2), SHIFT_REPEAT(194), - [327] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2), SHIFT_REPEAT(754), - [330] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2), SHIFT_REPEAT(544), - [333] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2), SHIFT_REPEAT(190), - [336] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2), SHIFT_REPEAT(189), - [339] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2), SHIFT_REPEAT(752), - [342] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2), SHIFT_REPEAT(186), - [345] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_repeat1, 2), SHIFT_REPEAT(185), - [348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), - [350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), - [352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), - [354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), - [356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), - [358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), - [360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), - [362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), - [364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), - [366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), - [368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), - [374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), - [376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), + [282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), + [290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), + [296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), + [300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), + [302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), + [306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), + [308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2), + [316] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2), SHIFT_REPEAT(61), + [319] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2), SHIFT_REPEAT(111), + [322] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2), SHIFT_REPEAT(446), + [325] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_repeat1, 2), SHIFT_REPEAT(61), + [328] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_repeat1, 2), SHIFT_REPEAT(408), + [331] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2), SHIFT_REPEAT(475), + [334] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2), SHIFT_REPEAT(477), + [337] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2), SHIFT_REPEAT(6), + [340] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2), SHIFT_REPEAT(933), + [343] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_repeat1, 2), SHIFT_REPEAT(835), + [346] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_repeat1, 2), SHIFT_REPEAT(883), + [349] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2), SHIFT_REPEAT(886), + [352] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2), SHIFT_REPEAT(200), + [355] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2), SHIFT_REPEAT(833), + [358] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2), SHIFT_REPEAT(560), + [361] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2), SHIFT_REPEAT(194), + [364] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2), SHIFT_REPEAT(192), + [367] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2), SHIFT_REPEAT(770), + [370] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2), SHIFT_REPEAT(189), + [373] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_repeat1, 2), SHIFT_REPEAT(188), + [376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), [378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), - [380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), - [382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(743), - [384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), - [386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), - [388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), - [390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(528), - [392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(490), - [394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), - [396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), - [398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(795), - [400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(904), - [402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), - [404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), - [408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), - [410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), - [416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(64), - [420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), - [422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), - [424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(815), - [426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(731), - [428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), - [430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), - [432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(809), - [434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(886), - [436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), - [438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), - [442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), - [444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), - [446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), - [450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(128), - [454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), - [456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), - [458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(583), - [460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(634), - [462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), - [464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), - [466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(823), - [468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(897), - [470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), - [472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), - [474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), - [476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), - [478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), - [480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), - [482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), - [484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(121), - [488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), - [490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(814), - [492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), - [494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(812), - [496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), - [498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(422), - [500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), - [502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(811), - [504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), - [506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(589), - [508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), - [510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), - [512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(804), - [514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), - [516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), - [518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(791), - [520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), - [522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(417), - [524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), - [526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), - [528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(790), - [530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), - [532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(368), - [534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), - [536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), - [538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(789), - [540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), - [542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(780), - [544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), - [546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(414), - [548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), - [550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(775), - [552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), - [554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(412), - [556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), - [558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(774), - [560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), - [562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(773), - [564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), - [570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(252), - [572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(244), - [574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), - [576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), - [578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(805), - [580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(913), - [582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), - [584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), - [586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), - [588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), - [590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), - [592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), - [596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(92), - [600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), - [602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), - [604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(380), - [606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(255), - [612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), - [616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(451), - [618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), - [622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(371), - [624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), - [628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(373), - [630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), - [632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), - [634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(256), - [636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), - [638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(258), - [642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), - [644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(259), - [648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), - [650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), - [652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(609), - [654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), - [658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(611), - [660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), - [662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), - [664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(614), - [666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), - [670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(618), - [672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), - [674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(621), - [676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), - [678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(493), - [680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), - [682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), - [684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(762), - [686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), - [688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(494), - [690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), - [696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(337), - [698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(329), - [700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), - [702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), - [704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(793), - [706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(926), - [708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), - [710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), - [714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), - [716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), - [722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(151), - [726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), - [728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(495), - [730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), - [732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), - [734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(657), - [736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(681), - [738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), - [740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), - [742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(808), - [744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(882), - [746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), - [748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), - [750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), - [752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), - [754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), - [756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), - [760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(179), - [764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), - [766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(622), - [768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), - [770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(601), - [772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), - [774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(269), - [776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), - [778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(654), - [780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), - [782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(604), - [784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(367), - [790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), - [792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(266), - [794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), - [796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(581), - [798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), - [800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), - [802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(751), - [804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), - [806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(635), - [808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), - [810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(819), - [812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(265), - [816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(263), - [820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), - [822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(831), - [824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), - [826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(594), - [828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), - [830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(262), - [832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), - [836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(237), - [838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), - [842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(602), - [844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), - [848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(605), - [850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), - [854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(612), - [856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), - [860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(613), - [862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(295), + [380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), + [382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(749), + [384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), + [388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), + [390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(494), + [392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(489), + [394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), + [396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), + [398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(821), + [400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(884), + [402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), + [404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), + [408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), + [410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), + [416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(100), + [420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), + [422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), + [424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(790), + [426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(746), + [428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), + [430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), + [432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(830), + [434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(887), + [436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), + [438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), + [442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), + [444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), + [450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(68), + [454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), + [456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(787), + [458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), + [460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(539), + [462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), + [466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(729), + [468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), + [470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), + [472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(730), + [474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), + [478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(733), + [480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), + [482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(423), + [484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), + [486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), + [488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(781), + [490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), + [492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), + [494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(737), + [496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), + [498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(470), + [500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), + [502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(502), + [504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), + [506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(499), + [508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), + [510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(428), + [512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), + [514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(487), + [516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), + [518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(369), + [520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), + [522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), + [524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(585), + [526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(583), + [528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), + [530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), + [532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(822), + [534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(918), + [536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), + [538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), + [542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), + [544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), + [550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), + [552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(121), + [554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), + [556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(586), + [558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), + [560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(415), + [562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), + [564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(587), + [566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(412), + [570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), + [572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(591), + [574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(252), + [582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(242), + [584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), + [586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), + [588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(812), + [590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(913), + [592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), + [594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), + [598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), + [600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), + [606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(94), + [610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(382), + [616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(255), + [622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), + [626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(418), + [628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(371), + [634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(373), + [640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(256), + [646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(258), + [652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(259), + [658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), + [662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(598), + [664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), + [668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(599), + [670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), + [674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(600), + [676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), + [680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(603), + [682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), + [684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(606), + [686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(542), + [692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), + [694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), + [696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(694), + [698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(646), + [700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), + [702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), + [704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(834), + [706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(873), + [708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), + [710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), + [714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), + [716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), + [722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(202), + [726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), + [730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(544), + [732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), + [734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(679), + [736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), + [740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(538), + [742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), + [746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(338), + [750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(330), + [752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), + [754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), + [756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(828), + [758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(930), + [760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), + [762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), + [766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), + [768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), + [774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(150), + [778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), + [782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(837), + [784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), + [786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(607), + [788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(266), + [792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), + [794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(609), + [796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), + [798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(610), + [800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(380), + [806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(263), + [810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), + [812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(613), + [814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), + [816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(791), + [818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(237), + [822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(262), + [826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), + [828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(811), + [830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), + [832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(622), + [834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(240), + [838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(298), + [844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), + [848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(627), + [850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), + [854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(629), + [856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), + [860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(628), + [862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), + [866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(633), [868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), - [870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), - [872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(625), - [874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), + [872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(637), + [874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), [876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), [878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(292), - [880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), - [884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(837), - [886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), - [890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(290), - [892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), - [894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(309), - [896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(310), - [900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), - [902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(397), - [904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), - [906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(311), - [908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), - [910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(315), - [912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(321), - [918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), - [920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), - [922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(322), - [924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), - [926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(323), - [930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), - [932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(403), - [934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), - [936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(327), - [940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), - [942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(404), - [944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(332), - [948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), - [950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(406), - [952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), - [954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(333), - [956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(346), - [960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(348), - [964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), - [966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), - [968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(833), - [970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), - [972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), - [974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(825), - [976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(355), - [980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), - [982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), - [984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(824), - [986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(361), - [990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(354), - [996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), - [998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [1000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(352), - [1002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [1004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), - [1006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(349), - [1008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [1010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), - [1012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(347), - [1014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [1016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), - [1018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(797), - [1020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [1022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [1024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(343), - [1026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), - [1028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(701), - [1030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), - [1032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(695), - [1034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), - [1036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(282), - [1038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [1040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), - [1042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(515), - [1044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), - [1046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(694), - [1048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [1050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), - [1052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(509), - [1054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [1056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), - [1058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(521), - [1060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), - [1062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(678), - [1064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), - [1066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(278), - [1068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), - [1070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(277), - [1072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), - [1074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(276), - [1076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [1078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), - [1080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(686), - [1082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), - [1084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(453), - [1086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [1088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), - [1090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(671), - [1092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [1094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), - [1096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(670), - [1098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [1100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), - [1102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(642), - [1104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [1106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), - [1108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(665), - [1110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [1112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), - [1114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(523), - [1116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [1118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), - [1120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(526), - [1122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), - [1124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(466), - [1126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), - [1128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(661), - [1130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), - [1132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(582), - [1134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [1136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), - [1138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(700), - [1140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), - [1142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(539), - [1144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), - [1146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(529), - [1148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), - [1150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(520), - [1152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [1154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), - [1156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(699), - [1158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), - [1160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(660), - [1162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), - [1164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), - [1166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(385), - [1168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [1170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), - [1172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(416), - [1174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), - [1176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(518), - [1178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), - [1180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(645), - [1182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), - [1184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), - [1186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(386), - [1188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), - [1190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), - [1192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(452), - [1194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), - [1196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(503), - [1198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), - [1200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(501), - [1202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [1204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), - [1206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(697), - [1208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), - [1210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), - [1212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(443), - [1214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [1216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), - [1218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(487), - [1220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), - [1222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(658), - [1224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [1226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), - [1228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(691), - [1230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [1232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), - [1234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(480), - [1236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), - [1238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), - [1240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(473), - [1242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [1244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), - [1246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(696), - [1248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [1250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), - [1252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(476), - [1254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), - [1256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), - [1258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(630), - [1260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), - [1262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [1264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), - [1266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(723), - [1268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), - [1270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [1272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(242), - [1274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), - [1276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), - [1278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(707), + [880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(290), + [886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), + [888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), + [890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(484), + [892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(311), + [896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), + [898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(810), + [900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(312), + [904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), + [906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(401), + [908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(313), + [912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), + [914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(317), + [916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(323), + [922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(324), + [928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(325), + [934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), + [936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(406), + [938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(328), + [944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), + [946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(407), + [948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(333), + [952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), + [954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(439), + [956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(334), + [960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), + [962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(347), + [964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(350), + [968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(288), + [974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(357), + [978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), + [980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(365), + [982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), + [986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(486), + [988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(354), + [994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), + [998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(802), + [1000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [1002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [1004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(352), + [1006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [1008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), + [1010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(747), + [1012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [1014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [1016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(349), + [1018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [1020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [1022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(348), + [1024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [1026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [1028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(343), + [1030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), + [1032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(660), + [1034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), + [1036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(659), + [1038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), + [1040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(658), + [1042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [1044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), + [1046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(756), + [1048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [1050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(280), + [1052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), + [1054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(654), + [1056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [1058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), + [1060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(762), + [1062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), + [1064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(276), + [1066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [1068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(274), + [1070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [1072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(273), + [1074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [1076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), + [1078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(662), + [1080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [1082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), + [1084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(682), + [1086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [1088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), + [1090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(683), + [1092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [1094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), + [1096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(644), + [1098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [1100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), + [1102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(688), + [1104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), + [1106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(451), + [1108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), + [1110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(691), + [1112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [1114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), + [1116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(488), + [1118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), + [1120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(692), + [1122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [1124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), + [1126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(534), + [1128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), + [1130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [1132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(509), + [1134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), + [1136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), + [1138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(803), + [1140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [1142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [1144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(530), + [1146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [1148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), + [1150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(642), + [1152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), + [1154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(497), + [1156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), + [1158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(498), + [1160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), + [1162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(768), + [1164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [1166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(506), + [1168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [1170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(507), + [1172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), + [1174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(695), + [1176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), + [1178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(760), + [1180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), + [1182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), + [1184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(460), + [1186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [1188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), + [1190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(456), + [1192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), + [1194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(512), + [1196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [1198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), + [1200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(667), + [1202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [1204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), + [1206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(422), + [1208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), + [1210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(751), + [1212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [1214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), + [1216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(391), + [1218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), + [1220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(775), + [1222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), + [1224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(825), + [1226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), + [1228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(698), + [1230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [1232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), + [1234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(670), + [1236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [1238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), + [1240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(671), + [1242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), + [1244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), + [1246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(445), + [1248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [1250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), + [1252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(673), + [1254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [1256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), + [1258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(674), + [1260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [1262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [1264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), + [1266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(709), + [1268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [1270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [1272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(243), + [1274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [1276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), + [1278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(714), [1280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), - [1282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), - [1284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(705), - [1286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), - [1288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), - [1290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(725), - [1292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), - [1294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), - [1296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(239), - [1298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), - [1300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), - [1302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(722), - [1304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [1306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), - [1308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(718), - [1310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), - [1312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), - [1314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(712), - [1316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), - [1318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), - [1320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(711), - [1322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), - [1324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), - [1326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(710), - [1328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), - [1330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), - [1332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(925), - [1334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [1336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), - [1338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(721), - [1340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), - [1342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), - [1344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(545), - [1346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), - [1348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), - [1350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(708), - [1352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), - [1354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(555), - [1356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), - [1358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(243), - [1360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), - [1362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(715), - [1364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), - [1366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(717), - [1368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), - [1370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(713), - [1372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), - [1374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(720), - [1376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), - [1378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(888), - [1380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), - [1382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(719), - [1384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), - [1386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(706), - [1388] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 4, .production_id = 36), SHIFT(756), - [1391] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 4, .production_id = 36), SHIFT(99), - [1394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 4, .production_id = 36), - [1396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(217), - [1398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [1400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_clause, 4, .production_id = 36), - [1402] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 3, .production_id = 31), SHIFT(756), - [1405] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 3, .production_id = 31), SHIFT(99), - [1408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 3, .production_id = 31), + [1282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), + [1284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(712), + [1286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), + [1288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), + [1290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(715), + [1292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [1294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), + [1296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(711), + [1298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [1300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), + [1302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(705), + [1304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [1306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [1308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(239), + [1310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [1312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), + [1314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(717), + [1316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [1318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), + [1320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(721), + [1322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), + [1324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), + [1326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(722), + [1328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [1330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), + [1332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(723), + [1334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [1336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), + [1338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(708), + [1340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [1342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), + [1344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(890), + [1346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [1348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), + [1350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(577), + [1352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [1354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), + [1356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(553), + [1358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), + [1360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(554), + [1362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), + [1364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(706), + [1366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), + [1368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(720), + [1370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), + [1372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(896), + [1374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), + [1376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(719), + [1378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), + [1380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(718), + [1382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), + [1384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(578), + [1386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [1388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(245), + [1390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), + [1392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(707), + [1394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), + [1396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(710), + [1398] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 3, .production_id = 31), SHIFT(832), + [1401] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 3, .production_id = 31), SHIFT(106), + [1404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 3, .production_id = 31), + [1406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(206), + [1408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), [1410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_clause, 3, .production_id = 31), - [1412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_read_cond_lit, 3, .production_id = 23), - [1414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_read_cond_lit, 3, .production_id = 23), - [1416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_splicing_read_cond_lit, 3, .production_id = 22), - [1418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_splicing_read_cond_lit, 3, .production_id = 22), - [1420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_quoting_lit, 3, .production_id = 24), - [1422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_var_quoting_lit, 3, .production_id = 24), - [1424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_vec_lit, 2, .production_id = 13), - [1426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_vec_lit, 2, .production_id = 13), - [1428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_part, 2), - [1430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_part, 2), - [1432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_lit, 2, .production_id = 12), - [1434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_lit, 2, .production_id = 12), - [1436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_str_lit, 1), - [1438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_str_lit, 1), - [1440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_part, 3), - [1442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_part, 3), - [1444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_part, 4), - [1446] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_part, 4), - [1448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sym_lit, 1), - [1450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sym_lit, 1), - [1452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_lit, 1, .production_id = 4), - [1454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_lit, 1, .production_id = 4), - [1456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_vec_lit, 1, .production_id = 5), - [1458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_vec_lit, 1, .production_id = 5), - [1460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_set_lit, 1, .production_id = 6), - [1462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_set_lit, 1, .production_id = 6), - [1464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__bare_list_lit, 2, .production_id = 8), - [1466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__bare_list_lit, 2, .production_id = 8), - [1468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__bare_vec_lit, 2, .production_id = 10), - [1470] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__bare_vec_lit, 2, .production_id = 10), - [1472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_read_cond_lit, 2, .production_id = 11), - [1474] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_read_cond_lit, 2, .production_id = 11), - [1476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_splicing_read_cond_lit, 2, .production_id = 11), - [1478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_splicing_read_cond_lit, 2, .production_id = 11), - [1480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_quoting_lit, 2, .production_id = 7), - [1482] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_var_quoting_lit, 2, .production_id = 7), - [1484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sym_val_lit, 2, .production_id = 7), - [1486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sym_val_lit, 2, .production_id = 7), - [1488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_evaling_lit, 2, .production_id = 7), - [1490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_evaling_lit, 2, .production_id = 7), - [1492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derefing_lit, 2, .production_id = 7), - [1494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_derefing_lit, 2, .production_id = 7), - [1496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoting_lit, 2, .production_id = 7), - [1498] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoting_lit, 2, .production_id = 7), - [1500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_syn_quoting_lit, 2, .production_id = 7), - [1502] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_syn_quoting_lit, 2, .production_id = 7), - [1504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquote_splicing_lit, 2, .production_id = 7), - [1506] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquote_splicing_lit, 2, .production_id = 7), - [1508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquoting_lit, 2, .production_id = 7), - [1510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquoting_lit, 2, .production_id = 7), - [1512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sym_lit, 2, .production_id = 1), - [1514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sym_lit, 2, .production_id = 1), - [1516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_splicing_read_cond_lit, 3, .production_id = 23), - [1518] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_splicing_read_cond_lit, 3, .production_id = 23), - [1520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquoting_lit, 3, .production_id = 16), - [1522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquoting_lit, 3, .production_id = 16), - [1524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquote_splicing_lit, 3, .production_id = 16), - [1526] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquote_splicing_lit, 3, .production_id = 16), - [1528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_syn_quoting_lit, 3, .production_id = 16), - [1530] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_syn_quoting_lit, 3, .production_id = 16), - [1532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoting_lit, 3, .production_id = 16), - [1534] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoting_lit, 3, .production_id = 16), - [1536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derefing_lit, 3, .production_id = 16), - [1538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_derefing_lit, 3, .production_id = 16), - [1540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_evaling_lit, 3, .production_id = 16), - [1542] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_evaling_lit, 3, .production_id = 16), - [1544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sym_val_lit, 3, .production_id = 16), - [1546] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sym_val_lit, 3, .production_id = 16), - [1548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_quoting_lit, 3, .production_id = 16), - [1550] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_var_quoting_lit, 3, .production_id = 16), - [1552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_evaling_lit, 3, .production_id = 24), - [1554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_evaling_lit, 3, .production_id = 24), - [1556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_read_cond_lit, 3, .production_id = 22), - [1558] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_read_cond_lit, 3, .production_id = 22), - [1560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__bare_vec_lit, 3, .production_id = 21), - [1562] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__bare_vec_lit, 3, .production_id = 21), - [1564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun, 5, .production_id = 33), - [1566] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun, 5, .production_id = 33), - [1568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_macro, 5, .production_id = 32), - [1570] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_macro, 5, .production_id = 32), - [1572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__bare_set_lit, 3, .production_id = 20), - [1574] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__bare_set_lit, 3, .production_id = 20), - [1576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquote_splicing_lit, 4, .production_id = 30), - [1578] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquote_splicing_lit, 4, .production_id = 30), - [1580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoting_lit, 4, .production_id = 30), - [1582] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoting_lit, 4, .production_id = 30), - [1584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derefing_lit, 4, .production_id = 30), - [1586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_derefing_lit, 4, .production_id = 30), - [1588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_evaling_lit, 4, .production_id = 30), - [1590] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_evaling_lit, 4, .production_id = 30), - [1592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_quoting_lit, 4, .production_id = 30), - [1594] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_var_quoting_lit, 4, .production_id = 30), - [1596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_splicing_read_cond_lit, 4, .production_id = 29), - [1598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_splicing_read_cond_lit, 4, .production_id = 29), - [1600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_read_cond_lit, 4, .production_id = 29), - [1602] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_read_cond_lit, 4, .production_id = 29), - [1604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__bare_set_lit, 4, .production_id = 28), - [1606] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__bare_set_lit, 4, .production_id = 28), - [1608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun, 4, .production_id = 27), - [1610] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun, 4, .production_id = 27), - [1612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun, 4, .production_id = 25), - [1614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun, 4, .production_id = 25), - [1616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_macro, 4, .production_id = 25), - [1618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_macro, 4, .production_id = 25), - [1620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__bare_list_lit, 3, .production_id = 18), - [1622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__bare_list_lit, 3, .production_id = 18), - [1624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquote_splicing_lit, 3, .production_id = 24), - [1626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquote_splicing_lit, 3, .production_id = 24), - [1628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun, 3, .production_id = 17), - [1630] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun, 3, .production_id = 17), - [1632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoting_lit, 3, .production_id = 24), - [1634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoting_lit, 3, .production_id = 24), - [1636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_macro, 3, .production_id = 17), - [1638] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_macro, 3, .production_id = 17), - [1640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_set_lit, 2, .production_id = 14), - [1642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_set_lit, 2, .production_id = 14), - [1644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derefing_lit, 3, .production_id = 24), - [1646] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_derefing_lit, 3, .production_id = 24), - [1648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 1), - [1650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__bare_list_lit_repeat1, 1), - [1652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(401), - [1654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(398), - [1656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(409), - [1658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(440), - [1660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(424), - [1662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(433), - [1664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(387), - [1666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dis_expr, 2, .production_id = 7), - [1668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dis_expr, 2, .production_id = 7), - [1670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dis_expr, 3, .production_id = 16), - [1672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dis_expr, 3, .production_id = 16), - [1674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), - [1676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), - [1678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), - [1680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [1682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), - [1684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), - [1686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [1688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [1690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [1692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), - [1694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), - [1696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), - [1698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), - [1700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), - [1702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [1704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), - [1706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), - [1708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), + [1412] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 4, .production_id = 36), SHIFT(832), + [1415] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 4, .production_id = 36), SHIFT(106), + [1418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 4, .production_id = 36), + [1420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_clause, 4, .production_id = 36), + [1422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoting_lit, 3, .production_id = 16), + [1424] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoting_lit, 3, .production_id = 16), + [1426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_macro, 5, .production_id = 32), + [1428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_macro, 5, .production_id = 32), + [1430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_part, 2), + [1432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_part, 2), + [1434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquoting_lit, 3, .production_id = 16), + [1436] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquoting_lit, 3, .production_id = 16), + [1438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_str_lit, 1), + [1440] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_str_lit, 1), + [1442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sym_lit, 1), + [1444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sym_lit, 1), + [1446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_part, 3), + [1448] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_part, 3), + [1450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_lit, 1, .production_id = 4), + [1452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_lit, 1, .production_id = 4), + [1454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_part, 4), + [1456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_part, 4), + [1458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_vec_lit, 1, .production_id = 5), + [1460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_vec_lit, 1, .production_id = 5), + [1462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_set_lit, 1, .production_id = 6), + [1464] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_set_lit, 1, .production_id = 6), + [1466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__bare_list_lit, 2, .production_id = 8), + [1468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__bare_list_lit, 2, .production_id = 8), + [1470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__bare_vec_lit, 2, .production_id = 10), + [1472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__bare_vec_lit, 2, .production_id = 10), + [1474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_read_cond_lit, 2, .production_id = 11), + [1476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_read_cond_lit, 2, .production_id = 11), + [1478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_splicing_read_cond_lit, 2, .production_id = 11), + [1480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_splicing_read_cond_lit, 2, .production_id = 11), + [1482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_quoting_lit, 2, .production_id = 7), + [1484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_var_quoting_lit, 2, .production_id = 7), + [1486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sym_val_lit, 2, .production_id = 7), + [1488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sym_val_lit, 2, .production_id = 7), + [1490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_evaling_lit, 2, .production_id = 7), + [1492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_evaling_lit, 2, .production_id = 7), + [1494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derefing_lit, 2, .production_id = 7), + [1496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_derefing_lit, 2, .production_id = 7), + [1498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoting_lit, 2, .production_id = 7), + [1500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoting_lit, 2, .production_id = 7), + [1502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_syn_quoting_lit, 2, .production_id = 7), + [1504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_syn_quoting_lit, 2, .production_id = 7), + [1506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquote_splicing_lit, 2, .production_id = 7), + [1508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquote_splicing_lit, 2, .production_id = 7), + [1510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquoting_lit, 2, .production_id = 7), + [1512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquoting_lit, 2, .production_id = 7), + [1514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sym_lit, 2, .production_id = 1), + [1516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sym_lit, 2, .production_id = 1), + [1518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_syn_quoting_lit, 3, .production_id = 16), + [1520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_syn_quoting_lit, 3, .production_id = 16), + [1522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquote_splicing_lit, 3, .production_id = 16), + [1524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquote_splicing_lit, 3, .production_id = 16), + [1526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derefing_lit, 3, .production_id = 16), + [1528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_derefing_lit, 3, .production_id = 16), + [1530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_evaling_lit, 3, .production_id = 16), + [1532] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_evaling_lit, 3, .production_id = 16), + [1534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sym_val_lit, 3, .production_id = 16), + [1536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sym_val_lit, 3, .production_id = 16), + [1538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_quoting_lit, 3, .production_id = 16), + [1540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_var_quoting_lit, 3, .production_id = 16), + [1542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_splicing_read_cond_lit, 3, .production_id = 22), + [1544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_splicing_read_cond_lit, 3, .production_id = 22), + [1546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_read_cond_lit, 3, .production_id = 22), + [1548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_read_cond_lit, 3, .production_id = 22), + [1550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__bare_vec_lit, 3, .production_id = 21), + [1552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__bare_vec_lit, 3, .production_id = 21), + [1554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__bare_set_lit, 3, .production_id = 20), + [1556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__bare_set_lit, 3, .production_id = 20), + [1558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun, 5, .production_id = 33), + [1560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun, 5, .production_id = 33), + [1562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_read_cond_lit, 3, .production_id = 23), + [1564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_read_cond_lit, 3, .production_id = 23), + [1566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquote_splicing_lit, 4, .production_id = 30), + [1568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquote_splicing_lit, 4, .production_id = 30), + [1570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoting_lit, 4, .production_id = 30), + [1572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoting_lit, 4, .production_id = 30), + [1574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__bare_list_lit, 3, .production_id = 18), + [1576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__bare_list_lit, 3, .production_id = 18), + [1578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derefing_lit, 4, .production_id = 30), + [1580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_derefing_lit, 4, .production_id = 30), + [1582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_evaling_lit, 4, .production_id = 30), + [1584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_evaling_lit, 4, .production_id = 30), + [1586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_quoting_lit, 4, .production_id = 30), + [1588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_var_quoting_lit, 4, .production_id = 30), + [1590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_splicing_read_cond_lit, 4, .production_id = 29), + [1592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_splicing_read_cond_lit, 4, .production_id = 29), + [1594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_read_cond_lit, 4, .production_id = 29), + [1596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_read_cond_lit, 4, .production_id = 29), + [1598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__bare_set_lit, 4, .production_id = 28), + [1600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__bare_set_lit, 4, .production_id = 28), + [1602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun, 4, .production_id = 27), + [1604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun, 4, .production_id = 27), + [1606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun, 4, .production_id = 25), + [1608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun, 4, .production_id = 25), + [1610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_macro, 4, .production_id = 25), + [1612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_macro, 4, .production_id = 25), + [1614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun, 3, .production_id = 17), + [1616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun, 3, .production_id = 17), + [1618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquote_splicing_lit, 3, .production_id = 24), + [1620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquote_splicing_lit, 3, .production_id = 24), + [1622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_macro, 3, .production_id = 17), + [1624] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_macro, 3, .production_id = 17), + [1626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoting_lit, 3, .production_id = 24), + [1628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoting_lit, 3, .production_id = 24), + [1630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_set_lit, 2, .production_id = 14), + [1632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_set_lit, 2, .production_id = 14), + [1634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derefing_lit, 3, .production_id = 24), + [1636] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_derefing_lit, 3, .production_id = 24), + [1638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_vec_lit, 2, .production_id = 13), + [1640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_vec_lit, 2, .production_id = 13), + [1642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_splicing_read_cond_lit, 3, .production_id = 23), + [1644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_splicing_read_cond_lit, 3, .production_id = 23), + [1646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_evaling_lit, 3, .production_id = 24), + [1648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_evaling_lit, 3, .production_id = 24), + [1650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_quoting_lit, 3, .production_id = 24), + [1652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_var_quoting_lit, 3, .production_id = 24), + [1654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_lit, 2, .production_id = 12), + [1656] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_lit, 2, .production_id = 12), + [1658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 1), + [1660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__bare_list_lit_repeat1, 1), + [1662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(443), + [1664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(450), + [1666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(374), + [1668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(388), + [1670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(459), + [1672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(370), + [1674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(440), + [1676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dis_expr, 2, .production_id = 7), + [1678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dis_expr, 2, .production_id = 7), + [1680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dis_expr, 3, .production_id = 16), + [1682] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dis_expr, 3, .production_id = 16), + [1684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), + [1686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [1688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), + [1690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), + [1692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [1694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [1696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [1698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [1700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [1702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), + [1704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), + [1706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), + [1708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), [1710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), - [1712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), - [1714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), - [1716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), - [1718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), - [1720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), - [1722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), - [1724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), - [1726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [1728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), - [1730] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_loop_macro_repeat1, 2), SHIFT_REPEAT(419), - [1733] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_loop_macro_repeat1, 2), SHIFT_REPEAT(202), - [1736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_loop_macro_repeat1, 2), - [1738] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_loop_macro_repeat1, 2), SHIFT_REPEAT(216), - [1741] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_loop_macro_repeat1, 2), SHIFT_REPEAT(838), - [1744] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_loop_macro_repeat1, 2), SHIFT_REPEAT(214), - [1747] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_loop_macro_repeat1, 2), SHIFT_REPEAT(213), - [1750] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_loop_macro_repeat1, 2), SHIFT_REPEAT(212), - [1753] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_loop_macro_repeat1, 2), SHIFT_REPEAT(211), - [1756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), - [1758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), - [1760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), - [1762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), - [1764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), - [1766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [1768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), - [1770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), - [1772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [1774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), - [1776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), - [1778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), - [1780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), - [1782] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(448), - [1785] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(109), - [1788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), - [1790] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_dis_expr_repeat1, 2), - [1792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), - [1794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [1796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 1, .production_id = 9), - [1798] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__bare_list_lit_repeat1, 1, .production_id = 9), - [1800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun_header, 3, .production_id = 26), - [1802] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun_header, 3, .production_id = 26), - [1804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun_header, 5, .production_id = 37), - [1806] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun_header, 5, .production_id = 37), - [1808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun_header, 4, .production_id = 35), - [1810] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun_header, 4, .production_id = 35), - [1812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun_header, 4, .production_id = 34), - [1814] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun_header, 4, .production_id = 34), - [1816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun_keyword, 1), - [1818] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun_keyword, 1), - [1820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), - [1822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [1824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), - [1826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), - [1828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), - [1830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), - [1832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), - [1834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), - [1836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), - [1838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(899), - [1840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), - [1842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), - [1844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), - [1846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), - [1848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [1850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), - [1852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [1854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), - [1856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), - [1858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [1860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(876), - [1862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), - [1864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [1866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), - [1868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), - [1870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), - [1872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), - [1874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [1876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(928), - [1878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), - [1880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), - [1882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), - [1884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), - [1886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), - [1888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), - [1890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), - [1892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), - [1894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), - [1896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), - [1898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), - [1900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(927), - [1902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), - [1904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [1906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), - [1908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), - [1910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [1912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [1914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), - [1916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(902), - [1918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), - [1920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), - [1922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), - [1924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [1926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [1928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), - [1930] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(510), - [1933] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(168), - [1936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), - [1938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(921), - [1940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), - [1942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), - [1944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), - [1946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [1948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), - [1950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), - [1952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), - [1954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(891), - [1956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), - [1958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), - [1960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), - [1962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [1964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [1966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [1968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), - [1970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), - [1972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), - [1974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), - [1976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accumulation_clause, 2), - [1978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [1980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), - [1982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), - [1984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), - [1986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), - [1988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), - [1990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), - [1992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), - [1994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), - [1996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accumulation_clause, 3), - [1998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [2000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), - [2002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), - [2004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), - [2006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), - [2008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), - [2010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), - [2012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), - [2014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), - [2016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), - [2018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), - [2020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), - [2022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), - [2024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), - [2026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [2028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), - [2030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(208), - [2032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__metadata_lit, 2, .production_id = 3), - [2034] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__metadata_lit, 2, .production_id = 3), - [2036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__metadata_lit, 2, .production_id = 2), - [2038] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__metadata_lit, 2, .production_id = 2), - [2040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), - [2042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__metadata_lit, 1, .production_id = 3), - [2044] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__metadata_lit, 1, .production_id = 3), - [2046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), - [2048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__metadata_lit, 1, .production_id = 2), - [2050] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__metadata_lit, 1, .production_id = 2), - [2052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accumulation_clause, 4), - [2054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [2056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accumulation_clause, 5), - [2058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 5, .production_id = 36), - [2060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_clause, 2), - [2062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_condition_clause, 2), - [2064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_termination_clause, 2), - [2066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_clause, 3), - [2068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_clause, 1), - [2070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_condition_clause, 3), - [2072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_sym_lit_repeat1, 2, .production_id = 15), - [2074] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sym_lit_repeat1, 2, .production_id = 15), SHIFT_REPEAT(475), - [2077] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sym_lit_repeat1, 2, .production_id = 15), SHIFT_REPEAT(479), - [2080] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_sym_lit_repeat1, 2, .production_id = 15), - [2082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_termination_clause, 3), - [2084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 7), - [2086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accumulation_clause, 7), - [2088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 6), - [2090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accumulation_clause, 6), - [2092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 5), - [2094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 4, .production_id = 31), - [2096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 4), - [2098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), - [2100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), - [2102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_old_meta_lit, 3, .production_id = 16), - [2104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_old_meta_lit, 3, .production_id = 16), - [2106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), - [2108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_lit, 2, .production_id = 7), - [2110] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_meta_lit, 2, .production_id = 7), - [2112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__bare_map_lit, 2, .production_id = 8), - [2114] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__bare_map_lit, 2, .production_id = 8), - [2116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_lit, 3, .production_id = 16), - [2118] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_meta_lit, 3, .production_id = 16), - [2120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map_lit, 2, .production_id = 12), - [2122] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map_lit, 2, .production_id = 12), - [2124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__bare_map_lit, 3, .production_id = 18), - [2126] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__bare_map_lit, 3, .production_id = 18), - [2128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), - [2130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), - [2132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), - [2134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), - [2136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), - [2138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_old_meta_lit, 2, .production_id = 7), - [2140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_old_meta_lit, 2, .production_id = 7), - [2142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map_lit, 1, .production_id = 4), - [2144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map_lit, 1, .production_id = 4), - [2146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), - [2148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), - [2150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), - [2152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), - [2154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), - [2156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(205), - [2158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), - [2160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [2162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_sym_lit_repeat1, 1, .production_id = 1), - [2164] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_sym_lit_repeat1, 1, .production_id = 1), - [2166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), - [2168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), - [2170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), - [2172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), - [2174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), - [2176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [2178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), - [2180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), - [2182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), - [2184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [2186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(204), - [2188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), - [2190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), - [2192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), - [2194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), - [2196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), - [2198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), - [2200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), - [2202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), - [2204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), - [2206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), - [2208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), - [2210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), - [2212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), - [2214] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sym_lit_repeat1, 2, .production_id = 15), SHIFT_REPEAT(470), - [2217] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sym_lit_repeat1, 2, .production_id = 15), SHIFT_REPEAT(472), - [2220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), - [2222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), - [2224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), - [2226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), - [2228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), - [2230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), - [2232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), - [2234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), - [2236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), - [2238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), - [2240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), - [2242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), - [2244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), - [2246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), - [2248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), - [2250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), - [2252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), - [2254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), - [2256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), - [2258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), - [2260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), - [2262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), - [2264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), - [2266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), - [2268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), - [2270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), - [2272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), - [2274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [2276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), - [2278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), + [1712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), + [1714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [1716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), + [1718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), + [1720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), + [1722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [1724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), + [1726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), + [1728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), + [1730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), + [1732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [1734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), + [1736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [1738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), + [1740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), + [1742] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_loop_macro_repeat1, 2), SHIFT_REPEAT(425), + [1745] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_loop_macro_repeat1, 2), SHIFT_REPEAT(180), + [1748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_loop_macro_repeat1, 2), + [1750] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_loop_macro_repeat1, 2), SHIFT_REPEAT(218), + [1753] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_loop_macro_repeat1, 2), SHIFT_REPEAT(217), + [1756] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_loop_macro_repeat1, 2), SHIFT_REPEAT(216), + [1759] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_loop_macro_repeat1, 2), SHIFT_REPEAT(214), + [1762] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_loop_macro_repeat1, 2), SHIFT_REPEAT(213), + [1765] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_loop_macro_repeat1, 2), SHIFT_REPEAT(212), + [1768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [1770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [1772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), + [1774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), + [1776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), + [1778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), + [1780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [1782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [1784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), + [1786] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(448), + [1789] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(111), + [1792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), + [1794] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_dis_expr_repeat1, 2), + [1796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [1798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), + [1800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [1802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), + [1804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [1806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 1, .production_id = 9), + [1808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__bare_list_lit_repeat1, 1, .production_id = 9), + [1810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun_header, 5, .production_id = 37), + [1812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun_header, 5, .production_id = 37), + [1814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun_header, 4, .production_id = 34), + [1816] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun_header, 4, .production_id = 34), + [1818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun_header, 4, .production_id = 35), + [1820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun_header, 4, .production_id = 35), + [1822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun_header, 3, .production_id = 26), + [1824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun_header, 3, .production_id = 26), + [1826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun_keyword, 1), + [1828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun_keyword, 1), + [1830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), + [1832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [1834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), + [1836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), + [1838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [1840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), + [1842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), + [1844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), + [1846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), + [1848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), + [1850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), + [1852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), + [1854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), + [1856] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(479), + [1859] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(167), + [1862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), + [1864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), + [1866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(888), + [1868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), + [1870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [1872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), + [1874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [1876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [1878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [1880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [1882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(924), + [1884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), + [1886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [1888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), + [1890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), + [1892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [1894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), + [1896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [1898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(926), + [1900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), + [1902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [1904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), + [1906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [1908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [1910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [1912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), + [1914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(910), + [1916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), + [1918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [1920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), + [1922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [1924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [1926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [1928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), + [1930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), + [1932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(905), + [1934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), + [1936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [1938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), + [1940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [1942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [1944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [1946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), + [1948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(899), + [1950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), + [1952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [1954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), + [1956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [1958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), + [1960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [1962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), + [1964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(874), + [1966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), + [1968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [1970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), + [1972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [1974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [1976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [1978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), + [1980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [1982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), + [1984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), + [1986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), + [1988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), + [1990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), + [1992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [1994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), + [1996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), + [1998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), + [2000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), + [2002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), + [2004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), + [2006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), + [2008] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_accumulation_clause, 2), SHIFT(944), + [2011] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_accumulation_clause, 2), SHIFT(180), + [2014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accumulation_clause, 2), + [2016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [2018] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_accumulation_clause, 3), SHIFT(941), + [2021] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_accumulation_clause, 3), SHIFT(180), + [2024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accumulation_clause, 3), + [2026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [2028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), + [2030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), + [2032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), + [2034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), + [2036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), + [2038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), + [2040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), + [2042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), + [2044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), + [2046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), + [2048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [2050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [2052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(210), + [2054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__metadata_lit, 2, .production_id = 3), + [2056] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__metadata_lit, 2, .production_id = 3), + [2058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__metadata_lit, 2, .production_id = 2), + [2060] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__metadata_lit, 2, .production_id = 2), + [2062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), + [2064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__metadata_lit, 1, .production_id = 3), + [2066] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__metadata_lit, 1, .production_id = 3), + [2068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), + [2070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__metadata_lit, 1, .production_id = 2), + [2072] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__metadata_lit, 1, .production_id = 2), + [2074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accumulation_clause, 6), + [2076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 7), + [2078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accumulation_clause, 7), + [2080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 6), + [2082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 5), + [2084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 5, .production_id = 36), + [2086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accumulation_clause, 5), + [2088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 4), + [2090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 4, .production_id = 31), + [2092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accumulation_clause, 4), + [2094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_termination_clause, 3), + [2096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_condition_clause, 3), + [2098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_clause, 3), + [2100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_termination_clause, 2), + [2102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_condition_clause, 2), + [2104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_clause, 2), + [2106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_clause, 1), + [2108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_sym_lit_repeat1, 2, .production_id = 15), + [2110] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sym_lit_repeat1, 2, .production_id = 15), SHIFT_REPEAT(475), + [2113] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sym_lit_repeat1, 2, .production_id = 15), SHIFT_REPEAT(477), + [2116] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_sym_lit_repeat1, 2, .production_id = 15), + [2118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), + [2120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), + [2122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), + [2124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), + [2126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), + [2128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__bare_map_lit, 2, .production_id = 8), + [2130] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__bare_map_lit, 2, .production_id = 8), + [2132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_lit, 3, .production_id = 16), + [2134] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_meta_lit, 3, .production_id = 16), + [2136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map_lit, 2, .production_id = 12), + [2138] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map_lit, 2, .production_id = 12), + [2140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), + [2142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_old_meta_lit, 3, .production_id = 16), + [2144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_old_meta_lit, 3, .production_id = 16), + [2146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_lit, 2, .production_id = 7), + [2148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_meta_lit, 2, .production_id = 7), + [2150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map_lit, 1, .production_id = 4), + [2152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map_lit, 1, .production_id = 4), + [2154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), + [2156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), + [2158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_old_meta_lit, 2, .production_id = 7), + [2160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_old_meta_lit, 2, .production_id = 7), + [2162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), + [2164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), + [2166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__bare_map_lit, 3, .production_id = 18), + [2168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__bare_map_lit, 3, .production_id = 18), + [2170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), + [2172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), + [2174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [2176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [2178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(204), + [2180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), + [2182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), + [2184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), + [2186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), + [2188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [2190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), + [2192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), + [2194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_sym_lit_repeat1, 1, .production_id = 1), + [2196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_sym_lit_repeat1, 1, .production_id = 1), + [2198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [2200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), + [2202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [2204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(208), + [2206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), + [2208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [2210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [2212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), + [2214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), + [2216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), + [2218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), + [2220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), + [2222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), + [2224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), + [2226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), + [2228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), + [2230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), + [2232] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sym_lit_repeat1, 2, .production_id = 15), SHIFT_REPEAT(471), + [2235] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sym_lit_repeat1, 2, .production_id = 15), SHIFT_REPEAT(481), + [2238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), + [2240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), + [2242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), + [2244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), + [2246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), + [2248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [2250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), + [2252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), + [2254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), + [2256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), + [2258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), + [2260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), + [2262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [2264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), + [2266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), + [2268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [2270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), + [2272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), + [2274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), + [2276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), + [2278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), [2280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), - [2282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), - [2284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), - [2286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_dimension, 2), - [2288] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_read_cond_lit_repeat1, 2), SHIFT_REPEAT(934), - [2291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_read_cond_lit_repeat1, 2), - [2293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [2295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), - [2297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), - [2299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [2301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [2303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), - [2305] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [2307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), - [2309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), - [2311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), + [2282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), + [2284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), + [2286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), + [2288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), + [2290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), + [2292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), + [2294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), + [2296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), + [2298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), + [2300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), + [2302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), + [2304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_dimension, 2), + [2306] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_read_cond_lit_repeat1, 2), SHIFT_REPEAT(932), + [2309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_read_cond_lit_repeat1, 2), + [2311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), + [2313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), + [2315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), + [2317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [2319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), + [2321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [2323] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [2325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [2327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [2329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), + [2331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), }; #ifdef __cplusplus diff --git a/test.lisp b/test.lisp index edabd83d3..b587d37c5 100644 --- a/test.lisp +++ b/test.lisp @@ -1,7 +1,9 @@ (loop for dim-idx in xyz below x for y from 0 for letter in (list 'x 'y 'z) in 2 - collect x) + collect x into 1) (loop for x below 3 in 2 do (format t "~A~%" x)) + +(asd into) diff --git a/test/corpus/basic.txt b/test/corpus/basic.txt index 4d6904eac..ff70bb95f 100644 --- a/test/corpus/basic.txt +++ b/test/corpus/basic.txt @@ -100,3 +100,12 @@ Loop Macro --- (source (list_lit (loop_macro (loop_clause (for_clause (sym_lit) (sym_lit))) (loop_clause (for_clause (sym_lit) (list_lit (sym_lit) (quoting_lit (sym_lit)) (quoting_lit (sym_lit)) (quoting_lit (sym_lit))))) (loop_clause (accumulation_clause (accumulation_verb) (list_lit (sym_lit) (list_lit (list_lit (sym_lit) (list_lit (sym_lit) (sym_lit) (sym_lit)))) (syn_quoting_lit (list_lit (unquoting_lit (list_lit (sym_lit) (sym_lit))) (list_lit (sym_lit) (unquoting_lit (list_lit (sym_lit) (sym_lit))) (list_lit (sym_lit) (unquoting_lit (list_lit (sym_lit) (sym_lit))) (unquoting_lit (list_lit (sym_lit) (sym_lit) (list_lit (sym_lit) (quoting_lit (list_lit (sym_lit) (sym_lit) (list_lit (sym_lit) (sym_lit) (sym_lit))))) (list_lit (sym_lit) (quoting_lit (list_lit (sym_lit) (sym_lit) (list_lit (sym_lit) (sym_lit) (sym_lit))))) (list_lit (sym_lit) (quoting_lit (list_lit (sym_lit) (sym_lit) (list_lit (sym_lit) (sym_lit) (sym_lit))))))))))))))))) + +========================================== +Loop Macro (Accumulation) +========================================== + +(loop for i below 10 + collect x into a) +--- +(source (list_lit (loop_macro (loop_clause (for_clause (sym_lit) (num_lit))) (loop_clause (accumulation_clause (accumulation_verb) (sym_lit) (sym_lit))))))