From 3c53430f7c5dfd3d939561304f3d40d2662a0669 Mon Sep 17 00:00:00 2001 From: Stephan Seitz Date: Thu, 15 Apr 2021 16:50:31 +0200 Subject: [PATCH] Add kwd_lit again --- grammar.js | 15 +- src/grammar.json | 119 +- src/node-types.json | 121 +- src/parser.c | 77968 +++++++++++++++++++--------------------- test/corpus/basic.txt | 4 +- 5 files changed, 37261 insertions(+), 40966 deletions(-) diff --git a/grammar.js b/grammar.js index b146bcfa8..b1f43a547 100644 --- a/grammar.js +++ b/grammar.js @@ -18,7 +18,8 @@ const PREC = { NORMAL: 1, PACKAGE_LIT: 2, DOTTET_LIT: 3, - SPECIAL: 4, + KWD_LIT: 4, + SPECIAL: 5, } const SYMBOL_HEAD = @@ -153,15 +154,15 @@ module.exports = grammar(clojure, { dotted_sym_lit: $ => prec.left(PREC.DOTTET_LIT, seq($.sym_lit, repeat1(seq(".", $.sym_lit)))), package_lit: $ => prec(PREC.PACKAGE_LIT, seq( - optional(field('package', choice($.dotted_sym_lit, $.sym_lit))), + field('package', choice($.dotted_sym_lit, $.sym_lit)), // Make optional, instead of keywords? choice(':', '::'), field('symbol', choice($.dotted_sym_lit, $.sym_lit)) )), - //kwd_lit: $ => prec(-1, seq( - //choice(':', '::'), - //$.sym_lit), - //), + kwd_lit: $ => prec(PREC.KWD_LIT, seq( + choice(':', '::'), + choice($.sym_lit, $.dotted_sym_lit), + )), sym_lit: $ => seq(repeat($._metadata_lit), @@ -172,7 +173,7 @@ module.exports = grammar(clojure, { $.num_lit, $.fancy_literal, //$.defun_header, - //seq($._gap, $.kwd_lit), + $.kwd_lit, $.str_lit, $.char_lit, $.nil_lit, diff --git a/src/grammar.json b/src/grammar.json index 5f4614143..6c3701842 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -90,6 +90,10 @@ "type": "SYMBOL", "name": "fancy_literal" }, + { + "type": "SYMBOL", + "name": "kwd_lit" + }, { "type": "SYMBOL", "name": "str_lit" @@ -429,87 +433,34 @@ } }, "kwd_lit": { - "type": "TOKEN", + "type": "PREC", + "value": 4, "content": { - "type": "CHOICE", + "type": "SEQ", "members": [ { - "type": "SEQ", + "type": "CHOICE", "members": [ { "type": "STRING", "value": ":" }, { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "/" - }, - { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "[^\\f\\n\\r\\t ()\\[\\]{}\"@~^;`\\\\,:/\\u000B\\u001C\\u001D\\u001E\\u001F\\u2028\\u2029\\u1680\\u2000\\u2001\\u2002\\u2003\\u2004\\u2005\\u2006\\u2008\\u2009\\u200a\\u205f\\u3000]" - }, - { - "type": "REPEAT", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "[:'/]" - }, - { - "type": "PATTERN", - "value": "[^\\f\\n\\r\\t ()\\[\\]{}\"@~^;`\\\\,:/\\u000B\\u001C\\u001D\\u001E\\u001F\\u2028\\u2029\\u1680\\u2000\\u2001\\u2002\\u2003\\u2004\\u2005\\u2006\\u2008\\u2009\\u200a\\u205f\\u3000]" - } - ] - } - } - ] - } - ] + "type": "STRING", + "value": "::" } ] }, { - "type": "SEQ", + "type": "CHOICE", "members": [ { - "type": "TOKEN", - "content": { - "type": "STRING", - "value": "::" - } + "type": "SYMBOL", + "name": "sym_lit" }, { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "[^\\f\\n\\r\\t ()\\[\\]{}\"@~^;`\\\\,:/\\u000B\\u001C\\u001D\\u001E\\u001F\\u2028\\u2029\\u1680\\u2000\\u2001\\u2002\\u2003\\u2004\\u2005\\u2006\\u2008\\u2009\\u200a\\u205f\\u3000]" - }, - { - "type": "REPEAT", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "[:'/]" - }, - { - "type": "PATTERN", - "value": "[^\\f\\n\\r\\t ()\\[\\]{}\"@~^;`\\\\,:/\\u000B\\u001C\\u001D\\u001E\\u001F\\u2028\\u2029\\u1680\\u2000\\u2001\\u2002\\u2003\\u2004\\u2005\\u2006\\u2008\\u2009\\u200a\\u205f\\u3000]" - } - ] - } - } - ] + "type": "SYMBOL", + "name": "dotted_sym_lit" } ] } @@ -913,7 +864,7 @@ "members": [ { "type": "PREC", - "value": 4, + "value": 5, "content": { "type": "SYMBOL", "name": "defun" @@ -921,7 +872,7 @@ }, { "type": "PREC", - "value": 4, + "value": 5, "content": { "type": "SYMBOL", "name": "loop_macro" @@ -2539,29 +2490,21 @@ "type": "SEQ", "members": [ { - "type": "CHOICE", - "members": [ - { - "type": "FIELD", - "name": "package", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "dotted_sym_lit" - }, - { - "type": "SYMBOL", - "name": "sym_lit" - } - ] + "type": "FIELD", + "name": "package", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "dotted_sym_lit" + }, + { + "type": "SYMBOL", + "name": "sym_lit" } - }, - { - "type": "BLANK" - } - ] + ] + } }, { "type": "CHOICE", diff --git a/src/node-types.json b/src/node-types.json index b009ebb82..b19803b49 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -43,6 +43,10 @@ "type": "include_reader_macro", "named": true }, + { + "type": "kwd_lit", + "named": true + }, { "type": "list_lit", "named": true @@ -240,6 +244,10 @@ "type": "include_reader_macro", "named": true }, + { + "type": "kwd_lit", + "named": true + }, { "type": "list_lit", "named": true @@ -371,6 +379,10 @@ "type": "include_reader_macro", "named": true }, + { + "type": "kwd_lit", + "named": true + }, { "type": "list_lit", "named": true @@ -501,6 +513,10 @@ "type": "include_reader_macro", "named": true }, + { + "type": "kwd_lit", + "named": true + }, { "type": "list_lit", "named": true @@ -682,6 +698,10 @@ "type": "include_reader_macro", "named": true }, + { + "type": "kwd_lit", + "named": true + }, { "type": "list_lit", "named": true @@ -818,6 +838,10 @@ "type": "include_reader_macro", "named": true }, + { + "type": "kwd_lit", + "named": true + }, { "type": "list_lit", "named": true @@ -940,6 +964,10 @@ "type": "include_reader_macro", "named": true }, + { + "type": "kwd_lit", + "named": true + }, { "type": "list_lit", "named": true @@ -1134,6 +1162,10 @@ "type": "include_reader_macro", "named": true }, + { + "type": "kwd_lit", + "named": true + }, { "type": "list_lit", "named": true @@ -1241,6 +1273,10 @@ "type": "include_reader_macro", "named": true }, + { + "type": "kwd_lit", + "named": true + }, { "type": "list_lit", "named": true @@ -1357,6 +1393,10 @@ "type": "include_reader_macro", "named": true }, + { + "type": "kwd_lit", + "named": true + }, { "type": "list_lit", "named": true @@ -1497,6 +1537,10 @@ "type": "include_reader_macro", "named": true }, + { + "type": "kwd_lit", + "named": true + }, { "type": "list_lit", "named": true @@ -1579,6 +1623,25 @@ ] } }, + { + "type": "kwd_lit", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "dotted_sym_lit", + "named": true + }, + { + "type": "sym_lit", + "named": true + } + ] + } + }, { "type": "list_lit", "named": true, @@ -1663,6 +1726,10 @@ "type": "include_reader_macro", "named": true }, + { + "type": "kwd_lit", + "named": true + }, { "type": "list_lit", "named": true @@ -1924,6 +1991,10 @@ "type": "include_reader_macro", "named": true }, + { + "type": "kwd_lit", + "named": true + }, { "type": "list_lit", "named": true @@ -2124,7 +2195,7 @@ "fields": { "package": { "multiple": false, - "required": false, + "required": true, "types": [ { "type": "dotted_sym_lit", @@ -2226,6 +2297,10 @@ "type": "include_reader_macro", "named": true }, + { + "type": "kwd_lit", + "named": true + }, { "type": "list_lit", "named": true @@ -2402,6 +2477,10 @@ "type": "include_reader_macro", "named": true }, + { + "type": "kwd_lit", + "named": true + }, { "type": "list_lit", "named": true @@ -2586,6 +2665,10 @@ "type": "include_reader_macro", "named": true }, + { + "type": "kwd_lit", + "named": true + }, { "type": "list_lit", "named": true @@ -2708,6 +2791,10 @@ "type": "include_reader_macro", "named": true }, + { + "type": "kwd_lit", + "named": true + }, { "type": "list_lit", "named": true @@ -2869,6 +2956,10 @@ "type": "include_reader_macro", "named": true }, + { + "type": "kwd_lit", + "named": true + }, { "type": "list_lit", "named": true @@ -3124,6 +3215,10 @@ "type": "include_reader_macro", "named": true }, + { + "type": "kwd_lit", + "named": true + }, { "type": "list_lit", "named": true @@ -3265,6 +3360,10 @@ "type": "include_reader_macro", "named": true }, + { + "type": "kwd_lit", + "named": true + }, { "type": "list_lit", "named": true @@ -3401,6 +3500,10 @@ "type": "include_reader_macro", "named": true }, + { + "type": "kwd_lit", + "named": true + }, { "type": "list_lit", "named": true @@ -3557,6 +3660,10 @@ "type": "include_reader_macro", "named": true }, + { + "type": "kwd_lit", + "named": true + }, { "type": "list_lit", "named": true @@ -3751,6 +3858,10 @@ "type": "include_reader_macro", "named": true }, + { + "type": "kwd_lit", + "named": true + }, { "type": "list_lit", "named": true @@ -3858,6 +3969,10 @@ "type": "include_reader_macro", "named": true }, + { + "type": "kwd_lit", + "named": true + }, { "type": "list_lit", "named": true @@ -4133,10 +4248,6 @@ "type": "into", "named": false }, - { - "type": "kwd_lit", - "named": true - }, { "type": "loop", "named": false diff --git a/src/parser.c b/src/parser.c index db19db038..535a25900 100644 --- a/src/parser.c +++ b/src/parser.c @@ -14,15 +14,15 @@ #endif #define LANGUAGE_VERSION 13 -#define STATE_COUNT 1928 -#define LARGE_STATE_COUNT 11 +#define STATE_COUNT 1885 +#define LARGE_STATE_COUNT 12 #define SYMBOL_COUNT 133 #define ALIAS_COUNT 0 -#define TOKEN_COUNT 78 +#define TOKEN_COUNT 77 #define EXTERNAL_TOKEN_COUNT 0 #define FIELD_COUNT 17 #define MAX_ALIAS_SEQUENCE_LENGTH 10 -#define PRODUCTION_ID_COUNT 62 +#define PRODUCTION_ID_COUNT 61 enum { sym__ws = 1, @@ -30,23 +30,23 @@ enum { anon_sym_POUND_ = 3, anon_sym_DOT = 4, sym_num_lit = 5, - sym_kwd_lit = 6, - aux_sym_str_lit_token1 = 7, - sym_char_lit = 8, - sym_nil_lit = 9, - sym_bool_lit = 10, - aux_sym_sym_lit_token1 = 11, - anon_sym_CARET = 12, - anon_sym_POUND_CARET = 13, - anon_sym_LPAREN = 14, - anon_sym_RPAREN = 15, - anon_sym_LBRACE = 16, - anon_sym_RBRACE = 17, - anon_sym_POUND0A = 18, - anon_sym_POUND = 19, - anon_sym_POUND_QMARK = 20, - anon_sym_POUND_QMARK_AT = 21, - anon_sym_COLON_COLON = 22, + anon_sym_COLON = 6, + anon_sym_COLON_COLON = 7, + aux_sym_str_lit_token1 = 8, + sym_char_lit = 9, + sym_nil_lit = 10, + sym_bool_lit = 11, + aux_sym_sym_lit_token1 = 12, + anon_sym_CARET = 13, + anon_sym_POUND_CARET = 14, + anon_sym_LPAREN = 15, + anon_sym_RPAREN = 16, + anon_sym_LBRACE = 17, + anon_sym_RBRACE = 18, + anon_sym_POUND0A = 19, + anon_sym_POUND = 20, + anon_sym_POUND_QMARK = 21, + anon_sym_POUND_QMARK_AT = 22, anon_sym_POUND_SQUOTE = 23, anon_sym_POUND_POUND = 24, anon_sym_POUND_EQ = 25, @@ -98,14 +98,14 @@ enum { anon_sym_defmethod = 71, anon_sym_lambda = 72, anon_sym_A = 73, - anon_sym_COLON = 74, - anon_sym_POUND_PLUS = 75, - anon_sym_POUND_DASH = 76, - anon_sym_POUNDC = 77, - sym_source = 78, - sym__gap = 79, - sym_dis_expr = 80, - sym__form = 81, + anon_sym_POUND_PLUS = 74, + anon_sym_POUND_DASH = 75, + anon_sym_POUNDC = 76, + sym_source = 77, + sym__gap = 78, + sym_dis_expr = 79, + sym__form = 80, + sym_kwd_lit = 81, sym_str_lit = 82, sym_sym_lit = 83, sym__metadata_lit = 84, @@ -166,7 +166,8 @@ static const char *ts_symbol_names[] = { [anon_sym_POUND_] = "#_", [anon_sym_DOT] = ".", [sym_num_lit] = "num_lit", - [sym_kwd_lit] = "kwd_lit", + [anon_sym_COLON] = ":", + [anon_sym_COLON_COLON] = "::", [aux_sym_str_lit_token1] = "str_lit_token1", [sym_char_lit] = "char_lit", [sym_nil_lit] = "nil_lit", @@ -182,7 +183,6 @@ static const char *ts_symbol_names[] = { [anon_sym_POUND] = "#", [anon_sym_POUND_QMARK] = "#\?", [anon_sym_POUND_QMARK_AT] = "#\?@", - [anon_sym_COLON_COLON] = "::", [anon_sym_POUND_SQUOTE] = "#'", [anon_sym_POUND_POUND] = "##", [anon_sym_POUND_EQ] = "#=", @@ -234,7 +234,6 @@ static const char *ts_symbol_names[] = { [anon_sym_defmethod] = "defmethod", [anon_sym_lambda] = "defun_keyword", [anon_sym_A] = "A", - [anon_sym_COLON] = ":", [anon_sym_POUND_PLUS] = "#+", [anon_sym_POUND_DASH] = "#-", [anon_sym_POUNDC] = "#C", @@ -242,6 +241,7 @@ static const char *ts_symbol_names[] = { [sym__gap] = "_gap", [sym_dis_expr] = "dis_expr", [sym__form] = "_form", + [sym_kwd_lit] = "kwd_lit", [sym_str_lit] = "str_lit", [sym_sym_lit] = "sym_lit", [sym__metadata_lit] = "_metadata_lit", @@ -302,7 +302,8 @@ static TSSymbol ts_symbol_map[] = { [anon_sym_POUND_] = anon_sym_POUND_, [anon_sym_DOT] = anon_sym_DOT, [sym_num_lit] = sym_num_lit, - [sym_kwd_lit] = sym_kwd_lit, + [anon_sym_COLON] = anon_sym_COLON, + [anon_sym_COLON_COLON] = anon_sym_COLON_COLON, [aux_sym_str_lit_token1] = aux_sym_str_lit_token1, [sym_char_lit] = sym_char_lit, [sym_nil_lit] = sym_nil_lit, @@ -318,7 +319,6 @@ static TSSymbol ts_symbol_map[] = { [anon_sym_POUND] = anon_sym_POUND, [anon_sym_POUND_QMARK] = anon_sym_POUND_QMARK, [anon_sym_POUND_QMARK_AT] = anon_sym_POUND_QMARK_AT, - [anon_sym_COLON_COLON] = anon_sym_COLON_COLON, [anon_sym_POUND_SQUOTE] = anon_sym_POUND_SQUOTE, [anon_sym_POUND_POUND] = anon_sym_POUND_POUND, [anon_sym_POUND_EQ] = anon_sym_POUND_EQ, @@ -370,7 +370,6 @@ static TSSymbol ts_symbol_map[] = { [anon_sym_defmethod] = anon_sym_defmethod, [anon_sym_lambda] = sym_defun_keyword, [anon_sym_A] = anon_sym_A, - [anon_sym_COLON] = anon_sym_COLON, [anon_sym_POUND_PLUS] = anon_sym_POUND_PLUS, [anon_sym_POUND_DASH] = anon_sym_POUND_DASH, [anon_sym_POUNDC] = anon_sym_POUNDC, @@ -378,6 +377,7 @@ static TSSymbol ts_symbol_map[] = { [sym__gap] = sym__gap, [sym_dis_expr] = sym_dis_expr, [sym__form] = sym__form, + [sym_kwd_lit] = sym_kwd_lit, [sym_str_lit] = sym_str_lit, [sym_sym_lit] = sym_sym_lit, [sym__metadata_lit] = sym__metadata_lit, @@ -456,9 +456,13 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, - [sym_kwd_lit] = { + [anon_sym_COLON] = { .visible = true, - .named = true, + .named = false, + }, + [anon_sym_COLON_COLON] = { + .visible = true, + .named = false, }, [aux_sym_str_lit_token1] = { .visible = false, @@ -520,10 +524,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [anon_sym_COLON_COLON] = { - .visible = true, - .named = false, - }, [anon_sym_POUND_SQUOTE] = { .visible = true, .named = false, @@ -728,10 +728,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [anon_sym_COLON] = { - .visible = true, - .named = false, - }, [anon_sym_POUND_PLUS] = { .visible = true, .named = false, @@ -760,6 +756,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = true, }, + [sym_kwd_lit] = { + .visible = true, + .named = true, + }, [sym_str_lit] = { .visible = true, .named = true, @@ -1019,56 +1019,55 @@ static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [9] = {.index = 17, .length = 1}, [10] = {.index = 18, .length = 1}, [11] = {.index = 19, .length = 4}, - [12] = {.index = 23, .length = 1}, - [13] = {.index = 24, .length = 5}, - [14] = {.index = 29, .length = 4}, - [15] = {.index = 33, .length = 6}, - [16] = {.index = 39, .length = 4}, - [17] = {.index = 43, .length = 2}, - [18] = {.index = 45, .length = 2}, - [19] = {.index = 47, .length = 2}, - [20] = {.index = 49, .length = 3}, - [21] = {.index = 52, .length = 2}, - [22] = {.index = 54, .length = 3}, - [23] = {.index = 57, .length = 2}, - [24] = {.index = 59, .length = 4}, - [25] = {.index = 63, .length = 3}, - [26] = {.index = 66, .length = 2}, - [27] = {.index = 68, .length = 6}, - [28] = {.index = 74, .length = 4}, - [29] = {.index = 78, .length = 2}, - [30] = {.index = 80, .length = 2}, - [31] = {.index = 82, .length = 3}, - [32] = {.index = 85, .length = 3}, - [33] = {.index = 88, .length = 4}, - [34] = {.index = 92, .length = 3}, - [35] = {.index = 95, .length = 3}, - [36] = {.index = 98, .length = 6}, - [37] = {.index = 104, .length = 4}, - [38] = {.index = 108, .length = 5}, - [39] = {.index = 113, .length = 1}, - [40] = {.index = 114, .length = 2}, - [41] = {.index = 116, .length = 3}, - [42] = {.index = 119, .length = 3}, - [43] = {.index = 122, .length = 3}, - [44] = {.index = 125, .length = 3}, - [45] = {.index = 128, .length = 3}, - [46] = {.index = 131, .length = 5}, - [47] = {.index = 136, .length = 5}, - [48] = {.index = 141, .length = 1}, - [49] = {.index = 142, .length = 3}, - [50] = {.index = 145, .length = 3}, - [51] = {.index = 148, .length = 3}, - [52] = {.index = 151, .length = 5}, - [53] = {.index = 156, .length = 5}, - [54] = {.index = 161, .length = 3}, - [55] = {.index = 164, .length = 3}, - [56] = {.index = 167, .length = 5}, - [57] = {.index = 172, .length = 5}, - [58] = {.index = 177, .length = 3}, - [59] = {.index = 180, .length = 5}, - [60] = {.index = 185, .length = 5}, - [61] = {.index = 190, .length = 5}, + [12] = {.index = 23, .length = 5}, + [13] = {.index = 28, .length = 4}, + [14] = {.index = 32, .length = 6}, + [15] = {.index = 38, .length = 4}, + [16] = {.index = 42, .length = 2}, + [17] = {.index = 44, .length = 2}, + [18] = {.index = 46, .length = 2}, + [19] = {.index = 48, .length = 3}, + [20] = {.index = 51, .length = 2}, + [21] = {.index = 53, .length = 3}, + [22] = {.index = 56, .length = 2}, + [23] = {.index = 58, .length = 4}, + [24] = {.index = 62, .length = 3}, + [25] = {.index = 65, .length = 2}, + [26] = {.index = 67, .length = 6}, + [27] = {.index = 73, .length = 4}, + [28] = {.index = 77, .length = 2}, + [29] = {.index = 79, .length = 2}, + [30] = {.index = 81, .length = 3}, + [31] = {.index = 84, .length = 3}, + [32] = {.index = 87, .length = 4}, + [33] = {.index = 91, .length = 3}, + [34] = {.index = 94, .length = 3}, + [35] = {.index = 97, .length = 6}, + [36] = {.index = 103, .length = 4}, + [37] = {.index = 107, .length = 5}, + [38] = {.index = 112, .length = 1}, + [39] = {.index = 113, .length = 2}, + [40] = {.index = 115, .length = 3}, + [41] = {.index = 118, .length = 3}, + [42] = {.index = 121, .length = 3}, + [43] = {.index = 124, .length = 3}, + [44] = {.index = 127, .length = 3}, + [45] = {.index = 130, .length = 5}, + [46] = {.index = 135, .length = 5}, + [47] = {.index = 140, .length = 1}, + [48] = {.index = 141, .length = 3}, + [49] = {.index = 144, .length = 3}, + [50] = {.index = 147, .length = 3}, + [51] = {.index = 150, .length = 5}, + [52] = {.index = 155, .length = 5}, + [53] = {.index = 160, .length = 3}, + [54] = {.index = 163, .length = 3}, + [55] = {.index = 166, .length = 5}, + [56] = {.index = 171, .length = 5}, + [57] = {.index = 176, .length = 3}, + [58] = {.index = 179, .length = 5}, + [59] = {.index = 184, .length = 5}, + [60] = {.index = 189, .length = 5}, }; static const TSFieldMapEntry ts_field_map_entries[] = { @@ -1107,222 +1106,220 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_open, 1, .inherited = true}, {field_value, 1, .inherited = true}, [23] = - {field_symbol, 1}, - [24] = {field_close, 1, .inherited = true}, {field_meta, 0, .inherited = true}, {field_old_meta, 0, .inherited = true}, {field_open, 1, .inherited = true}, {field_value, 1, .inherited = true}, - [29] = + [28] = {field_dimension_indicator, 1, .inherited = true}, {field_meta, 0, .inherited = true}, {field_old_meta, 0, .inherited = true}, {field_open, 1, .inherited = true}, - [33] = + [32] = {field_close, 1, .inherited = true}, {field_marker, 1, .inherited = true}, {field_meta, 0, .inherited = true}, {field_old_meta, 0, .inherited = true}, {field_open, 1, .inherited = true}, {field_value, 1, .inherited = true}, - [39] = + [38] = {field_meta, 0, .inherited = true}, {field_meta, 1, .inherited = true}, {field_old_meta, 0, .inherited = true}, {field_old_meta, 1, .inherited = true}, - [43] = + [42] = {field_marker, 0}, {field_value, 2}, - [45] = + [44] = {field_close, 2}, {field_open, 0}, - [47] = + [46] = {field_keyword, 0}, {field_lambda_list, 1}, - [49] = + [48] = {field_close, 2}, {field_open, 0}, {field_value, 1, .inherited = true}, - [52] = + [51] = {field_value, 0, .inherited = true}, {field_value, 1, .inherited = true}, - [54] = + [53] = {field_close, 2}, {field_marker, 0}, {field_open, 1}, - [57] = + [56] = {field_dimension_indicator, 1}, {field_open, 0}, - [59] = + [58] = {field_close, 2, .inherited = true}, {field_marker, 0}, {field_open, 2, .inherited = true}, {field_value, 2, .inherited = true}, - [63] = + [62] = {field_condition, 1}, {field_marker, 0}, {field_target, 2}, - [66] = + [65] = {field_package, 0}, {field_symbol, 2}, - [68] = + [67] = {field_close, 2, .inherited = true}, {field_marker, 1}, {field_meta, 0, .inherited = true}, {field_old_meta, 0, .inherited = true}, {field_open, 2, .inherited = true}, {field_value, 2, .inherited = true}, - [74] = + [73] = {field_marker, 1}, {field_meta, 0, .inherited = true}, {field_old_meta, 0, .inherited = true}, {field_value, 2}, - [78] = + [77] = {field_close, 3}, {field_open, 0}, - [80] = + [79] = {field_keyword, 0}, {field_lambda_list, 2}, - [82] = + [81] = {field_function_name, 1}, {field_keyword, 0}, {field_lambda_list, 2}, - [85] = + [84] = {field_close, 3}, {field_open, 0}, {field_value, 2, .inherited = true}, - [88] = + [87] = {field_close, 3}, {field_marker, 0}, {field_open, 1}, {field_value, 2, .inherited = true}, - [92] = + [91] = {field_condition, 1}, {field_marker, 0}, {field_target, 3}, - [95] = + [94] = {field_condition, 2}, {field_marker, 0}, {field_target, 3}, - [98] = + [97] = {field_close, 3, .inherited = true}, {field_marker, 1}, {field_meta, 0, .inherited = true}, {field_old_meta, 0, .inherited = true}, {field_open, 3, .inherited = true}, {field_value, 3, .inherited = true}, - [104] = + [103] = {field_marker, 1}, {field_meta, 0, .inherited = true}, {field_old_meta, 0, .inherited = true}, {field_value, 3}, - [108] = + [107] = {field_condition, 2}, {field_marker, 1}, {field_meta, 0, .inherited = true}, {field_old_meta, 0, .inherited = true}, {field_target, 3}, - [113] = + [112] = {field_variable, 1}, - [114] = + [113] = {field_close, 4}, {field_open, 0}, - [116] = + [115] = {field_close, 4}, {field_open, 0}, {field_value, 3, .inherited = true}, - [119] = + [118] = {field_function_name, 1}, {field_keyword, 0}, {field_lambda_list, 3}, - [122] = + [121] = {field_function_name, 2}, {field_keyword, 0}, {field_lambda_list, 3}, - [125] = + [124] = {field_condition, 2}, {field_marker, 0}, {field_target, 4}, - [128] = + [127] = {field_imaginary, 3}, {field_marker, 0}, {field_real, 2}, - [131] = + [130] = {field_condition, 2}, {field_marker, 1}, {field_meta, 0, .inherited = true}, {field_old_meta, 0, .inherited = true}, {field_target, 4}, - [136] = + [135] = {field_condition, 3}, {field_marker, 1}, {field_meta, 0, .inherited = true}, {field_old_meta, 0, .inherited = true}, {field_target, 4}, - [141] = + [140] = {field_variable, 2}, - [142] = + [141] = {field_function_name, 2}, {field_keyword, 0}, {field_lambda_list, 4}, - [145] = + [144] = {field_imaginary, 4}, {field_marker, 0}, {field_real, 2}, - [148] = + [147] = {field_imaginary, 4}, {field_marker, 0}, {field_real, 3}, - [151] = + [150] = {field_condition, 3}, {field_marker, 1}, {field_meta, 0, .inherited = true}, {field_old_meta, 0, .inherited = true}, {field_target, 5}, - [156] = + [155] = {field_imaginary, 4}, {field_marker, 1}, {field_meta, 0, .inherited = true}, {field_old_meta, 0, .inherited = true}, {field_real, 3}, - [161] = + [160] = {field_imaginary, 5}, {field_marker, 0}, {field_real, 3}, - [164] = + [163] = {field_imaginary, 5}, {field_marker, 0}, {field_real, 4}, - [167] = + [166] = {field_imaginary, 5}, {field_marker, 1}, {field_meta, 0, .inherited = true}, {field_old_meta, 0, .inherited = true}, {field_real, 3}, - [172] = + [171] = {field_imaginary, 5}, {field_marker, 1}, {field_meta, 0, .inherited = true}, {field_old_meta, 0, .inherited = true}, {field_real, 4}, - [177] = + [176] = {field_imaginary, 6}, {field_marker, 0}, {field_real, 4}, - [180] = + [179] = {field_imaginary, 6}, {field_marker, 1}, {field_meta, 0, .inherited = true}, {field_old_meta, 0, .inherited = true}, {field_real, 4}, - [185] = + [184] = {field_imaginary, 6}, {field_marker, 1}, {field_meta, 0, .inherited = true}, {field_old_meta, 0, .inherited = true}, {field_real, 5}, - [190] = + [189] = {field_imaginary, 7}, {field_marker, 1}, {field_meta, 0, .inherited = true}, @@ -1338,56 +1335,6 @@ static uint16_t ts_non_terminal_alias_map[] = { 0, }; -static inline bool sym_kwd_lit_character_set_1(int32_t c) { - return (c < '`' - ? (c < '(' - ? (c < 28 - ? (c < '\t' - ? c == 0 - : c <= '\r') - : (c <= ' ' || c == '"')) - : (c <= ')' || (c < '@' - ? (c < ';' - ? c == ',' - : c <= ';') - : (c <= '@' || (c >= '[' && c <= '^'))))) - : (c <= '`' || (c < 8200 - ? (c < 5760 - ? (c < '}' - ? c == '{' - : c <= '~') - : (c <= 5760 || (c >= 8192 && c <= 8198))) - : (c <= 8202 || (c < 8287 - ? (c >= 8232 && c <= 8233) - : (c <= 8287 || c == 12288)))))); -} - -static inline bool sym_kwd_lit_character_set_2(int32_t c) { - return (c < '[' - ? (c < '(' - ? (c < 28 - ? (c < '\t' - ? c == 0 - : c <= '\r') - : (c <= ' ' || c == '"')) - : (c <= ')' || (c < ':' - ? (c < '/' - ? c == ',' - : c <= '/') - : (c <= ';' || c == '@')))) - : (c <= '^' || (c < 8192 - ? (c < '}' - ? (c < '{' - ? c == '`' - : c <= '{') - : (c <= '~' || c == 5760)) - : (c <= 8198 || (c < 8287 - ? (c < 8232 - ? (c >= 8200 && c <= 8202) - : c <= 8233) - : (c <= 8287 || c == 12288)))))); -} - static inline bool aux_sym_sym_lit_token1_character_set_1(int32_t c) { return (c < '`' ? (c < ')' @@ -1635,43 +1582,43 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { eof = lexer->eof(lexer); switch (state) { case 0: - if (eof) ADVANCE(233); + if (eof) ADVANCE(228); if (lookahead == '"') ADVANCE(9); - if (lookahead == '#') ADVANCE(389); - if (lookahead == '\'') ADVANCE(400); - if (lookahead == '(') ADVANCE(384); - if (lookahead == ')') ADVANCE(385); - if (lookahead == ',') ADVANCE(403); - if (lookahead == '.') ADVANCE(238); - if (lookahead == '0') ADVANCE(240); - if (lookahead == ':') ADVANCE(472); - if (lookahead == ';') ADVANCE(236); - if (lookahead == '=') ADVANCE(421); - if (lookahead == '@') ADVANCE(399); - if (lookahead == 'A') ADVANCE(471); - if (lookahead == '\\') ADVANCE(230); - if (lookahead == '^') ADVANCE(382); - if (lookahead == '`') ADVANCE(401); - if (lookahead == 'a') ADVANCE(36); - if (lookahead == 'b') ADVANCE(51); - if (lookahead == 'c') ADVANCE(110); - if (lookahead == 'd') ADVANCE(52); - if (lookahead == 'f') ADVANCE(21); - if (lookahead == 'i') ADVANCE(75); - if (lookahead == 'l') ADVANCE(22); - if (lookahead == 'm') ADVANCE(23); - if (lookahead == 'n') ADVANCE(41); - if (lookahead == 'o') ADVANCE(131); - if (lookahead == 'r') ADVANCE(53); - if (lookahead == 's') ADVANCE(204); - if (lookahead == 't') ADVANCE(88); - if (lookahead == 'u') ADVANCE(145); - if (lookahead == 'w') ADVANCE(84); - if (lookahead == '{') ADVANCE(386); - if (lookahead == '|') ADVANCE(220); - if (lookahead == '}') ADVANCE(387); - if (('+' <= lookahead && lookahead <= '-')) ADVANCE(17); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(242); + if (lookahead == '#') ADVANCE(384); + if (lookahead == '\'') ADVANCE(393); + if (lookahead == '(') ADVANCE(379); + if (lookahead == ')') ADVANCE(380); + if (lookahead == ',') ADVANCE(396); + if (lookahead == '.') ADVANCE(233); + if (lookahead == '0') ADVANCE(235); + if (lookahead == ':') ADVANCE(246); + if (lookahead == ';') ADVANCE(231); + if (lookahead == '=') ADVANCE(414); + if (lookahead == '@') ADVANCE(392); + if (lookahead == 'A') ADVANCE(464); + if (lookahead == '\\') ADVANCE(225); + if (lookahead == '^') ADVANCE(377); + if (lookahead == '`') ADVANCE(394); + if (lookahead == 'a') ADVANCE(34); + if (lookahead == 'b') ADVANCE(49); + if (lookahead == 'c') ADVANCE(106); + if (lookahead == 'd') ADVANCE(50); + if (lookahead == 'f') ADVANCE(19); + if (lookahead == 'i') ADVANCE(73); + if (lookahead == 'l') ADVANCE(20); + if (lookahead == 'm') ADVANCE(21); + if (lookahead == 'n') ADVANCE(39); + if (lookahead == 'o') ADVANCE(127); + if (lookahead == 'r') ADVANCE(51); + if (lookahead == 's') ADVANCE(199); + if (lookahead == 't') ADVANCE(85); + if (lookahead == 'u') ADVANCE(141); + if (lookahead == 'w') ADVANCE(82); + if (lookahead == '{') ADVANCE(381); + if (lookahead == '|') ADVANCE(215); + if (lookahead == '}') ADVANCE(382); + if (('+' <= lookahead && lookahead <= '-')) ADVANCE(15); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(237); if (('\t' <= lookahead && lookahead <= '\r') || (28 <= lookahead && lookahead <= ' ') || lookahead == 5760 || @@ -1680,59 +1627,59 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8232 || lookahead == 8233 || lookahead == 8287 || - lookahead == 12288) ADVANCE(234); + lookahead == 12288) ADVANCE(229); END_STATE(); case 1: - if (lookahead == ' ') ADVANCE(89); + if (lookahead == ' ') ADVANCE(86); END_STATE(); case 2: - if (lookahead == ' ') ADVANCE(105); + if (lookahead == ' ') ADVANCE(101); END_STATE(); case 3: - if (lookahead == ' ') ADVANCE(105); + if (lookahead == ' ') ADVANCE(101); if (lookahead == 's') ADVANCE(2); END_STATE(); case 4: - if (lookahead == '!') ADVANCE(236); - if (lookahead == '^') ADVANCE(383); - if (lookahead == '_') ADVANCE(237); - if (lookahead == '|') ADVANCE(221); + if (lookahead == '!') ADVANCE(231); + if (lookahead == '^') ADVANCE(378); + if (lookahead == '_') ADVANCE(232); + if (lookahead == '|') ADVANCE(216); END_STATE(); case 5: - if (lookahead == '!') ADVANCE(236); - if (lookahead == '_') ADVANCE(237); - if (lookahead == '|') ADVANCE(221); + if (lookahead == '!') ADVANCE(231); + if (lookahead == '_') ADVANCE(232); + if (lookahead == '|') ADVANCE(216); END_STATE(); case 6: if (lookahead == '"') ADVANCE(9); - if (lookahead == '#') ADVANCE(389); - if (lookahead == '\'') ADVANCE(400); - if (lookahead == '(') ADVANCE(384); - if (lookahead == ')') ADVANCE(385); - if (lookahead == ',') ADVANCE(403); - if (lookahead == '.') ADVANCE(238); - if (lookahead == '0') ADVANCE(240); - if (lookahead == ':') ADVANCE(473); - if (lookahead == ';') ADVANCE(236); - if (lookahead == '@') ADVANCE(399); - if (lookahead == '\\') ADVANCE(230); - if (lookahead == '^') ADVANCE(382); - if (lookahead == '`') ADVANCE(401); - if (lookahead == 'a') ADVANCE(318); - if (lookahead == 'c') ADVANCE(343); - if (lookahead == 'd') ADVANCE(344); - if (lookahead == 'f') ADVANCE(310); - if (lookahead == 'i') ADVANCE(300); - if (lookahead == 'm') ADVANCE(270); - if (lookahead == 'n') ADVANCE(279); - if (lookahead == 'r') ADVANCE(287); - if (lookahead == 's') ADVANCE(366); - if (lookahead == 't') ADVANCE(306); - if (lookahead == 'u') ADVANCE(337); - if (lookahead == 'w') ADVANCE(304); - if (lookahead == '|') ADVANCE(375); - if (('+' <= lookahead && lookahead <= '-')) ADVANCE(268); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(242); + if (lookahead == '#') ADVANCE(384); + if (lookahead == '\'') ADVANCE(393); + if (lookahead == '(') ADVANCE(379); + if (lookahead == ')') ADVANCE(380); + if (lookahead == ',') ADVANCE(396); + if (lookahead == '.') ADVANCE(233); + if (lookahead == '0') ADVANCE(235); + if (lookahead == ':') ADVANCE(246); + if (lookahead == ';') ADVANCE(231); + if (lookahead == '@') ADVANCE(392); + if (lookahead == '\\') ADVANCE(225); + if (lookahead == '^') ADVANCE(377); + if (lookahead == '`') ADVANCE(394); + if (lookahead == 'a') ADVANCE(313); + if (lookahead == 'c') ADVANCE(338); + if (lookahead == 'd') ADVANCE(339); + if (lookahead == 'f') ADVANCE(305); + if (lookahead == 'i') ADVANCE(295); + if (lookahead == 'm') ADVANCE(265); + if (lookahead == 'n') ADVANCE(274); + if (lookahead == 'r') ADVANCE(282); + if (lookahead == 's') ADVANCE(361); + if (lookahead == 't') ADVANCE(301); + if (lookahead == 'u') ADVANCE(332); + if (lookahead == 'w') ADVANCE(299); + if (lookahead == '|') ADVANCE(370); + if (('+' <= lookahead && lookahead <= '-')) ADVANCE(263); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(237); if (('\t' <= lookahead && lookahead <= '\r') || (28 <= lookahead && lookahead <= ' ') || lookahead == 5760 || @@ -1741,33 +1688,33 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8232 || lookahead == 8233 || lookahead == 8287 || - lookahead == 12288) ADVANCE(234); + lookahead == 12288) ADVANCE(229); if (lookahead != 0 && (lookahead < '[' || ']' < lookahead) && - (lookahead < '{' || '~' < lookahead)) ADVANCE(381); + (lookahead < '{' || '~' < lookahead)) ADVANCE(376); END_STATE(); case 7: if (lookahead == '"') ADVANCE(9); - if (lookahead == '#') ADVANCE(389); - if (lookahead == '\'') ADVANCE(400); - if (lookahead == '(') ADVANCE(384); - if (lookahead == ')') ADVANCE(385); - if (lookahead == ',') ADVANCE(403); - if (lookahead == '.') ADVANCE(238); - if (lookahead == '0') ADVANCE(240); - if (lookahead == ':') ADVANCE(473); - if (lookahead == ';') ADVANCE(236); - if (lookahead == '@') ADVANCE(399); - if (lookahead == '\\') ADVANCE(230); - if (lookahead == '^') ADVANCE(382); - if (lookahead == '`') ADVANCE(401); - if (lookahead == 'c') ADVANCE(319); - if (lookahead == 'd') ADVANCE(290); - if (lookahead == 'l') ADVANCE(274); - if (lookahead == 'n') ADVANCE(308); - if (lookahead == '|') ADVANCE(375); - if (('+' <= lookahead && lookahead <= '-')) ADVANCE(268); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(242); + if (lookahead == '#') ADVANCE(384); + if (lookahead == '\'') ADVANCE(393); + if (lookahead == '(') ADVANCE(379); + if (lookahead == ')') ADVANCE(380); + if (lookahead == ',') ADVANCE(396); + if (lookahead == '.') ADVANCE(233); + if (lookahead == '0') ADVANCE(235); + if (lookahead == ':') ADVANCE(246); + if (lookahead == ';') ADVANCE(231); + if (lookahead == '@') ADVANCE(392); + if (lookahead == '\\') ADVANCE(225); + if (lookahead == '^') ADVANCE(377); + if (lookahead == '`') ADVANCE(394); + if (lookahead == 'c') ADVANCE(314); + if (lookahead == 'd') ADVANCE(285); + if (lookahead == 'l') ADVANCE(269); + if (lookahead == 'n') ADVANCE(303); + if (lookahead == '|') ADVANCE(370); + if (('+' <= lookahead && lookahead <= '-')) ADVANCE(263); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(237); if (('\t' <= lookahead && lookahead <= '\r') || (28 <= lookahead && lookahead <= ' ') || lookahead == 5760 || @@ -1776,23 +1723,23 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8232 || lookahead == 8233 || lookahead == 8287 || - lookahead == 12288) ADVANCE(234); + lookahead == 12288) ADVANCE(229); if (lookahead != 0 && (lookahead < '[' || ']' < lookahead) && - (lookahead < '{' || '~' < lookahead)) ADVANCE(381); + (lookahead < '{' || '~' < lookahead)) ADVANCE(376); END_STATE(); case 8: if (lookahead == '"') ADVANCE(9); - if (lookahead == '#') ADVANCE(390); - if (lookahead == '\'') ADVANCE(400); - if (lookahead == '(') ADVANCE(384); - if (lookahead == ',') ADVANCE(19); - if (lookahead == '.') ADVANCE(238); - if (lookahead == ':') ADVANCE(472); - if (lookahead == ';') ADVANCE(236); - if (lookahead == '@') ADVANCE(399); - if (lookahead == '^') ADVANCE(382); - if (lookahead == '{') ADVANCE(386); + if (lookahead == '#') ADVANCE(385); + if (lookahead == '\'') ADVANCE(393); + if (lookahead == '(') ADVANCE(379); + if (lookahead == ',') ADVANCE(17); + if (lookahead == '.') ADVANCE(233); + if (lookahead == ':') ADVANCE(246); + if (lookahead == ';') ADVANCE(231); + if (lookahead == '@') ADVANCE(392); + if (lookahead == '^') ADVANCE(377); + if (lookahead == '{') ADVANCE(381); if (('\t' <= lookahead && lookahead <= '\r') || (28 <= lookahead && lookahead <= ' ') || lookahead == 5760 || @@ -1801,47 +1748,45 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8232 || lookahead == 8233 || lookahead == 8287 || - lookahead == 12288) ADVANCE(234); + lookahead == 12288) ADVANCE(229); if (lookahead != 0 && lookahead != ')' && (lookahead < '0' || '9' < lookahead) && (lookahead < '[' || ']' < lookahead) && lookahead != '`' && lookahead != '}' && - lookahead != '~') ADVANCE(381); + lookahead != '~') ADVANCE(376); END_STATE(); case 9: - if (lookahead == '"') ADVANCE(253); - if (lookahead == '\\') ADVANCE(231); + if (lookahead == '"') ADVANCE(248); + if (lookahead == '\\') ADVANCE(226); if (lookahead != 0) ADVANCE(9); END_STATE(); case 10: - if (lookahead == '#') ADVANCE(404); - if (lookahead != 0) ADVANCE(221); + if (lookahead == '#') ADVANCE(397); + if (lookahead != 0) ADVANCE(216); END_STATE(); case 11: if (lookahead == '#') ADVANCE(4); - if (lookahead == '(') ADVANCE(384); - if (lookahead == ')') ADVANCE(385); - if (lookahead == '.') ADVANCE(238); - if (lookahead == ':') ADVANCE(473); - if (lookahead == ';') ADVANCE(236); - if (lookahead == '=') ADVANCE(421); - if (lookahead == '^') ADVANCE(382); - if (lookahead == 'a') ADVANCE(36); - if (lookahead == 'b') ADVANCE(51); - if (lookahead == 'c') ADVANCE(152); - if (lookahead == 'd') ADVANCE(153); - if (lookahead == 'f') ADVANCE(96); - if (lookahead == 'i') ADVANCE(75); - if (lookahead == 'm') ADVANCE(23); - if (lookahead == 'n') ADVANCE(40); - if (lookahead == 'o') ADVANCE(131); - if (lookahead == 'r') ADVANCE(74); - if (lookahead == 's') ADVANCE(204); - if (lookahead == 't') ADVANCE(87); - if (lookahead == 'u') ADVANCE(145); - if (lookahead == 'w') ADVANCE(84); + if (lookahead == '(') ADVANCE(379); + if (lookahead == ')') ADVANCE(380); + if (lookahead == '.') ADVANCE(233); + if (lookahead == ':') ADVANCE(246); + if (lookahead == ';') ADVANCE(231); + if (lookahead == '=') ADVANCE(414); + if (lookahead == '^') ADVANCE(377); + if (lookahead == 'a') ADVANCE(105); + if (lookahead == 'c') ADVANCE(148); + if (lookahead == 'd') ADVANCE(152); + if (lookahead == 'f') ADVANCE(92); + if (lookahead == 'i') ADVANCE(74); + if (lookahead == 'm') ADVANCE(21); + if (lookahead == 'n') ADVANCE(38); + if (lookahead == 'r') ADVANCE(72); + if (lookahead == 's') ADVANCE(199); + if (lookahead == 't') ADVANCE(90); + if (lookahead == 'u') ADVANCE(140); + if (lookahead == 'w') ADVANCE(82); if (('\t' <= lookahead && lookahead <= '\r') || (28 <= lookahead && lookahead <= ' ') || lookahead == 5760 || @@ -1850,60 +1795,32 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8232 || lookahead == 8233 || lookahead == 8287 || - lookahead == 12288) ADVANCE(234); + lookahead == 12288) ADVANCE(229); END_STATE(); case 12: - if (lookahead == '#') ADVANCE(4); - if (lookahead == '(') ADVANCE(384); - if (lookahead == ')') ADVANCE(385); - if (lookahead == '.') ADVANCE(238); - if (lookahead == ':') ADVANCE(473); - if (lookahead == ';') ADVANCE(236); - if (lookahead == '=') ADVANCE(421); - if (lookahead == '^') ADVANCE(382); - if (lookahead == 'a') ADVANCE(109); - if (lookahead == 'c') ADVANCE(152); - if (lookahead == 'd') ADVANCE(157); - if (lookahead == 'f') ADVANCE(95); - if (lookahead == 'i') ADVANCE(76); - if (lookahead == 'm') ADVANCE(23); - if (lookahead == 'n') ADVANCE(40); - if (lookahead == 'r') ADVANCE(74); - if (lookahead == 's') ADVANCE(204); - if (lookahead == 't') ADVANCE(93); - if (lookahead == 'u') ADVANCE(144); - if (lookahead == 'w') ADVANCE(84); - if (('\t' <= lookahead && lookahead <= '\r') || - (28 <= lookahead && lookahead <= ' ') || - lookahead == 5760 || - (8192 <= lookahead && lookahead <= 8198) || - (8200 <= lookahead && lookahead <= 8202) || - lookahead == 8232 || - lookahead == 8233 || - lookahead == 8287 || - lookahead == 12288) ADVANCE(234); + if (lookahead == '#') ADVANCE(386); + if (lookahead == '\'') ADVANCE(393); + if (lookahead == '(') ADVANCE(379); + if (lookahead == ',') ADVANCE(17); + if (lookahead == '@') ADVANCE(392); + if (lookahead == '^') ADVANCE(377); + if (lookahead == '{') ADVANCE(381); + if (!aux_sym_sym_lit_token1_character_set_1(lookahead)) ADVANCE(376); END_STATE(); case 13: - if (lookahead == '#') ADVANCE(391); - if (lookahead == '\'') ADVANCE(400); - if (lookahead == '(') ADVANCE(384); - if (lookahead == ',') ADVANCE(19); - if (lookahead == '@') ADVANCE(399); - if (lookahead == '^') ADVANCE(382); - if (lookahead == '{') ADVANCE(386); - if (!aux_sym_sym_lit_token1_character_set_1(lookahead)) ADVANCE(381); - END_STATE(); - case 14: - if (lookahead == '#') ADVANCE(390); - if (lookahead == '\'') ADVANCE(400); - if (lookahead == '(') ADVANCE(384); - if (lookahead == ',') ADVANCE(19); - if (lookahead == '.') ADVANCE(238); - if (lookahead == ':') ADVANCE(473); - if (lookahead == ';') ADVANCE(236); - if (lookahead == '@') ADVANCE(399); - if (lookahead == '^') ADVANCE(382); - if (lookahead == '{') ADVANCE(386); + if (lookahead == '#') ADVANCE(5); + if (lookahead == '.') ADVANCE(233); + if (lookahead == ':') ADVANCE(246); + if (lookahead == ';') ADVANCE(231); + if (lookahead == '=') ADVANCE(414); + if (lookahead == 'a') ADVANCE(33); + if (lookahead == 'b') ADVANCE(49); + if (lookahead == 'd') ADVANCE(158); + if (lookahead == 'f') ADVANCE(170); + if (lookahead == 'i') ADVANCE(136); + if (lookahead == 'o') ADVANCE(127); + if (lookahead == 't') ADVANCE(89); + if (lookahead == 'u') ADVANCE(164); if (('\t' <= lookahead && lookahead <= '\r') || (28 <= lookahead && lookahead <= ' ') || lookahead == 5760 || @@ -1912,780 +1829,736 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8232 || lookahead == 8233 || lookahead == 8287 || - lookahead == 12288) ADVANCE(234); - if (lookahead != 0 && - lookahead != '"' && - lookahead != ')' && - (lookahead < '0' || '9' < lookahead) && - (lookahead < '[' || ']' < lookahead) && - lookahead != '`' && - lookahead != '}' && - lookahead != '~') ADVANCE(381); + lookahead == 12288) ADVANCE(229); + END_STATE(); + case 14: + if (lookahead == '-') ADVANCE(104); END_STATE(); case 15: - if (lookahead == '#') ADVANCE(5); - if (lookahead == '.') ADVANCE(238); - if (lookahead == ':') ADVANCE(473); - if (lookahead == ';') ADVANCE(236); - if (lookahead == '=') ADVANCE(421); - if (lookahead == 'a') ADVANCE(35); - if (lookahead == 'b') ADVANCE(51); - if (lookahead == 'd') ADVANCE(163); - if (lookahead == 'f') ADVANCE(175); - if (lookahead == 'i') ADVANCE(140); - if (lookahead == 'o') ADVANCE(131); - if (lookahead == 't') ADVANCE(92); - if (lookahead == 'u') ADVANCE(169); - if (('\t' <= lookahead && lookahead <= '\r') || - (28 <= lookahead && lookahead <= ' ') || - lookahead == 5760 || - (8192 <= lookahead && lookahead <= 8198) || - (8200 <= lookahead && lookahead <= 8202) || - lookahead == 8232 || - lookahead == 8233 || - lookahead == 8287 || - lookahead == 12288) ADVANCE(234); + if (lookahead == '0') ADVANCE(235); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(237); END_STATE(); case 16: - if (lookahead == '-') ADVANCE(108); + if (lookahead == ':') ADVANCE(113); END_STATE(); case 17: - if (lookahead == '0') ADVANCE(240); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(242); + if (lookahead == '@') ADVANCE(395); END_STATE(); case 18: - if (lookahead == ':') ADVANCE(117); + if (lookahead == 'A') ADVANCE(383); END_STATE(); case 19: - if (lookahead == '@') ADVANCE(402); + if (lookahead == 'a') ADVANCE(107); + if (lookahead == 'i') ADVANCE(143); + if (lookahead == 'o') ADVANCE(171); + if (lookahead == 'r') ADVANCE(157); END_STATE(); case 20: - if (lookahead == 'A') ADVANCE(388); + if (lookahead == 'a') ADVANCE(124); + if (lookahead == 'o') ADVANCE(154); END_STATE(); case 21: - if (lookahead == 'a') ADVANCE(111); - if (lookahead == 'i') ADVANCE(147); - if (lookahead == 'o') ADVANCE(176); - if (lookahead == 'r') ADVANCE(162); + if (lookahead == 'a') ADVANCE(209); + if (lookahead == 'i') ADVANCE(137); END_STATE(); case 22: - if (lookahead == 'a') ADVANCE(128); - if (lookahead == 'o') ADVANCE(159); + if (lookahead == 'a') ADVANCE(213); END_STATE(); case 23: - if (lookahead == 'a') ADVANCE(214); - if (lookahead == 'i') ADVANCE(141); + if (lookahead == 'a') ADVANCE(462); END_STATE(); case 24: - if (lookahead == 'a') ADVANCE(218); + if (lookahead == 'a') ADVANCE(41); END_STATE(); case 25: - if (lookahead == 'a') ADVANCE(469); + if (lookahead == 'a') ADVANCE(42); + if (lookahead == 'e') ADVANCE(193); END_STATE(); case 26: - if (lookahead == 'a') ADVANCE(43); + if (lookahead == 'a') ADVANCE(112); END_STATE(); case 27: - if (lookahead == 'a') ADVANCE(44); - if (lookahead == 'e') ADVANCE(198); + if (lookahead == 'a') ADVANCE(192); END_STATE(); case 28: - if (lookahead == 'a') ADVANCE(116); + if (lookahead == 'a') ADVANCE(187); END_STATE(); case 29: - if (lookahead == 'a') ADVANCE(197); + if (lookahead == 'a') ADVANCE(117); END_STATE(); case 30: - if (lookahead == 'a') ADVANCE(192); + if (lookahead == 'a') ADVANCE(115); END_STATE(); case 31: - if (lookahead == 'a') ADVANCE(121); + if (lookahead == 'b') ADVANCE(249); END_STATE(); case 32: - if (lookahead == 'a') ADVANCE(119); + if (lookahead == 'b') ADVANCE(47); END_STATE(); case 33: - if (lookahead == 'b') ADVANCE(254); + if (lookahead == 'c') ADVANCE(173); END_STATE(); case 34: - if (lookahead == 'b') ADVANCE(49); + if (lookahead == 'c') ADVANCE(173); + if (lookahead == 'l') ADVANCE(206); + if (lookahead == 'n') ADVANCE(44); + if (lookahead == 'p') ADVANCE(168); + if (lookahead == 's') ADVANCE(422); END_STATE(); case 35: - if (lookahead == 'c') ADVANCE(178); + if (lookahead == 'c') ADVANCE(103); END_STATE(); case 36: - if (lookahead == 'c') ADVANCE(178); - if (lookahead == 'l') ADVANCE(211); - if (lookahead == 'n') ADVANCE(46); - if (lookahead == 'p') ADVANCE(173); - if (lookahead == 's') ADVANCE(429); + if (lookahead == 'c') ADVANCE(416); END_STATE(); case 37: - if (lookahead == 'c') ADVANCE(107); + if (lookahead == 'c') ADVANCE(458); END_STATE(); case 38: - if (lookahead == 'c') ADVANCE(423); + if (lookahead == 'c') ADVANCE(162); + if (lookahead == 'e') ADVANCE(204); END_STATE(); case 39: - if (lookahead == 'c') ADVANCE(465); + if (lookahead == 'c') ADVANCE(162); + if (lookahead == 'e') ADVANCE(204); + if (lookahead == 'i') ADVANCE(108); END_STATE(); case 40: - if (lookahead == 'c') ADVANCE(167); - if (lookahead == 'e') ADVANCE(209); + if (lookahead == 'c') ADVANCE(191); END_STATE(); case 41: - if (lookahead == 'c') ADVANCE(167); - if (lookahead == 'e') ADVANCE(209); - if (lookahead == 'i') ADVANCE(112); + if (lookahead == 'c') ADVANCE(48); END_STATE(); case 42: - if (lookahead == 'c') ADVANCE(196); + if (lookahead == 'c') ADVANCE(177); END_STATE(); case 43: - if (lookahead == 'c') ADVANCE(50); + if (lookahead == 'd') ADVANCE(249); END_STATE(); case 44: - if (lookahead == 'c') ADVANCE(182); + if (lookahead == 'd') ADVANCE(420); END_STATE(); case 45: - if (lookahead == 'd') ADVANCE(254); + if (lookahead == 'd') ADVANCE(416); END_STATE(); case 46: - if (lookahead == 'd') ADVANCE(427); + if (lookahead == 'd') ADVANCE(460); END_STATE(); case 47: - if (lookahead == 'd') ADVANCE(423); + if (lookahead == 'd') ADVANCE(23); END_STATE(); case 48: - if (lookahead == 'd') ADVANCE(467); + if (lookahead == 'e') ADVANCE(249); END_STATE(); case 49: - if (lookahead == 'd') ADVANCE(25); + if (lookahead == 'e') ADVANCE(93); + if (lookahead == 'y') ADVANCE(412); END_STATE(); case 50: - if (lookahead == 'e') ADVANCE(254); + if (lookahead == 'e') ADVANCE(75); + if (lookahead == 'o') ADVANCE(427); END_STATE(); case 51: - if (lookahead == 'e') ADVANCE(97); - if (lookahead == 'y') ADVANCE(419); + if (lookahead == 'e') ADVANCE(169); END_STATE(); case 52: - if (lookahead == 'e') ADVANCE(77); - if (lookahead == 'o') ADVANCE(434); + if (lookahead == 'e') ADVANCE(131); END_STATE(); case 53: - if (lookahead == 'e') ADVANCE(174); + if (lookahead == 'e') ADVANCE(262); END_STATE(); case 54: - if (lookahead == 'e') ADVANCE(135); + if (lookahead == 'e') ADVANCE(416); END_STATE(); case 55: - if (lookahead == 'e') ADVANCE(267); + if (lookahead == 'e') ADVANCE(429); END_STATE(); case 56: - if (lookahead == 'e') ADVANCE(423); + if (lookahead == 'e') ADVANCE(1); END_STATE(); case 57: - if (lookahead == 'e') ADVANCE(436); + if (lookahead == 'e') ADVANCE(3); END_STATE(); case 58: - if (lookahead == 'e') ADVANCE(1); + if (lookahead == 'e') ADVANCE(172); END_STATE(); case 59: - if (lookahead == 'e') ADVANCE(3); + if (lookahead == 'e') ADVANCE(43); END_STATE(); case 60: - if (lookahead == 'e') ADVANCE(177); + if (lookahead == 'e') ADVANCE(40); END_STATE(); case 61: - if (lookahead == 'e') ADVANCE(45); + if (lookahead == 'e') ADVANCE(27); END_STATE(); case 62: - if (lookahead == 'e') ADVANCE(42); + if (lookahead == 'e') ADVANCE(212); END_STATE(); case 63: - if (lookahead == 'e') ADVANCE(29); + if (lookahead == 'e') ADVANCE(97); END_STATE(); case 64: - if (lookahead == 'e') ADVANCE(217); + if (lookahead == 'e') ADVANCE(175); END_STATE(); case 65: - if (lookahead == 'e') ADVANCE(101); + if (lookahead == 'e') ADVANCE(176); END_STATE(); case 66: - if (lookahead == 'e') ADVANCE(180); + if (lookahead == 'e') ADVANCE(132); + if (lookahead == 'i') ADVANCE(116); END_STATE(); case 67: - if (lookahead == 'e') ADVANCE(181); + if (lookahead == 'e') ADVANCE(139); END_STATE(); case 68: - if (lookahead == 'e') ADVANCE(136); - if (lookahead == 'i') ADVANCE(120); + if (lookahead == 'e') ADVANCE(147); END_STATE(); case 69: - if (lookahead == 'e') ADVANCE(143); + if (lookahead == 'e') ADVANCE(59); END_STATE(); case 70: - if (lookahead == 'e') ADVANCE(151); + if (lookahead == 'e') ADVANCE(130); END_STATE(); case 71: - if (lookahead == 'e') ADVANCE(61); + if (lookahead == 'e') ADVANCE(189); END_STATE(); case 72: - if (lookahead == 'e') ADVANCE(134); + if (lookahead == 'e') ADVANCE(194); END_STATE(); case 73: - if (lookahead == 'e') ADVANCE(194); + if (lookahead == 'f') ADVANCE(434); + if (lookahead == 'n') ADVANCE(400); END_STATE(); case 74: - if (lookahead == 'e') ADVANCE(199); + if (lookahead == 'f') ADVANCE(434); + if (lookahead == 'n') ADVANCE(94); END_STATE(); case 75: - if (lookahead == 'f') ADVANCE(441); - if (lookahead == 'n') ADVANCE(407); + if (lookahead == 'f') ADVANCE(81); END_STATE(); case 76: - if (lookahead == 'f') ADVANCE(441); - if (lookahead == 'n') ADVANCE(98); + if (lookahead == 'f') ADVANCE(69); END_STATE(); case 77: - if (lookahead == 'f') ADVANCE(83); + if (lookahead == 'f') ADVANCE(180); + if (lookahead == 't') ADVANCE(150); END_STATE(); case 78: - if (lookahead == 'f') ADVANCE(71); + if (lookahead == 'g') ADVANCE(402); END_STATE(); case 79: - if (lookahead == 'f') ADVANCE(185); - if (lookahead == 't') ADVANCE(155); + if (lookahead == 'g') ADVANCE(403); END_STATE(); case 80: - if (lookahead == 'g') ADVANCE(409); + if (lookahead == 'g') ADVANCE(415); END_STATE(); case 81: - if (lookahead == 'g') ADVANCE(410); + if (lookahead == 'g') ADVANCE(68); + if (lookahead == 'm') ADVANCE(25); + if (lookahead == 'u') ADVANCE(133); END_STATE(); case 82: - if (lookahead == 'g') ADVANCE(422); + if (lookahead == 'h') ADVANCE(66); + if (lookahead == 'i') ADVANCE(190); END_STATE(); case 83: - if (lookahead == 'g') ADVANCE(70); - if (lookahead == 'm') ADVANCE(27); - if (lookahead == 'u') ADVANCE(137); + if (lookahead == 'h') ADVANCE(424); END_STATE(); case 84: - if (lookahead == 'h') ADVANCE(68); - if (lookahead == 'i') ADVANCE(195); + if (lookahead == 'h') ADVANCE(14); END_STATE(); case 85: - if (lookahead == 'h') ADVANCE(431); + if (lookahead == 'h') ADVANCE(52); + if (lookahead == 'o') ADVANCE(407); + if (lookahead == 'r') ADVANCE(201); END_STATE(); case 86: - if (lookahead == 'h') ADVANCE(16); + if (lookahead == 'h') ADVANCE(28); END_STATE(); case 87: - if (lookahead == 'h') ADVANCE(54); - if (lookahead == 'o') ADVANCE(414); + if (lookahead == 'h') ADVANCE(160); END_STATE(); case 88: - if (lookahead == 'h') ADVANCE(54); - if (lookahead == 'o') ADVANCE(414); - if (lookahead == 'r') ADVANCE(206); + if (lookahead == 'h') ADVANCE(56); END_STATE(); case 89: - if (lookahead == 'h') ADVANCE(30); + if (lookahead == 'h') ADVANCE(70); + if (lookahead == 'o') ADVANCE(407); END_STATE(); case 90: - if (lookahead == 'h') ADVANCE(165); + if (lookahead == 'h') ADVANCE(65); END_STATE(); case 91: - if (lookahead == 'h') ADVANCE(58); + if (lookahead == 'i') ADVANCE(214); END_STATE(); case 92: - if (lookahead == 'h') ADVANCE(72); - if (lookahead == 'o') ADVANCE(414); + if (lookahead == 'i') ADVANCE(143); + if (lookahead == 'o') ADVANCE(171); END_STATE(); case 93: - if (lookahead == 'h') ADVANCE(67); + if (lookahead == 'i') ADVANCE(128); + if (lookahead == 'l') ADVANCE(156); END_STATE(); case 94: - if (lookahead == 'i') ADVANCE(219); + if (lookahead == 'i') ADVANCE(195); + if (lookahead == 't') ADVANCE(153); END_STATE(); case 95: - if (lookahead == 'i') ADVANCE(147); - if (lookahead == 'o') ADVANCE(176); + if (lookahead == 'i') ADVANCE(125); END_STATE(); case 96: - if (lookahead == 'i') ADVANCE(147); - if (lookahead == 'o') ADVANCE(176); - if (lookahead == 'r') ADVANCE(162); + if (lookahead == 'i') ADVANCE(37); END_STATE(); case 97: - if (lookahead == 'i') ADVANCE(132); - if (lookahead == 'l') ADVANCE(161); + if (lookahead == 'i') ADVANCE(184); END_STATE(); case 98: - if (lookahead == 'i') ADVANCE(200); - if (lookahead == 't') ADVANCE(158); + if (lookahead == 'i') ADVANCE(138); END_STATE(); case 99: - if (lookahead == 'i') ADVANCE(129); + if (lookahead == 'i') ADVANCE(144); END_STATE(); case 100: - if (lookahead == 'i') ADVANCE(39); + if (lookahead == 'i') ADVANCE(146); END_STATE(); case 101: - if (lookahead == 'i') ADVANCE(189); + if (lookahead == 'i') ADVANCE(135); END_STATE(); case 102: - if (lookahead == 'i') ADVANCE(142); + if (lookahead == 'i') ADVANCE(30); END_STATE(); case 103: - if (lookahead == 'i') ADVANCE(148); + if (lookahead == 'k') ADVANCE(185); END_STATE(); case 104: - if (lookahead == 'i') ADVANCE(150); + if (lookahead == 'k') ADVANCE(62); + if (lookahead == 'v') ADVANCE(29); END_STATE(); case 105: - if (lookahead == 'i') ADVANCE(139); + if (lookahead == 'l') ADVANCE(206); + if (lookahead == 'n') ADVANCE(44); + if (lookahead == 'p') ADVANCE(168); + if (lookahead == 's') ADVANCE(422); END_STATE(); case 106: - if (lookahead == 'i') ADVANCE(32); + if (lookahead == 'l') ADVANCE(16); + if (lookahead == 'o') ADVANCE(118); END_STATE(); case 107: - if (lookahead == 'k') ADVANCE(190); + if (lookahead == 'l') ADVANCE(188); END_STATE(); case 108: - if (lookahead == 'k') ADVANCE(64); - if (lookahead == 'v') ADVANCE(31); + if (lookahead == 'l') ADVANCE(260); END_STATE(); case 109: - if (lookahead == 'l') ADVANCE(211); - if (lookahead == 'n') ADVANCE(46); - if (lookahead == 'p') ADVANCE(173); - if (lookahead == 's') ADVANCE(429); + if (lookahead == 'l') ADVANCE(210); END_STATE(); case 110: - if (lookahead == 'l') ADVANCE(18); - if (lookahead == 'o') ADVANCE(122); + if (lookahead == 'l') ADVANCE(211); END_STATE(); case 111: - if (lookahead == 'l') ADVANCE(193); + if (lookahead == 'l') ADVANCE(71); END_STATE(); case 112: - if (lookahead == 'l') ADVANCE(265); + if (lookahead == 'l') ADVANCE(109); END_STATE(); case 113: - if (lookahead == 'l') ADVANCE(215); + if (lookahead == 'l') ADVANCE(163); END_STATE(); case 114: - if (lookahead == 'l') ADVANCE(216); + if (lookahead == 'l') ADVANCE(60); END_STATE(); case 115: - if (lookahead == 'l') ADVANCE(73); + if (lookahead == 'l') ADVANCE(110); END_STATE(); case 116: - if (lookahead == 'l') ADVANCE(113); + if (lookahead == 'l') ADVANCE(55); END_STATE(); case 117: - if (lookahead == 'l') ADVANCE(168); + if (lookahead == 'l') ADVANCE(202); END_STATE(); case 118: - if (lookahead == 'l') ADVANCE(62); + if (lookahead == 'l') ADVANCE(114); + if (lookahead == 'u') ADVANCE(145); END_STATE(); case 119: - if (lookahead == 'l') ADVANCE(114); + if (lookahead == 'l') ADVANCE(100); END_STATE(); case 120: - if (lookahead == 'l') ADVANCE(57); + if (lookahead == 'm') ADVANCE(417); END_STATE(); case 121: - if (lookahead == 'l') ADVANCE(207); + if (lookahead == 'm') ADVANCE(406); END_STATE(); case 122: - if (lookahead == 'l') ADVANCE(118); - if (lookahead == 'u') ADVANCE(149); + if (lookahead == 'm') ADVANCE(410); END_STATE(); case 123: - if (lookahead == 'l') ADVANCE(104); + if (lookahead == 'm') ADVANCE(76); END_STATE(); case 124: - if (lookahead == 'm') ADVANCE(424); + if (lookahead == 'm') ADVANCE(32); END_STATE(); case 125: - if (lookahead == 'm') ADVANCE(413); + if (lookahead == 'm') ADVANCE(91); END_STATE(); case 126: - if (lookahead == 'm') ADVANCE(417); + if (lookahead == 'n') ADVANCE(249); END_STATE(); case 127: - if (lookahead == 'm') ADVANCE(78); + if (lookahead == 'n') ADVANCE(411); END_STATE(); case 128: - if (lookahead == 'm') ADVANCE(34); + if (lookahead == 'n') ADVANCE(78); END_STATE(); case 129: - if (lookahead == 'm') ADVANCE(94); + if (lookahead == 'n') ADVANCE(77); END_STATE(); case 130: - if (lookahead == 'n') ADVANCE(254); + if (lookahead == 'n') ADVANCE(413); END_STATE(); case 131: - if (lookahead == 'n') ADVANCE(418); + if (lookahead == 'n') ADVANCE(413); + if (lookahead == 'r') ADVANCE(63); END_STATE(); case 132: - if (lookahead == 'n') ADVANCE(80); + if (lookahead == 'n') ADVANCE(432); END_STATE(); case 133: - if (lookahead == 'n') ADVANCE(79); + if (lookahead == 'n') ADVANCE(454); END_STATE(); case 134: - if (lookahead == 'n') ADVANCE(420); + if (lookahead == 'n') ADVANCE(447); END_STATE(); case 135: - if (lookahead == 'n') ADVANCE(420); - if (lookahead == 'r') ADVANCE(65); + if (lookahead == 'n') ADVANCE(404); END_STATE(); case 136: - if (lookahead == 'n') ADVANCE(439); + if (lookahead == 'n') ADVANCE(399); END_STATE(); case 137: - if (lookahead == 'n') ADVANCE(461); + if (lookahead == 'n') ADVANCE(95); END_STATE(); case 138: - if (lookahead == 'n') ADVANCE(454); + if (lookahead == 'n') ADVANCE(79); END_STATE(); case 139: - if (lookahead == 'n') ADVANCE(411); + if (lookahead == 'n') ADVANCE(45); END_STATE(); case 140: - if (lookahead == 'n') ADVANCE(406); + if (lookahead == 'n') ADVANCE(111); END_STATE(); case 141: - if (lookahead == 'n') ADVANCE(99); + if (lookahead == 'n') ADVANCE(111); + if (lookahead == 'p') ADVANCE(197); + if (lookahead == 's') ADVANCE(98); END_STATE(); case 142: - if (lookahead == 'n') ADVANCE(81); + if (lookahead == 'n') ADVANCE(36); END_STATE(); case 143: - if (lookahead == 'n') ADVANCE(47); + if (lookahead == 'n') ADVANCE(26); END_STATE(); case 144: - if (lookahead == 'n') ADVANCE(115); + if (lookahead == 'n') ADVANCE(80); END_STATE(); case 145: - if (lookahead == 'n') ADVANCE(115); - if (lookahead == 'p') ADVANCE(202); - if (lookahead == 's') ADVANCE(102); + if (lookahead == 'n') ADVANCE(191); END_STATE(); case 146: - if (lookahead == 'n') ADVANCE(38); + if (lookahead == 'n') ADVANCE(48); END_STATE(); case 147: - if (lookahead == 'n') ADVANCE(28); + if (lookahead == 'n') ADVANCE(64); END_STATE(); case 148: - if (lookahead == 'n') ADVANCE(82); + if (lookahead == 'o') ADVANCE(118); END_STATE(); case 149: - if (lookahead == 'n') ADVANCE(196); + if (lookahead == 'o') ADVANCE(408); END_STATE(); case 150: - if (lookahead == 'n') ADVANCE(50); + if (lookahead == 'o') ADVANCE(409); END_STATE(); case 151: - if (lookahead == 'n') ADVANCE(66); + if (lookahead == 'o') ADVANCE(456); END_STATE(); case 152: - if (lookahead == 'o') ADVANCE(122); + if (lookahead == 'o') ADVANCE(426); END_STATE(); case 153: - if (lookahead == 'o') ADVANCE(434); + if (lookahead == 'o') ADVANCE(444); END_STATE(); case 154: - if (lookahead == 'o') ADVANCE(415); + if (lookahead == 'o') ADVANCE(166); END_STATE(); case 155: - if (lookahead == 'o') ADVANCE(416); + if (lookahead == 'o') ADVANCE(186); END_STATE(); case 156: - if (lookahead == 'o') ADVANCE(463); + if (lookahead == 'o') ADVANCE(205); END_STATE(); case 157: - if (lookahead == 'o') ADVANCE(433); + if (lookahead == 'o') ADVANCE(121); END_STATE(); case 158: - if (lookahead == 'o') ADVANCE(451); + if (lookahead == 'o') ADVANCE(208); END_STATE(); case 159: - if (lookahead == 'o') ADVANCE(171); + if (lookahead == 'o') ADVANCE(167); END_STATE(); case 160: - if (lookahead == 'o') ADVANCE(191); + if (lookahead == 'o') ADVANCE(46); END_STATE(); case 161: - if (lookahead == 'o') ADVANCE(210); + if (lookahead == 'o') ADVANCE(122); END_STATE(); case 162: - if (lookahead == 'o') ADVANCE(125); + if (lookahead == 'o') ADVANCE(142); END_STATE(); case 163: - if (lookahead == 'o') ADVANCE(213); + if (lookahead == 'o') ADVANCE(159); END_STATE(); case 164: - if (lookahead == 'o') ADVANCE(172); + if (lookahead == 'p') ADVANCE(197); + if (lookahead == 's') ADVANCE(98); END_STATE(); case 165: - if (lookahead == 'o') ADVANCE(48); + if (lookahead == 'p') ADVANCE(24); END_STATE(); case 166: - if (lookahead == 'o') ADVANCE(126); + if (lookahead == 'p') ADVANCE(451); END_STATE(); case 167: - if (lookahead == 'o') ADVANCE(146); + if (lookahead == 'p') ADVANCE(453); END_STATE(); case 168: - if (lookahead == 'o') ADVANCE(164); + if (lookahead == 'p') ADVANCE(67); END_STATE(); case 169: - if (lookahead == 'p') ADVANCE(202); - if (lookahead == 's') ADVANCE(102); + if (lookahead == 'p') ADVANCE(61); + if (lookahead == 't') ADVANCE(200); END_STATE(); case 170: - if (lookahead == 'p') ADVANCE(26); + if (lookahead == 'r') ADVANCE(157); END_STATE(); case 171: - if (lookahead == 'p') ADVANCE(458); + if (lookahead == 'r') ADVANCE(418); END_STATE(); case 172: - if (lookahead == 'p') ADVANCE(460); + if (lookahead == 'r') ADVANCE(442); END_STATE(); case 173: - if (lookahead == 'p') ADVANCE(69); + if (lookahead == 'r') ADVANCE(155); END_STATE(); case 174: - if (lookahead == 'p') ADVANCE(63); - if (lookahead == 't') ADVANCE(205); + if (lookahead == 'r') ADVANCE(123); END_STATE(); case 175: - if (lookahead == 'r') ADVANCE(162); + if (lookahead == 'r') ADVANCE(96); END_STATE(); case 176: - if (lookahead == 'r') ADVANCE(425); + if (lookahead == 'r') ADVANCE(63); END_STATE(); case 177: - if (lookahead == 'r') ADVANCE(449); + if (lookahead == 'r') ADVANCE(151); END_STATE(); case 178: - if (lookahead == 'r') ADVANCE(160); + if (lookahead == 'r') ADVANCE(134); END_STATE(); case 179: - if (lookahead == 'r') ADVANCE(127); + if (lookahead == 'r') ADVANCE(126); END_STATE(); case 180: - if (lookahead == 'r') ADVANCE(100); + if (lookahead == 'r') ADVANCE(161); END_STATE(); case 181: - if (lookahead == 'r') ADVANCE(65); + if (lookahead == 's') ADVANCE(401); END_STATE(); case 182: - if (lookahead == 'r') ADVANCE(156); + if (lookahead == 's') ADVANCE(438); END_STATE(); case 183: - if (lookahead == 'r') ADVANCE(138); + if (lookahead == 's') ADVANCE(436); END_STATE(); case 184: - if (lookahead == 'r') ADVANCE(130); + if (lookahead == 's') ADVANCE(440); END_STATE(); case 185: - if (lookahead == 'r') ADVANCE(166); + if (lookahead == 's') ADVANCE(165); END_STATE(); case 186: - if (lookahead == 's') ADVANCE(408); + if (lookahead == 's') ADVANCE(181); END_STATE(); case 187: - if (lookahead == 's') ADVANCE(445); + if (lookahead == 's') ADVANCE(84); END_STATE(); case 188: - if (lookahead == 's') ADVANCE(443); + if (lookahead == 's') ADVANCE(53); END_STATE(); case 189: - if (lookahead == 's') ADVANCE(447); + if (lookahead == 's') ADVANCE(183); END_STATE(); case 190: - if (lookahead == 's') ADVANCE(170); + if (lookahead == 't') ADVANCE(83); END_STATE(); case 191: - if (lookahead == 's') ADVANCE(186); + if (lookahead == 't') ADVANCE(416); END_STATE(); case 192: - if (lookahead == 's') ADVANCE(86); + if (lookahead == 't') ADVANCE(431); END_STATE(); case 193: - if (lookahead == 's') ADVANCE(55); + if (lookahead == 't') ADVANCE(87); END_STATE(); case 194: - if (lookahead == 's') ADVANCE(188); + if (lookahead == 't') ADVANCE(200); END_STATE(); case 195: - if (lookahead == 't') ADVANCE(85); + if (lookahead == 't') ADVANCE(102); END_STATE(); case 196: - if (lookahead == 't') ADVANCE(423); + if (lookahead == 't') ADVANCE(88); END_STATE(); case 197: - if (lookahead == 't') ADVANCE(438); + if (lookahead == 't') ADVANCE(149); END_STATE(); case 198: - if (lookahead == 't') ADVANCE(90); + if (lookahead == 't') ADVANCE(203); END_STATE(); case 199: - if (lookahead == 't') ADVANCE(205); + if (lookahead == 'u') ADVANCE(120); END_STATE(); case 200: - if (lookahead == 't') ADVANCE(106); + if (lookahead == 'u') ADVANCE(178); END_STATE(); case 201: - if (lookahead == 't') ADVANCE(91); + if (lookahead == 'u') ADVANCE(53); END_STATE(); case 202: - if (lookahead == 't') ADVANCE(154); + if (lookahead == 'u') ADVANCE(57); END_STATE(); case 203: - if (lookahead == 't') ADVANCE(208); + if (lookahead == 'u') ADVANCE(179); END_STATE(); case 204: - if (lookahead == 'u') ADVANCE(124); + if (lookahead == 'v') ADVANCE(58); END_STATE(); case 205: - if (lookahead == 'u') ADVANCE(183); + if (lookahead == 'w') ADVANCE(405); END_STATE(); case 206: - if (lookahead == 'u') ADVANCE(55); + if (lookahead == 'w') ADVANCE(22); END_STATE(); case 207: - if (lookahead == 'u') ADVANCE(59); + if (lookahead == 'w') ADVANCE(119); END_STATE(); case 208: - if (lookahead == 'u') ADVANCE(184); + if (lookahead == 'w') ADVANCE(129); END_STATE(); case 209: - if (lookahead == 'v') ADVANCE(60); + if (lookahead == 'x') ADVANCE(95); END_STATE(); case 210: - if (lookahead == 'w') ADVANCE(412); + if (lookahead == 'y') ADVANCE(445); END_STATE(); case 211: - if (lookahead == 'w') ADVANCE(24); + if (lookahead == 'y') ADVANCE(449); END_STATE(); case 212: - if (lookahead == 'w') ADVANCE(123); + if (lookahead == 'y') ADVANCE(3); END_STATE(); case 213: - if (lookahead == 'w') ADVANCE(133); + if (lookahead == 'y') ADVANCE(182); END_STATE(); case 214: - if (lookahead == 'x') ADVANCE(99); + if (lookahead == 'z') ADVANCE(54); END_STATE(); case 215: - if (lookahead == 'y') ADVANCE(452); + if (lookahead == '|') ADVANCE(398); + if (lookahead != 0) ADVANCE(215); END_STATE(); case 216: - if (lookahead == 'y') ADVANCE(456); + if (lookahead == '|') ADVANCE(10); + if (lookahead != 0) ADVANCE(216); END_STATE(); case 217: - if (lookahead == 'y') ADVANCE(3); + if (lookahead == '+' || + lookahead == '-') ADVANCE(219); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(242); END_STATE(); case 218: - if (lookahead == 'y') ADVANCE(187); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(244); END_STATE(); case 219: - if (lookahead == 'z') ADVANCE(56); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(242); END_STATE(); case 220: - if (lookahead == '|') ADVANCE(405); - if (lookahead != 0) ADVANCE(220); - END_STATE(); - case 221: - if (lookahead == '|') ADVANCE(10); - if (lookahead != 0) ADVANCE(221); - END_STATE(); - case 222: - if (lookahead == '+' || - lookahead == '-') ADVANCE(224); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(247); - END_STATE(); - case 223: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(249); - END_STATE(); - case 224: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(247); - END_STATE(); - case 225: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(254); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(249); END_STATE(); - case 226: + case 221: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(248); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(243); END_STATE(); - case 227: + case 222: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(225); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(220); END_STATE(); - case 228: + case 223: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(227); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(222); END_STATE(); - case 229: + case 224: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(250); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(245); END_STATE(); - case 230: + case 225: if (lookahead != 0 && lookahead != 'b' && lookahead != 'f' && lookahead != 'n' && lookahead != 'o' && - (lookahead < 'r' || 'u' < lookahead)) ADVANCE(254); - if (lookahead == 'b') ADVANCE(255); - if (lookahead == 'f') ADVANCE(259); - if (lookahead == 'n') ADVANCE(257); - if (lookahead == 'o') ADVANCE(263); - if (lookahead == 'r') ADVANCE(258); - if (lookahead == 's') ADVANCE(260); - if (lookahead == 't') ADVANCE(256); - if (lookahead == 'u') ADVANCE(264); + (lookahead < 'r' || 'u' < lookahead)) ADVANCE(249); + if (lookahead == 'b') ADVANCE(250); + if (lookahead == 'f') ADVANCE(254); + if (lookahead == 'n') ADVANCE(252); + if (lookahead == 'o') ADVANCE(258); + if (lookahead == 'r') ADVANCE(253); + if (lookahead == 's') ADVANCE(255); + if (lookahead == 't') ADVANCE(251); + if (lookahead == 'u') ADVANCE(259); END_STATE(); - case 231: + case 226: if (lookahead != 0 && lookahead != '\n') ADVANCE(9); END_STATE(); - case 232: - if (eof) ADVANCE(233); + case 227: + if (eof) ADVANCE(228); if (lookahead == '"') ADVANCE(9); - if (lookahead == '#') ADVANCE(389); - if (lookahead == '\'') ADVANCE(400); - if (lookahead == '(') ADVANCE(384); - if (lookahead == ')') ADVANCE(385); - if (lookahead == ',') ADVANCE(403); - if (lookahead == '.') ADVANCE(238); - if (lookahead == '0') ADVANCE(240); - if (lookahead == ':') ADVANCE(473); - if (lookahead == ';') ADVANCE(236); - if (lookahead == '@') ADVANCE(399); - if (lookahead == '\\') ADVANCE(230); - if (lookahead == '^') ADVANCE(382); - if (lookahead == '`') ADVANCE(401); - if (lookahead == 'n') ADVANCE(308); - if (lookahead == '|') ADVANCE(375); - if (lookahead == '}') ADVANCE(387); - if (('+' <= lookahead && lookahead <= '-')) ADVANCE(268); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(242); + if (lookahead == '#') ADVANCE(384); + if (lookahead == '\'') ADVANCE(393); + if (lookahead == '(') ADVANCE(379); + if (lookahead == ')') ADVANCE(380); + if (lookahead == ',') ADVANCE(396); + if (lookahead == '.') ADVANCE(233); + if (lookahead == '0') ADVANCE(235); + if (lookahead == ':') ADVANCE(246); + if (lookahead == ';') ADVANCE(231); + if (lookahead == '@') ADVANCE(392); + if (lookahead == '\\') ADVANCE(225); + if (lookahead == '^') ADVANCE(377); + if (lookahead == '`') ADVANCE(394); + if (lookahead == 'n') ADVANCE(303); + if (lookahead == '|') ADVANCE(370); + if (lookahead == '}') ADVANCE(382); + if (('+' <= lookahead && lookahead <= '-')) ADVANCE(263); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(237); if (('\t' <= lookahead && lookahead <= '\r') || (28 <= lookahead && lookahead <= ' ') || lookahead == 5760 || @@ -2694,15 +2567,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8232 || lookahead == 8233 || lookahead == 8287 || - lookahead == 12288) ADVANCE(234); + lookahead == 12288) ADVANCE(229); if (lookahead != 0 && (lookahead < '[' || ']' < lookahead) && - (lookahead < '{' || '~' < lookahead)) ADVANCE(381); + (lookahead < '{' || '~' < lookahead)) ADVANCE(376); END_STATE(); - case 233: + case 228: ACCEPT_TOKEN(ts_builtin_sym_end); END_STATE(); - case 234: + case 229: ACCEPT_TOKEN(sym__ws); if (('\t' <= lookahead && lookahead <= '\r') || (28 <= lookahead && lookahead <= ' ') || @@ -2712,1143 +2585,1126 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8232 || lookahead == 8233 || lookahead == 8287 || - lookahead == 12288) ADVANCE(234); + lookahead == 12288) ADVANCE(229); END_STATE(); - case 235: + case 230: ACCEPT_TOKEN(sym_comment); END_STATE(); - case 236: + case 231: ACCEPT_TOKEN(sym_comment); - if (lookahead == '\n') ADVANCE(235); - if (lookahead != 0) ADVANCE(236); + if (lookahead == '\n') ADVANCE(230); + if (lookahead != 0) ADVANCE(231); END_STATE(); - case 237: + case 232: ACCEPT_TOKEN(anon_sym_POUND_); END_STATE(); - case 238: + case 233: ACCEPT_TOKEN(anon_sym_DOT); END_STATE(); - case 239: + case 234: ACCEPT_TOKEN(sym_num_lit); END_STATE(); - case 240: + case 235: ACCEPT_TOKEN(sym_num_lit); - if (lookahead == '.') ADVANCE(246); - if (lookahead == '/') ADVANCE(223); + if (lookahead == '.') ADVANCE(241); + if (lookahead == '/') ADVANCE(218); if (lookahead == 'M' || - lookahead == 'N') ADVANCE(239); + lookahead == 'N') ADVANCE(234); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(222); + lookahead == 'e') ADVANCE(217); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(229); + lookahead == 'r') ADVANCE(224); if (lookahead == 'X' || - lookahead == 'x') ADVANCE(226); + lookahead == 'x') ADVANCE(221); if (lookahead == '8' || - lookahead == '9') ADVANCE(242); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(241); + lookahead == '9') ADVANCE(237); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(236); END_STATE(); - case 241: + case 236: ACCEPT_TOKEN(sym_num_lit); - if (lookahead == '.') ADVANCE(246); - if (lookahead == '/') ADVANCE(223); + if (lookahead == '.') ADVANCE(241); + if (lookahead == '/') ADVANCE(218); if (lookahead == 'M' || - lookahead == 'N') ADVANCE(239); + lookahead == 'N') ADVANCE(234); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(222); + lookahead == 'e') ADVANCE(217); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(229); + lookahead == 'r') ADVANCE(224); if (lookahead == '8' || - lookahead == '9') ADVANCE(242); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(241); + lookahead == '9') ADVANCE(237); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(236); END_STATE(); - case 242: + case 237: ACCEPT_TOKEN(sym_num_lit); - if (lookahead == '.') ADVANCE(246); - if (lookahead == '/') ADVANCE(223); + if (lookahead == '.') ADVANCE(241); + if (lookahead == '/') ADVANCE(218); if (lookahead == 'M' || - lookahead == 'N') ADVANCE(239); + lookahead == 'N') ADVANCE(234); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(222); + lookahead == 'e') ADVANCE(217); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(229); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(242); + lookahead == 'r') ADVANCE(224); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(237); END_STATE(); - case 243: + case 238: ACCEPT_TOKEN(sym_num_lit); - if (lookahead == '.') ADVANCE(246); - if (lookahead == '/') ADVANCE(379); + if (lookahead == '.') ADVANCE(241); + if (lookahead == '/') ADVANCE(374); if (lookahead == 'M' || - lookahead == 'N') ADVANCE(239); + lookahead == 'N') ADVANCE(234); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(378); + lookahead == 'e') ADVANCE(373); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(376); + lookahead == 'r') ADVANCE(371); if (lookahead == 'X' || - lookahead == 'x') ADVANCE(377); + lookahead == 'x') ADVANCE(372); if (lookahead == '8' || - lookahead == '9') ADVANCE(245); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(244); + lookahead == '9') ADVANCE(240); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(239); END_STATE(); - case 244: + case 239: ACCEPT_TOKEN(sym_num_lit); - if (lookahead == '.') ADVANCE(246); - if (lookahead == '/') ADVANCE(379); + if (lookahead == '.') ADVANCE(241); + if (lookahead == '/') ADVANCE(374); if (lookahead == 'M' || - lookahead == 'N') ADVANCE(239); + lookahead == 'N') ADVANCE(234); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(378); + lookahead == 'e') ADVANCE(373); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(376); + lookahead == 'r') ADVANCE(371); if (lookahead == '8' || - lookahead == '9') ADVANCE(245); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(244); + lookahead == '9') ADVANCE(240); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(239); END_STATE(); - case 245: + case 240: ACCEPT_TOKEN(sym_num_lit); - if (lookahead == '.') ADVANCE(246); - if (lookahead == '/') ADVANCE(379); + if (lookahead == '.') ADVANCE(241); + if (lookahead == '/') ADVANCE(374); if (lookahead == 'M' || - lookahead == 'N') ADVANCE(239); + lookahead == 'N') ADVANCE(234); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(378); + lookahead == 'e') ADVANCE(373); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(376); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(245); + lookahead == 'r') ADVANCE(371); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(240); END_STATE(); - case 246: + case 241: ACCEPT_TOKEN(sym_num_lit); - if (lookahead == 'M') ADVANCE(239); + if (lookahead == 'M') ADVANCE(234); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(222); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(246); + lookahead == 'e') ADVANCE(217); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(241); END_STATE(); - case 247: + case 242: ACCEPT_TOKEN(sym_num_lit); - if (lookahead == 'M') ADVANCE(239); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(247); + if (lookahead == 'M') ADVANCE(234); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(242); END_STATE(); - case 248: + case 243: ACCEPT_TOKEN(sym_num_lit); - if (lookahead == 'N') ADVANCE(239); + if (lookahead == 'N') ADVANCE(234); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(248); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(243); END_STATE(); - case 249: + case 244: ACCEPT_TOKEN(sym_num_lit); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(249); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(244); END_STATE(); - case 250: + case 245: ACCEPT_TOKEN(sym_num_lit); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(250); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(245); + END_STATE(); + case 246: + ACCEPT_TOKEN(anon_sym_COLON); + if (lookahead == ':') ADVANCE(247); + END_STATE(); + case 247: + ACCEPT_TOKEN(anon_sym_COLON_COLON); + END_STATE(); + case 248: + ACCEPT_TOKEN(aux_sym_str_lit_token1); + END_STATE(); + case 249: + ACCEPT_TOKEN(sym_char_lit); + END_STATE(); + case 250: + ACCEPT_TOKEN(sym_char_lit); + if (lookahead == 'a') ADVANCE(35); END_STATE(); case 251: - ACCEPT_TOKEN(sym_kwd_lit); + ACCEPT_TOKEN(sym_char_lit); + if (lookahead == 'a') ADVANCE(31); END_STATE(); case 252: - ACCEPT_TOKEN(sym_kwd_lit); - if (!sym_kwd_lit_character_set_1(lookahead)) ADVANCE(252); + ACCEPT_TOKEN(sym_char_lit); + if (lookahead == 'e') ADVANCE(207); END_STATE(); case 253: - ACCEPT_TOKEN(aux_sym_str_lit_token1); + ACCEPT_TOKEN(sym_char_lit); + if (lookahead == 'e') ADVANCE(198); END_STATE(); case 254: ACCEPT_TOKEN(sym_char_lit); + if (lookahead == 'o') ADVANCE(174); END_STATE(); case 255: ACCEPT_TOKEN(sym_char_lit); - if (lookahead == 'a') ADVANCE(37); + if (lookahead == 'p') ADVANCE(24); END_STATE(); case 256: ACCEPT_TOKEN(sym_char_lit); - if (lookahead == 'a') ADVANCE(33); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(249); END_STATE(); case 257: ACCEPT_TOKEN(sym_char_lit); - if (lookahead == 'e') ADVANCE(212); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(256); END_STATE(); case 258: ACCEPT_TOKEN(sym_char_lit); - if (lookahead == 'e') ADVANCE(203); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(257); END_STATE(); case 259: ACCEPT_TOKEN(sym_char_lit); - if (lookahead == 'o') ADVANCE(179); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(223); END_STATE(); case 260: - ACCEPT_TOKEN(sym_char_lit); - if (lookahead == 'p') ADVANCE(26); + ACCEPT_TOKEN(sym_nil_lit); END_STATE(); case 261: - ACCEPT_TOKEN(sym_char_lit); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(254); + ACCEPT_TOKEN(sym_nil_lit); + if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(376); END_STATE(); case 262: - ACCEPT_TOKEN(sym_char_lit); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(261); + ACCEPT_TOKEN(sym_bool_lit); END_STATE(); case 263: - ACCEPT_TOKEN(sym_char_lit); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(262); + ACCEPT_TOKEN(aux_sym_sym_lit_token1); + if (lookahead == '0') ADVANCE(238); + if (!aux_sym_sym_lit_token1_character_set_3(lookahead)) ADVANCE(376); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(240); END_STATE(); case 264: - ACCEPT_TOKEN(sym_char_lit); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(228); + ACCEPT_TOKEN(aux_sym_sym_lit_token1); + if (lookahead == ':') ADVANCE(113); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(376); END_STATE(); case 265: - ACCEPT_TOKEN(sym_nil_lit); + ACCEPT_TOKEN(aux_sym_sym_lit_token1); + if (lookahead == 'a') ADVANCE(365); + if (lookahead == 'i') ADVANCE(335); + if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(376); END_STATE(); case 266: - ACCEPT_TOKEN(sym_nil_lit); - if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(381); + ACCEPT_TOKEN(aux_sym_sym_lit_token1); + if (lookahead == 'a') ADVANCE(368); + if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(376); END_STATE(); case 267: - ACCEPT_TOKEN(sym_bool_lit); + ACCEPT_TOKEN(aux_sym_sym_lit_token1); + if (lookahead == 'a') ADVANCE(463); + if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(376); END_STATE(); case 268: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == '0') ADVANCE(243); - if (!aux_sym_sym_lit_token1_character_set_3(lookahead)) ADVANCE(381); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(245); + if (lookahead == 'a') ADVANCE(317); + if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(376); END_STATE(); case 269: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == ':') ADVANCE(117); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(381); + if (lookahead == 'a') ADVANCE(323); + if (lookahead == 'o') ADVANCE(341); + if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(376); END_STATE(); case 270: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'a') ADVANCE(370); - if (lookahead == 'i') ADVANCE(340); - if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(381); + if (lookahead == 'a') ADVANCE(276); + if (lookahead == 'e') ADVANCE(358); + if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(376); END_STATE(); case 271: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'a') ADVANCE(373); - if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(381); + if (lookahead == 'a') ADVANCE(319); + if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(376); END_STATE(); case 272: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'a') ADVANCE(470); - if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(381); + if (lookahead == 'b') ADVANCE(280); + if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(376); END_STATE(); case 273: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'a') ADVANCE(322); - if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(381); + if (lookahead == 'c') ADVANCE(459); + if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(376); END_STATE(); case 274: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'a') ADVANCE(328); - if (lookahead == 'o') ADVANCE(346); - if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(381); + if (lookahead == 'c') ADVANCE(343); + if (lookahead == 'e') ADVANCE(363); + if (lookahead == 'i') ADVANCE(312); + if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(376); END_STATE(); case 275: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'a') ADVANCE(281); - if (lookahead == 'e') ADVANCE(363); - if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(381); + if (lookahead == 'c') ADVANCE(309); + if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(376); END_STATE(); case 276: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'a') ADVANCE(324); - if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(381); + if (lookahead == 'c') ADVANCE(348); + if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(376); END_STATE(); case 277: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'b') ADVANCE(285); - if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(381); + if (lookahead == 'c') ADVANCE(360); + if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(376); END_STATE(); case 278: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'c') ADVANCE(466); - if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(381); + if (lookahead == 'd') ADVANCE(421); + if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(376); END_STATE(); case 279: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'c') ADVANCE(348); - if (lookahead == 'e') ADVANCE(368); - if (lookahead == 'i') ADVANCE(317); - if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(381); + if (lookahead == 'd') ADVANCE(461); + if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(376); END_STATE(); case 280: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'c') ADVANCE(314); - if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(381); + if (lookahead == 'd') ADVANCE(267); + if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(376); END_STATE(); case 281: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'c') ADVANCE(353); - if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(381); + if (lookahead == 'd') ADVANCE(309); + if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(376); END_STATE(); case 282: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'c') ADVANCE(365); - if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(381); + if (lookahead == 'e') ADVANCE(356); + if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(376); END_STATE(); case 283: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'd') ADVANCE(428); - if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(381); + if (lookahead == 'e') ADVANCE(355); + if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(376); END_STATE(); case 284: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'd') ADVANCE(468); - if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(381); + if (lookahead == 'e') ADVANCE(430); + if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(376); END_STATE(); case 285: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'd') ADVANCE(272); - if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(381); + if (lookahead == 'e') ADVANCE(296); + if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(376); END_STATE(); case 286: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'd') ADVANCE(314); - if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(381); + if (lookahead == 'e') ADVANCE(349); + if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(376); END_STATE(); case 287: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'e') ADVANCE(361); - if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(381); + if (lookahead == 'e') ADVANCE(277); + if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(376); END_STATE(); case 288: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'e') ADVANCE(360); - if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(381); + if (lookahead == 'e') ADVANCE(347); + if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(376); END_STATE(); case 289: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'e') ADVANCE(437); - if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(381); + if (lookahead == 'e') ADVANCE(309); + if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(376); END_STATE(); case 290: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'e') ADVANCE(301); - if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(381); + if (lookahead == 'e') ADVANCE(328); + if (lookahead == 'i') ADVANCE(321); + if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(376); END_STATE(); case 291: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'e') ADVANCE(354); - if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(381); + if (lookahead == 'e') ADVANCE(350); + if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(376); END_STATE(); case 292: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'e') ADVANCE(282); - if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(381); + if (lookahead == 'e') ADVANCE(308); + if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(376); END_STATE(); case 293: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'e') ADVANCE(352); - if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(381); + if (lookahead == 'e') ADVANCE(333); + if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(376); END_STATE(); case 294: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'e') ADVANCE(314); - if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(381); + if (lookahead == 'e') ADVANCE(337); + if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(376); END_STATE(); case 295: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'e') ADVANCE(333); - if (lookahead == 'i') ADVANCE(326); - if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(381); + if (lookahead == 'f') ADVANCE(435); + if (lookahead == 'n') ADVANCE(306); + if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(376); END_STATE(); case 296: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'e') ADVANCE(355); - if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(381); + if (lookahead == 'f') ADVANCE(298); + if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(376); END_STATE(); case 297: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'e') ADVANCE(313); - if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(381); + if (lookahead == 'g') ADVANCE(376); + if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(376); END_STATE(); case 298: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'e') ADVANCE(338); - if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(381); + if (lookahead == 'g') ADVANCE(294); + if (lookahead == 'm') ADVANCE(270); + if (lookahead == 'u') ADVANCE(331); + if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(376); END_STATE(); case 299: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'e') ADVANCE(342); - if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(381); + if (lookahead == 'h') ADVANCE(290); + if (lookahead == 'i') ADVANCE(357); + if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(376); END_STATE(); case 300: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'f') ADVANCE(442); - if (lookahead == 'n') ADVANCE(311); - if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(381); + if (lookahead == 'h') ADVANCE(425); + if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(376); END_STATE(); case 301: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'f') ADVANCE(303); - if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(381); + if (lookahead == 'h') ADVANCE(286); + if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(376); END_STATE(); case 302: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'g') ADVANCE(381); - if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(381); + if (lookahead == 'h') ADVANCE(342); + if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(376); END_STATE(); case 303: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'g') ADVANCE(299); - if (lookahead == 'm') ADVANCE(275); - if (lookahead == 'u') ADVANCE(336); - if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(381); + if (lookahead == 'i') ADVANCE(312); + if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(376); END_STATE(); case 304: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'h') ADVANCE(295); - if (lookahead == 'i') ADVANCE(362); - if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(381); + if (lookahead == 'i') ADVANCE(369); + if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(376); END_STATE(); case 305: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'h') ADVANCE(432); - if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(381); + if (lookahead == 'i') ADVANCE(334); + if (lookahead == 'o') ADVANCE(346); + if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(376); END_STATE(); case 306: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'h') ADVANCE(291); - if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(381); + if (lookahead == 'i') ADVANCE(359); + if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(376); END_STATE(); case 307: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'h') ADVANCE(347); - if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(381); + if (lookahead == 'i') ADVANCE(273); + if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(376); END_STATE(); case 308: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'i') ADVANCE(317); - if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(381); + if (lookahead == 'i') ADVANCE(354); + if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(376); END_STATE(); case 309: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'i') ADVANCE(374); - if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(381); + if (lookahead == 'i') ADVANCE(330); + if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(376); END_STATE(); case 310: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'i') ADVANCE(339); - if (lookahead == 'o') ADVANCE(351); - if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(381); + if (lookahead == 'i') ADVANCE(326); + if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(376); END_STATE(); case 311: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'i') ADVANCE(364); - if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(381); + if (lookahead == 'i') ADVANCE(271); + if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(376); END_STATE(); case 312: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'i') ADVANCE(278); - if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(381); + if (lookahead == 'l') ADVANCE(261); + if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(376); END_STATE(); case 313: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'i') ADVANCE(359); - if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(381); + if (lookahead == 'l') ADVANCE(364); + if (lookahead == 'n') ADVANCE(278); + if (lookahead == 'p') ADVANCE(345); + if (lookahead == 's') ADVANCE(423); + if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(376); END_STATE(); case 314: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'i') ADVANCE(335); - if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(381); + if (lookahead == 'l') ADVANCE(264); + if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(376); END_STATE(); case 315: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'i') ADVANCE(331); - if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(381); + if (lookahead == 'l') ADVANCE(366); + if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(376); END_STATE(); case 316: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'i') ADVANCE(276); - if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(381); + if (lookahead == 'l') ADVANCE(367); + if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(376); END_STATE(); case 317: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'l') ADVANCE(266); - if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(381); + if (lookahead == 'l') ADVANCE(315); + if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(376); END_STATE(); case 318: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'l') ADVANCE(369); - if (lookahead == 'n') ADVANCE(283); - if (lookahead == 'p') ADVANCE(350); - if (lookahead == 's') ADVANCE(430); - if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(381); + if (lookahead == 'l') ADVANCE(283); + if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(376); END_STATE(); case 319: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'l') ADVANCE(269); - if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(381); + if (lookahead == 'l') ADVANCE(316); + if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(376); END_STATE(); case 320: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'l') ADVANCE(371); - if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(381); + if (lookahead == 'l') ADVANCE(287); + if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(376); END_STATE(); case 321: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'l') ADVANCE(372); - if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(381); + if (lookahead == 'l') ADVANCE(284); + if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(376); END_STATE(); case 322: ACCEPT_TOKEN(aux_sym_sym_lit_token1); if (lookahead == 'l') ADVANCE(320); - if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(381); + if (lookahead == 'u') ADVANCE(336); + if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(376); END_STATE(); case 323: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'l') ADVANCE(288); - if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(381); + if (lookahead == 'm') ADVANCE(272); + if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(376); END_STATE(); case 324: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'l') ADVANCE(321); - if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(381); + if (lookahead == 'm') ADVANCE(325); + if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(376); END_STATE(); case 325: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'l') ADVANCE(292); - if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(381); + if (lookahead == 'm') ADVANCE(309); + if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(376); END_STATE(); case 326: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'l') ADVANCE(289); - if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(381); + if (lookahead == 'm') ADVANCE(304); + if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(376); END_STATE(); case 327: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'l') ADVANCE(325); - if (lookahead == 'u') ADVANCE(341); - if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(381); + if (lookahead == 'n') ADVANCE(275); + if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(376); END_STATE(); case 328: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'm') ADVANCE(277); - if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(381); + if (lookahead == 'n') ADVANCE(433); + if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(376); END_STATE(); case 329: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'm') ADVANCE(330); - if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(381); + if (lookahead == 'n') ADVANCE(448); + if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(376); END_STATE(); case 330: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'm') ADVANCE(314); - if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(381); + if (lookahead == 'n') ADVANCE(297); + if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(376); END_STATE(); case 331: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'm') ADVANCE(309); - if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(381); + if (lookahead == 'n') ADVANCE(455); + if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(376); END_STATE(); case 332: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'n') ADVANCE(280); - if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(381); + if (lookahead == 'n') ADVANCE(318); + if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(376); END_STATE(); case 333: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'n') ADVANCE(440); - if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(381); + if (lookahead == 'n') ADVANCE(281); + if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(376); END_STATE(); case 334: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'n') ADVANCE(455); - if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(381); + if (lookahead == 'n') ADVANCE(268); + if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(376); END_STATE(); case 335: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'n') ADVANCE(302); - if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(381); + if (lookahead == 'n') ADVANCE(310); + if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(376); END_STATE(); case 336: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'n') ADVANCE(462); - if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(381); + if (lookahead == 'n') ADVANCE(360); + if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(376); END_STATE(); case 337: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'n') ADVANCE(323); - if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(381); + if (lookahead == 'n') ADVANCE(291); + if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(376); END_STATE(); case 338: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'n') ADVANCE(286); - if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(381); + if (lookahead == 'o') ADVANCE(322); + if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(376); END_STATE(); case 339: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'n') ADVANCE(273); - if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(381); + if (lookahead == 'o') ADVANCE(428); + if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(376); END_STATE(); case 340: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'n') ADVANCE(315); - if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(381); + if (lookahead == 'o') ADVANCE(457); + if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(376); END_STATE(); case 341: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'n') ADVANCE(365); - if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(381); + if (lookahead == 'o') ADVANCE(344); + if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(376); END_STATE(); case 342: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'n') ADVANCE(296); - if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(381); + if (lookahead == 'o') ADVANCE(279); + if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(376); END_STATE(); case 343: ACCEPT_TOKEN(aux_sym_sym_lit_token1); if (lookahead == 'o') ADVANCE(327); - if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(381); + if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(376); END_STATE(); case 344: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'o') ADVANCE(435); - if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(381); + if (lookahead == 'p') ADVANCE(452); + if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(376); END_STATE(); case 345: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'o') ADVANCE(464); - if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(381); + if (lookahead == 'p') ADVANCE(293); + if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(376); END_STATE(); case 346: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'o') ADVANCE(349); - if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(381); + if (lookahead == 'r') ADVANCE(419); + if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(376); END_STATE(); case 347: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'o') ADVANCE(284); - if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(381); + if (lookahead == 'r') ADVANCE(443); + if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(376); END_STATE(); case 348: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'o') ADVANCE(332); - if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(381); + if (lookahead == 'r') ADVANCE(340); + if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(376); END_STATE(); case 349: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'p') ADVANCE(459); - if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(381); + if (lookahead == 'r') ADVANCE(292); + if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(376); END_STATE(); case 350: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'p') ADVANCE(298); - if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(381); + if (lookahead == 'r') ADVANCE(307); + if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(376); END_STATE(); case 351: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'r') ADVANCE(426); - if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(381); + if (lookahead == 'r') ADVANCE(329); + if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(376); END_STATE(); case 352: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'r') ADVANCE(450); - if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(381); + if (lookahead == 's') ADVANCE(439); + if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(376); END_STATE(); case 353: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'r') ADVANCE(345); - if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(381); + if (lookahead == 's') ADVANCE(437); + if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(376); END_STATE(); case 354: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'r') ADVANCE(297); - if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(381); + if (lookahead == 's') ADVANCE(441); + if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(376); END_STATE(); case 355: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'r') ADVANCE(312); - if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(381); + if (lookahead == 's') ADVANCE(353); + if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(376); END_STATE(); case 356: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'r') ADVANCE(334); - if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(381); + if (lookahead == 't') ADVANCE(362); + if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(376); END_STATE(); case 357: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 's') ADVANCE(446); - if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(381); + if (lookahead == 't') ADVANCE(300); + if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(376); END_STATE(); case 358: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 's') ADVANCE(444); - if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(381); + if (lookahead == 't') ADVANCE(302); + if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(376); END_STATE(); case 359: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 's') ADVANCE(448); - if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(381); + if (lookahead == 't') ADVANCE(311); + if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(376); END_STATE(); case 360: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 's') ADVANCE(358); - if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(381); + if (lookahead == 't') ADVANCE(309); + if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(376); END_STATE(); case 361: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 't') ADVANCE(367); - if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(381); + if (lookahead == 'u') ADVANCE(324); + if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(376); END_STATE(); case 362: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 't') ADVANCE(305); - if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(381); + if (lookahead == 'u') ADVANCE(351); + if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(376); END_STATE(); case 363: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 't') ADVANCE(307); - if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(381); + if (lookahead == 'v') ADVANCE(288); + if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(376); END_STATE(); case 364: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 't') ADVANCE(316); - if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(381); + if (lookahead == 'w') ADVANCE(266); + if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(376); END_STATE(); case 365: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 't') ADVANCE(314); - if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(381); + if (lookahead == 'x') ADVANCE(310); + if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(376); END_STATE(); case 366: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'u') ADVANCE(329); - if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(381); + if (lookahead == 'y') ADVANCE(446); + if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(376); END_STATE(); case 367: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'u') ADVANCE(356); - if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(381); + if (lookahead == 'y') ADVANCE(450); + if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(376); END_STATE(); case 368: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'v') ADVANCE(293); - if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(381); + if (lookahead == 'y') ADVANCE(352); + if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(376); END_STATE(); case 369: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'w') ADVANCE(271); - if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(381); + if (lookahead == 'z') ADVANCE(289); + if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(376); END_STATE(); case 370: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'x') ADVANCE(315); - if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(381); + if (lookahead == '|') ADVANCE(376); + if (!aux_sym_sym_lit_token1_character_set_5(lookahead)) ADVANCE(370); + if (sym_fancy_literal_character_set_1(lookahead)) ADVANCE(215); END_STATE(); case 371: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'y') ADVANCE(453); - if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(381); + if (!aux_sym_sym_lit_token1_character_set_6(lookahead)) ADVANCE(376); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(245); END_STATE(); case 372: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'y') ADVANCE(457); - if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(381); + if (!aux_sym_sym_lit_token1_character_set_7(lookahead)) ADVANCE(376); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(243); END_STATE(); case 373: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'y') ADVANCE(357); - if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(381); + if (!aux_sym_sym_lit_token1_character_set_8(lookahead)) ADVANCE(376); + if (lookahead == '+' || + lookahead == '-') ADVANCE(375); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(242); END_STATE(); case 374: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'z') ADVANCE(294); - if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(381); + if (!aux_sym_sym_lit_token1_character_set_9(lookahead)) ADVANCE(376); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(244); END_STATE(); case 375: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == '|') ADVANCE(381); - if (!aux_sym_sym_lit_token1_character_set_5(lookahead)) ADVANCE(375); - if (sym_fancy_literal_character_set_1(lookahead)) ADVANCE(220); + if (!aux_sym_sym_lit_token1_character_set_9(lookahead)) ADVANCE(376); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(242); END_STATE(); case 376: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (!aux_sym_sym_lit_token1_character_set_6(lookahead)) ADVANCE(381); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(250); + if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(376); END_STATE(); case 377: - ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (!aux_sym_sym_lit_token1_character_set_7(lookahead)) ADVANCE(381); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(248); - END_STATE(); - case 378: - ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (!aux_sym_sym_lit_token1_character_set_8(lookahead)) ADVANCE(381); - if (lookahead == '+' || - lookahead == '-') ADVANCE(380); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(247); - END_STATE(); - case 379: - ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (!aux_sym_sym_lit_token1_character_set_9(lookahead)) ADVANCE(381); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(249); - END_STATE(); - case 380: - ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (!aux_sym_sym_lit_token1_character_set_9(lookahead)) ADVANCE(381); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(247); - END_STATE(); - case 381: - ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(381); - END_STATE(); - case 382: ACCEPT_TOKEN(anon_sym_CARET); END_STATE(); - case 383: + case 378: ACCEPT_TOKEN(anon_sym_POUND_CARET); END_STATE(); - case 384: + case 379: ACCEPT_TOKEN(anon_sym_LPAREN); END_STATE(); - case 385: + case 380: ACCEPT_TOKEN(anon_sym_RPAREN); END_STATE(); - case 386: + case 381: ACCEPT_TOKEN(anon_sym_LBRACE); END_STATE(); - case 387: + case 382: ACCEPT_TOKEN(anon_sym_RBRACE); END_STATE(); - case 388: + case 383: ACCEPT_TOKEN(anon_sym_POUND0A); END_STATE(); - case 389: + case 384: ACCEPT_TOKEN(anon_sym_POUND); - if (lookahead == '!') ADVANCE(236); - if (lookahead == '#') ADVANCE(397); - if (lookahead == '\'') ADVANCE(396); - if (lookahead == '+') ADVANCE(474); - if (lookahead == '-') ADVANCE(475); - if (lookahead == '0') ADVANCE(20); - if (lookahead == '=') ADVANCE(398); - if (lookahead == '?') ADVANCE(392); - if (lookahead == 'C') ADVANCE(476); - if (lookahead == '^') ADVANCE(383); - if (lookahead == '_') ADVANCE(237); - if (lookahead == '|') ADVANCE(221); + if (lookahead == '!') ADVANCE(231); + if (lookahead == '#') ADVANCE(390); + if (lookahead == '\'') ADVANCE(389); + if (lookahead == '+') ADVANCE(465); + if (lookahead == '-') ADVANCE(466); + if (lookahead == '0') ADVANCE(18); + if (lookahead == '=') ADVANCE(391); + if (lookahead == '?') ADVANCE(387); + if (lookahead == 'C') ADVANCE(467); + if (lookahead == '^') ADVANCE(378); + if (lookahead == '_') ADVANCE(232); + if (lookahead == '|') ADVANCE(216); END_STATE(); - case 390: + case 385: ACCEPT_TOKEN(anon_sym_POUND); - if (lookahead == '!') ADVANCE(236); - if (lookahead == '\'') ADVANCE(396); - if (lookahead == '+') ADVANCE(474); - if (lookahead == '-') ADVANCE(475); - if (lookahead == '0') ADVANCE(20); - if (lookahead == '=') ADVANCE(398); - if (lookahead == '?') ADVANCE(392); - if (lookahead == 'C') ADVANCE(476); - if (lookahead == '^') ADVANCE(383); - if (lookahead == '_') ADVANCE(237); - if (lookahead == '|') ADVANCE(221); + if (lookahead == '!') ADVANCE(231); + if (lookahead == '\'') ADVANCE(389); + if (lookahead == '+') ADVANCE(465); + if (lookahead == '-') ADVANCE(466); + if (lookahead == '0') ADVANCE(18); + if (lookahead == '=') ADVANCE(391); + if (lookahead == '?') ADVANCE(387); + if (lookahead == 'C') ADVANCE(467); + if (lookahead == '^') ADVANCE(378); + if (lookahead == '_') ADVANCE(232); + if (lookahead == '|') ADVANCE(216); END_STATE(); - case 391: + case 386: ACCEPT_TOKEN(anon_sym_POUND); - if (lookahead == '\'') ADVANCE(396); - if (lookahead == '+') ADVANCE(474); - if (lookahead == '-') ADVANCE(475); - if (lookahead == '0') ADVANCE(20); - if (lookahead == '=') ADVANCE(398); - if (lookahead == '?') ADVANCE(392); - if (lookahead == 'C') ADVANCE(476); - if (lookahead == '^') ADVANCE(383); - if (lookahead == '|') ADVANCE(221); + if (lookahead == '\'') ADVANCE(389); + if (lookahead == '+') ADVANCE(465); + if (lookahead == '-') ADVANCE(466); + if (lookahead == '0') ADVANCE(18); + if (lookahead == '=') ADVANCE(391); + if (lookahead == '?') ADVANCE(387); + if (lookahead == 'C') ADVANCE(467); + if (lookahead == '^') ADVANCE(378); + if (lookahead == '|') ADVANCE(216); END_STATE(); - case 392: + case 387: ACCEPT_TOKEN(anon_sym_POUND_QMARK); - if (lookahead == '@') ADVANCE(393); + if (lookahead == '@') ADVANCE(388); END_STATE(); - case 393: + case 388: ACCEPT_TOKEN(anon_sym_POUND_QMARK_AT); END_STATE(); - case 394: - ACCEPT_TOKEN(anon_sym_COLON_COLON); - END_STATE(); - case 395: - ACCEPT_TOKEN(anon_sym_COLON_COLON); - if (!sym_kwd_lit_character_set_2(lookahead)) ADVANCE(252); - END_STATE(); - case 396: + case 389: ACCEPT_TOKEN(anon_sym_POUND_SQUOTE); END_STATE(); - case 397: + case 390: ACCEPT_TOKEN(anon_sym_POUND_POUND); END_STATE(); - case 398: + case 391: ACCEPT_TOKEN(anon_sym_POUND_EQ); END_STATE(); - case 399: + case 392: ACCEPT_TOKEN(anon_sym_AT); END_STATE(); - case 400: + case 393: ACCEPT_TOKEN(anon_sym_SQUOTE); END_STATE(); - case 401: + case 394: ACCEPT_TOKEN(anon_sym_BQUOTE); END_STATE(); - case 402: + case 395: ACCEPT_TOKEN(anon_sym_COMMA_AT); END_STATE(); - case 403: + case 396: ACCEPT_TOKEN(anon_sym_COMMA); - if (lookahead == '@') ADVANCE(402); + if (lookahead == '@') ADVANCE(395); END_STATE(); - case 404: + case 397: ACCEPT_TOKEN(sym_block_comment); END_STATE(); - case 405: + case 398: ACCEPT_TOKEN(sym_fancy_literal); END_STATE(); - case 406: + case 399: ACCEPT_TOKEN(anon_sym_in); END_STATE(); - case 407: + case 400: ACCEPT_TOKEN(anon_sym_in); - if (lookahead == 'i') ADVANCE(200); + if (lookahead == 'i') ADVANCE(195); END_STATE(); - case 408: + case 401: ACCEPT_TOKEN(anon_sym_across); END_STATE(); - case 409: + case 402: ACCEPT_TOKEN(anon_sym_being); - if (lookahead == ' ') ADVANCE(201); + if (lookahead == ' ') ADVANCE(196); END_STATE(); - case 410: + case 403: ACCEPT_TOKEN(anon_sym_using); END_STATE(); - case 411: + case 404: ACCEPT_TOKEN(aux_sym_for_clause_word_token1); END_STATE(); - case 412: + case 405: ACCEPT_TOKEN(anon_sym_below); END_STATE(); - case 413: + case 406: ACCEPT_TOKEN(anon_sym_from); END_STATE(); - case 414: + case 407: ACCEPT_TOKEN(anon_sym_to); END_STATE(); - case 415: + case 408: ACCEPT_TOKEN(anon_sym_upto); END_STATE(); - case 416: + case 409: ACCEPT_TOKEN(anon_sym_downto); END_STATE(); - case 417: + case 410: ACCEPT_TOKEN(anon_sym_downfrom); END_STATE(); - case 418: + case 411: ACCEPT_TOKEN(anon_sym_on); END_STATE(); - case 419: + case 412: ACCEPT_TOKEN(anon_sym_by); END_STATE(); - case 420: + case 413: ACCEPT_TOKEN(anon_sym_then); END_STATE(); - case 421: + case 414: ACCEPT_TOKEN(anon_sym_EQ); END_STATE(); - case 422: + case 415: ACCEPT_TOKEN(sym_accumulation_verb); END_STATE(); - case 423: + case 416: ACCEPT_TOKEN(sym_accumulation_verb); - if (lookahead == 'i') ADVANCE(148); + if (lookahead == 'i') ADVANCE(144); END_STATE(); - case 424: + case 417: ACCEPT_TOKEN(sym_accumulation_verb); - if (lookahead == 'm') ADVANCE(103); + if (lookahead == 'm') ADVANCE(99); END_STATE(); - case 425: + case 418: ACCEPT_TOKEN(anon_sym_for); END_STATE(); - case 426: + case 419: ACCEPT_TOKEN(anon_sym_for); - if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(381); + if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(376); END_STATE(); - case 427: + case 420: ACCEPT_TOKEN(anon_sym_and); END_STATE(); - case 428: + case 421: ACCEPT_TOKEN(anon_sym_and); - if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(381); + if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(376); END_STATE(); - case 429: + case 422: ACCEPT_TOKEN(anon_sym_as); END_STATE(); - case 430: + case 423: ACCEPT_TOKEN(anon_sym_as); - if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(381); + if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(376); END_STATE(); - case 431: + case 424: ACCEPT_TOKEN(anon_sym_with); END_STATE(); - case 432: + case 425: ACCEPT_TOKEN(anon_sym_with); - if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(381); + if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(376); END_STATE(); - case 433: + case 426: ACCEPT_TOKEN(anon_sym_do); END_STATE(); - case 434: + case 427: ACCEPT_TOKEN(anon_sym_do); - if (lookahead == 'w') ADVANCE(133); + if (lookahead == 'w') ADVANCE(129); END_STATE(); - case 435: + case 428: ACCEPT_TOKEN(anon_sym_do); - if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(381); + if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(376); END_STATE(); - case 436: + case 429: ACCEPT_TOKEN(anon_sym_while); END_STATE(); - case 437: + case 430: ACCEPT_TOKEN(anon_sym_while); - if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(381); + if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(376); END_STATE(); - case 438: + case 431: ACCEPT_TOKEN(anon_sym_repeat); END_STATE(); - case 439: + case 432: ACCEPT_TOKEN(anon_sym_when); END_STATE(); - case 440: + case 433: ACCEPT_TOKEN(anon_sym_when); - if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(381); + if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(376); END_STATE(); - case 441: + case 434: ACCEPT_TOKEN(anon_sym_if); END_STATE(); - case 442: + case 435: ACCEPT_TOKEN(anon_sym_if); - if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(381); + if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(376); END_STATE(); - case 443: + case 436: ACCEPT_TOKEN(anon_sym_unless); END_STATE(); - case 444: + case 437: ACCEPT_TOKEN(anon_sym_unless); - if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(381); + if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(376); END_STATE(); - case 445: + case 438: ACCEPT_TOKEN(anon_sym_always); END_STATE(); - case 446: + case 439: ACCEPT_TOKEN(anon_sym_always); - if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(381); + if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(376); END_STATE(); - case 447: + case 440: ACCEPT_TOKEN(anon_sym_thereis); END_STATE(); - case 448: + case 441: ACCEPT_TOKEN(anon_sym_thereis); - if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(381); + if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(376); END_STATE(); - case 449: + case 442: ACCEPT_TOKEN(anon_sym_never); END_STATE(); - case 450: + case 443: ACCEPT_TOKEN(anon_sym_never); - if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(381); + if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(376); END_STATE(); - case 451: + case 444: ACCEPT_TOKEN(anon_sym_into); END_STATE(); - case 452: + case 445: ACCEPT_TOKEN(anon_sym_finally); END_STATE(); - case 453: + case 446: ACCEPT_TOKEN(anon_sym_finally); - if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(381); + if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(376); END_STATE(); - case 454: + case 447: ACCEPT_TOKEN(anon_sym_return); END_STATE(); - case 455: + case 448: ACCEPT_TOKEN(anon_sym_return); - if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(381); + if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(376); END_STATE(); - case 456: + case 449: ACCEPT_TOKEN(anon_sym_initially); END_STATE(); - case 457: + case 450: ACCEPT_TOKEN(anon_sym_initially); - if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(381); + if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(376); END_STATE(); - case 458: + case 451: ACCEPT_TOKEN(anon_sym_loop); END_STATE(); - case 459: + case 452: ACCEPT_TOKEN(anon_sym_loop); - if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(381); + if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(376); END_STATE(); - case 460: + case 453: ACCEPT_TOKEN(anon_sym_cl_COLONloop); END_STATE(); - case 461: + case 454: ACCEPT_TOKEN(anon_sym_defun); END_STATE(); - case 462: + case 455: ACCEPT_TOKEN(anon_sym_defun); - if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(381); + if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(376); END_STATE(); - case 463: + case 456: ACCEPT_TOKEN(anon_sym_defmacro); END_STATE(); - case 464: + case 457: ACCEPT_TOKEN(anon_sym_defmacro); - if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(381); + if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(376); END_STATE(); - case 465: + case 458: ACCEPT_TOKEN(anon_sym_defgeneric); END_STATE(); - case 466: + case 459: ACCEPT_TOKEN(anon_sym_defgeneric); - if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(381); + if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(376); END_STATE(); - case 467: + case 460: ACCEPT_TOKEN(anon_sym_defmethod); END_STATE(); - case 468: + case 461: ACCEPT_TOKEN(anon_sym_defmethod); - if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(381); + if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(376); END_STATE(); - case 469: + case 462: ACCEPT_TOKEN(anon_sym_lambda); END_STATE(); - case 470: + case 463: ACCEPT_TOKEN(anon_sym_lambda); - if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(381); + if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(376); END_STATE(); - case 471: + case 464: ACCEPT_TOKEN(anon_sym_A); END_STATE(); - case 472: - ACCEPT_TOKEN(anon_sym_COLON); - if (lookahead == '/') ADVANCE(251); - if (lookahead == ':') ADVANCE(395); - if (!sym_kwd_lit_character_set_1(lookahead)) ADVANCE(252); - END_STATE(); - case 473: - ACCEPT_TOKEN(anon_sym_COLON); - if (lookahead == ':') ADVANCE(394); - END_STATE(); - case 474: + case 465: ACCEPT_TOKEN(anon_sym_POUND_PLUS); END_STATE(); - case 475: + case 466: ACCEPT_TOKEN(anon_sym_POUND_DASH); END_STATE(); - case 476: + case 467: ACCEPT_TOKEN(anon_sym_POUNDC); END_STATE(); default: @@ -3858,7 +3714,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { static TSLexMode ts_lex_modes[STATE_COUNT] = { [0] = {.lex_state = 0}, - [1] = {.lex_state = 232}, + [1] = {.lex_state = 227}, [2] = {.lex_state = 6}, [3] = {.lex_state = 6}, [4] = {.lex_state = 7}, @@ -3868,432 +3724,432 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [8] = {.lex_state = 7}, [9] = {.lex_state = 7}, [10] = {.lex_state = 7}, - [11] = {.lex_state = 232}, - [12] = {.lex_state = 232}, - [13] = {.lex_state = 232}, - [14] = {.lex_state = 232}, - [15] = {.lex_state = 232}, - [16] = {.lex_state = 232}, - [17] = {.lex_state = 232}, - [18] = {.lex_state = 232}, - [19] = {.lex_state = 232}, - [20] = {.lex_state = 232}, - [21] = {.lex_state = 232}, - [22] = {.lex_state = 232}, - [23] = {.lex_state = 232}, - [24] = {.lex_state = 232}, - [25] = {.lex_state = 232}, - [26] = {.lex_state = 232}, - [27] = {.lex_state = 232}, - [28] = {.lex_state = 232}, - [29] = {.lex_state = 232}, - [30] = {.lex_state = 232}, - [31] = {.lex_state = 232}, - [32] = {.lex_state = 232}, - [33] = {.lex_state = 232}, - [34] = {.lex_state = 232}, - [35] = {.lex_state = 232}, - [36] = {.lex_state = 232}, - [37] = {.lex_state = 232}, - [38] = {.lex_state = 232}, - [39] = {.lex_state = 232}, - [40] = {.lex_state = 232}, - [41] = {.lex_state = 232}, - [42] = {.lex_state = 232}, - [43] = {.lex_state = 232}, - [44] = {.lex_state = 232}, - [45] = {.lex_state = 232}, - [46] = {.lex_state = 232}, - [47] = {.lex_state = 232}, - [48] = {.lex_state = 232}, - [49] = {.lex_state = 232}, - [50] = {.lex_state = 232}, - [51] = {.lex_state = 232}, - [52] = {.lex_state = 232}, - [53] = {.lex_state = 232}, - [54] = {.lex_state = 232}, - [55] = {.lex_state = 232}, - [56] = {.lex_state = 232}, - [57] = {.lex_state = 232}, - [58] = {.lex_state = 232}, - [59] = {.lex_state = 232}, - [60] = {.lex_state = 232}, - [61] = {.lex_state = 232}, - [62] = {.lex_state = 232}, - [63] = {.lex_state = 232}, - [64] = {.lex_state = 232}, - [65] = {.lex_state = 232}, - [66] = {.lex_state = 232}, - [67] = {.lex_state = 232}, - [68] = {.lex_state = 232}, - [69] = {.lex_state = 232}, - [70] = {.lex_state = 232}, - [71] = {.lex_state = 232}, - [72] = {.lex_state = 232}, - [73] = {.lex_state = 232}, - [74] = {.lex_state = 232}, - [75] = {.lex_state = 232}, - [76] = {.lex_state = 232}, - [77] = {.lex_state = 232}, - [78] = {.lex_state = 232}, - [79] = {.lex_state = 232}, - [80] = {.lex_state = 232}, - [81] = {.lex_state = 232}, - [82] = {.lex_state = 232}, - [83] = {.lex_state = 232}, - [84] = {.lex_state = 232}, - [85] = {.lex_state = 232}, - [86] = {.lex_state = 232}, - [87] = {.lex_state = 232}, - [88] = {.lex_state = 232}, - [89] = {.lex_state = 232}, - [90] = {.lex_state = 232}, - [91] = {.lex_state = 232}, - [92] = {.lex_state = 232}, - [93] = {.lex_state = 232}, - [94] = {.lex_state = 232}, - [95] = {.lex_state = 232}, - [96] = {.lex_state = 232}, - [97] = {.lex_state = 232}, - [98] = {.lex_state = 232}, - [99] = {.lex_state = 232}, - [100] = {.lex_state = 232}, - [101] = {.lex_state = 232}, - [102] = {.lex_state = 232}, - [103] = {.lex_state = 232}, - [104] = {.lex_state = 232}, - [105] = {.lex_state = 232}, - [106] = {.lex_state = 232}, - [107] = {.lex_state = 232}, - [108] = {.lex_state = 232}, - [109] = {.lex_state = 232}, - [110] = {.lex_state = 232}, - [111] = {.lex_state = 232}, - [112] = {.lex_state = 232}, - [113] = {.lex_state = 232}, - [114] = {.lex_state = 232}, - [115] = {.lex_state = 232}, - [116] = {.lex_state = 232}, - [117] = {.lex_state = 232}, - [118] = {.lex_state = 232}, - [119] = {.lex_state = 232}, - [120] = {.lex_state = 232}, - [121] = {.lex_state = 232}, - [122] = {.lex_state = 232}, - [123] = {.lex_state = 232}, - [124] = {.lex_state = 232}, - [125] = {.lex_state = 232}, - [126] = {.lex_state = 232}, - [127] = {.lex_state = 232}, - [128] = {.lex_state = 232}, - [129] = {.lex_state = 232}, - [130] = {.lex_state = 232}, - [131] = {.lex_state = 232}, - [132] = {.lex_state = 232}, - [133] = {.lex_state = 232}, - [134] = {.lex_state = 232}, - [135] = {.lex_state = 232}, - [136] = {.lex_state = 232}, - [137] = {.lex_state = 232}, - [138] = {.lex_state = 232}, - [139] = {.lex_state = 232}, - [140] = {.lex_state = 232}, - [141] = {.lex_state = 232}, - [142] = {.lex_state = 232}, - [143] = {.lex_state = 232}, - [144] = {.lex_state = 232}, - [145] = {.lex_state = 232}, - [146] = {.lex_state = 232}, - [147] = {.lex_state = 232}, - [148] = {.lex_state = 232}, - [149] = {.lex_state = 232}, - [150] = {.lex_state = 232}, - [151] = {.lex_state = 232}, - [152] = {.lex_state = 232}, - [153] = {.lex_state = 232}, - [154] = {.lex_state = 232}, - [155] = {.lex_state = 232}, - [156] = {.lex_state = 232}, - [157] = {.lex_state = 232}, - [158] = {.lex_state = 232}, - [159] = {.lex_state = 232}, - [160] = {.lex_state = 232}, - [161] = {.lex_state = 232}, - [162] = {.lex_state = 232}, - [163] = {.lex_state = 232}, - [164] = {.lex_state = 232}, - [165] = {.lex_state = 232}, - [166] = {.lex_state = 232}, - [167] = {.lex_state = 232}, - [168] = {.lex_state = 232}, - [169] = {.lex_state = 232}, - [170] = {.lex_state = 232}, - [171] = {.lex_state = 232}, - [172] = {.lex_state = 232}, - [173] = {.lex_state = 232}, - [174] = {.lex_state = 232}, - [175] = {.lex_state = 232}, - [176] = {.lex_state = 232}, - [177] = {.lex_state = 232}, - [178] = {.lex_state = 232}, - [179] = {.lex_state = 232}, - [180] = {.lex_state = 232}, - [181] = {.lex_state = 232}, - [182] = {.lex_state = 232}, - [183] = {.lex_state = 232}, - [184] = {.lex_state = 232}, - [185] = {.lex_state = 232}, - [186] = {.lex_state = 232}, - [187] = {.lex_state = 232}, - [188] = {.lex_state = 232}, - [189] = {.lex_state = 232}, - [190] = {.lex_state = 232}, - [191] = {.lex_state = 232}, - [192] = {.lex_state = 232}, - [193] = {.lex_state = 232}, - [194] = {.lex_state = 232}, - [195] = {.lex_state = 232}, - [196] = {.lex_state = 232}, - [197] = {.lex_state = 232}, - [198] = {.lex_state = 232}, - [199] = {.lex_state = 232}, - [200] = {.lex_state = 232}, - [201] = {.lex_state = 232}, - [202] = {.lex_state = 232}, - [203] = {.lex_state = 232}, - [204] = {.lex_state = 232}, - [205] = {.lex_state = 232}, - [206] = {.lex_state = 232}, - [207] = {.lex_state = 232}, - [208] = {.lex_state = 232}, - [209] = {.lex_state = 232}, - [210] = {.lex_state = 232}, - [211] = {.lex_state = 232}, - [212] = {.lex_state = 232}, - [213] = {.lex_state = 232}, - [214] = {.lex_state = 232}, - [215] = {.lex_state = 232}, - [216] = {.lex_state = 232}, - [217] = {.lex_state = 232}, - [218] = {.lex_state = 232}, - [219] = {.lex_state = 232}, - [220] = {.lex_state = 232}, - [221] = {.lex_state = 232}, - [222] = {.lex_state = 232}, - [223] = {.lex_state = 232}, - [224] = {.lex_state = 232}, - [225] = {.lex_state = 232}, - [226] = {.lex_state = 232}, - [227] = {.lex_state = 232}, - [228] = {.lex_state = 232}, - [229] = {.lex_state = 232}, - [230] = {.lex_state = 232}, - [231] = {.lex_state = 232}, - [232] = {.lex_state = 232}, - [233] = {.lex_state = 232}, - [234] = {.lex_state = 232}, - [235] = {.lex_state = 232}, - [236] = {.lex_state = 232}, - [237] = {.lex_state = 232}, - [238] = {.lex_state = 232}, - [239] = {.lex_state = 232}, - [240] = {.lex_state = 232}, - [241] = {.lex_state = 232}, - [242] = {.lex_state = 232}, - [243] = {.lex_state = 232}, - [244] = {.lex_state = 232}, - [245] = {.lex_state = 232}, - [246] = {.lex_state = 232}, - [247] = {.lex_state = 232}, - [248] = {.lex_state = 232}, - [249] = {.lex_state = 232}, - [250] = {.lex_state = 232}, - [251] = {.lex_state = 232}, - [252] = {.lex_state = 232}, - [253] = {.lex_state = 232}, - [254] = {.lex_state = 232}, - [255] = {.lex_state = 232}, - [256] = {.lex_state = 232}, - [257] = {.lex_state = 232}, - [258] = {.lex_state = 232}, - [259] = {.lex_state = 232}, - [260] = {.lex_state = 232}, - [261] = {.lex_state = 232}, - [262] = {.lex_state = 232}, - [263] = {.lex_state = 232}, - [264] = {.lex_state = 232}, - [265] = {.lex_state = 232}, - [266] = {.lex_state = 232}, - [267] = {.lex_state = 232}, - [268] = {.lex_state = 232}, - [269] = {.lex_state = 232}, - [270] = {.lex_state = 232}, - [271] = {.lex_state = 232}, - [272] = {.lex_state = 232}, - [273] = {.lex_state = 232}, - [274] = {.lex_state = 232}, - [275] = {.lex_state = 232}, - [276] = {.lex_state = 232}, - [277] = {.lex_state = 232}, - [278] = {.lex_state = 232}, - [279] = {.lex_state = 232}, - [280] = {.lex_state = 232}, - [281] = {.lex_state = 232}, - [282] = {.lex_state = 232}, - [283] = {.lex_state = 232}, - [284] = {.lex_state = 232}, - [285] = {.lex_state = 232}, - [286] = {.lex_state = 232}, - [287] = {.lex_state = 232}, - [288] = {.lex_state = 232}, - [289] = {.lex_state = 232}, - [290] = {.lex_state = 232}, - [291] = {.lex_state = 232}, - [292] = {.lex_state = 232}, - [293] = {.lex_state = 232}, - [294] = {.lex_state = 232}, - [295] = {.lex_state = 232}, - [296] = {.lex_state = 232}, - [297] = {.lex_state = 232}, - [298] = {.lex_state = 232}, - [299] = {.lex_state = 232}, - [300] = {.lex_state = 232}, - [301] = {.lex_state = 232}, - [302] = {.lex_state = 232}, - [303] = {.lex_state = 232}, - [304] = {.lex_state = 232}, - [305] = {.lex_state = 232}, - [306] = {.lex_state = 232}, - [307] = {.lex_state = 232}, - [308] = {.lex_state = 232}, - [309] = {.lex_state = 232}, - [310] = {.lex_state = 232}, - [311] = {.lex_state = 232}, - [312] = {.lex_state = 232}, - [313] = {.lex_state = 232}, - [314] = {.lex_state = 232}, - [315] = {.lex_state = 232}, - [316] = {.lex_state = 232}, - [317] = {.lex_state = 232}, - [318] = {.lex_state = 232}, - [319] = {.lex_state = 232}, - [320] = {.lex_state = 232}, - [321] = {.lex_state = 232}, - [322] = {.lex_state = 232}, - [323] = {.lex_state = 232}, - [324] = {.lex_state = 232}, - [325] = {.lex_state = 232}, - [326] = {.lex_state = 232}, - [327] = {.lex_state = 232}, - [328] = {.lex_state = 232}, - [329] = {.lex_state = 232}, - [330] = {.lex_state = 232}, - [331] = {.lex_state = 232}, - [332] = {.lex_state = 232}, - [333] = {.lex_state = 232}, - [334] = {.lex_state = 232}, - [335] = {.lex_state = 232}, - [336] = {.lex_state = 232}, - [337] = {.lex_state = 232}, - [338] = {.lex_state = 232}, - [339] = {.lex_state = 232}, - [340] = {.lex_state = 232}, - [341] = {.lex_state = 232}, - [342] = {.lex_state = 232}, - [343] = {.lex_state = 232}, - [344] = {.lex_state = 232}, - [345] = {.lex_state = 232}, - [346] = {.lex_state = 232}, - [347] = {.lex_state = 232}, - [348] = {.lex_state = 232}, - [349] = {.lex_state = 232}, - [350] = {.lex_state = 232}, - [351] = {.lex_state = 232}, - [352] = {.lex_state = 232}, - [353] = {.lex_state = 232}, - [354] = {.lex_state = 232}, - [355] = {.lex_state = 232}, - [356] = {.lex_state = 232}, - [357] = {.lex_state = 232}, - [358] = {.lex_state = 232}, - [359] = {.lex_state = 232}, - [360] = {.lex_state = 232}, - [361] = {.lex_state = 232}, - [362] = {.lex_state = 232}, - [363] = {.lex_state = 232}, - [364] = {.lex_state = 232}, - [365] = {.lex_state = 232}, - [366] = {.lex_state = 232}, - [367] = {.lex_state = 232}, - [368] = {.lex_state = 232}, - [369] = {.lex_state = 232}, - [370] = {.lex_state = 232}, - [371] = {.lex_state = 232}, - [372] = {.lex_state = 232}, - [373] = {.lex_state = 232}, - [374] = {.lex_state = 232}, - [375] = {.lex_state = 232}, - [376] = {.lex_state = 232}, - [377] = {.lex_state = 232}, - [378] = {.lex_state = 232}, - [379] = {.lex_state = 232}, - [380] = {.lex_state = 232}, - [381] = {.lex_state = 232}, - [382] = {.lex_state = 232}, - [383] = {.lex_state = 232}, - [384] = {.lex_state = 232}, - [385] = {.lex_state = 232}, - [386] = {.lex_state = 232}, - [387] = {.lex_state = 232}, - [388] = {.lex_state = 232}, - [389] = {.lex_state = 232}, - [390] = {.lex_state = 232}, - [391] = {.lex_state = 232}, - [392] = {.lex_state = 232}, - [393] = {.lex_state = 232}, - [394] = {.lex_state = 232}, - [395] = {.lex_state = 232}, - [396] = {.lex_state = 232}, - [397] = {.lex_state = 232}, - [398] = {.lex_state = 232}, - [399] = {.lex_state = 232}, - [400] = {.lex_state = 232}, - [401] = {.lex_state = 232}, - [402] = {.lex_state = 232}, - [403] = {.lex_state = 232}, - [404] = {.lex_state = 232}, - [405] = {.lex_state = 232}, - [406] = {.lex_state = 232}, - [407] = {.lex_state = 232}, - [408] = {.lex_state = 232}, - [409] = {.lex_state = 232}, - [410] = {.lex_state = 232}, - [411] = {.lex_state = 232}, - [412] = {.lex_state = 232}, - [413] = {.lex_state = 232}, - [414] = {.lex_state = 232}, - [415] = {.lex_state = 232}, - [416] = {.lex_state = 232}, - [417] = {.lex_state = 232}, - [418] = {.lex_state = 232}, - [419] = {.lex_state = 232}, - [420] = {.lex_state = 232}, - [421] = {.lex_state = 232}, - [422] = {.lex_state = 232}, - [423] = {.lex_state = 232}, - [424] = {.lex_state = 232}, - [425] = {.lex_state = 232}, - [426] = {.lex_state = 232}, - [427] = {.lex_state = 232}, - [428] = {.lex_state = 232}, - [429] = {.lex_state = 232}, - [430] = {.lex_state = 232}, - [431] = {.lex_state = 232}, - [432] = {.lex_state = 232}, - [433] = {.lex_state = 232}, - [434] = {.lex_state = 232}, - [435] = {.lex_state = 232}, - [436] = {.lex_state = 232}, + [11] = {.lex_state = 227}, + [12] = {.lex_state = 227}, + [13] = {.lex_state = 227}, + [14] = {.lex_state = 227}, + [15] = {.lex_state = 227}, + [16] = {.lex_state = 227}, + [17] = {.lex_state = 227}, + [18] = {.lex_state = 227}, + [19] = {.lex_state = 227}, + [20] = {.lex_state = 227}, + [21] = {.lex_state = 227}, + [22] = {.lex_state = 227}, + [23] = {.lex_state = 227}, + [24] = {.lex_state = 227}, + [25] = {.lex_state = 227}, + [26] = {.lex_state = 227}, + [27] = {.lex_state = 227}, + [28] = {.lex_state = 227}, + [29] = {.lex_state = 227}, + [30] = {.lex_state = 227}, + [31] = {.lex_state = 227}, + [32] = {.lex_state = 227}, + [33] = {.lex_state = 227}, + [34] = {.lex_state = 227}, + [35] = {.lex_state = 227}, + [36] = {.lex_state = 227}, + [37] = {.lex_state = 227}, + [38] = {.lex_state = 227}, + [39] = {.lex_state = 227}, + [40] = {.lex_state = 227}, + [41] = {.lex_state = 227}, + [42] = {.lex_state = 227}, + [43] = {.lex_state = 227}, + [44] = {.lex_state = 227}, + [45] = {.lex_state = 227}, + [46] = {.lex_state = 227}, + [47] = {.lex_state = 227}, + [48] = {.lex_state = 227}, + [49] = {.lex_state = 227}, + [50] = {.lex_state = 227}, + [51] = {.lex_state = 227}, + [52] = {.lex_state = 227}, + [53] = {.lex_state = 227}, + [54] = {.lex_state = 227}, + [55] = {.lex_state = 227}, + [56] = {.lex_state = 227}, + [57] = {.lex_state = 227}, + [58] = {.lex_state = 227}, + [59] = {.lex_state = 227}, + [60] = {.lex_state = 227}, + [61] = {.lex_state = 227}, + [62] = {.lex_state = 227}, + [63] = {.lex_state = 227}, + [64] = {.lex_state = 227}, + [65] = {.lex_state = 227}, + [66] = {.lex_state = 227}, + [67] = {.lex_state = 227}, + [68] = {.lex_state = 227}, + [69] = {.lex_state = 227}, + [70] = {.lex_state = 227}, + [71] = {.lex_state = 227}, + [72] = {.lex_state = 227}, + [73] = {.lex_state = 227}, + [74] = {.lex_state = 227}, + [75] = {.lex_state = 227}, + [76] = {.lex_state = 227}, + [77] = {.lex_state = 227}, + [78] = {.lex_state = 227}, + [79] = {.lex_state = 227}, + [80] = {.lex_state = 227}, + [81] = {.lex_state = 227}, + [82] = {.lex_state = 227}, + [83] = {.lex_state = 227}, + [84] = {.lex_state = 227}, + [85] = {.lex_state = 227}, + [86] = {.lex_state = 227}, + [87] = {.lex_state = 227}, + [88] = {.lex_state = 227}, + [89] = {.lex_state = 227}, + [90] = {.lex_state = 227}, + [91] = {.lex_state = 227}, + [92] = {.lex_state = 227}, + [93] = {.lex_state = 227}, + [94] = {.lex_state = 227}, + [95] = {.lex_state = 227}, + [96] = {.lex_state = 227}, + [97] = {.lex_state = 227}, + [98] = {.lex_state = 227}, + [99] = {.lex_state = 227}, + [100] = {.lex_state = 227}, + [101] = {.lex_state = 227}, + [102] = {.lex_state = 227}, + [103] = {.lex_state = 227}, + [104] = {.lex_state = 227}, + [105] = {.lex_state = 227}, + [106] = {.lex_state = 227}, + [107] = {.lex_state = 227}, + [108] = {.lex_state = 227}, + [109] = {.lex_state = 227}, + [110] = {.lex_state = 227}, + [111] = {.lex_state = 227}, + [112] = {.lex_state = 227}, + [113] = {.lex_state = 227}, + [114] = {.lex_state = 227}, + [115] = {.lex_state = 227}, + [116] = {.lex_state = 227}, + [117] = {.lex_state = 227}, + [118] = {.lex_state = 227}, + [119] = {.lex_state = 227}, + [120] = {.lex_state = 227}, + [121] = {.lex_state = 227}, + [122] = {.lex_state = 227}, + [123] = {.lex_state = 227}, + [124] = {.lex_state = 227}, + [125] = {.lex_state = 227}, + [126] = {.lex_state = 227}, + [127] = {.lex_state = 227}, + [128] = {.lex_state = 227}, + [129] = {.lex_state = 227}, + [130] = {.lex_state = 227}, + [131] = {.lex_state = 227}, + [132] = {.lex_state = 227}, + [133] = {.lex_state = 227}, + [134] = {.lex_state = 227}, + [135] = {.lex_state = 227}, + [136] = {.lex_state = 227}, + [137] = {.lex_state = 227}, + [138] = {.lex_state = 227}, + [139] = {.lex_state = 227}, + [140] = {.lex_state = 227}, + [141] = {.lex_state = 227}, + [142] = {.lex_state = 227}, + [143] = {.lex_state = 227}, + [144] = {.lex_state = 227}, + [145] = {.lex_state = 227}, + [146] = {.lex_state = 227}, + [147] = {.lex_state = 227}, + [148] = {.lex_state = 227}, + [149] = {.lex_state = 227}, + [150] = {.lex_state = 227}, + [151] = {.lex_state = 227}, + [152] = {.lex_state = 227}, + [153] = {.lex_state = 227}, + [154] = {.lex_state = 227}, + [155] = {.lex_state = 227}, + [156] = {.lex_state = 227}, + [157] = {.lex_state = 227}, + [158] = {.lex_state = 227}, + [159] = {.lex_state = 227}, + [160] = {.lex_state = 227}, + [161] = {.lex_state = 227}, + [162] = {.lex_state = 227}, + [163] = {.lex_state = 227}, + [164] = {.lex_state = 227}, + [165] = {.lex_state = 227}, + [166] = {.lex_state = 227}, + [167] = {.lex_state = 227}, + [168] = {.lex_state = 227}, + [169] = {.lex_state = 227}, + [170] = {.lex_state = 227}, + [171] = {.lex_state = 227}, + [172] = {.lex_state = 227}, + [173] = {.lex_state = 227}, + [174] = {.lex_state = 227}, + [175] = {.lex_state = 227}, + [176] = {.lex_state = 227}, + [177] = {.lex_state = 227}, + [178] = {.lex_state = 227}, + [179] = {.lex_state = 227}, + [180] = {.lex_state = 227}, + [181] = {.lex_state = 227}, + [182] = {.lex_state = 227}, + [183] = {.lex_state = 227}, + [184] = {.lex_state = 227}, + [185] = {.lex_state = 227}, + [186] = {.lex_state = 227}, + [187] = {.lex_state = 227}, + [188] = {.lex_state = 227}, + [189] = {.lex_state = 227}, + [190] = {.lex_state = 227}, + [191] = {.lex_state = 227}, + [192] = {.lex_state = 227}, + [193] = {.lex_state = 227}, + [194] = {.lex_state = 227}, + [195] = {.lex_state = 227}, + [196] = {.lex_state = 227}, + [197] = {.lex_state = 227}, + [198] = {.lex_state = 227}, + [199] = {.lex_state = 227}, + [200] = {.lex_state = 227}, + [201] = {.lex_state = 227}, + [202] = {.lex_state = 227}, + [203] = {.lex_state = 227}, + [204] = {.lex_state = 227}, + [205] = {.lex_state = 227}, + [206] = {.lex_state = 227}, + [207] = {.lex_state = 227}, + [208] = {.lex_state = 227}, + [209] = {.lex_state = 227}, + [210] = {.lex_state = 227}, + [211] = {.lex_state = 227}, + [212] = {.lex_state = 227}, + [213] = {.lex_state = 227}, + [214] = {.lex_state = 227}, + [215] = {.lex_state = 227}, + [216] = {.lex_state = 227}, + [217] = {.lex_state = 227}, + [218] = {.lex_state = 227}, + [219] = {.lex_state = 227}, + [220] = {.lex_state = 227}, + [221] = {.lex_state = 227}, + [222] = {.lex_state = 227}, + [223] = {.lex_state = 227}, + [224] = {.lex_state = 227}, + [225] = {.lex_state = 227}, + [226] = {.lex_state = 227}, + [227] = {.lex_state = 227}, + [228] = {.lex_state = 227}, + [229] = {.lex_state = 227}, + [230] = {.lex_state = 227}, + [231] = {.lex_state = 227}, + [232] = {.lex_state = 227}, + [233] = {.lex_state = 227}, + [234] = {.lex_state = 227}, + [235] = {.lex_state = 227}, + [236] = {.lex_state = 227}, + [237] = {.lex_state = 227}, + [238] = {.lex_state = 227}, + [239] = {.lex_state = 227}, + [240] = {.lex_state = 227}, + [241] = {.lex_state = 227}, + [242] = {.lex_state = 227}, + [243] = {.lex_state = 227}, + [244] = {.lex_state = 227}, + [245] = {.lex_state = 227}, + [246] = {.lex_state = 227}, + [247] = {.lex_state = 227}, + [248] = {.lex_state = 227}, + [249] = {.lex_state = 227}, + [250] = {.lex_state = 227}, + [251] = {.lex_state = 227}, + [252] = {.lex_state = 227}, + [253] = {.lex_state = 227}, + [254] = {.lex_state = 227}, + [255] = {.lex_state = 227}, + [256] = {.lex_state = 227}, + [257] = {.lex_state = 227}, + [258] = {.lex_state = 227}, + [259] = {.lex_state = 227}, + [260] = {.lex_state = 227}, + [261] = {.lex_state = 227}, + [262] = {.lex_state = 227}, + [263] = {.lex_state = 227}, + [264] = {.lex_state = 227}, + [265] = {.lex_state = 227}, + [266] = {.lex_state = 227}, + [267] = {.lex_state = 227}, + [268] = {.lex_state = 227}, + [269] = {.lex_state = 227}, + [270] = {.lex_state = 227}, + [271] = {.lex_state = 227}, + [272] = {.lex_state = 227}, + [273] = {.lex_state = 227}, + [274] = {.lex_state = 227}, + [275] = {.lex_state = 227}, + [276] = {.lex_state = 227}, + [277] = {.lex_state = 227}, + [278] = {.lex_state = 227}, + [279] = {.lex_state = 227}, + [280] = {.lex_state = 227}, + [281] = {.lex_state = 227}, + [282] = {.lex_state = 227}, + [283] = {.lex_state = 227}, + [284] = {.lex_state = 227}, + [285] = {.lex_state = 227}, + [286] = {.lex_state = 227}, + [287] = {.lex_state = 227}, + [288] = {.lex_state = 227}, + [289] = {.lex_state = 227}, + [290] = {.lex_state = 227}, + [291] = {.lex_state = 227}, + [292] = {.lex_state = 227}, + [293] = {.lex_state = 227}, + [294] = {.lex_state = 227}, + [295] = {.lex_state = 227}, + [296] = {.lex_state = 227}, + [297] = {.lex_state = 227}, + [298] = {.lex_state = 227}, + [299] = {.lex_state = 227}, + [300] = {.lex_state = 227}, + [301] = {.lex_state = 227}, + [302] = {.lex_state = 227}, + [303] = {.lex_state = 227}, + [304] = {.lex_state = 227}, + [305] = {.lex_state = 227}, + [306] = {.lex_state = 227}, + [307] = {.lex_state = 227}, + [308] = {.lex_state = 227}, + [309] = {.lex_state = 227}, + [310] = {.lex_state = 227}, + [311] = {.lex_state = 227}, + [312] = {.lex_state = 227}, + [313] = {.lex_state = 227}, + [314] = {.lex_state = 227}, + [315] = {.lex_state = 227}, + [316] = {.lex_state = 227}, + [317] = {.lex_state = 227}, + [318] = {.lex_state = 227}, + [319] = {.lex_state = 227}, + [320] = {.lex_state = 227}, + [321] = {.lex_state = 227}, + [322] = {.lex_state = 227}, + [323] = {.lex_state = 227}, + [324] = {.lex_state = 227}, + [325] = {.lex_state = 227}, + [326] = {.lex_state = 227}, + [327] = {.lex_state = 227}, + [328] = {.lex_state = 227}, + [329] = {.lex_state = 227}, + [330] = {.lex_state = 227}, + [331] = {.lex_state = 227}, + [332] = {.lex_state = 227}, + [333] = {.lex_state = 227}, + [334] = {.lex_state = 227}, + [335] = {.lex_state = 227}, + [336] = {.lex_state = 227}, + [337] = {.lex_state = 227}, + [338] = {.lex_state = 227}, + [339] = {.lex_state = 227}, + [340] = {.lex_state = 227}, + [341] = {.lex_state = 227}, + [342] = {.lex_state = 227}, + [343] = {.lex_state = 227}, + [344] = {.lex_state = 227}, + [345] = {.lex_state = 227}, + [346] = {.lex_state = 227}, + [347] = {.lex_state = 227}, + [348] = {.lex_state = 227}, + [349] = {.lex_state = 227}, + [350] = {.lex_state = 227}, + [351] = {.lex_state = 227}, + [352] = {.lex_state = 227}, + [353] = {.lex_state = 227}, + [354] = {.lex_state = 227}, + [355] = {.lex_state = 227}, + [356] = {.lex_state = 227}, + [357] = {.lex_state = 227}, + [358] = {.lex_state = 227}, + [359] = {.lex_state = 227}, + [360] = {.lex_state = 227}, + [361] = {.lex_state = 227}, + [362] = {.lex_state = 227}, + [363] = {.lex_state = 227}, + [364] = {.lex_state = 227}, + [365] = {.lex_state = 227}, + [366] = {.lex_state = 227}, + [367] = {.lex_state = 227}, + [368] = {.lex_state = 227}, + [369] = {.lex_state = 227}, + [370] = {.lex_state = 227}, + [371] = {.lex_state = 227}, + [372] = {.lex_state = 227}, + [373] = {.lex_state = 227}, + [374] = {.lex_state = 227}, + [375] = {.lex_state = 227}, + [376] = {.lex_state = 227}, + [377] = {.lex_state = 227}, + [378] = {.lex_state = 227}, + [379] = {.lex_state = 227}, + [380] = {.lex_state = 227}, + [381] = {.lex_state = 227}, + [382] = {.lex_state = 227}, + [383] = {.lex_state = 227}, + [384] = {.lex_state = 227}, + [385] = {.lex_state = 227}, + [386] = {.lex_state = 227}, + [387] = {.lex_state = 227}, + [388] = {.lex_state = 227}, + [389] = {.lex_state = 227}, + [390] = {.lex_state = 227}, + [391] = {.lex_state = 227}, + [392] = {.lex_state = 227}, + [393] = {.lex_state = 227}, + [394] = {.lex_state = 227}, + [395] = {.lex_state = 227}, + [396] = {.lex_state = 227}, + [397] = {.lex_state = 227}, + [398] = {.lex_state = 227}, + [399] = {.lex_state = 6}, + [400] = {.lex_state = 6}, + [401] = {.lex_state = 6}, + [402] = {.lex_state = 6}, + [403] = {.lex_state = 6}, + [404] = {.lex_state = 6}, + [405] = {.lex_state = 6}, + [406] = {.lex_state = 6}, + [407] = {.lex_state = 6}, + [408] = {.lex_state = 6}, + [409] = {.lex_state = 6}, + [410] = {.lex_state = 6}, + [411] = {.lex_state = 6}, + [412] = {.lex_state = 6}, + [413] = {.lex_state = 6}, + [414] = {.lex_state = 6}, + [415] = {.lex_state = 6}, + [416] = {.lex_state = 6}, + [417] = {.lex_state = 6}, + [418] = {.lex_state = 6}, + [419] = {.lex_state = 6}, + [420] = {.lex_state = 6}, + [421] = {.lex_state = 6}, + [422] = {.lex_state = 6}, + [423] = {.lex_state = 6}, + [424] = {.lex_state = 6}, + [425] = {.lex_state = 6}, + [426] = {.lex_state = 6}, + [427] = {.lex_state = 6}, + [428] = {.lex_state = 6}, + [429] = {.lex_state = 6}, + [430] = {.lex_state = 6}, + [431] = {.lex_state = 6}, + [432] = {.lex_state = 6}, + [433] = {.lex_state = 6}, + [434] = {.lex_state = 6}, + [435] = {.lex_state = 6}, + [436] = {.lex_state = 6}, [437] = {.lex_state = 6}, [438] = {.lex_state = 6}, [439] = {.lex_state = 6}, @@ -4372,97 +4228,97 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [512] = {.lex_state = 6}, [513] = {.lex_state = 6}, [514] = {.lex_state = 6}, - [515] = {.lex_state = 6}, - [516] = {.lex_state = 6}, - [517] = {.lex_state = 6}, - [518] = {.lex_state = 6}, - [519] = {.lex_state = 6}, - [520] = {.lex_state = 6}, - [521] = {.lex_state = 6}, - [522] = {.lex_state = 6}, - [523] = {.lex_state = 6}, - [524] = {.lex_state = 6}, - [525] = {.lex_state = 6}, - [526] = {.lex_state = 6}, - [527] = {.lex_state = 6}, - [528] = {.lex_state = 6}, - [529] = {.lex_state = 6}, - [530] = {.lex_state = 6}, - [531] = {.lex_state = 6}, - [532] = {.lex_state = 6}, - [533] = {.lex_state = 6}, - [534] = {.lex_state = 6}, - [535] = {.lex_state = 6}, - [536] = {.lex_state = 6}, - [537] = {.lex_state = 6}, - [538] = {.lex_state = 6}, - [539] = {.lex_state = 6}, - [540] = {.lex_state = 6}, - [541] = {.lex_state = 6}, - [542] = {.lex_state = 6}, - [543] = {.lex_state = 6}, - [544] = {.lex_state = 6}, - [545] = {.lex_state = 6}, - [546] = {.lex_state = 6}, - [547] = {.lex_state = 6}, - [548] = {.lex_state = 6}, - [549] = {.lex_state = 6}, - [550] = {.lex_state = 6}, - [551] = {.lex_state = 6}, - [552] = {.lex_state = 6}, - [553] = {.lex_state = 0}, - [554] = {.lex_state = 0}, - [555] = {.lex_state = 0}, - [556] = {.lex_state = 12}, - [557] = {.lex_state = 12}, - [558] = {.lex_state = 12}, - [559] = {.lex_state = 12}, - [560] = {.lex_state = 12}, - [561] = {.lex_state = 12}, - [562] = {.lex_state = 12}, - [563] = {.lex_state = 12}, - [564] = {.lex_state = 12}, - [565] = {.lex_state = 12}, - [566] = {.lex_state = 12}, - [567] = {.lex_state = 12}, - [568] = {.lex_state = 12}, - [569] = {.lex_state = 12}, - [570] = {.lex_state = 12}, - [571] = {.lex_state = 12}, - [572] = {.lex_state = 12}, - [573] = {.lex_state = 12}, - [574] = {.lex_state = 12}, - [575] = {.lex_state = 11}, - [576] = {.lex_state = 12}, - [577] = {.lex_state = 12}, - [578] = {.lex_state = 12}, - [579] = {.lex_state = 12}, - [580] = {.lex_state = 12}, - [581] = {.lex_state = 12}, - [582] = {.lex_state = 12}, - [583] = {.lex_state = 12}, - [584] = {.lex_state = 12}, - [585] = {.lex_state = 12}, - [586] = {.lex_state = 11}, - [587] = {.lex_state = 11}, + [515] = {.lex_state = 0}, + [516] = {.lex_state = 0}, + [517] = {.lex_state = 0}, + [518] = {.lex_state = 11}, + [519] = {.lex_state = 11}, + [520] = {.lex_state = 11}, + [521] = {.lex_state = 11}, + [522] = {.lex_state = 11}, + [523] = {.lex_state = 11}, + [524] = {.lex_state = 11}, + [525] = {.lex_state = 11}, + [526] = {.lex_state = 11}, + [527] = {.lex_state = 11}, + [528] = {.lex_state = 11}, + [529] = {.lex_state = 11}, + [530] = {.lex_state = 11}, + [531] = {.lex_state = 11}, + [532] = {.lex_state = 11}, + [533] = {.lex_state = 11}, + [534] = {.lex_state = 11}, + [535] = {.lex_state = 11}, + [536] = {.lex_state = 11}, + [537] = {.lex_state = 11}, + [538] = {.lex_state = 11}, + [539] = {.lex_state = 11}, + [540] = {.lex_state = 11}, + [541] = {.lex_state = 11}, + [542] = {.lex_state = 11}, + [543] = {.lex_state = 11}, + [544] = {.lex_state = 11}, + [545] = {.lex_state = 0}, + [546] = {.lex_state = 11}, + [547] = {.lex_state = 11}, + [548] = {.lex_state = 0}, + [549] = {.lex_state = 0}, + [550] = {.lex_state = 0}, + [551] = {.lex_state = 0}, + [552] = {.lex_state = 0}, + [553] = {.lex_state = 7}, + [554] = {.lex_state = 7}, + [555] = {.lex_state = 7}, + [556] = {.lex_state = 7}, + [557] = {.lex_state = 7}, + [558] = {.lex_state = 7}, + [559] = {.lex_state = 7}, + [560] = {.lex_state = 0}, + [561] = {.lex_state = 7}, + [562] = {.lex_state = 7}, + [563] = {.lex_state = 7}, + [564] = {.lex_state = 7}, + [565] = {.lex_state = 0}, + [566] = {.lex_state = 7}, + [567] = {.lex_state = 7}, + [568] = {.lex_state = 0}, + [569] = {.lex_state = 7}, + [570] = {.lex_state = 7}, + [571] = {.lex_state = 7}, + [572] = {.lex_state = 7}, + [573] = {.lex_state = 7}, + [574] = {.lex_state = 7}, + [575] = {.lex_state = 7}, + [576] = {.lex_state = 0}, + [577] = {.lex_state = 7}, + [578] = {.lex_state = 0}, + [579] = {.lex_state = 7}, + [580] = {.lex_state = 7}, + [581] = {.lex_state = 7}, + [582] = {.lex_state = 7}, + [583] = {.lex_state = 7}, + [584] = {.lex_state = 7}, + [585] = {.lex_state = 0}, + [586] = {.lex_state = 0}, + [587] = {.lex_state = 7}, [588] = {.lex_state = 0}, [589] = {.lex_state = 7}, - [590] = {.lex_state = 0}, - [591] = {.lex_state = 0}, + [590] = {.lex_state = 7}, + [591] = {.lex_state = 7}, [592] = {.lex_state = 7}, [593] = {.lex_state = 7}, [594] = {.lex_state = 7}, [595] = {.lex_state = 7}, - [596] = {.lex_state = 0}, + [596] = {.lex_state = 7}, [597] = {.lex_state = 7}, [598] = {.lex_state = 7}, [599] = {.lex_state = 7}, - [600] = {.lex_state = 0}, + [600] = {.lex_state = 7}, [601] = {.lex_state = 7}, [602] = {.lex_state = 7}, [603] = {.lex_state = 7}, [604] = {.lex_state = 7}, - [605] = {.lex_state = 0}, + [605] = {.lex_state = 7}, [606] = {.lex_state = 7}, [607] = {.lex_state = 7}, [608] = {.lex_state = 7}, @@ -4477,19 +4333,19 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [617] = {.lex_state = 7}, [618] = {.lex_state = 7}, [619] = {.lex_state = 7}, - [620] = {.lex_state = 0}, + [620] = {.lex_state = 7}, [621] = {.lex_state = 7}, - [622] = {.lex_state = 0}, + [622] = {.lex_state = 7}, [623] = {.lex_state = 7}, [624] = {.lex_state = 7}, - [625] = {.lex_state = 0}, + [625] = {.lex_state = 7}, [626] = {.lex_state = 7}, [627] = {.lex_state = 7}, [628] = {.lex_state = 7}, [629] = {.lex_state = 7}, [630] = {.lex_state = 7}, [631] = {.lex_state = 7}, - [632] = {.lex_state = 0}, + [632] = {.lex_state = 7}, [633] = {.lex_state = 7}, [634] = {.lex_state = 7}, [635] = {.lex_state = 7}, @@ -4498,20 +4354,20 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [638] = {.lex_state = 7}, [639] = {.lex_state = 7}, [640] = {.lex_state = 7}, - [641] = {.lex_state = 0}, + [641] = {.lex_state = 7}, [642] = {.lex_state = 7}, [643] = {.lex_state = 7}, - [644] = {.lex_state = 0}, + [644] = {.lex_state = 7}, [645] = {.lex_state = 7}, [646] = {.lex_state = 7}, [647] = {.lex_state = 7}, [648] = {.lex_state = 7}, [649] = {.lex_state = 7}, [650] = {.lex_state = 7}, - [651] = {.lex_state = 0}, + [651] = {.lex_state = 7}, [652] = {.lex_state = 7}, [653] = {.lex_state = 7}, - [654] = {.lex_state = 0}, + [654] = {.lex_state = 7}, [655] = {.lex_state = 7}, [656] = {.lex_state = 7}, [657] = {.lex_state = 7}, @@ -4527,18 +4383,18 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [667] = {.lex_state = 7}, [668] = {.lex_state = 7}, [669] = {.lex_state = 7}, - [670] = {.lex_state = 0}, + [670] = {.lex_state = 7}, [671] = {.lex_state = 7}, [672] = {.lex_state = 7}, [673] = {.lex_state = 7}, [674] = {.lex_state = 7}, - [675] = {.lex_state = 7}, - [676] = {.lex_state = 7}, - [677] = {.lex_state = 7}, + [675] = {.lex_state = 0}, + [676] = {.lex_state = 0}, + [677] = {.lex_state = 0}, [678] = {.lex_state = 7}, [679] = {.lex_state = 7}, [680] = {.lex_state = 7}, - [681] = {.lex_state = 7}, + [681] = {.lex_state = 0}, [682] = {.lex_state = 7}, [683] = {.lex_state = 0}, [684] = {.lex_state = 0}, @@ -4548,38 +4404,38 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [688] = {.lex_state = 0}, [689] = {.lex_state = 0}, [690] = {.lex_state = 0}, - [691] = {.lex_state = 7}, + [691] = {.lex_state = 0}, [692] = {.lex_state = 0}, - [693] = {.lex_state = 7}, - [694] = {.lex_state = 7}, + [693] = {.lex_state = 0}, + [694] = {.lex_state = 0}, [695] = {.lex_state = 0}, - [696] = {.lex_state = 7}, + [696] = {.lex_state = 0}, [697] = {.lex_state = 0}, [698] = {.lex_state = 0}, [699] = {.lex_state = 0}, - [700] = {.lex_state = 7}, + [700] = {.lex_state = 0}, [701] = {.lex_state = 0}, [702] = {.lex_state = 0}, [703] = {.lex_state = 0}, - [704] = {.lex_state = 7}, + [704] = {.lex_state = 0}, [705] = {.lex_state = 0}, - [706] = {.lex_state = 7}, + [706] = {.lex_state = 0}, [707] = {.lex_state = 0}, - [708] = {.lex_state = 7}, + [708] = {.lex_state = 0}, [709] = {.lex_state = 0}, [710] = {.lex_state = 0}, [711] = {.lex_state = 0}, [712] = {.lex_state = 0}, [713] = {.lex_state = 0}, - [714] = {.lex_state = 7}, + [714] = {.lex_state = 0}, [715] = {.lex_state = 0}, - [716] = {.lex_state = 7}, - [717] = {.lex_state = 7}, - [718] = {.lex_state = 7}, - [719] = {.lex_state = 7}, - [720] = {.lex_state = 7}, + [716] = {.lex_state = 0}, + [717] = {.lex_state = 0}, + [718] = {.lex_state = 0}, + [719] = {.lex_state = 0}, + [720] = {.lex_state = 0}, [721] = {.lex_state = 0}, - [722] = {.lex_state = 7}, + [722] = {.lex_state = 0}, [723] = {.lex_state = 0}, [724] = {.lex_state = 0}, [725] = {.lex_state = 0}, @@ -4594,372 +4450,372 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [734] = {.lex_state = 0}, [735] = {.lex_state = 0}, [736] = {.lex_state = 0}, - [737] = {.lex_state = 7}, + [737] = {.lex_state = 0}, [738] = {.lex_state = 0}, [739] = {.lex_state = 0}, [740] = {.lex_state = 0}, - [741] = {.lex_state = 7}, + [741] = {.lex_state = 0}, [742] = {.lex_state = 0}, - [743] = {.lex_state = 7}, + [743] = {.lex_state = 0}, [744] = {.lex_state = 0}, - [745] = {.lex_state = 7}, + [745] = {.lex_state = 0}, [746] = {.lex_state = 0}, - [747] = {.lex_state = 7}, - [748] = {.lex_state = 7}, - [749] = {.lex_state = 7}, - [750] = {.lex_state = 7}, - [751] = {.lex_state = 7}, - [752] = {.lex_state = 7}, - [753] = {.lex_state = 7}, + [747] = {.lex_state = 0}, + [748] = {.lex_state = 0}, + [749] = {.lex_state = 0}, + [750] = {.lex_state = 0}, + [751] = {.lex_state = 0}, + [752] = {.lex_state = 0}, + [753] = {.lex_state = 0}, [754] = {.lex_state = 0}, [755] = {.lex_state = 0}, - [756] = {.lex_state = 7}, + [756] = {.lex_state = 0}, [757] = {.lex_state = 0}, [758] = {.lex_state = 0}, [759] = {.lex_state = 0}, [760] = {.lex_state = 0}, - [761] = {.lex_state = 7}, + [761] = {.lex_state = 0}, [762] = {.lex_state = 0}, [763] = {.lex_state = 0}, - [764] = {.lex_state = 7}, + [764] = {.lex_state = 0}, [765] = {.lex_state = 0}, [766] = {.lex_state = 0}, [767] = {.lex_state = 0}, [768] = {.lex_state = 0}, [769] = {.lex_state = 0}, - [770] = {.lex_state = 7}, + [770] = {.lex_state = 0}, [771] = {.lex_state = 0}, [772] = {.lex_state = 0}, [773] = {.lex_state = 0}, [774] = {.lex_state = 0}, [775] = {.lex_state = 0}, [776] = {.lex_state = 0}, - [777] = {.lex_state = 0}, - [778] = {.lex_state = 7}, - [779] = {.lex_state = 7}, - [780] = {.lex_state = 0}, - [781] = {.lex_state = 0}, - [782] = {.lex_state = 0}, - [783] = {.lex_state = 0}, - [784] = {.lex_state = 7}, - [785] = {.lex_state = 0}, - [786] = {.lex_state = 7}, - [787] = {.lex_state = 0}, - [788] = {.lex_state = 7}, - [789] = {.lex_state = 0}, - [790] = {.lex_state = 0}, - [791] = {.lex_state = 0}, - [792] = {.lex_state = 7}, - [793] = {.lex_state = 7}, - [794] = {.lex_state = 0}, - [795] = {.lex_state = 0}, - [796] = {.lex_state = 0}, - [797] = {.lex_state = 0}, - [798] = {.lex_state = 0}, - [799] = {.lex_state = 0}, - [800] = {.lex_state = 0}, - [801] = {.lex_state = 0}, - [802] = {.lex_state = 0}, - [803] = {.lex_state = 0}, - [804] = {.lex_state = 0}, - [805] = {.lex_state = 0}, - [806] = {.lex_state = 0}, - [807] = {.lex_state = 0}, - [808] = {.lex_state = 0}, - [809] = {.lex_state = 0}, - [810] = {.lex_state = 0}, - [811] = {.lex_state = 0}, - [812] = {.lex_state = 0}, - [813] = {.lex_state = 0}, - [814] = {.lex_state = 7}, - [815] = {.lex_state = 232}, - [816] = {.lex_state = 232}, - [817] = {.lex_state = 232}, - [818] = {.lex_state = 232}, - [819] = {.lex_state = 232}, - [820] = {.lex_state = 232}, - [821] = {.lex_state = 232}, - [822] = {.lex_state = 232}, - [823] = {.lex_state = 232}, - [824] = {.lex_state = 232}, - [825] = {.lex_state = 232}, - [826] = {.lex_state = 232}, - [827] = {.lex_state = 232}, - [828] = {.lex_state = 232}, - [829] = {.lex_state = 232}, - [830] = {.lex_state = 232}, - [831] = {.lex_state = 232}, - [832] = {.lex_state = 232}, - [833] = {.lex_state = 232}, - [834] = {.lex_state = 232}, - [835] = {.lex_state = 232}, - [836] = {.lex_state = 232}, - [837] = {.lex_state = 232}, - [838] = {.lex_state = 232}, - [839] = {.lex_state = 232}, - [840] = {.lex_state = 232}, - [841] = {.lex_state = 232}, - [842] = {.lex_state = 232}, - [843] = {.lex_state = 232}, - [844] = {.lex_state = 232}, - [845] = {.lex_state = 232}, - [846] = {.lex_state = 232}, - [847] = {.lex_state = 232}, - [848] = {.lex_state = 232}, - [849] = {.lex_state = 232}, - [850] = {.lex_state = 232}, - [851] = {.lex_state = 232}, - [852] = {.lex_state = 232}, - [853] = {.lex_state = 232}, - [854] = {.lex_state = 232}, - [855] = {.lex_state = 232}, - [856] = {.lex_state = 232}, - [857] = {.lex_state = 232}, - [858] = {.lex_state = 232}, - [859] = {.lex_state = 232}, - [860] = {.lex_state = 232}, - [861] = {.lex_state = 232}, - [862] = {.lex_state = 232}, - [863] = {.lex_state = 232}, - [864] = {.lex_state = 232}, - [865] = {.lex_state = 232}, - [866] = {.lex_state = 232}, - [867] = {.lex_state = 232}, - [868] = {.lex_state = 232}, - [869] = {.lex_state = 232}, - [870] = {.lex_state = 232}, - [871] = {.lex_state = 232}, - [872] = {.lex_state = 232}, - [873] = {.lex_state = 232}, - [874] = {.lex_state = 232}, - [875] = {.lex_state = 232}, - [876] = {.lex_state = 232}, - [877] = {.lex_state = 232}, - [878] = {.lex_state = 232}, - [879] = {.lex_state = 232}, - [880] = {.lex_state = 232}, - [881] = {.lex_state = 232}, - [882] = {.lex_state = 232}, - [883] = {.lex_state = 232}, - [884] = {.lex_state = 232}, - [885] = {.lex_state = 232}, - [886] = {.lex_state = 232}, - [887] = {.lex_state = 232}, - [888] = {.lex_state = 232}, - [889] = {.lex_state = 232}, - [890] = {.lex_state = 232}, - [891] = {.lex_state = 232}, - [892] = {.lex_state = 232}, - [893] = {.lex_state = 232}, - [894] = {.lex_state = 232}, - [895] = {.lex_state = 232}, - [896] = {.lex_state = 232}, - [897] = {.lex_state = 232}, - [898] = {.lex_state = 232}, - [899] = {.lex_state = 232}, - [900] = {.lex_state = 232}, - [901] = {.lex_state = 232}, - [902] = {.lex_state = 232}, - [903] = {.lex_state = 232}, - [904] = {.lex_state = 232}, - [905] = {.lex_state = 232}, - [906] = {.lex_state = 232}, - [907] = {.lex_state = 232}, - [908] = {.lex_state = 232}, - [909] = {.lex_state = 232}, - [910] = {.lex_state = 232}, - [911] = {.lex_state = 232}, - [912] = {.lex_state = 232}, - [913] = {.lex_state = 232}, - [914] = {.lex_state = 232}, - [915] = {.lex_state = 232}, - [916] = {.lex_state = 232}, - [917] = {.lex_state = 232}, - [918] = {.lex_state = 232}, - [919] = {.lex_state = 232}, - [920] = {.lex_state = 232}, - [921] = {.lex_state = 232}, - [922] = {.lex_state = 232}, - [923] = {.lex_state = 232}, - [924] = {.lex_state = 232}, - [925] = {.lex_state = 232}, - [926] = {.lex_state = 232}, - [927] = {.lex_state = 232}, - [928] = {.lex_state = 232}, - [929] = {.lex_state = 232}, - [930] = {.lex_state = 232}, - [931] = {.lex_state = 232}, - [932] = {.lex_state = 232}, - [933] = {.lex_state = 232}, - [934] = {.lex_state = 232}, - [935] = {.lex_state = 232}, - [936] = {.lex_state = 232}, - [937] = {.lex_state = 232}, - [938] = {.lex_state = 232}, - [939] = {.lex_state = 232}, - [940] = {.lex_state = 232}, - [941] = {.lex_state = 232}, - [942] = {.lex_state = 232}, - [943] = {.lex_state = 232}, - [944] = {.lex_state = 232}, - [945] = {.lex_state = 232}, - [946] = {.lex_state = 232}, - [947] = {.lex_state = 232}, - [948] = {.lex_state = 232}, - [949] = {.lex_state = 12}, + [777] = {.lex_state = 227}, + [778] = {.lex_state = 227}, + [779] = {.lex_state = 227}, + [780] = {.lex_state = 227}, + [781] = {.lex_state = 227}, + [782] = {.lex_state = 227}, + [783] = {.lex_state = 227}, + [784] = {.lex_state = 227}, + [785] = {.lex_state = 227}, + [786] = {.lex_state = 227}, + [787] = {.lex_state = 227}, + [788] = {.lex_state = 227}, + [789] = {.lex_state = 227}, + [790] = {.lex_state = 227}, + [791] = {.lex_state = 227}, + [792] = {.lex_state = 227}, + [793] = {.lex_state = 227}, + [794] = {.lex_state = 227}, + [795] = {.lex_state = 227}, + [796] = {.lex_state = 227}, + [797] = {.lex_state = 227}, + [798] = {.lex_state = 227}, + [799] = {.lex_state = 227}, + [800] = {.lex_state = 227}, + [801] = {.lex_state = 227}, + [802] = {.lex_state = 227}, + [803] = {.lex_state = 227}, + [804] = {.lex_state = 227}, + [805] = {.lex_state = 227}, + [806] = {.lex_state = 227}, + [807] = {.lex_state = 227}, + [808] = {.lex_state = 227}, + [809] = {.lex_state = 227}, + [810] = {.lex_state = 227}, + [811] = {.lex_state = 227}, + [812] = {.lex_state = 227}, + [813] = {.lex_state = 227}, + [814] = {.lex_state = 227}, + [815] = {.lex_state = 227}, + [816] = {.lex_state = 227}, + [817] = {.lex_state = 227}, + [818] = {.lex_state = 227}, + [819] = {.lex_state = 227}, + [820] = {.lex_state = 227}, + [821] = {.lex_state = 227}, + [822] = {.lex_state = 227}, + [823] = {.lex_state = 227}, + [824] = {.lex_state = 227}, + [825] = {.lex_state = 227}, + [826] = {.lex_state = 227}, + [827] = {.lex_state = 227}, + [828] = {.lex_state = 227}, + [829] = {.lex_state = 227}, + [830] = {.lex_state = 227}, + [831] = {.lex_state = 227}, + [832] = {.lex_state = 227}, + [833] = {.lex_state = 227}, + [834] = {.lex_state = 227}, + [835] = {.lex_state = 227}, + [836] = {.lex_state = 227}, + [837] = {.lex_state = 227}, + [838] = {.lex_state = 227}, + [839] = {.lex_state = 227}, + [840] = {.lex_state = 227}, + [841] = {.lex_state = 227}, + [842] = {.lex_state = 227}, + [843] = {.lex_state = 227}, + [844] = {.lex_state = 227}, + [845] = {.lex_state = 227}, + [846] = {.lex_state = 227}, + [847] = {.lex_state = 227}, + [848] = {.lex_state = 227}, + [849] = {.lex_state = 227}, + [850] = {.lex_state = 227}, + [851] = {.lex_state = 227}, + [852] = {.lex_state = 227}, + [853] = {.lex_state = 227}, + [854] = {.lex_state = 227}, + [855] = {.lex_state = 227}, + [856] = {.lex_state = 227}, + [857] = {.lex_state = 227}, + [858] = {.lex_state = 227}, + [859] = {.lex_state = 227}, + [860] = {.lex_state = 227}, + [861] = {.lex_state = 227}, + [862] = {.lex_state = 227}, + [863] = {.lex_state = 227}, + [864] = {.lex_state = 227}, + [865] = {.lex_state = 227}, + [866] = {.lex_state = 227}, + [867] = {.lex_state = 227}, + [868] = {.lex_state = 227}, + [869] = {.lex_state = 227}, + [870] = {.lex_state = 227}, + [871] = {.lex_state = 227}, + [872] = {.lex_state = 227}, + [873] = {.lex_state = 227}, + [874] = {.lex_state = 227}, + [875] = {.lex_state = 227}, + [876] = {.lex_state = 227}, + [877] = {.lex_state = 227}, + [878] = {.lex_state = 227}, + [879] = {.lex_state = 227}, + [880] = {.lex_state = 227}, + [881] = {.lex_state = 227}, + [882] = {.lex_state = 227}, + [883] = {.lex_state = 227}, + [884] = {.lex_state = 227}, + [885] = {.lex_state = 227}, + [886] = {.lex_state = 227}, + [887] = {.lex_state = 227}, + [888] = {.lex_state = 227}, + [889] = {.lex_state = 227}, + [890] = {.lex_state = 227}, + [891] = {.lex_state = 227}, + [892] = {.lex_state = 227}, + [893] = {.lex_state = 227}, + [894] = {.lex_state = 227}, + [895] = {.lex_state = 227}, + [896] = {.lex_state = 227}, + [897] = {.lex_state = 227}, + [898] = {.lex_state = 227}, + [899] = {.lex_state = 227}, + [900] = {.lex_state = 227}, + [901] = {.lex_state = 227}, + [902] = {.lex_state = 227}, + [903] = {.lex_state = 227}, + [904] = {.lex_state = 227}, + [905] = {.lex_state = 227}, + [906] = {.lex_state = 227}, + [907] = {.lex_state = 227}, + [908] = {.lex_state = 227}, + [909] = {.lex_state = 11}, + [910] = {.lex_state = 227}, + [911] = {.lex_state = 227}, + [912] = {.lex_state = 11}, + [913] = {.lex_state = 11}, + [914] = {.lex_state = 11}, + [915] = {.lex_state = 11}, + [916] = {.lex_state = 11}, + [917] = {.lex_state = 11}, + [918] = {.lex_state = 8}, + [919] = {.lex_state = 11}, + [920] = {.lex_state = 11}, + [921] = {.lex_state = 11}, + [922] = {.lex_state = 11}, + [923] = {.lex_state = 11}, + [924] = {.lex_state = 8}, + [925] = {.lex_state = 12}, + [926] = {.lex_state = 12}, + [927] = {.lex_state = 8}, + [928] = {.lex_state = 11}, + [929] = {.lex_state = 11}, + [930] = {.lex_state = 11}, + [931] = {.lex_state = 11}, + [932] = {.lex_state = 8}, + [933] = {.lex_state = 12}, + [934] = {.lex_state = 11}, + [935] = {.lex_state = 11}, + [936] = {.lex_state = 12}, + [937] = {.lex_state = 11}, + [938] = {.lex_state = 11}, + [939] = {.lex_state = 11}, + [940] = {.lex_state = 11}, + [941] = {.lex_state = 11}, + [942] = {.lex_state = 11}, + [943] = {.lex_state = 11}, + [944] = {.lex_state = 11}, + [945] = {.lex_state = 11}, + [946] = {.lex_state = 11}, + [947] = {.lex_state = 11}, + [948] = {.lex_state = 11}, + [949] = {.lex_state = 11}, [950] = {.lex_state = 12}, - [951] = {.lex_state = 12}, - [952] = {.lex_state = 12}, - [953] = {.lex_state = 12}, - [954] = {.lex_state = 12}, - [955] = {.lex_state = 12}, - [956] = {.lex_state = 12}, - [957] = {.lex_state = 12}, - [958] = {.lex_state = 12}, - [959] = {.lex_state = 12}, - [960] = {.lex_state = 12}, - [961] = {.lex_state = 12}, - [962] = {.lex_state = 12}, - [963] = {.lex_state = 12}, - [964] = {.lex_state = 12}, - [965] = {.lex_state = 12}, - [966] = {.lex_state = 12}, - [967] = {.lex_state = 13}, - [968] = {.lex_state = 12}, - [969] = {.lex_state = 12}, - [970] = {.lex_state = 12}, - [971] = {.lex_state = 12}, - [972] = {.lex_state = 12}, - [973] = {.lex_state = 12}, - [974] = {.lex_state = 12}, - [975] = {.lex_state = 12}, - [976] = {.lex_state = 12}, - [977] = {.lex_state = 12}, - [978] = {.lex_state = 12}, - [979] = {.lex_state = 12}, - [980] = {.lex_state = 12}, + [951] = {.lex_state = 11}, + [952] = {.lex_state = 11}, + [953] = {.lex_state = 11}, + [954] = {.lex_state = 11}, + [955] = {.lex_state = 11}, + [956] = {.lex_state = 11}, + [957] = {.lex_state = 11}, + [958] = {.lex_state = 11}, + [959] = {.lex_state = 11}, + [960] = {.lex_state = 11}, + [961] = {.lex_state = 11}, + [962] = {.lex_state = 11}, + [963] = {.lex_state = 11}, + [964] = {.lex_state = 11}, + [965] = {.lex_state = 11}, + [966] = {.lex_state = 11}, + [967] = {.lex_state = 11}, + [968] = {.lex_state = 11}, + [969] = {.lex_state = 11}, + [970] = {.lex_state = 11}, + [971] = {.lex_state = 11}, + [972] = {.lex_state = 11}, + [973] = {.lex_state = 11}, + [974] = {.lex_state = 11}, + [975] = {.lex_state = 11}, + [976] = {.lex_state = 11}, + [977] = {.lex_state = 11}, + [978] = {.lex_state = 11}, + [979] = {.lex_state = 11}, + [980] = {.lex_state = 11}, [981] = {.lex_state = 12}, - [982] = {.lex_state = 12}, - [983] = {.lex_state = 12}, - [984] = {.lex_state = 12}, - [985] = {.lex_state = 12}, - [986] = {.lex_state = 12}, - [987] = {.lex_state = 12}, - [988] = {.lex_state = 12}, - [989] = {.lex_state = 12}, - [990] = {.lex_state = 12}, - [991] = {.lex_state = 12}, - [992] = {.lex_state = 13}, - [993] = {.lex_state = 12}, - [994] = {.lex_state = 12}, - [995] = {.lex_state = 12}, - [996] = {.lex_state = 12}, - [997] = {.lex_state = 12}, - [998] = {.lex_state = 12}, - [999] = {.lex_state = 13}, - [1000] = {.lex_state = 12}, - [1001] = {.lex_state = 12}, - [1002] = {.lex_state = 12}, - [1003] = {.lex_state = 12}, - [1004] = {.lex_state = 12}, - [1005] = {.lex_state = 12}, - [1006] = {.lex_state = 12}, - [1007] = {.lex_state = 12}, - [1008] = {.lex_state = 12}, - [1009] = {.lex_state = 12}, - [1010] = {.lex_state = 12}, - [1011] = {.lex_state = 12}, - [1012] = {.lex_state = 12}, + [982] = {.lex_state = 11}, + [983] = {.lex_state = 11}, + [984] = {.lex_state = 11}, + [985] = {.lex_state = 8}, + [986] = {.lex_state = 11}, + [987] = {.lex_state = 11}, + [988] = {.lex_state = 11}, + [989] = {.lex_state = 11}, + [990] = {.lex_state = 11}, + [991] = {.lex_state = 11}, + [992] = {.lex_state = 11}, + [993] = {.lex_state = 11}, + [994] = {.lex_state = 11}, + [995] = {.lex_state = 11}, + [996] = {.lex_state = 11}, + [997] = {.lex_state = 11}, + [998] = {.lex_state = 11}, + [999] = {.lex_state = 11}, + [1000] = {.lex_state = 11}, + [1001] = {.lex_state = 11}, + [1002] = {.lex_state = 11}, + [1003] = {.lex_state = 11}, + [1004] = {.lex_state = 11}, + [1005] = {.lex_state = 11}, + [1006] = {.lex_state = 11}, + [1007] = {.lex_state = 11}, + [1008] = {.lex_state = 11}, + [1009] = {.lex_state = 11}, + [1010] = {.lex_state = 11}, + [1011] = {.lex_state = 11}, + [1012] = {.lex_state = 11}, [1013] = {.lex_state = 12}, - [1014] = {.lex_state = 12}, - [1015] = {.lex_state = 12}, - [1016] = {.lex_state = 12}, - [1017] = {.lex_state = 12}, - [1018] = {.lex_state = 12}, - [1019] = {.lex_state = 12}, - [1020] = {.lex_state = 12}, - [1021] = {.lex_state = 13}, - [1022] = {.lex_state = 12}, - [1023] = {.lex_state = 12}, - [1024] = {.lex_state = 12}, - [1025] = {.lex_state = 12}, - [1026] = {.lex_state = 12}, - [1027] = {.lex_state = 12}, - [1028] = {.lex_state = 12}, - [1029] = {.lex_state = 13}, - [1030] = {.lex_state = 12}, - [1031] = {.lex_state = 12}, - [1032] = {.lex_state = 12}, + [1014] = {.lex_state = 11}, + [1015] = {.lex_state = 11}, + [1016] = {.lex_state = 11}, + [1017] = {.lex_state = 11}, + [1018] = {.lex_state = 11}, + [1019] = {.lex_state = 11}, + [1020] = {.lex_state = 11}, + [1021] = {.lex_state = 8}, + [1022] = {.lex_state = 11}, + [1023] = {.lex_state = 11}, + [1024] = {.lex_state = 11}, + [1025] = {.lex_state = 11}, + [1026] = {.lex_state = 11}, + [1027] = {.lex_state = 11}, + [1028] = {.lex_state = 11}, + [1029] = {.lex_state = 11}, + [1030] = {.lex_state = 11}, + [1031] = {.lex_state = 11}, + [1032] = {.lex_state = 11}, [1033] = {.lex_state = 12}, - [1034] = {.lex_state = 12}, - [1035] = {.lex_state = 12}, - [1036] = {.lex_state = 12}, - [1037] = {.lex_state = 12}, - [1038] = {.lex_state = 12}, - [1039] = {.lex_state = 12}, - [1040] = {.lex_state = 12}, - [1041] = {.lex_state = 12}, - [1042] = {.lex_state = 12}, - [1043] = {.lex_state = 12}, - [1044] = {.lex_state = 13}, - [1045] = {.lex_state = 12}, - [1046] = {.lex_state = 12}, - [1047] = {.lex_state = 13}, + [1034] = {.lex_state = 11}, + [1035] = {.lex_state = 11}, + [1036] = {.lex_state = 11}, + [1037] = {.lex_state = 11}, + [1038] = {.lex_state = 8}, + [1039] = {.lex_state = 8}, + [1040] = {.lex_state = 8}, + [1041] = {.lex_state = 8}, + [1042] = {.lex_state = 8}, + [1043] = {.lex_state = 8}, + [1044] = {.lex_state = 8}, + [1045] = {.lex_state = 8}, + [1046] = {.lex_state = 8}, + [1047] = {.lex_state = 8}, [1048] = {.lex_state = 8}, - [1049] = {.lex_state = 12}, - [1050] = {.lex_state = 13}, - [1051] = {.lex_state = 8}, - [1052] = {.lex_state = 12}, - [1053] = {.lex_state = 12}, - [1054] = {.lex_state = 12}, - [1055] = {.lex_state = 12}, - [1056] = {.lex_state = 12}, - [1057] = {.lex_state = 12}, - [1058] = {.lex_state = 12}, - [1059] = {.lex_state = 12}, - [1060] = {.lex_state = 12}, - [1061] = {.lex_state = 12}, - [1062] = {.lex_state = 12}, - [1063] = {.lex_state = 12}, - [1064] = {.lex_state = 12}, - [1065] = {.lex_state = 12}, - [1066] = {.lex_state = 12}, - [1067] = {.lex_state = 13}, - [1068] = {.lex_state = 12}, - [1069] = {.lex_state = 12}, - [1070] = {.lex_state = 12}, - [1071] = {.lex_state = 12}, - [1072] = {.lex_state = 12}, + [1049] = {.lex_state = 8}, + [1050] = {.lex_state = 8}, + [1051] = {.lex_state = 11}, + [1052] = {.lex_state = 11}, + [1053] = {.lex_state = 11}, + [1054] = {.lex_state = 11}, + [1055] = {.lex_state = 11}, + [1056] = {.lex_state = 11}, + [1057] = {.lex_state = 11}, + [1058] = {.lex_state = 11}, + [1059] = {.lex_state = 13}, + [1060] = {.lex_state = 11}, + [1061] = {.lex_state = 11}, + [1062] = {.lex_state = 11}, + [1063] = {.lex_state = 11}, + [1064] = {.lex_state = 8}, + [1065] = {.lex_state = 11}, + [1066] = {.lex_state = 13}, + [1067] = {.lex_state = 8}, + [1068] = {.lex_state = 8}, + [1069] = {.lex_state = 8}, + [1070] = {.lex_state = 8}, + [1071] = {.lex_state = 8}, + [1072] = {.lex_state = 8}, [1073] = {.lex_state = 8}, [1074] = {.lex_state = 8}, [1075] = {.lex_state = 8}, - [1076] = {.lex_state = 14}, + [1076] = {.lex_state = 8}, [1077] = {.lex_state = 8}, [1078] = {.lex_state = 8}, - [1079] = {.lex_state = 12}, - [1080] = {.lex_state = 14}, - [1081] = {.lex_state = 12}, - [1082] = {.lex_state = 14}, + [1079] = {.lex_state = 8}, + [1080] = {.lex_state = 8}, + [1081] = {.lex_state = 8}, + [1082] = {.lex_state = 8}, [1083] = {.lex_state = 8}, - [1084] = {.lex_state = 8}, - [1085] = {.lex_state = 12}, - [1086] = {.lex_state = 15}, - [1087] = {.lex_state = 12}, - [1088] = {.lex_state = 12}, - [1089] = {.lex_state = 15}, + [1084] = {.lex_state = 11}, + [1085] = {.lex_state = 8}, + [1086] = {.lex_state = 8}, + [1087] = {.lex_state = 8}, + [1088] = {.lex_state = 8}, + [1089] = {.lex_state = 8}, [1090] = {.lex_state = 8}, - [1091] = {.lex_state = 12}, - [1092] = {.lex_state = 12}, - [1093] = {.lex_state = 12}, - [1094] = {.lex_state = 12}, - [1095] = {.lex_state = 12}, - [1096] = {.lex_state = 12}, + [1091] = {.lex_state = 8}, + [1092] = {.lex_state = 8}, + [1093] = {.lex_state = 11}, + [1094] = {.lex_state = 8}, + [1095] = {.lex_state = 8}, + [1096] = {.lex_state = 8}, [1097] = {.lex_state = 8}, [1098] = {.lex_state = 8}, - [1099] = {.lex_state = 12}, - [1100] = {.lex_state = 12}, - [1101] = {.lex_state = 12}, - [1102] = {.lex_state = 12}, + [1099] = {.lex_state = 8}, + [1100] = {.lex_state = 8}, + [1101] = {.lex_state = 8}, + [1102] = {.lex_state = 8}, [1103] = {.lex_state = 8}, [1104] = {.lex_state = 8}, [1105] = {.lex_state = 8}, @@ -5022,7 +4878,7 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [1162] = {.lex_state = 8}, [1163] = {.lex_state = 8}, [1164] = {.lex_state = 8}, - [1165] = {.lex_state = 15}, + [1165] = {.lex_state = 8}, [1166] = {.lex_state = 8}, [1167] = {.lex_state = 8}, [1168] = {.lex_state = 8}, @@ -5030,7 +4886,7 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [1170] = {.lex_state = 8}, [1171] = {.lex_state = 8}, [1172] = {.lex_state = 8}, - [1173] = {.lex_state = 8}, + [1173] = {.lex_state = 13}, [1174] = {.lex_state = 8}, [1175] = {.lex_state = 8}, [1176] = {.lex_state = 8}, @@ -5040,8 +4896,8 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [1180] = {.lex_state = 8}, [1181] = {.lex_state = 8}, [1182] = {.lex_state = 8}, - [1183] = {.lex_state = 8}, - [1184] = {.lex_state = 8}, + [1183] = {.lex_state = 13}, + [1184] = {.lex_state = 13}, [1185] = {.lex_state = 8}, [1186] = {.lex_state = 8}, [1187] = {.lex_state = 8}, @@ -5056,7 +4912,7 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [1196] = {.lex_state = 8}, [1197] = {.lex_state = 8}, [1198] = {.lex_state = 8}, - [1199] = {.lex_state = 8}, + [1199] = {.lex_state = 12}, [1200] = {.lex_state = 8}, [1201] = {.lex_state = 8}, [1202] = {.lex_state = 8}, @@ -5067,167 +4923,167 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [1207] = {.lex_state = 8}, [1208] = {.lex_state = 8}, [1209] = {.lex_state = 8}, - [1210] = {.lex_state = 8}, - [1211] = {.lex_state = 8}, - [1212] = {.lex_state = 8}, + [1210] = {.lex_state = 13}, + [1211] = {.lex_state = 13}, + [1212] = {.lex_state = 13}, [1213] = {.lex_state = 8}, [1214] = {.lex_state = 8}, [1215] = {.lex_state = 8}, - [1216] = {.lex_state = 8}, - [1217] = {.lex_state = 15}, - [1218] = {.lex_state = 8}, - [1219] = {.lex_state = 8}, - [1220] = {.lex_state = 8}, - [1221] = {.lex_state = 8}, - [1222] = {.lex_state = 8}, - [1223] = {.lex_state = 8}, - [1224] = {.lex_state = 8}, - [1225] = {.lex_state = 8}, - [1226] = {.lex_state = 8}, - [1227] = {.lex_state = 8}, - [1228] = {.lex_state = 8}, - [1229] = {.lex_state = 8}, - [1230] = {.lex_state = 8}, - [1231] = {.lex_state = 15}, - [1232] = {.lex_state = 8}, - [1233] = {.lex_state = 8}, - [1234] = {.lex_state = 8}, - [1235] = {.lex_state = 8}, - [1236] = {.lex_state = 8}, - [1237] = {.lex_state = 8}, - [1238] = {.lex_state = 8}, - [1239] = {.lex_state = 8}, - [1240] = {.lex_state = 8}, + [1216] = {.lex_state = 13}, + [1217] = {.lex_state = 13}, + [1218] = {.lex_state = 13}, + [1219] = {.lex_state = 13}, + [1220] = {.lex_state = 13}, + [1221] = {.lex_state = 13}, + [1222] = {.lex_state = 13}, + [1223] = {.lex_state = 13}, + [1224] = {.lex_state = 13}, + [1225] = {.lex_state = 13}, + [1226] = {.lex_state = 13}, + [1227] = {.lex_state = 13}, + [1228] = {.lex_state = 13}, + [1229] = {.lex_state = 13}, + [1230] = {.lex_state = 13}, + [1231] = {.lex_state = 13}, + [1232] = {.lex_state = 13}, + [1233] = {.lex_state = 13}, + [1234] = {.lex_state = 13}, + [1235] = {.lex_state = 13}, + [1236] = {.lex_state = 13}, + [1237] = {.lex_state = 13}, + [1238] = {.lex_state = 13}, + [1239] = {.lex_state = 13}, + [1240] = {.lex_state = 13}, [1241] = {.lex_state = 13}, - [1242] = {.lex_state = 8}, - [1243] = {.lex_state = 8}, - [1244] = {.lex_state = 8}, - [1245] = {.lex_state = 8}, - [1246] = {.lex_state = 8}, - [1247] = {.lex_state = 8}, - [1248] = {.lex_state = 8}, - [1249] = {.lex_state = 8}, - [1250] = {.lex_state = 8}, - [1251] = {.lex_state = 8}, - [1252] = {.lex_state = 15}, - [1253] = {.lex_state = 15}, - [1254] = {.lex_state = 15}, - [1255] = {.lex_state = 15}, - [1256] = {.lex_state = 8}, - [1257] = {.lex_state = 8}, - [1258] = {.lex_state = 15}, - [1259] = {.lex_state = 15}, - [1260] = {.lex_state = 15}, - [1261] = {.lex_state = 15}, - [1262] = {.lex_state = 15}, - [1263] = {.lex_state = 15}, - [1264] = {.lex_state = 15}, - [1265] = {.lex_state = 15}, - [1266] = {.lex_state = 15}, - [1267] = {.lex_state = 15}, - [1268] = {.lex_state = 15}, - [1269] = {.lex_state = 15}, - [1270] = {.lex_state = 15}, - [1271] = {.lex_state = 15}, - [1272] = {.lex_state = 15}, - [1273] = {.lex_state = 15}, - [1274] = {.lex_state = 15}, - [1275] = {.lex_state = 15}, - [1276] = {.lex_state = 15}, - [1277] = {.lex_state = 15}, - [1278] = {.lex_state = 15}, - [1279] = {.lex_state = 15}, - [1280] = {.lex_state = 15}, - [1281] = {.lex_state = 15}, - [1282] = {.lex_state = 15}, - [1283] = {.lex_state = 15}, - [1284] = {.lex_state = 15}, - [1285] = {.lex_state = 15}, - [1286] = {.lex_state = 15}, - [1287] = {.lex_state = 15}, - [1288] = {.lex_state = 15}, - [1289] = {.lex_state = 15}, - [1290] = {.lex_state = 15}, - [1291] = {.lex_state = 15}, - [1292] = {.lex_state = 15}, - [1293] = {.lex_state = 15}, - [1294] = {.lex_state = 15}, - [1295] = {.lex_state = 15}, - [1296] = {.lex_state = 15}, - [1297] = {.lex_state = 15}, - [1298] = {.lex_state = 15}, - [1299] = {.lex_state = 15}, - [1300] = {.lex_state = 15}, - [1301] = {.lex_state = 15}, - [1302] = {.lex_state = 15}, - [1303] = {.lex_state = 15}, - [1304] = {.lex_state = 15}, - [1305] = {.lex_state = 15}, - [1306] = {.lex_state = 15}, - [1307] = {.lex_state = 15}, - [1308] = {.lex_state = 15}, - [1309] = {.lex_state = 15}, - [1310] = {.lex_state = 15}, - [1311] = {.lex_state = 15}, - [1312] = {.lex_state = 15}, - [1313] = {.lex_state = 15}, - [1314] = {.lex_state = 15}, - [1315] = {.lex_state = 15}, - [1316] = {.lex_state = 15}, - [1317] = {.lex_state = 15}, - [1318] = {.lex_state = 15}, - [1319] = {.lex_state = 15}, - [1320] = {.lex_state = 15}, - [1321] = {.lex_state = 15}, - [1322] = {.lex_state = 15}, - [1323] = {.lex_state = 15}, - [1324] = {.lex_state = 15}, - [1325] = {.lex_state = 15}, - [1326] = {.lex_state = 15}, - [1327] = {.lex_state = 15}, - [1328] = {.lex_state = 15}, - [1329] = {.lex_state = 15}, - [1330] = {.lex_state = 15}, - [1331] = {.lex_state = 15}, - [1332] = {.lex_state = 15}, - [1333] = {.lex_state = 15}, - [1334] = {.lex_state = 15}, - [1335] = {.lex_state = 15}, - [1336] = {.lex_state = 15}, - [1337] = {.lex_state = 15}, - [1338] = {.lex_state = 15}, - [1339] = {.lex_state = 15}, - [1340] = {.lex_state = 15}, - [1341] = {.lex_state = 15}, - [1342] = {.lex_state = 15}, - [1343] = {.lex_state = 15}, - [1344] = {.lex_state = 15}, - [1345] = {.lex_state = 15}, - [1346] = {.lex_state = 15}, - [1347] = {.lex_state = 15}, - [1348] = {.lex_state = 15}, - [1349] = {.lex_state = 15}, - [1350] = {.lex_state = 15}, - [1351] = {.lex_state = 15}, - [1352] = {.lex_state = 15}, - [1353] = {.lex_state = 15}, - [1354] = {.lex_state = 15}, - [1355] = {.lex_state = 15}, - [1356] = {.lex_state = 15}, - [1357] = {.lex_state = 15}, - [1358] = {.lex_state = 15}, - [1359] = {.lex_state = 15}, + [1242] = {.lex_state = 13}, + [1243] = {.lex_state = 13}, + [1244] = {.lex_state = 13}, + [1245] = {.lex_state = 13}, + [1246] = {.lex_state = 13}, + [1247] = {.lex_state = 13}, + [1248] = {.lex_state = 13}, + [1249] = {.lex_state = 13}, + [1250] = {.lex_state = 13}, + [1251] = {.lex_state = 13}, + [1252] = {.lex_state = 13}, + [1253] = {.lex_state = 13}, + [1254] = {.lex_state = 13}, + [1255] = {.lex_state = 13}, + [1256] = {.lex_state = 13}, + [1257] = {.lex_state = 13}, + [1258] = {.lex_state = 13}, + [1259] = {.lex_state = 13}, + [1260] = {.lex_state = 13}, + [1261] = {.lex_state = 13}, + [1262] = {.lex_state = 13}, + [1263] = {.lex_state = 13}, + [1264] = {.lex_state = 13}, + [1265] = {.lex_state = 13}, + [1266] = {.lex_state = 13}, + [1267] = {.lex_state = 13}, + [1268] = {.lex_state = 13}, + [1269] = {.lex_state = 13}, + [1270] = {.lex_state = 13}, + [1271] = {.lex_state = 13}, + [1272] = {.lex_state = 13}, + [1273] = {.lex_state = 13}, + [1274] = {.lex_state = 13}, + [1275] = {.lex_state = 13}, + [1276] = {.lex_state = 13}, + [1277] = {.lex_state = 13}, + [1278] = {.lex_state = 13}, + [1279] = {.lex_state = 13}, + [1280] = {.lex_state = 13}, + [1281] = {.lex_state = 13}, + [1282] = {.lex_state = 13}, + [1283] = {.lex_state = 13}, + [1284] = {.lex_state = 13}, + [1285] = {.lex_state = 13}, + [1286] = {.lex_state = 13}, + [1287] = {.lex_state = 13}, + [1288] = {.lex_state = 13}, + [1289] = {.lex_state = 13}, + [1290] = {.lex_state = 13}, + [1291] = {.lex_state = 13}, + [1292] = {.lex_state = 13}, + [1293] = {.lex_state = 13}, + [1294] = {.lex_state = 13}, + [1295] = {.lex_state = 13}, + [1296] = {.lex_state = 13}, + [1297] = {.lex_state = 13}, + [1298] = {.lex_state = 13}, + [1299] = {.lex_state = 13}, + [1300] = {.lex_state = 13}, + [1301] = {.lex_state = 13}, + [1302] = {.lex_state = 13}, + [1303] = {.lex_state = 13}, + [1304] = {.lex_state = 13}, + [1305] = {.lex_state = 13}, + [1306] = {.lex_state = 13}, + [1307] = {.lex_state = 13}, + [1308] = {.lex_state = 13}, + [1309] = {.lex_state = 13}, + [1310] = {.lex_state = 13}, + [1311] = {.lex_state = 13}, + [1312] = {.lex_state = 13}, + [1313] = {.lex_state = 13}, + [1314] = {.lex_state = 13}, + [1315] = {.lex_state = 13}, + [1316] = {.lex_state = 13}, + [1317] = {.lex_state = 13}, + [1318] = {.lex_state = 13}, + [1319] = {.lex_state = 0}, + [1320] = {.lex_state = 0}, + [1321] = {.lex_state = 0}, + [1322] = {.lex_state = 0}, + [1323] = {.lex_state = 0}, + [1324] = {.lex_state = 0}, + [1325] = {.lex_state = 0}, + [1326] = {.lex_state = 0}, + [1327] = {.lex_state = 0}, + [1328] = {.lex_state = 0}, + [1329] = {.lex_state = 0}, + [1330] = {.lex_state = 0}, + [1331] = {.lex_state = 0}, + [1332] = {.lex_state = 0}, + [1333] = {.lex_state = 0}, + [1334] = {.lex_state = 0}, + [1335] = {.lex_state = 0}, + [1336] = {.lex_state = 0}, + [1337] = {.lex_state = 12}, + [1338] = {.lex_state = 0}, + [1339] = {.lex_state = 0}, + [1340] = {.lex_state = 13}, + [1341] = {.lex_state = 13}, + [1342] = {.lex_state = 13}, + [1343] = {.lex_state = 8}, + [1344] = {.lex_state = 8}, + [1345] = {.lex_state = 8}, + [1346] = {.lex_state = 8}, + [1347] = {.lex_state = 0}, + [1348] = {.lex_state = 8}, + [1349] = {.lex_state = 8}, + [1350] = {.lex_state = 8}, + [1351] = {.lex_state = 0}, + [1352] = {.lex_state = 8}, + [1353] = {.lex_state = 8}, + [1354] = {.lex_state = 8}, + [1355] = {.lex_state = 0}, + [1356] = {.lex_state = 0}, + [1357] = {.lex_state = 8}, + [1358] = {.lex_state = 8}, + [1359] = {.lex_state = 0}, [1360] = {.lex_state = 0}, - [1361] = {.lex_state = 0}, + [1361] = {.lex_state = 8}, [1362] = {.lex_state = 0}, - [1363] = {.lex_state = 0}, - [1364] = {.lex_state = 0}, - [1365] = {.lex_state = 0}, - [1366] = {.lex_state = 0}, - [1367] = {.lex_state = 0}, - [1368] = {.lex_state = 0}, - [1369] = {.lex_state = 13}, - [1370] = {.lex_state = 0}, + [1363] = {.lex_state = 8}, + [1364] = {.lex_state = 8}, + [1365] = {.lex_state = 8}, + [1366] = {.lex_state = 8}, + [1367] = {.lex_state = 8}, + [1368] = {.lex_state = 8}, + [1369] = {.lex_state = 8}, + [1370] = {.lex_state = 8}, [1371] = {.lex_state = 0}, [1372] = {.lex_state = 0}, [1373] = {.lex_state = 0}, @@ -5238,19 +5094,19 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [1378] = {.lex_state = 0}, [1379] = {.lex_state = 0}, [1380] = {.lex_state = 0}, - [1381] = {.lex_state = 15}, - [1382] = {.lex_state = 15}, - [1383] = {.lex_state = 15}, + [1381] = {.lex_state = 8}, + [1382] = {.lex_state = 0}, + [1383] = {.lex_state = 0}, [1384] = {.lex_state = 0}, - [1385] = {.lex_state = 0}, - [1386] = {.lex_state = 8}, + [1385] = {.lex_state = 8}, + [1386] = {.lex_state = 0}, [1387] = {.lex_state = 0}, [1388] = {.lex_state = 8}, [1389] = {.lex_state = 0}, [1390] = {.lex_state = 8}, - [1391] = {.lex_state = 0}, - [1392] = {.lex_state = 0}, - [1393] = {.lex_state = 8}, + [1391] = {.lex_state = 8}, + [1392] = {.lex_state = 8}, + [1393] = {.lex_state = 0}, [1394] = {.lex_state = 8}, [1395] = {.lex_state = 8}, [1396] = {.lex_state = 8}, @@ -5264,14 +5120,14 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [1404] = {.lex_state = 8}, [1405] = {.lex_state = 8}, [1406] = {.lex_state = 8}, - [1407] = {.lex_state = 13}, - [1408] = {.lex_state = 13}, - [1409] = {.lex_state = 13}, - [1410] = {.lex_state = 13}, - [1411] = {.lex_state = 13}, - [1412] = {.lex_state = 13}, - [1413] = {.lex_state = 13}, - [1414] = {.lex_state = 0}, + [1407] = {.lex_state = 0}, + [1408] = {.lex_state = 8}, + [1409] = {.lex_state = 8}, + [1410] = {.lex_state = 8}, + [1411] = {.lex_state = 8}, + [1412] = {.lex_state = 8}, + [1413] = {.lex_state = 8}, + [1414] = {.lex_state = 8}, [1415] = {.lex_state = 0}, [1416] = {.lex_state = 0}, [1417] = {.lex_state = 0}, @@ -5280,42 +5136,42 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [1420] = {.lex_state = 0}, [1421] = {.lex_state = 0}, [1422] = {.lex_state = 0}, - [1423] = {.lex_state = 13}, + [1423] = {.lex_state = 0}, [1424] = {.lex_state = 0}, [1425] = {.lex_state = 0}, [1426] = {.lex_state = 0}, [1427] = {.lex_state = 0}, - [1428] = {.lex_state = 13}, + [1428] = {.lex_state = 0}, [1429] = {.lex_state = 0}, [1430] = {.lex_state = 0}, - [1431] = {.lex_state = 13}, - [1432] = {.lex_state = 13}, - [1433] = {.lex_state = 13}, - [1434] = {.lex_state = 13}, - [1435] = {.lex_state = 13}, - [1436] = {.lex_state = 13}, + [1431] = {.lex_state = 0}, + [1432] = {.lex_state = 0}, + [1433] = {.lex_state = 0}, + [1434] = {.lex_state = 0}, + [1435] = {.lex_state = 0}, + [1436] = {.lex_state = 0}, [1437] = {.lex_state = 0}, - [1438] = {.lex_state = 13}, + [1438] = {.lex_state = 0}, [1439] = {.lex_state = 0}, - [1440] = {.lex_state = 13}, - [1441] = {.lex_state = 13}, - [1442] = {.lex_state = 13}, - [1443] = {.lex_state = 13}, - [1444] = {.lex_state = 13}, - [1445] = {.lex_state = 13}, + [1440] = {.lex_state = 0}, + [1441] = {.lex_state = 0}, + [1442] = {.lex_state = 0}, + [1443] = {.lex_state = 0}, + [1444] = {.lex_state = 0}, + [1445] = {.lex_state = 0}, [1446] = {.lex_state = 0}, [1447] = {.lex_state = 0}, - [1448] = {.lex_state = 13}, - [1449] = {.lex_state = 13}, - [1450] = {.lex_state = 13}, - [1451] = {.lex_state = 13}, - [1452] = {.lex_state = 13}, - [1453] = {.lex_state = 13}, - [1454] = {.lex_state = 13}, - [1455] = {.lex_state = 13}, - [1456] = {.lex_state = 13}, - [1457] = {.lex_state = 13}, - [1458] = {.lex_state = 0}, + [1448] = {.lex_state = 0}, + [1449] = {.lex_state = 0}, + [1450] = {.lex_state = 0}, + [1451] = {.lex_state = 0}, + [1452] = {.lex_state = 0}, + [1453] = {.lex_state = 0}, + [1454] = {.lex_state = 0}, + [1455] = {.lex_state = 0}, + [1456] = {.lex_state = 0}, + [1457] = {.lex_state = 0}, + [1458] = {.lex_state = 8}, [1459] = {.lex_state = 0}, [1460] = {.lex_state = 0}, [1461] = {.lex_state = 0}, @@ -5327,7 +5183,7 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [1467] = {.lex_state = 0}, [1468] = {.lex_state = 0}, [1469] = {.lex_state = 0}, - [1470] = {.lex_state = 13}, + [1470] = {.lex_state = 0}, [1471] = {.lex_state = 0}, [1472] = {.lex_state = 0}, [1473] = {.lex_state = 0}, @@ -5380,11 +5236,11 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [1520] = {.lex_state = 0}, [1521] = {.lex_state = 0}, [1522] = {.lex_state = 0}, - [1523] = {.lex_state = 0}, + [1523] = {.lex_state = 8}, [1524] = {.lex_state = 0}, [1525] = {.lex_state = 0}, [1526] = {.lex_state = 0}, - [1527] = {.lex_state = 0}, + [1527] = {.lex_state = 8}, [1528] = {.lex_state = 0}, [1529] = {.lex_state = 0}, [1530] = {.lex_state = 0}, @@ -5393,10 +5249,10 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [1533] = {.lex_state = 0}, [1534] = {.lex_state = 0}, [1535] = {.lex_state = 0}, - [1536] = {.lex_state = 13}, + [1536] = {.lex_state = 0}, [1537] = {.lex_state = 0}, [1538] = {.lex_state = 0}, - [1539] = {.lex_state = 13}, + [1539] = {.lex_state = 0}, [1540] = {.lex_state = 0}, [1541] = {.lex_state = 0}, [1542] = {.lex_state = 0}, @@ -5447,7 +5303,7 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [1587] = {.lex_state = 0}, [1588] = {.lex_state = 0}, [1589] = {.lex_state = 0}, - [1590] = {.lex_state = 0}, + [1590] = {.lex_state = 8}, [1591] = {.lex_state = 0}, [1592] = {.lex_state = 0}, [1593] = {.lex_state = 0}, @@ -5459,7 +5315,7 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [1599] = {.lex_state = 0}, [1600] = {.lex_state = 0}, [1601] = {.lex_state = 0}, - [1602] = {.lex_state = 13}, + [1602] = {.lex_state = 0}, [1603] = {.lex_state = 0}, [1604] = {.lex_state = 0}, [1605] = {.lex_state = 0}, @@ -5512,8 +5368,8 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [1652] = {.lex_state = 0}, [1653] = {.lex_state = 0}, [1654] = {.lex_state = 0}, - [1655] = {.lex_state = 0}, - [1656] = {.lex_state = 0}, + [1655] = {.lex_state = 8}, + [1656] = {.lex_state = 8}, [1657] = {.lex_state = 0}, [1658] = {.lex_state = 0}, [1659] = {.lex_state = 0}, @@ -5525,7 +5381,7 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [1665] = {.lex_state = 0}, [1666] = {.lex_state = 0}, [1667] = {.lex_state = 0}, - [1668] = {.lex_state = 13}, + [1668] = {.lex_state = 0}, [1669] = {.lex_state = 0}, [1670] = {.lex_state = 0}, [1671] = {.lex_state = 0}, @@ -5570,7 +5426,7 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [1710] = {.lex_state = 0}, [1711] = {.lex_state = 0}, [1712] = {.lex_state = 0}, - [1713] = {.lex_state = 0}, + [1713] = {.lex_state = 8}, [1714] = {.lex_state = 0}, [1715] = {.lex_state = 0}, [1716] = {.lex_state = 0}, @@ -5613,7 +5469,7 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [1753] = {.lex_state = 0}, [1754] = {.lex_state = 0}, [1755] = {.lex_state = 0}, - [1756] = {.lex_state = 13}, + [1756] = {.lex_state = 0}, [1757] = {.lex_state = 0}, [1758] = {.lex_state = 0}, [1759] = {.lex_state = 0}, @@ -5658,7 +5514,7 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [1798] = {.lex_state = 0}, [1799] = {.lex_state = 0}, [1800] = {.lex_state = 0}, - [1801] = {.lex_state = 13}, + [1801] = {.lex_state = 0}, [1802] = {.lex_state = 0}, [1803] = {.lex_state = 0}, [1804] = {.lex_state = 0}, @@ -5730,61 +5586,18 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [1870] = {.lex_state = 0}, [1871] = {.lex_state = 0}, [1872] = {.lex_state = 0}, - [1873] = {.lex_state = 0}, + [1873] = {.lex_state = 11}, [1874] = {.lex_state = 0}, [1875] = {.lex_state = 0}, [1876] = {.lex_state = 0}, [1877] = {.lex_state = 0}, - [1878] = {.lex_state = 0}, + [1878] = {.lex_state = 11}, [1879] = {.lex_state = 0}, [1880] = {.lex_state = 0}, [1881] = {.lex_state = 0}, [1882] = {.lex_state = 0}, [1883] = {.lex_state = 0}, [1884] = {.lex_state = 0}, - [1885] = {.lex_state = 0}, - [1886] = {.lex_state = 0}, - [1887] = {.lex_state = 0}, - [1888] = {.lex_state = 0}, - [1889] = {.lex_state = 0}, - [1890] = {.lex_state = 0}, - [1891] = {.lex_state = 0}, - [1892] = {.lex_state = 0}, - [1893] = {.lex_state = 0}, - [1894] = {.lex_state = 0}, - [1895] = {.lex_state = 0}, - [1896] = {.lex_state = 0}, - [1897] = {.lex_state = 0}, - [1898] = {.lex_state = 0}, - [1899] = {.lex_state = 0}, - [1900] = {.lex_state = 0}, - [1901] = {.lex_state = 0}, - [1902] = {.lex_state = 0}, - [1903] = {.lex_state = 0}, - [1904] = {.lex_state = 232}, - [1905] = {.lex_state = 232}, - [1906] = {.lex_state = 232}, - [1907] = {.lex_state = 232}, - [1908] = {.lex_state = 232}, - [1909] = {.lex_state = 232}, - [1910] = {.lex_state = 232}, - [1911] = {.lex_state = 232}, - [1912] = {.lex_state = 0}, - [1913] = {.lex_state = 0}, - [1914] = {.lex_state = 0}, - [1915] = {.lex_state = 0}, - [1916] = {.lex_state = 12}, - [1917] = {.lex_state = 0}, - [1918] = {.lex_state = 0}, - [1919] = {.lex_state = 0}, - [1920] = {.lex_state = 0}, - [1921] = {.lex_state = 12}, - [1922] = {.lex_state = 0}, - [1923] = {.lex_state = 0}, - [1924] = {.lex_state = 0}, - [1925] = {.lex_state = 0}, - [1926] = {.lex_state = 0}, - [1927] = {.lex_state = 0}, }; static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -5795,7 +5608,8 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND_] = ACTIONS(1), [anon_sym_DOT] = ACTIONS(1), [sym_num_lit] = ACTIONS(1), - [sym_kwd_lit] = ACTIONS(1), + [anon_sym_COLON] = ACTIONS(1), + [anon_sym_COLON_COLON] = ACTIONS(1), [aux_sym_str_lit_token1] = ACTIONS(1), [sym_char_lit] = ACTIONS(1), [sym_nil_lit] = ACTIONS(1), @@ -5810,7 +5624,6 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(1), [anon_sym_POUND_QMARK] = ACTIONS(1), [anon_sym_POUND_QMARK_AT] = ACTIONS(1), - [anon_sym_COLON_COLON] = ACTIONS(1), [anon_sym_POUND_SQUOTE] = ACTIONS(1), [anon_sym_POUND_POUND] = ACTIONS(1), [anon_sym_POUND_EQ] = ACTIONS(1), @@ -5861,27 +5674,27 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_defmethod] = ACTIONS(1), [anon_sym_lambda] = ACTIONS(1), [anon_sym_A] = ACTIONS(1), - [anon_sym_COLON] = ACTIONS(1), [anon_sym_POUND_PLUS] = ACTIONS(1), [anon_sym_POUND_DASH] = ACTIONS(1), [anon_sym_POUNDC] = ACTIONS(1), }, [1] = { - [sym_source] = STATE(1915), - [sym__gap] = STATE(933), - [sym_dis_expr] = STATE(933), + [sym_source] = STATE(1874), + [sym__gap] = STATE(894), + [sym_dis_expr] = STATE(894), [sym__form] = STATE(33), + [sym_kwd_lit] = STATE(33), [sym_str_lit] = STATE(33), - [sym_sym_lit] = STATE(815), - [sym__metadata_lit] = STATE(1369), - [sym_meta_lit] = STATE(1098), - [sym_old_meta_lit] = STATE(1078), + [sym_sym_lit] = STATE(780), + [sym__metadata_lit] = STATE(1337), + [sym_meta_lit] = STATE(1162), + [sym_old_meta_lit] = STATE(1172), [sym_list_lit] = STATE(33), - [sym__bare_list_lit] = STATE(842), + [sym__bare_list_lit] = STATE(787), [sym_vec_lit] = STATE(33), - [sym__bare_vec_lit] = STATE(838), + [sym__bare_vec_lit] = STATE(786), [sym_set_lit] = STATE(33), - [sym__bare_set_lit] = STATE(841), + [sym__bare_set_lit] = STATE(884), [sym_read_cond_lit] = STATE(33), [sym_splicing_read_cond_lit] = STATE(33), [sym_var_quoting_lit] = STATE(33), @@ -5892,270 +5705,274 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_syn_quoting_lit] = STATE(33), [sym_unquote_splicing_lit] = STATE(33), [sym_unquoting_lit] = STATE(33), - [sym_defun] = STATE(842), - [sym_loop_macro] = STATE(842), - [sym_dotted_sym_lit] = STATE(1909), + [sym_defun] = STATE(787), + [sym_loop_macro] = STATE(787), + [sym_dotted_sym_lit] = STATE(1863), [sym_package_lit] = STATE(33), [sym_include_reader_macro] = STATE(33), [sym_complex_num_lit] = STATE(33), [aux_sym_source_repeat1] = STATE(33), - [aux_sym_sym_lit_repeat1] = STATE(1047), + [aux_sym_sym_lit_repeat1] = STATE(1033), [ts_builtin_sym_end] = ACTIONS(5), [sym__ws] = ACTIONS(7), [sym_comment] = ACTIONS(7), [anon_sym_POUND_] = ACTIONS(9), [sym_num_lit] = ACTIONS(11), - [aux_sym_str_lit_token1] = ACTIONS(13), + [anon_sym_COLON] = ACTIONS(13), + [anon_sym_COLON_COLON] = ACTIONS(15), + [aux_sym_str_lit_token1] = ACTIONS(17), [sym_char_lit] = ACTIONS(11), - [sym_nil_lit] = ACTIONS(15), - [aux_sym_sym_lit_token1] = ACTIONS(17), - [anon_sym_CARET] = ACTIONS(19), - [anon_sym_POUND_CARET] = ACTIONS(21), - [anon_sym_LPAREN] = ACTIONS(23), - [anon_sym_POUND0A] = ACTIONS(25), - [anon_sym_POUND] = ACTIONS(27), - [anon_sym_POUND_QMARK] = ACTIONS(29), - [anon_sym_POUND_QMARK_AT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND_SQUOTE] = ACTIONS(35), - [anon_sym_POUND_POUND] = ACTIONS(37), - [anon_sym_POUND_EQ] = ACTIONS(39), - [anon_sym_AT] = ACTIONS(41), - [anon_sym_SQUOTE] = ACTIONS(43), - [anon_sym_BQUOTE] = ACTIONS(45), - [anon_sym_COMMA_AT] = ACTIONS(47), - [anon_sym_COMMA] = ACTIONS(49), + [sym_nil_lit] = ACTIONS(19), + [aux_sym_sym_lit_token1] = ACTIONS(21), + [anon_sym_CARET] = ACTIONS(23), + [anon_sym_POUND_CARET] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_POUND0A] = ACTIONS(29), + [anon_sym_POUND] = ACTIONS(31), + [anon_sym_POUND_QMARK] = ACTIONS(33), + [anon_sym_POUND_QMARK_AT] = ACTIONS(35), + [anon_sym_POUND_SQUOTE] = ACTIONS(37), + [anon_sym_POUND_POUND] = ACTIONS(39), + [anon_sym_POUND_EQ] = ACTIONS(41), + [anon_sym_AT] = ACTIONS(43), + [anon_sym_SQUOTE] = ACTIONS(45), + [anon_sym_BQUOTE] = ACTIONS(47), + [anon_sym_COMMA_AT] = ACTIONS(49), + [anon_sym_COMMA] = ACTIONS(51), [sym_block_comment] = ACTIONS(3), - [sym_fancy_literal] = ACTIONS(15), - [anon_sym_COLON] = ACTIONS(51), + [sym_fancy_literal] = ACTIONS(19), [anon_sym_POUND_PLUS] = ACTIONS(53), [anon_sym_POUND_DASH] = ACTIONS(53), [anon_sym_POUNDC] = ACTIONS(55), }, [2] = { - [sym__gap] = STATE(934), - [sym_dis_expr] = STATE(934), - [sym__form] = STATE(437), - [sym_str_lit] = STATE(437), - [sym_sym_lit] = STATE(446), - [sym__metadata_lit] = STATE(1369), - [sym_meta_lit] = STATE(1098), - [sym_old_meta_lit] = STATE(1078), - [sym_list_lit] = STATE(437), - [sym__bare_list_lit] = STATE(515), - [sym_vec_lit] = STATE(437), - [sym__bare_vec_lit] = STATE(514), - [sym_set_lit] = STATE(437), - [sym__bare_set_lit] = STATE(513), - [sym_read_cond_lit] = STATE(437), - [sym_splicing_read_cond_lit] = STATE(437), - [sym_var_quoting_lit] = STATE(437), - [sym_sym_val_lit] = STATE(437), - [sym_evaling_lit] = STATE(437), - [sym_derefing_lit] = STATE(437), - [sym_quoting_lit] = STATE(437), - [sym_syn_quoting_lit] = STATE(437), - [sym_unquote_splicing_lit] = STATE(437), - [sym_unquoting_lit] = STATE(437), - [sym_defun] = STATE(515), - [sym_loop_macro] = STATE(515), - [sym_dotted_sym_lit] = STATE(1907), - [sym_package_lit] = STATE(437), - [sym_include_reader_macro] = STATE(437), - [sym_complex_num_lit] = STATE(437), + [sym__gap] = STATE(903), + [sym_dis_expr] = STATE(903), + [sym__form] = STATE(399), + [sym_kwd_lit] = STATE(399), + [sym_str_lit] = STATE(399), + [sym_sym_lit] = STATE(404), + [sym__metadata_lit] = STATE(1337), + [sym_meta_lit] = STATE(1162), + [sym_old_meta_lit] = STATE(1172), + [sym_list_lit] = STATE(399), + [sym__bare_list_lit] = STATE(486), + [sym_vec_lit] = STATE(399), + [sym__bare_vec_lit] = STATE(487), + [sym_set_lit] = STATE(399), + [sym__bare_set_lit] = STATE(488), + [sym_read_cond_lit] = STATE(399), + [sym_splicing_read_cond_lit] = STATE(399), + [sym_var_quoting_lit] = STATE(399), + [sym_sym_val_lit] = STATE(399), + [sym_evaling_lit] = STATE(399), + [sym_derefing_lit] = STATE(399), + [sym_quoting_lit] = STATE(399), + [sym_syn_quoting_lit] = STATE(399), + [sym_unquote_splicing_lit] = STATE(399), + [sym_unquoting_lit] = STATE(399), + [sym_defun] = STATE(486), + [sym_loop_macro] = STATE(486), + [sym_dotted_sym_lit] = STATE(1866), + [sym_package_lit] = STATE(399), + [sym_include_reader_macro] = STATE(399), + [sym_complex_num_lit] = STATE(399), [aux_sym_dis_expr_repeat1] = STATE(192), - [aux_sym_sym_lit_repeat1] = STATE(1044), - [aux_sym_do_clause_repeat1] = STATE(3), + [aux_sym_sym_lit_repeat1] = STATE(981), + [aux_sym_do_clause_repeat1] = STATE(2), [sym__ws] = ACTIONS(57), [sym_comment] = ACTIONS(57), - [anon_sym_POUND_] = ACTIONS(57), - [sym_num_lit] = ACTIONS(59), - [aux_sym_str_lit_token1] = ACTIONS(61), - [sym_char_lit] = ACTIONS(59), - [sym_nil_lit] = ACTIONS(63), - [aux_sym_sym_lit_token1] = ACTIONS(65), - [anon_sym_CARET] = ACTIONS(57), - [anon_sym_POUND_CARET] = ACTIONS(57), - [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_RPAREN] = ACTIONS(57), - [anon_sym_POUND0A] = ACTIONS(67), - [anon_sym_POUND] = ACTIONS(69), - [anon_sym_POUND_QMARK] = ACTIONS(71), - [anon_sym_POUND_QMARK_AT] = ACTIONS(73), - [anon_sym_COLON_COLON] = ACTIONS(75), - [anon_sym_POUND_SQUOTE] = ACTIONS(77), - [anon_sym_POUND_POUND] = ACTIONS(79), - [anon_sym_POUND_EQ] = ACTIONS(81), - [anon_sym_AT] = ACTIONS(83), - [anon_sym_SQUOTE] = ACTIONS(85), - [anon_sym_BQUOTE] = ACTIONS(87), - [anon_sym_COMMA_AT] = ACTIONS(89), - [anon_sym_COMMA] = ACTIONS(91), + [anon_sym_POUND_] = ACTIONS(60), + [sym_num_lit] = ACTIONS(63), + [anon_sym_COLON] = ACTIONS(66), + [anon_sym_COLON_COLON] = ACTIONS(69), + [aux_sym_str_lit_token1] = ACTIONS(72), + [sym_char_lit] = ACTIONS(63), + [sym_nil_lit] = ACTIONS(75), + [aux_sym_sym_lit_token1] = ACTIONS(78), + [anon_sym_CARET] = ACTIONS(81), + [anon_sym_POUND_CARET] = ACTIONS(84), + [anon_sym_LPAREN] = ACTIONS(87), + [anon_sym_RPAREN] = ACTIONS(90), + [anon_sym_POUND0A] = ACTIONS(92), + [anon_sym_POUND] = ACTIONS(95), + [anon_sym_POUND_QMARK] = ACTIONS(98), + [anon_sym_POUND_QMARK_AT] = ACTIONS(101), + [anon_sym_POUND_SQUOTE] = ACTIONS(104), + [anon_sym_POUND_POUND] = ACTIONS(107), + [anon_sym_POUND_EQ] = ACTIONS(110), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_SQUOTE] = ACTIONS(116), + [anon_sym_BQUOTE] = ACTIONS(119), + [anon_sym_COMMA_AT] = ACTIONS(122), + [anon_sym_COMMA] = ACTIONS(125), [sym_block_comment] = ACTIONS(3), - [sym_fancy_literal] = ACTIONS(63), - [sym_accumulation_verb] = ACTIONS(93), - [anon_sym_for] = ACTIONS(93), - [anon_sym_and] = ACTIONS(93), - [anon_sym_as] = ACTIONS(93), - [anon_sym_with] = ACTIONS(93), - [anon_sym_do] = ACTIONS(93), - [anon_sym_while] = ACTIONS(93), - [anon_sym_when] = ACTIONS(93), - [anon_sym_if] = ACTIONS(93), - [anon_sym_unless] = ACTIONS(93), - [anon_sym_always] = ACTIONS(93), - [anon_sym_thereis] = ACTIONS(93), - [anon_sym_never] = ACTIONS(93), - [anon_sym_finally] = ACTIONS(93), - [anon_sym_return] = ACTIONS(93), - [anon_sym_initially] = ACTIONS(93), - [anon_sym_COLON] = ACTIONS(95), - [anon_sym_POUND_PLUS] = ACTIONS(97), - [anon_sym_POUND_DASH] = ACTIONS(97), - [anon_sym_POUNDC] = ACTIONS(99), + [sym_fancy_literal] = ACTIONS(75), + [sym_accumulation_verb] = ACTIONS(128), + [anon_sym_for] = ACTIONS(128), + [anon_sym_and] = ACTIONS(128), + [anon_sym_as] = ACTIONS(128), + [anon_sym_with] = ACTIONS(128), + [anon_sym_do] = ACTIONS(128), + [anon_sym_while] = ACTIONS(128), + [anon_sym_when] = ACTIONS(128), + [anon_sym_if] = ACTIONS(128), + [anon_sym_unless] = ACTIONS(128), + [anon_sym_always] = ACTIONS(128), + [anon_sym_thereis] = ACTIONS(128), + [anon_sym_never] = ACTIONS(128), + [anon_sym_finally] = ACTIONS(128), + [anon_sym_return] = ACTIONS(128), + [anon_sym_initially] = ACTIONS(128), + [anon_sym_POUND_PLUS] = ACTIONS(130), + [anon_sym_POUND_DASH] = ACTIONS(130), + [anon_sym_POUNDC] = ACTIONS(133), }, [3] = { - [sym__gap] = STATE(934), - [sym_dis_expr] = STATE(934), - [sym__form] = STATE(437), - [sym_str_lit] = STATE(437), - [sym_sym_lit] = STATE(446), - [sym__metadata_lit] = STATE(1369), - [sym_meta_lit] = STATE(1098), - [sym_old_meta_lit] = STATE(1078), - [sym_list_lit] = STATE(437), - [sym__bare_list_lit] = STATE(515), - [sym_vec_lit] = STATE(437), - [sym__bare_vec_lit] = STATE(514), - [sym_set_lit] = STATE(437), - [sym__bare_set_lit] = STATE(513), - [sym_read_cond_lit] = STATE(437), - [sym_splicing_read_cond_lit] = STATE(437), - [sym_var_quoting_lit] = STATE(437), - [sym_sym_val_lit] = STATE(437), - [sym_evaling_lit] = STATE(437), - [sym_derefing_lit] = STATE(437), - [sym_quoting_lit] = STATE(437), - [sym_syn_quoting_lit] = STATE(437), - [sym_unquote_splicing_lit] = STATE(437), - [sym_unquoting_lit] = STATE(437), - [sym_defun] = STATE(515), - [sym_loop_macro] = STATE(515), - [sym_dotted_sym_lit] = STATE(1907), - [sym_package_lit] = STATE(437), - [sym_include_reader_macro] = STATE(437), - [sym_complex_num_lit] = STATE(437), + [sym__gap] = STATE(903), + [sym_dis_expr] = STATE(903), + [sym__form] = STATE(399), + [sym_kwd_lit] = STATE(399), + [sym_str_lit] = STATE(399), + [sym_sym_lit] = STATE(404), + [sym__metadata_lit] = STATE(1337), + [sym_meta_lit] = STATE(1162), + [sym_old_meta_lit] = STATE(1172), + [sym_list_lit] = STATE(399), + [sym__bare_list_lit] = STATE(486), + [sym_vec_lit] = STATE(399), + [sym__bare_vec_lit] = STATE(487), + [sym_set_lit] = STATE(399), + [sym__bare_set_lit] = STATE(488), + [sym_read_cond_lit] = STATE(399), + [sym_splicing_read_cond_lit] = STATE(399), + [sym_var_quoting_lit] = STATE(399), + [sym_sym_val_lit] = STATE(399), + [sym_evaling_lit] = STATE(399), + [sym_derefing_lit] = STATE(399), + [sym_quoting_lit] = STATE(399), + [sym_syn_quoting_lit] = STATE(399), + [sym_unquote_splicing_lit] = STATE(399), + [sym_unquoting_lit] = STATE(399), + [sym_defun] = STATE(486), + [sym_loop_macro] = STATE(486), + [sym_dotted_sym_lit] = STATE(1866), + [sym_package_lit] = STATE(399), + [sym_include_reader_macro] = STATE(399), + [sym_complex_num_lit] = STATE(399), [aux_sym_dis_expr_repeat1] = STATE(192), - [aux_sym_sym_lit_repeat1] = STATE(1044), - [aux_sym_do_clause_repeat1] = STATE(3), - [sym__ws] = ACTIONS(101), - [sym_comment] = ACTIONS(101), - [anon_sym_POUND_] = ACTIONS(104), - [sym_num_lit] = ACTIONS(107), - [aux_sym_str_lit_token1] = ACTIONS(110), - [sym_char_lit] = ACTIONS(107), - [sym_nil_lit] = ACTIONS(113), - [aux_sym_sym_lit_token1] = ACTIONS(116), - [anon_sym_CARET] = ACTIONS(119), - [anon_sym_POUND_CARET] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(125), - [anon_sym_RPAREN] = ACTIONS(128), - [anon_sym_POUND0A] = ACTIONS(130), - [anon_sym_POUND] = ACTIONS(133), - [anon_sym_POUND_QMARK] = ACTIONS(136), - [anon_sym_POUND_QMARK_AT] = ACTIONS(139), + [aux_sym_sym_lit_repeat1] = STATE(981), + [aux_sym_do_clause_repeat1] = STATE(2), + [sym__ws] = ACTIONS(136), + [sym_comment] = ACTIONS(136), + [anon_sym_POUND_] = ACTIONS(136), + [sym_num_lit] = ACTIONS(138), + [anon_sym_COLON] = ACTIONS(140), [anon_sym_COLON_COLON] = ACTIONS(142), - [anon_sym_POUND_SQUOTE] = ACTIONS(145), - [anon_sym_POUND_POUND] = ACTIONS(148), - [anon_sym_POUND_EQ] = ACTIONS(151), - [anon_sym_AT] = ACTIONS(154), - [anon_sym_SQUOTE] = ACTIONS(157), - [anon_sym_BQUOTE] = ACTIONS(160), - [anon_sym_COMMA_AT] = ACTIONS(163), - [anon_sym_COMMA] = ACTIONS(166), + [aux_sym_str_lit_token1] = ACTIONS(144), + [sym_char_lit] = ACTIONS(138), + [sym_nil_lit] = ACTIONS(146), + [aux_sym_sym_lit_token1] = ACTIONS(148), + [anon_sym_CARET] = ACTIONS(136), + [anon_sym_POUND_CARET] = ACTIONS(136), + [anon_sym_LPAREN] = ACTIONS(136), + [anon_sym_RPAREN] = ACTIONS(136), + [anon_sym_POUND0A] = ACTIONS(150), + [anon_sym_POUND] = ACTIONS(152), + [anon_sym_POUND_QMARK] = ACTIONS(154), + [anon_sym_POUND_QMARK_AT] = ACTIONS(156), + [anon_sym_POUND_SQUOTE] = ACTIONS(158), + [anon_sym_POUND_POUND] = ACTIONS(160), + [anon_sym_POUND_EQ] = ACTIONS(162), + [anon_sym_AT] = ACTIONS(164), + [anon_sym_SQUOTE] = ACTIONS(166), + [anon_sym_BQUOTE] = ACTIONS(168), + [anon_sym_COMMA_AT] = ACTIONS(170), + [anon_sym_COMMA] = ACTIONS(172), [sym_block_comment] = ACTIONS(3), - [sym_fancy_literal] = ACTIONS(113), - [sym_accumulation_verb] = ACTIONS(169), - [anon_sym_for] = ACTIONS(169), - [anon_sym_and] = ACTIONS(169), - [anon_sym_as] = ACTIONS(169), - [anon_sym_with] = ACTIONS(169), - [anon_sym_do] = ACTIONS(169), - [anon_sym_while] = ACTIONS(169), - [anon_sym_when] = ACTIONS(169), - [anon_sym_if] = ACTIONS(169), - [anon_sym_unless] = ACTIONS(169), - [anon_sym_always] = ACTIONS(169), - [anon_sym_thereis] = ACTIONS(169), - [anon_sym_never] = ACTIONS(169), - [anon_sym_finally] = ACTIONS(169), - [anon_sym_return] = ACTIONS(169), - [anon_sym_initially] = ACTIONS(169), - [anon_sym_COLON] = ACTIONS(171), - [anon_sym_POUND_PLUS] = ACTIONS(174), - [anon_sym_POUND_DASH] = ACTIONS(174), - [anon_sym_POUNDC] = ACTIONS(177), + [sym_fancy_literal] = ACTIONS(146), + [sym_accumulation_verb] = ACTIONS(174), + [anon_sym_for] = ACTIONS(174), + [anon_sym_and] = ACTIONS(174), + [anon_sym_as] = ACTIONS(174), + [anon_sym_with] = ACTIONS(174), + [anon_sym_do] = ACTIONS(174), + [anon_sym_while] = ACTIONS(174), + [anon_sym_when] = ACTIONS(174), + [anon_sym_if] = ACTIONS(174), + [anon_sym_unless] = ACTIONS(174), + [anon_sym_always] = ACTIONS(174), + [anon_sym_thereis] = ACTIONS(174), + [anon_sym_never] = ACTIONS(174), + [anon_sym_finally] = ACTIONS(174), + [anon_sym_return] = ACTIONS(174), + [anon_sym_initially] = ACTIONS(174), + [anon_sym_POUND_PLUS] = ACTIONS(176), + [anon_sym_POUND_DASH] = ACTIONS(176), + [anon_sym_POUNDC] = ACTIONS(178), }, [4] = { - [sym__gap] = STATE(595), - [sym_dis_expr] = STATE(595), - [sym__form] = STATE(932), - [sym_str_lit] = STATE(932), - [sym_sym_lit] = STATE(815), - [sym__metadata_lit] = STATE(1369), - [sym_meta_lit] = STATE(1098), - [sym_old_meta_lit] = STATE(1078), - [sym_list_lit] = STATE(932), - [sym__bare_list_lit] = STATE(842), - [sym_vec_lit] = STATE(932), - [sym__bare_vec_lit] = STATE(838), - [sym_set_lit] = STATE(932), - [sym__bare_set_lit] = STATE(841), - [sym_read_cond_lit] = STATE(932), - [sym_splicing_read_cond_lit] = STATE(932), - [sym_var_quoting_lit] = STATE(932), - [sym_sym_val_lit] = STATE(932), - [sym_evaling_lit] = STATE(932), - [sym_derefing_lit] = STATE(932), - [sym_quoting_lit] = STATE(932), - [sym_syn_quoting_lit] = STATE(932), - [sym_unquote_splicing_lit] = STATE(932), - [sym_unquoting_lit] = STATE(932), - [sym_defun] = STATE(842), - [sym_loop_macro] = STATE(842), - [sym_defun_keyword] = STATE(265), - [sym_defun_header] = STATE(52), - [sym_dotted_sym_lit] = STATE(1909), - [sym_package_lit] = STATE(932), - [sym_include_reader_macro] = STATE(932), - [sym_complex_num_lit] = STATE(932), - [aux_sym_sym_lit_repeat1] = STATE(1047), - [aux_sym__bare_list_lit_repeat1] = STATE(53), + [sym__gap] = STATE(559), + [sym_dis_expr] = STATE(559), + [sym__form] = STATE(895), + [sym_kwd_lit] = STATE(895), + [sym_str_lit] = STATE(895), + [sym_sym_lit] = STATE(780), + [sym__metadata_lit] = STATE(1337), + [sym_meta_lit] = STATE(1162), + [sym_old_meta_lit] = STATE(1172), + [sym_list_lit] = STATE(895), + [sym__bare_list_lit] = STATE(787), + [sym_vec_lit] = STATE(895), + [sym__bare_vec_lit] = STATE(786), + [sym_set_lit] = STATE(895), + [sym__bare_set_lit] = STATE(884), + [sym_read_cond_lit] = STATE(895), + [sym_splicing_read_cond_lit] = STATE(895), + [sym_var_quoting_lit] = STATE(895), + [sym_sym_val_lit] = STATE(895), + [sym_evaling_lit] = STATE(895), + [sym_derefing_lit] = STATE(895), + [sym_quoting_lit] = STATE(895), + [sym_syn_quoting_lit] = STATE(895), + [sym_unquote_splicing_lit] = STATE(895), + [sym_unquoting_lit] = STATE(895), + [sym_defun] = STATE(787), + [sym_loop_macro] = STATE(787), + [sym_defun_keyword] = STATE(70), + [sym_defun_header] = STATE(64), + [sym_dotted_sym_lit] = STATE(1863), + [sym_package_lit] = STATE(895), + [sym_include_reader_macro] = STATE(895), + [sym_complex_num_lit] = STATE(895), + [aux_sym_sym_lit_repeat1] = STATE(1033), + [aux_sym__bare_list_lit_repeat1] = STATE(50), [sym__ws] = ACTIONS(180), [sym_comment] = ACTIONS(180), [anon_sym_POUND_] = ACTIONS(182), [sym_num_lit] = ACTIONS(184), - [aux_sym_str_lit_token1] = ACTIONS(13), + [anon_sym_COLON] = ACTIONS(13), + [anon_sym_COLON_COLON] = ACTIONS(15), + [aux_sym_str_lit_token1] = ACTIONS(17), [sym_char_lit] = ACTIONS(184), [sym_nil_lit] = ACTIONS(186), - [aux_sym_sym_lit_token1] = ACTIONS(17), - [anon_sym_CARET] = ACTIONS(19), - [anon_sym_POUND_CARET] = ACTIONS(21), - [anon_sym_LPAREN] = ACTIONS(23), + [aux_sym_sym_lit_token1] = ACTIONS(21), + [anon_sym_CARET] = ACTIONS(23), + [anon_sym_POUND_CARET] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_RPAREN] = ACTIONS(188), - [anon_sym_POUND0A] = ACTIONS(25), - [anon_sym_POUND] = ACTIONS(27), - [anon_sym_POUND_QMARK] = ACTIONS(29), - [anon_sym_POUND_QMARK_AT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND_SQUOTE] = ACTIONS(35), - [anon_sym_POUND_POUND] = ACTIONS(37), - [anon_sym_POUND_EQ] = ACTIONS(39), - [anon_sym_AT] = ACTIONS(41), - [anon_sym_SQUOTE] = ACTIONS(43), - [anon_sym_BQUOTE] = ACTIONS(45), - [anon_sym_COMMA_AT] = ACTIONS(47), - [anon_sym_COMMA] = ACTIONS(49), + [anon_sym_POUND0A] = ACTIONS(29), + [anon_sym_POUND] = ACTIONS(31), + [anon_sym_POUND_QMARK] = ACTIONS(33), + [anon_sym_POUND_QMARK_AT] = ACTIONS(35), + [anon_sym_POUND_SQUOTE] = ACTIONS(37), + [anon_sym_POUND_POUND] = ACTIONS(39), + [anon_sym_POUND_EQ] = ACTIONS(41), + [anon_sym_AT] = ACTIONS(43), + [anon_sym_SQUOTE] = ACTIONS(45), + [anon_sym_BQUOTE] = ACTIONS(47), + [anon_sym_COMMA_AT] = ACTIONS(49), + [anon_sym_COMMA] = ACTIONS(51), [sym_block_comment] = ACTIONS(3), [sym_fancy_literal] = ACTIONS(186), [anon_sym_loop] = ACTIONS(190), @@ -6165,71 +5982,72 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_defgeneric] = ACTIONS(194), [anon_sym_defmethod] = ACTIONS(194), [anon_sym_lambda] = ACTIONS(196), - [anon_sym_COLON] = ACTIONS(51), [anon_sym_POUND_PLUS] = ACTIONS(53), [anon_sym_POUND_DASH] = ACTIONS(53), [anon_sym_POUNDC] = ACTIONS(55), }, [5] = { - [sym__gap] = STATE(592), - [sym_dis_expr] = STATE(592), - [sym__form] = STATE(932), - [sym_str_lit] = STATE(932), - [sym_sym_lit] = STATE(815), - [sym__metadata_lit] = STATE(1369), - [sym_meta_lit] = STATE(1098), - [sym_old_meta_lit] = STATE(1078), - [sym_list_lit] = STATE(932), - [sym__bare_list_lit] = STATE(842), - [sym_vec_lit] = STATE(932), - [sym__bare_vec_lit] = STATE(838), - [sym_set_lit] = STATE(932), - [sym__bare_set_lit] = STATE(841), - [sym_read_cond_lit] = STATE(932), - [sym_splicing_read_cond_lit] = STATE(932), - [sym_var_quoting_lit] = STATE(932), - [sym_sym_val_lit] = STATE(932), - [sym_evaling_lit] = STATE(932), - [sym_derefing_lit] = STATE(932), - [sym_quoting_lit] = STATE(932), - [sym_syn_quoting_lit] = STATE(932), - [sym_unquote_splicing_lit] = STATE(932), - [sym_unquoting_lit] = STATE(932), - [sym_defun] = STATE(842), - [sym_loop_macro] = STATE(842), - [sym_defun_keyword] = STATE(265), - [sym_defun_header] = STATE(61), - [sym_dotted_sym_lit] = STATE(1909), - [sym_package_lit] = STATE(932), - [sym_include_reader_macro] = STATE(932), - [sym_complex_num_lit] = STATE(932), - [aux_sym_sym_lit_repeat1] = STATE(1047), - [aux_sym__bare_list_lit_repeat1] = STATE(59), + [sym__gap] = STATE(558), + [sym_dis_expr] = STATE(558), + [sym__form] = STATE(895), + [sym_kwd_lit] = STATE(895), + [sym_str_lit] = STATE(895), + [sym_sym_lit] = STATE(780), + [sym__metadata_lit] = STATE(1337), + [sym_meta_lit] = STATE(1162), + [sym_old_meta_lit] = STATE(1172), + [sym_list_lit] = STATE(895), + [sym__bare_list_lit] = STATE(787), + [sym_vec_lit] = STATE(895), + [sym__bare_vec_lit] = STATE(786), + [sym_set_lit] = STATE(895), + [sym__bare_set_lit] = STATE(884), + [sym_read_cond_lit] = STATE(895), + [sym_splicing_read_cond_lit] = STATE(895), + [sym_var_quoting_lit] = STATE(895), + [sym_sym_val_lit] = STATE(895), + [sym_evaling_lit] = STATE(895), + [sym_derefing_lit] = STATE(895), + [sym_quoting_lit] = STATE(895), + [sym_syn_quoting_lit] = STATE(895), + [sym_unquote_splicing_lit] = STATE(895), + [sym_unquoting_lit] = STATE(895), + [sym_defun] = STATE(787), + [sym_loop_macro] = STATE(787), + [sym_defun_keyword] = STATE(70), + [sym_defun_header] = STATE(43), + [sym_dotted_sym_lit] = STATE(1863), + [sym_package_lit] = STATE(895), + [sym_include_reader_macro] = STATE(895), + [sym_complex_num_lit] = STATE(895), + [aux_sym_sym_lit_repeat1] = STATE(1033), + [aux_sym__bare_list_lit_repeat1] = STATE(44), [sym__ws] = ACTIONS(198), [sym_comment] = ACTIONS(198), [anon_sym_POUND_] = ACTIONS(182), [sym_num_lit] = ACTIONS(184), - [aux_sym_str_lit_token1] = ACTIONS(13), + [anon_sym_COLON] = ACTIONS(13), + [anon_sym_COLON_COLON] = ACTIONS(15), + [aux_sym_str_lit_token1] = ACTIONS(17), [sym_char_lit] = ACTIONS(184), [sym_nil_lit] = ACTIONS(186), - [aux_sym_sym_lit_token1] = ACTIONS(17), - [anon_sym_CARET] = ACTIONS(19), - [anon_sym_POUND_CARET] = ACTIONS(21), - [anon_sym_LPAREN] = ACTIONS(23), + [aux_sym_sym_lit_token1] = ACTIONS(21), + [anon_sym_CARET] = ACTIONS(23), + [anon_sym_POUND_CARET] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_RPAREN] = ACTIONS(200), - [anon_sym_POUND0A] = ACTIONS(25), - [anon_sym_POUND] = ACTIONS(27), - [anon_sym_POUND_QMARK] = ACTIONS(29), - [anon_sym_POUND_QMARK_AT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND_SQUOTE] = ACTIONS(35), - [anon_sym_POUND_POUND] = ACTIONS(37), - [anon_sym_POUND_EQ] = ACTIONS(39), - [anon_sym_AT] = ACTIONS(41), - [anon_sym_SQUOTE] = ACTIONS(43), - [anon_sym_BQUOTE] = ACTIONS(45), - [anon_sym_COMMA_AT] = ACTIONS(47), - [anon_sym_COMMA] = ACTIONS(49), + [anon_sym_POUND0A] = ACTIONS(29), + [anon_sym_POUND] = ACTIONS(31), + [anon_sym_POUND_QMARK] = ACTIONS(33), + [anon_sym_POUND_QMARK_AT] = ACTIONS(35), + [anon_sym_POUND_SQUOTE] = ACTIONS(37), + [anon_sym_POUND_POUND] = ACTIONS(39), + [anon_sym_POUND_EQ] = ACTIONS(41), + [anon_sym_AT] = ACTIONS(43), + [anon_sym_SQUOTE] = ACTIONS(45), + [anon_sym_BQUOTE] = ACTIONS(47), + [anon_sym_COMMA_AT] = ACTIONS(49), + [anon_sym_COMMA] = ACTIONS(51), [sym_block_comment] = ACTIONS(3), [sym_fancy_literal] = ACTIONS(186), [anon_sym_loop] = ACTIONS(202), @@ -6239,71 +6057,72 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_defgeneric] = ACTIONS(194), [anon_sym_defmethod] = ACTIONS(194), [anon_sym_lambda] = ACTIONS(196), - [anon_sym_COLON] = ACTIONS(51), [anon_sym_POUND_PLUS] = ACTIONS(53), [anon_sym_POUND_DASH] = ACTIONS(53), [anon_sym_POUNDC] = ACTIONS(55), }, [6] = { - [sym__gap] = STATE(594), - [sym_dis_expr] = STATE(594), - [sym__form] = STATE(932), - [sym_str_lit] = STATE(932), - [sym_sym_lit] = STATE(815), - [sym__metadata_lit] = STATE(1369), - [sym_meta_lit] = STATE(1098), - [sym_old_meta_lit] = STATE(1078), - [sym_list_lit] = STATE(932), - [sym__bare_list_lit] = STATE(842), - [sym_vec_lit] = STATE(932), - [sym__bare_vec_lit] = STATE(838), - [sym_set_lit] = STATE(932), - [sym__bare_set_lit] = STATE(841), - [sym_read_cond_lit] = STATE(932), - [sym_splicing_read_cond_lit] = STATE(932), - [sym_var_quoting_lit] = STATE(932), - [sym_sym_val_lit] = STATE(932), - [sym_evaling_lit] = STATE(932), - [sym_derefing_lit] = STATE(932), - [sym_quoting_lit] = STATE(932), - [sym_syn_quoting_lit] = STATE(932), - [sym_unquote_splicing_lit] = STATE(932), - [sym_unquoting_lit] = STATE(932), - [sym_defun] = STATE(842), - [sym_loop_macro] = STATE(842), - [sym_defun_keyword] = STATE(265), - [sym_defun_header] = STATE(16), - [sym_dotted_sym_lit] = STATE(1909), - [sym_package_lit] = STATE(932), - [sym_include_reader_macro] = STATE(932), - [sym_complex_num_lit] = STATE(932), - [aux_sym_sym_lit_repeat1] = STATE(1047), - [aux_sym__bare_list_lit_repeat1] = STATE(17), + [sym__gap] = STATE(553), + [sym_dis_expr] = STATE(553), + [sym__form] = STATE(895), + [sym_kwd_lit] = STATE(895), + [sym_str_lit] = STATE(895), + [sym_sym_lit] = STATE(780), + [sym__metadata_lit] = STATE(1337), + [sym_meta_lit] = STATE(1162), + [sym_old_meta_lit] = STATE(1172), + [sym_list_lit] = STATE(895), + [sym__bare_list_lit] = STATE(787), + [sym_vec_lit] = STATE(895), + [sym__bare_vec_lit] = STATE(786), + [sym_set_lit] = STATE(895), + [sym__bare_set_lit] = STATE(884), + [sym_read_cond_lit] = STATE(895), + [sym_splicing_read_cond_lit] = STATE(895), + [sym_var_quoting_lit] = STATE(895), + [sym_sym_val_lit] = STATE(895), + [sym_evaling_lit] = STATE(895), + [sym_derefing_lit] = STATE(895), + [sym_quoting_lit] = STATE(895), + [sym_syn_quoting_lit] = STATE(895), + [sym_unquote_splicing_lit] = STATE(895), + [sym_unquoting_lit] = STATE(895), + [sym_defun] = STATE(787), + [sym_loop_macro] = STATE(787), + [sym_defun_keyword] = STATE(70), + [sym_defun_header] = STATE(39), + [sym_dotted_sym_lit] = STATE(1863), + [sym_package_lit] = STATE(895), + [sym_include_reader_macro] = STATE(895), + [sym_complex_num_lit] = STATE(895), + [aux_sym_sym_lit_repeat1] = STATE(1033), + [aux_sym__bare_list_lit_repeat1] = STATE(14), [sym__ws] = ACTIONS(206), [sym_comment] = ACTIONS(206), [anon_sym_POUND_] = ACTIONS(182), [sym_num_lit] = ACTIONS(184), - [aux_sym_str_lit_token1] = ACTIONS(13), + [anon_sym_COLON] = ACTIONS(13), + [anon_sym_COLON_COLON] = ACTIONS(15), + [aux_sym_str_lit_token1] = ACTIONS(17), [sym_char_lit] = ACTIONS(184), [sym_nil_lit] = ACTIONS(186), - [aux_sym_sym_lit_token1] = ACTIONS(17), - [anon_sym_CARET] = ACTIONS(19), - [anon_sym_POUND_CARET] = ACTIONS(21), - [anon_sym_LPAREN] = ACTIONS(23), + [aux_sym_sym_lit_token1] = ACTIONS(21), + [anon_sym_CARET] = ACTIONS(23), + [anon_sym_POUND_CARET] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_RPAREN] = ACTIONS(208), - [anon_sym_POUND0A] = ACTIONS(25), - [anon_sym_POUND] = ACTIONS(27), - [anon_sym_POUND_QMARK] = ACTIONS(29), - [anon_sym_POUND_QMARK_AT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND_SQUOTE] = ACTIONS(35), - [anon_sym_POUND_POUND] = ACTIONS(37), - [anon_sym_POUND_EQ] = ACTIONS(39), - [anon_sym_AT] = ACTIONS(41), - [anon_sym_SQUOTE] = ACTIONS(43), - [anon_sym_BQUOTE] = ACTIONS(45), - [anon_sym_COMMA_AT] = ACTIONS(47), - [anon_sym_COMMA] = ACTIONS(49), + [anon_sym_POUND0A] = ACTIONS(29), + [anon_sym_POUND] = ACTIONS(31), + [anon_sym_POUND_QMARK] = ACTIONS(33), + [anon_sym_POUND_QMARK_AT] = ACTIONS(35), + [anon_sym_POUND_SQUOTE] = ACTIONS(37), + [anon_sym_POUND_POUND] = ACTIONS(39), + [anon_sym_POUND_EQ] = ACTIONS(41), + [anon_sym_AT] = ACTIONS(43), + [anon_sym_SQUOTE] = ACTIONS(45), + [anon_sym_BQUOTE] = ACTIONS(47), + [anon_sym_COMMA_AT] = ACTIONS(49), + [anon_sym_COMMA] = ACTIONS(51), [sym_block_comment] = ACTIONS(3), [sym_fancy_literal] = ACTIONS(186), [anon_sym_loop] = ACTIONS(210), @@ -6313,71 +6132,72 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_defgeneric] = ACTIONS(194), [anon_sym_defmethod] = ACTIONS(194), [anon_sym_lambda] = ACTIONS(196), - [anon_sym_COLON] = ACTIONS(51), [anon_sym_POUND_PLUS] = ACTIONS(53), [anon_sym_POUND_DASH] = ACTIONS(53), [anon_sym_POUNDC] = ACTIONS(55), }, [7] = { - [sym__gap] = STATE(597), - [sym_dis_expr] = STATE(597), - [sym__form] = STATE(932), - [sym_str_lit] = STATE(932), - [sym_sym_lit] = STATE(815), - [sym__metadata_lit] = STATE(1369), - [sym_meta_lit] = STATE(1098), - [sym_old_meta_lit] = STATE(1078), - [sym_list_lit] = STATE(932), - [sym__bare_list_lit] = STATE(842), - [sym_vec_lit] = STATE(932), - [sym__bare_vec_lit] = STATE(838), - [sym_set_lit] = STATE(932), - [sym__bare_set_lit] = STATE(841), - [sym_read_cond_lit] = STATE(932), - [sym_splicing_read_cond_lit] = STATE(932), - [sym_var_quoting_lit] = STATE(932), - [sym_sym_val_lit] = STATE(932), - [sym_evaling_lit] = STATE(932), - [sym_derefing_lit] = STATE(932), - [sym_quoting_lit] = STATE(932), - [sym_syn_quoting_lit] = STATE(932), - [sym_unquote_splicing_lit] = STATE(932), - [sym_unquoting_lit] = STATE(932), - [sym_defun] = STATE(842), - [sym_loop_macro] = STATE(842), - [sym_defun_keyword] = STATE(265), - [sym_defun_header] = STATE(23), - [sym_dotted_sym_lit] = STATE(1909), - [sym_package_lit] = STATE(932), - [sym_include_reader_macro] = STATE(932), - [sym_complex_num_lit] = STATE(932), - [aux_sym_sym_lit_repeat1] = STATE(1047), - [aux_sym__bare_list_lit_repeat1] = STATE(24), + [sym__gap] = STATE(555), + [sym_dis_expr] = STATE(555), + [sym__form] = STATE(895), + [sym_kwd_lit] = STATE(895), + [sym_str_lit] = STATE(895), + [sym_sym_lit] = STATE(780), + [sym__metadata_lit] = STATE(1337), + [sym_meta_lit] = STATE(1162), + [sym_old_meta_lit] = STATE(1172), + [sym_list_lit] = STATE(895), + [sym__bare_list_lit] = STATE(787), + [sym_vec_lit] = STATE(895), + [sym__bare_vec_lit] = STATE(786), + [sym_set_lit] = STATE(895), + [sym__bare_set_lit] = STATE(884), + [sym_read_cond_lit] = STATE(895), + [sym_splicing_read_cond_lit] = STATE(895), + [sym_var_quoting_lit] = STATE(895), + [sym_sym_val_lit] = STATE(895), + [sym_evaling_lit] = STATE(895), + [sym_derefing_lit] = STATE(895), + [sym_quoting_lit] = STATE(895), + [sym_syn_quoting_lit] = STATE(895), + [sym_unquote_splicing_lit] = STATE(895), + [sym_unquoting_lit] = STATE(895), + [sym_defun] = STATE(787), + [sym_loop_macro] = STATE(787), + [sym_defun_keyword] = STATE(70), + [sym_defun_header] = STATE(55), + [sym_dotted_sym_lit] = STATE(1863), + [sym_package_lit] = STATE(895), + [sym_include_reader_macro] = STATE(895), + [sym_complex_num_lit] = STATE(895), + [aux_sym_sym_lit_repeat1] = STATE(1033), + [aux_sym__bare_list_lit_repeat1] = STATE(56), [sym__ws] = ACTIONS(214), [sym_comment] = ACTIONS(214), [anon_sym_POUND_] = ACTIONS(182), [sym_num_lit] = ACTIONS(184), - [aux_sym_str_lit_token1] = ACTIONS(13), + [anon_sym_COLON] = ACTIONS(13), + [anon_sym_COLON_COLON] = ACTIONS(15), + [aux_sym_str_lit_token1] = ACTIONS(17), [sym_char_lit] = ACTIONS(184), [sym_nil_lit] = ACTIONS(186), - [aux_sym_sym_lit_token1] = ACTIONS(17), - [anon_sym_CARET] = ACTIONS(19), - [anon_sym_POUND_CARET] = ACTIONS(21), - [anon_sym_LPAREN] = ACTIONS(23), + [aux_sym_sym_lit_token1] = ACTIONS(21), + [anon_sym_CARET] = ACTIONS(23), + [anon_sym_POUND_CARET] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_RPAREN] = ACTIONS(216), - [anon_sym_POUND0A] = ACTIONS(25), - [anon_sym_POUND] = ACTIONS(27), - [anon_sym_POUND_QMARK] = ACTIONS(29), - [anon_sym_POUND_QMARK_AT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND_SQUOTE] = ACTIONS(35), - [anon_sym_POUND_POUND] = ACTIONS(37), - [anon_sym_POUND_EQ] = ACTIONS(39), - [anon_sym_AT] = ACTIONS(41), - [anon_sym_SQUOTE] = ACTIONS(43), - [anon_sym_BQUOTE] = ACTIONS(45), - [anon_sym_COMMA_AT] = ACTIONS(47), - [anon_sym_COMMA] = ACTIONS(49), + [anon_sym_POUND0A] = ACTIONS(29), + [anon_sym_POUND] = ACTIONS(31), + [anon_sym_POUND_QMARK] = ACTIONS(33), + [anon_sym_POUND_QMARK_AT] = ACTIONS(35), + [anon_sym_POUND_SQUOTE] = ACTIONS(37), + [anon_sym_POUND_POUND] = ACTIONS(39), + [anon_sym_POUND_EQ] = ACTIONS(41), + [anon_sym_AT] = ACTIONS(43), + [anon_sym_SQUOTE] = ACTIONS(45), + [anon_sym_BQUOTE] = ACTIONS(47), + [anon_sym_COMMA_AT] = ACTIONS(49), + [anon_sym_COMMA] = ACTIONS(51), [sym_block_comment] = ACTIONS(3), [sym_fancy_literal] = ACTIONS(186), [anon_sym_loop] = ACTIONS(218), @@ -6387,71 +6207,72 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_defgeneric] = ACTIONS(194), [anon_sym_defmethod] = ACTIONS(194), [anon_sym_lambda] = ACTIONS(196), - [anon_sym_COLON] = ACTIONS(51), [anon_sym_POUND_PLUS] = ACTIONS(53), [anon_sym_POUND_DASH] = ACTIONS(53), [anon_sym_POUNDC] = ACTIONS(55), }, [8] = { - [sym__gap] = STATE(593), - [sym_dis_expr] = STATE(593), - [sym__form] = STATE(932), - [sym_str_lit] = STATE(932), - [sym_sym_lit] = STATE(815), - [sym__metadata_lit] = STATE(1369), - [sym_meta_lit] = STATE(1098), - [sym_old_meta_lit] = STATE(1078), - [sym_list_lit] = STATE(932), - [sym__bare_list_lit] = STATE(842), - [sym_vec_lit] = STATE(932), - [sym__bare_vec_lit] = STATE(838), - [sym_set_lit] = STATE(932), - [sym__bare_set_lit] = STATE(841), - [sym_read_cond_lit] = STATE(932), - [sym_splicing_read_cond_lit] = STATE(932), - [sym_var_quoting_lit] = STATE(932), - [sym_sym_val_lit] = STATE(932), - [sym_evaling_lit] = STATE(932), - [sym_derefing_lit] = STATE(932), - [sym_quoting_lit] = STATE(932), - [sym_syn_quoting_lit] = STATE(932), - [sym_unquote_splicing_lit] = STATE(932), - [sym_unquoting_lit] = STATE(932), - [sym_defun] = STATE(842), - [sym_loop_macro] = STATE(842), - [sym_defun_keyword] = STATE(265), - [sym_defun_header] = STATE(30), - [sym_dotted_sym_lit] = STATE(1909), - [sym_package_lit] = STATE(932), - [sym_include_reader_macro] = STATE(932), - [sym_complex_num_lit] = STATE(932), - [aux_sym_sym_lit_repeat1] = STATE(1047), - [aux_sym__bare_list_lit_repeat1] = STATE(31), + [sym__gap] = STATE(557), + [sym_dis_expr] = STATE(557), + [sym__form] = STATE(895), + [sym_kwd_lit] = STATE(895), + [sym_str_lit] = STATE(895), + [sym_sym_lit] = STATE(780), + [sym__metadata_lit] = STATE(1337), + [sym_meta_lit] = STATE(1162), + [sym_old_meta_lit] = STATE(1172), + [sym_list_lit] = STATE(895), + [sym__bare_list_lit] = STATE(787), + [sym_vec_lit] = STATE(895), + [sym__bare_vec_lit] = STATE(786), + [sym_set_lit] = STATE(895), + [sym__bare_set_lit] = STATE(884), + [sym_read_cond_lit] = STATE(895), + [sym_splicing_read_cond_lit] = STATE(895), + [sym_var_quoting_lit] = STATE(895), + [sym_sym_val_lit] = STATE(895), + [sym_evaling_lit] = STATE(895), + [sym_derefing_lit] = STATE(895), + [sym_quoting_lit] = STATE(895), + [sym_syn_quoting_lit] = STATE(895), + [sym_unquote_splicing_lit] = STATE(895), + [sym_unquoting_lit] = STATE(895), + [sym_defun] = STATE(787), + [sym_loop_macro] = STATE(787), + [sym_defun_keyword] = STATE(70), + [sym_defun_header] = STATE(29), + [sym_dotted_sym_lit] = STATE(1863), + [sym_package_lit] = STATE(895), + [sym_include_reader_macro] = STATE(895), + [sym_complex_num_lit] = STATE(895), + [aux_sym_sym_lit_repeat1] = STATE(1033), + [aux_sym__bare_list_lit_repeat1] = STATE(30), [sym__ws] = ACTIONS(222), [sym_comment] = ACTIONS(222), [anon_sym_POUND_] = ACTIONS(182), [sym_num_lit] = ACTIONS(184), - [aux_sym_str_lit_token1] = ACTIONS(13), + [anon_sym_COLON] = ACTIONS(13), + [anon_sym_COLON_COLON] = ACTIONS(15), + [aux_sym_str_lit_token1] = ACTIONS(17), [sym_char_lit] = ACTIONS(184), [sym_nil_lit] = ACTIONS(186), - [aux_sym_sym_lit_token1] = ACTIONS(17), - [anon_sym_CARET] = ACTIONS(19), - [anon_sym_POUND_CARET] = ACTIONS(21), - [anon_sym_LPAREN] = ACTIONS(23), + [aux_sym_sym_lit_token1] = ACTIONS(21), + [anon_sym_CARET] = ACTIONS(23), + [anon_sym_POUND_CARET] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_RPAREN] = ACTIONS(224), - [anon_sym_POUND0A] = ACTIONS(25), - [anon_sym_POUND] = ACTIONS(27), - [anon_sym_POUND_QMARK] = ACTIONS(29), - [anon_sym_POUND_QMARK_AT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND_SQUOTE] = ACTIONS(35), - [anon_sym_POUND_POUND] = ACTIONS(37), - [anon_sym_POUND_EQ] = ACTIONS(39), - [anon_sym_AT] = ACTIONS(41), - [anon_sym_SQUOTE] = ACTIONS(43), - [anon_sym_BQUOTE] = ACTIONS(45), - [anon_sym_COMMA_AT] = ACTIONS(47), - [anon_sym_COMMA] = ACTIONS(49), + [anon_sym_POUND0A] = ACTIONS(29), + [anon_sym_POUND] = ACTIONS(31), + [anon_sym_POUND_QMARK] = ACTIONS(33), + [anon_sym_POUND_QMARK_AT] = ACTIONS(35), + [anon_sym_POUND_SQUOTE] = ACTIONS(37), + [anon_sym_POUND_POUND] = ACTIONS(39), + [anon_sym_POUND_EQ] = ACTIONS(41), + [anon_sym_AT] = ACTIONS(43), + [anon_sym_SQUOTE] = ACTIONS(45), + [anon_sym_BQUOTE] = ACTIONS(47), + [anon_sym_COMMA_AT] = ACTIONS(49), + [anon_sym_COMMA] = ACTIONS(51), [sym_block_comment] = ACTIONS(3), [sym_fancy_literal] = ACTIONS(186), [anon_sym_loop] = ACTIONS(226), @@ -6461,71 +6282,72 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_defgeneric] = ACTIONS(194), [anon_sym_defmethod] = ACTIONS(194), [anon_sym_lambda] = ACTIONS(196), - [anon_sym_COLON] = ACTIONS(51), [anon_sym_POUND_PLUS] = ACTIONS(53), [anon_sym_POUND_DASH] = ACTIONS(53), [anon_sym_POUNDC] = ACTIONS(55), }, [9] = { - [sym__gap] = STATE(589), - [sym_dis_expr] = STATE(589), - [sym__form] = STATE(932), - [sym_str_lit] = STATE(932), - [sym_sym_lit] = STATE(815), - [sym__metadata_lit] = STATE(1369), - [sym_meta_lit] = STATE(1098), - [sym_old_meta_lit] = STATE(1078), - [sym_list_lit] = STATE(932), - [sym__bare_list_lit] = STATE(842), - [sym_vec_lit] = STATE(932), - [sym__bare_vec_lit] = STATE(838), - [sym_set_lit] = STATE(932), - [sym__bare_set_lit] = STATE(841), - [sym_read_cond_lit] = STATE(932), - [sym_splicing_read_cond_lit] = STATE(932), - [sym_var_quoting_lit] = STATE(932), - [sym_sym_val_lit] = STATE(932), - [sym_evaling_lit] = STATE(932), - [sym_derefing_lit] = STATE(932), - [sym_quoting_lit] = STATE(932), - [sym_syn_quoting_lit] = STATE(932), - [sym_unquote_splicing_lit] = STATE(932), - [sym_unquoting_lit] = STATE(932), - [sym_defun] = STATE(842), - [sym_loop_macro] = STATE(842), - [sym_defun_keyword] = STATE(265), - [sym_defun_header] = STATE(47), - [sym_dotted_sym_lit] = STATE(1909), - [sym_package_lit] = STATE(932), - [sym_include_reader_macro] = STATE(932), - [sym_complex_num_lit] = STATE(932), - [aux_sym_sym_lit_repeat1] = STATE(1047), - [aux_sym__bare_list_lit_repeat1] = STATE(48), + [sym__gap] = STATE(556), + [sym_dis_expr] = STATE(556), + [sym__form] = STATE(895), + [sym_kwd_lit] = STATE(895), + [sym_str_lit] = STATE(895), + [sym_sym_lit] = STATE(780), + [sym__metadata_lit] = STATE(1337), + [sym_meta_lit] = STATE(1162), + [sym_old_meta_lit] = STATE(1172), + [sym_list_lit] = STATE(895), + [sym__bare_list_lit] = STATE(787), + [sym_vec_lit] = STATE(895), + [sym__bare_vec_lit] = STATE(786), + [sym_set_lit] = STATE(895), + [sym__bare_set_lit] = STATE(884), + [sym_read_cond_lit] = STATE(895), + [sym_splicing_read_cond_lit] = STATE(895), + [sym_var_quoting_lit] = STATE(895), + [sym_sym_val_lit] = STATE(895), + [sym_evaling_lit] = STATE(895), + [sym_derefing_lit] = STATE(895), + [sym_quoting_lit] = STATE(895), + [sym_syn_quoting_lit] = STATE(895), + [sym_unquote_splicing_lit] = STATE(895), + [sym_unquoting_lit] = STATE(895), + [sym_defun] = STATE(787), + [sym_loop_macro] = STATE(787), + [sym_defun_keyword] = STATE(70), + [sym_defun_header] = STATE(22), + [sym_dotted_sym_lit] = STATE(1863), + [sym_package_lit] = STATE(895), + [sym_include_reader_macro] = STATE(895), + [sym_complex_num_lit] = STATE(895), + [aux_sym_sym_lit_repeat1] = STATE(1033), + [aux_sym__bare_list_lit_repeat1] = STATE(23), [sym__ws] = ACTIONS(230), [sym_comment] = ACTIONS(230), [anon_sym_POUND_] = ACTIONS(182), [sym_num_lit] = ACTIONS(184), - [aux_sym_str_lit_token1] = ACTIONS(13), + [anon_sym_COLON] = ACTIONS(13), + [anon_sym_COLON_COLON] = ACTIONS(15), + [aux_sym_str_lit_token1] = ACTIONS(17), [sym_char_lit] = ACTIONS(184), [sym_nil_lit] = ACTIONS(186), - [aux_sym_sym_lit_token1] = ACTIONS(17), - [anon_sym_CARET] = ACTIONS(19), - [anon_sym_POUND_CARET] = ACTIONS(21), - [anon_sym_LPAREN] = ACTIONS(23), + [aux_sym_sym_lit_token1] = ACTIONS(21), + [anon_sym_CARET] = ACTIONS(23), + [anon_sym_POUND_CARET] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_RPAREN] = ACTIONS(232), - [anon_sym_POUND0A] = ACTIONS(25), - [anon_sym_POUND] = ACTIONS(27), - [anon_sym_POUND_QMARK] = ACTIONS(29), - [anon_sym_POUND_QMARK_AT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND_SQUOTE] = ACTIONS(35), - [anon_sym_POUND_POUND] = ACTIONS(37), - [anon_sym_POUND_EQ] = ACTIONS(39), - [anon_sym_AT] = ACTIONS(41), - [anon_sym_SQUOTE] = ACTIONS(43), - [anon_sym_BQUOTE] = ACTIONS(45), - [anon_sym_COMMA_AT] = ACTIONS(47), - [anon_sym_COMMA] = ACTIONS(49), + [anon_sym_POUND0A] = ACTIONS(29), + [anon_sym_POUND] = ACTIONS(31), + [anon_sym_POUND_QMARK] = ACTIONS(33), + [anon_sym_POUND_QMARK_AT] = ACTIONS(35), + [anon_sym_POUND_SQUOTE] = ACTIONS(37), + [anon_sym_POUND_POUND] = ACTIONS(39), + [anon_sym_POUND_EQ] = ACTIONS(41), + [anon_sym_AT] = ACTIONS(43), + [anon_sym_SQUOTE] = ACTIONS(45), + [anon_sym_BQUOTE] = ACTIONS(47), + [anon_sym_COMMA_AT] = ACTIONS(49), + [anon_sym_COMMA] = ACTIONS(51), [sym_block_comment] = ACTIONS(3), [sym_fancy_literal] = ACTIONS(186), [anon_sym_loop] = ACTIONS(234), @@ -6535,71 +6357,72 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_defgeneric] = ACTIONS(194), [anon_sym_defmethod] = ACTIONS(194), [anon_sym_lambda] = ACTIONS(196), - [anon_sym_COLON] = ACTIONS(51), [anon_sym_POUND_PLUS] = ACTIONS(53), [anon_sym_POUND_DASH] = ACTIONS(53), [anon_sym_POUNDC] = ACTIONS(55), }, [10] = { - [sym__gap] = STATE(598), - [sym_dis_expr] = STATE(598), - [sym__form] = STATE(932), - [sym_str_lit] = STATE(932), - [sym_sym_lit] = STATE(815), - [sym__metadata_lit] = STATE(1369), - [sym_meta_lit] = STATE(1098), - [sym_old_meta_lit] = STATE(1078), - [sym_list_lit] = STATE(932), - [sym__bare_list_lit] = STATE(842), - [sym_vec_lit] = STATE(932), - [sym__bare_vec_lit] = STATE(838), - [sym_set_lit] = STATE(932), - [sym__bare_set_lit] = STATE(841), - [sym_read_cond_lit] = STATE(932), - [sym_splicing_read_cond_lit] = STATE(932), - [sym_var_quoting_lit] = STATE(932), - [sym_sym_val_lit] = STATE(932), - [sym_evaling_lit] = STATE(932), - [sym_derefing_lit] = STATE(932), - [sym_quoting_lit] = STATE(932), - [sym_syn_quoting_lit] = STATE(932), - [sym_unquote_splicing_lit] = STATE(932), - [sym_unquoting_lit] = STATE(932), - [sym_defun] = STATE(842), - [sym_loop_macro] = STATE(842), - [sym_defun_keyword] = STATE(265), - [sym_defun_header] = STATE(38), - [sym_dotted_sym_lit] = STATE(1909), - [sym_package_lit] = STATE(932), - [sym_include_reader_macro] = STATE(932), - [sym_complex_num_lit] = STATE(932), - [aux_sym_sym_lit_repeat1] = STATE(1047), - [aux_sym__bare_list_lit_repeat1] = STATE(40), + [sym__gap] = STATE(554), + [sym_dis_expr] = STATE(554), + [sym__form] = STATE(895), + [sym_kwd_lit] = STATE(895), + [sym_str_lit] = STATE(895), + [sym_sym_lit] = STATE(780), + [sym__metadata_lit] = STATE(1337), + [sym_meta_lit] = STATE(1162), + [sym_old_meta_lit] = STATE(1172), + [sym_list_lit] = STATE(895), + [sym__bare_list_lit] = STATE(787), + [sym_vec_lit] = STATE(895), + [sym__bare_vec_lit] = STATE(786), + [sym_set_lit] = STATE(895), + [sym__bare_set_lit] = STATE(884), + [sym_read_cond_lit] = STATE(895), + [sym_splicing_read_cond_lit] = STATE(895), + [sym_var_quoting_lit] = STATE(895), + [sym_sym_val_lit] = STATE(895), + [sym_evaling_lit] = STATE(895), + [sym_derefing_lit] = STATE(895), + [sym_quoting_lit] = STATE(895), + [sym_syn_quoting_lit] = STATE(895), + [sym_unquote_splicing_lit] = STATE(895), + [sym_unquoting_lit] = STATE(895), + [sym_defun] = STATE(787), + [sym_loop_macro] = STATE(787), + [sym_defun_keyword] = STATE(70), + [sym_defun_header] = STATE(17), + [sym_dotted_sym_lit] = STATE(1863), + [sym_package_lit] = STATE(895), + [sym_include_reader_macro] = STATE(895), + [sym_complex_num_lit] = STATE(895), + [aux_sym_sym_lit_repeat1] = STATE(1033), + [aux_sym__bare_list_lit_repeat1] = STATE(15), [sym__ws] = ACTIONS(238), [sym_comment] = ACTIONS(238), [anon_sym_POUND_] = ACTIONS(182), [sym_num_lit] = ACTIONS(184), - [aux_sym_str_lit_token1] = ACTIONS(13), + [anon_sym_COLON] = ACTIONS(13), + [anon_sym_COLON_COLON] = ACTIONS(15), + [aux_sym_str_lit_token1] = ACTIONS(17), [sym_char_lit] = ACTIONS(184), [sym_nil_lit] = ACTIONS(186), - [aux_sym_sym_lit_token1] = ACTIONS(17), - [anon_sym_CARET] = ACTIONS(19), - [anon_sym_POUND_CARET] = ACTIONS(21), - [anon_sym_LPAREN] = ACTIONS(23), + [aux_sym_sym_lit_token1] = ACTIONS(21), + [anon_sym_CARET] = ACTIONS(23), + [anon_sym_POUND_CARET] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_RPAREN] = ACTIONS(240), - [anon_sym_POUND0A] = ACTIONS(25), - [anon_sym_POUND] = ACTIONS(27), - [anon_sym_POUND_QMARK] = ACTIONS(29), - [anon_sym_POUND_QMARK_AT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND_SQUOTE] = ACTIONS(35), - [anon_sym_POUND_POUND] = ACTIONS(37), - [anon_sym_POUND_EQ] = ACTIONS(39), - [anon_sym_AT] = ACTIONS(41), - [anon_sym_SQUOTE] = ACTIONS(43), - [anon_sym_BQUOTE] = ACTIONS(45), - [anon_sym_COMMA_AT] = ACTIONS(47), - [anon_sym_COMMA] = ACTIONS(49), + [anon_sym_POUND0A] = ACTIONS(29), + [anon_sym_POUND] = ACTIONS(31), + [anon_sym_POUND_QMARK] = ACTIONS(33), + [anon_sym_POUND_QMARK_AT] = ACTIONS(35), + [anon_sym_POUND_SQUOTE] = ACTIONS(37), + [anon_sym_POUND_POUND] = ACTIONS(39), + [anon_sym_POUND_EQ] = ACTIONS(41), + [anon_sym_AT] = ACTIONS(43), + [anon_sym_SQUOTE] = ACTIONS(45), + [anon_sym_BQUOTE] = ACTIONS(47), + [anon_sym_COMMA_AT] = ACTIONS(49), + [anon_sym_COMMA] = ACTIONS(51), [sym_block_comment] = ACTIONS(3), [sym_fancy_literal] = ACTIONS(186), [anon_sym_loop] = ACTIONS(242), @@ -6609,101 +6432,167 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_defgeneric] = ACTIONS(194), [anon_sym_defmethod] = ACTIONS(194), [anon_sym_lambda] = ACTIONS(196), - [anon_sym_COLON] = ACTIONS(51), [anon_sym_POUND_PLUS] = ACTIONS(53), [anon_sym_POUND_DASH] = ACTIONS(53), [anon_sym_POUNDC] = ACTIONS(55), }, + [11] = { + [sym__gap] = STATE(893), + [sym_dis_expr] = STATE(893), + [sym__form] = STATE(895), + [sym_kwd_lit] = STATE(895), + [sym_str_lit] = STATE(895), + [sym_sym_lit] = STATE(780), + [sym__metadata_lit] = STATE(1337), + [sym_meta_lit] = STATE(1162), + [sym_old_meta_lit] = STATE(1172), + [sym_list_lit] = STATE(895), + [sym__bare_list_lit] = STATE(787), + [sym_vec_lit] = STATE(895), + [sym__bare_vec_lit] = STATE(786), + [sym_set_lit] = STATE(895), + [sym__bare_set_lit] = STATE(884), + [sym_read_cond_lit] = STATE(895), + [sym_splicing_read_cond_lit] = STATE(895), + [sym_var_quoting_lit] = STATE(895), + [sym_sym_val_lit] = STATE(895), + [sym_evaling_lit] = STATE(895), + [sym_derefing_lit] = STATE(895), + [sym_quoting_lit] = STATE(895), + [sym_syn_quoting_lit] = STATE(895), + [sym_unquote_splicing_lit] = STATE(895), + [sym_unquoting_lit] = STATE(895), + [sym_defun] = STATE(787), + [sym_loop_macro] = STATE(787), + [sym_dotted_sym_lit] = STATE(1863), + [sym_package_lit] = STATE(895), + [sym_include_reader_macro] = STATE(895), + [sym_complex_num_lit] = STATE(895), + [aux_sym_sym_lit_repeat1] = STATE(1033), + [aux_sym__bare_list_lit_repeat1] = STATE(11), + [sym__ws] = ACTIONS(246), + [sym_comment] = ACTIONS(246), + [anon_sym_POUND_] = ACTIONS(249), + [sym_num_lit] = ACTIONS(252), + [anon_sym_COLON] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(258), + [aux_sym_str_lit_token1] = ACTIONS(261), + [sym_char_lit] = ACTIONS(252), + [sym_nil_lit] = ACTIONS(264), + [aux_sym_sym_lit_token1] = ACTIONS(267), + [anon_sym_CARET] = ACTIONS(270), + [anon_sym_POUND_CARET] = ACTIONS(273), + [anon_sym_LPAREN] = ACTIONS(276), + [anon_sym_RPAREN] = ACTIONS(279), + [anon_sym_RBRACE] = ACTIONS(279), + [anon_sym_POUND0A] = ACTIONS(281), + [anon_sym_POUND] = ACTIONS(284), + [anon_sym_POUND_QMARK] = ACTIONS(287), + [anon_sym_POUND_QMARK_AT] = ACTIONS(290), + [anon_sym_POUND_SQUOTE] = ACTIONS(293), + [anon_sym_POUND_POUND] = ACTIONS(296), + [anon_sym_POUND_EQ] = ACTIONS(299), + [anon_sym_AT] = ACTIONS(302), + [anon_sym_SQUOTE] = ACTIONS(305), + [anon_sym_BQUOTE] = ACTIONS(308), + [anon_sym_COMMA_AT] = ACTIONS(311), + [anon_sym_COMMA] = ACTIONS(314), + [sym_block_comment] = ACTIONS(3), + [sym_fancy_literal] = ACTIONS(264), + [anon_sym_POUND_PLUS] = ACTIONS(317), + [anon_sym_POUND_DASH] = ACTIONS(317), + [anon_sym_POUNDC] = ACTIONS(320), + }, }; static uint16_t ts_small_parse_table[] = { [0] = 39, ACTIONS(3), 1, sym_block_comment, - ACTIONS(249), 1, + ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(255), 1, + ACTIONS(13), 1, + anon_sym_COLON, + ACTIONS(15), 1, + anon_sym_COLON_COLON, + ACTIONS(17), 1, aux_sym_str_lit_token1, - ACTIONS(261), 1, + ACTIONS(21), 1, aux_sym_sym_lit_token1, - ACTIONS(264), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(267), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(270), 1, + ACTIONS(27), 1, anon_sym_LPAREN, - ACTIONS(275), 1, + ACTIONS(29), 1, anon_sym_POUND0A, - ACTIONS(278), 1, + ACTIONS(31), 1, anon_sym_POUND, - ACTIONS(281), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(284), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(287), 1, - anon_sym_COLON_COLON, - ACTIONS(290), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(293), 1, + ACTIONS(39), 1, anon_sym_POUND_POUND, - ACTIONS(296), 1, + ACTIONS(41), 1, anon_sym_POUND_EQ, - ACTIONS(299), 1, + ACTIONS(43), 1, anon_sym_AT, - ACTIONS(302), 1, + ACTIONS(45), 1, anon_sym_SQUOTE, - ACTIONS(305), 1, + ACTIONS(47), 1, anon_sym_BQUOTE, - ACTIONS(308), 1, + ACTIONS(49), 1, anon_sym_COMMA_AT, - ACTIONS(311), 1, + ACTIONS(51), 1, anon_sym_COMMA, - ACTIONS(314), 1, - anon_sym_COLON, - ACTIONS(320), 1, + ACTIONS(55), 1, anon_sym_POUNDC, - STATE(11), 1, + ACTIONS(325), 1, + anon_sym_RBRACE, + STATE(37), 1, aux_sym__bare_list_lit_repeat1, - STATE(815), 1, + STATE(780), 1, sym_sym_lit, - STATE(838), 1, + STATE(786), 1, sym__bare_vec_lit, - STATE(841), 1, + STATE(884), 1, sym__bare_set_lit, - STATE(1047), 1, + STATE(1033), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1909), 1, + STATE(1863), 1, sym_dotted_sym_lit, - ACTIONS(246), 2, - sym__ws, - sym_comment, - ACTIONS(252), 2, + ACTIONS(53), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(184), 2, sym_num_lit, sym_char_lit, - ACTIONS(258), 2, + ACTIONS(186), 2, sym_nil_lit, sym_fancy_literal, - ACTIONS(273), 2, - anon_sym_RPAREN, - anon_sym_RBRACE, - ACTIONS(317), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - STATE(931), 2, + ACTIONS(323), 2, + sym__ws, + sym_comment, + STATE(893), 2, sym__gap, sym_dis_expr, - STATE(842), 3, + STATE(787), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(932), 18, + STATE(895), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -6727,64 +6616,64 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(13), 1, - aux_sym_str_lit_token1, + anon_sym_COLON, + ACTIONS(15), 1, + anon_sym_COLON_COLON, ACTIONS(17), 1, - aux_sym_sym_lit_token1, - ACTIONS(19), 1, - anon_sym_CARET, + aux_sym_str_lit_token1, ACTIONS(21), 1, - anon_sym_POUND_CARET, + aux_sym_sym_lit_token1, ACTIONS(23), 1, - anon_sym_LPAREN, + anon_sym_CARET, ACTIONS(25), 1, - anon_sym_POUND0A, + anon_sym_POUND_CARET, ACTIONS(27), 1, - anon_sym_POUND, + anon_sym_LPAREN, ACTIONS(29), 1, - anon_sym_POUND_QMARK, + anon_sym_POUND0A, ACTIONS(31), 1, - anon_sym_POUND_QMARK_AT, + anon_sym_POUND, ACTIONS(33), 1, - anon_sym_COLON_COLON, + anon_sym_POUND_QMARK, ACTIONS(35), 1, - anon_sym_POUND_SQUOTE, + anon_sym_POUND_QMARK_AT, ACTIONS(37), 1, - anon_sym_POUND_POUND, + anon_sym_POUND_SQUOTE, ACTIONS(39), 1, - anon_sym_POUND_EQ, + anon_sym_POUND_POUND, ACTIONS(41), 1, - anon_sym_AT, + anon_sym_POUND_EQ, ACTIONS(43), 1, - anon_sym_SQUOTE, + anon_sym_AT, ACTIONS(45), 1, - anon_sym_BQUOTE, + anon_sym_SQUOTE, ACTIONS(47), 1, - anon_sym_COMMA_AT, + anon_sym_BQUOTE, ACTIONS(49), 1, - anon_sym_COMMA, + anon_sym_COMMA_AT, ACTIONS(51), 1, - anon_sym_COLON, + anon_sym_COMMA, ACTIONS(55), 1, anon_sym_POUNDC, - ACTIONS(325), 1, + ACTIONS(327), 1, anon_sym_RPAREN, - STATE(36), 1, + STATE(11), 1, aux_sym__bare_list_lit_repeat1, - STATE(815), 1, + STATE(780), 1, sym_sym_lit, - STATE(838), 1, + STATE(786), 1, sym__bare_vec_lit, - STATE(841), 1, + STATE(884), 1, sym__bare_set_lit, - STATE(1047), 1, + STATE(1033), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1909), 1, + STATE(1863), 1, sym_dotted_sym_lit, ACTIONS(53), 2, anon_sym_POUND_PLUS, @@ -6798,15 +6687,16 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(323), 2, sym__ws, sym_comment, - STATE(931), 2, + STATE(893), 2, sym__gap, sym_dis_expr, - STATE(842), 3, + STATE(787), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(932), 18, + STATE(895), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -6824,70 +6714,70 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [285] = 39, + [286] = 39, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(13), 1, - aux_sym_str_lit_token1, + anon_sym_COLON, + ACTIONS(15), 1, + anon_sym_COLON_COLON, ACTIONS(17), 1, - aux_sym_sym_lit_token1, - ACTIONS(19), 1, - anon_sym_CARET, + aux_sym_str_lit_token1, ACTIONS(21), 1, - anon_sym_POUND_CARET, + aux_sym_sym_lit_token1, ACTIONS(23), 1, - anon_sym_LPAREN, + anon_sym_CARET, ACTIONS(25), 1, - anon_sym_POUND0A, + anon_sym_POUND_CARET, ACTIONS(27), 1, - anon_sym_POUND, + anon_sym_LPAREN, ACTIONS(29), 1, - anon_sym_POUND_QMARK, + anon_sym_POUND0A, ACTIONS(31), 1, - anon_sym_POUND_QMARK_AT, + anon_sym_POUND, ACTIONS(33), 1, - anon_sym_COLON_COLON, + anon_sym_POUND_QMARK, ACTIONS(35), 1, - anon_sym_POUND_SQUOTE, + anon_sym_POUND_QMARK_AT, ACTIONS(37), 1, - anon_sym_POUND_POUND, + anon_sym_POUND_SQUOTE, ACTIONS(39), 1, - anon_sym_POUND_EQ, + anon_sym_POUND_POUND, ACTIONS(41), 1, - anon_sym_AT, + anon_sym_POUND_EQ, ACTIONS(43), 1, - anon_sym_SQUOTE, + anon_sym_AT, ACTIONS(45), 1, - anon_sym_BQUOTE, + anon_sym_SQUOTE, ACTIONS(47), 1, - anon_sym_COMMA_AT, + anon_sym_BQUOTE, ACTIONS(49), 1, - anon_sym_COMMA, + anon_sym_COMMA_AT, ACTIONS(51), 1, - anon_sym_COLON, + anon_sym_COMMA, ACTIONS(55), 1, anon_sym_POUNDC, - ACTIONS(327), 1, - anon_sym_RBRACE, - STATE(63), 1, + ACTIONS(329), 1, + anon_sym_RPAREN, + STATE(11), 1, aux_sym__bare_list_lit_repeat1, - STATE(815), 1, + STATE(780), 1, sym_sym_lit, - STATE(838), 1, + STATE(786), 1, sym__bare_vec_lit, - STATE(841), 1, + STATE(884), 1, sym__bare_set_lit, - STATE(1047), 1, + STATE(1033), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1909), 1, + STATE(1863), 1, sym_dotted_sym_lit, ACTIONS(53), 2, anon_sym_POUND_PLUS, @@ -6901,15 +6791,16 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(323), 2, sym__ws, sym_comment, - STATE(931), 2, + STATE(893), 2, sym__gap, sym_dis_expr, - STATE(842), 3, + STATE(787), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(932), 18, + STATE(895), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -6927,70 +6818,70 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [427] = 39, + [429] = 39, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(13), 1, - aux_sym_str_lit_token1, + anon_sym_COLON, + ACTIONS(15), 1, + anon_sym_COLON_COLON, ACTIONS(17), 1, - aux_sym_sym_lit_token1, - ACTIONS(19), 1, - anon_sym_CARET, + aux_sym_str_lit_token1, ACTIONS(21), 1, - anon_sym_POUND_CARET, + aux_sym_sym_lit_token1, ACTIONS(23), 1, - anon_sym_LPAREN, + anon_sym_CARET, ACTIONS(25), 1, - anon_sym_POUND0A, + anon_sym_POUND_CARET, ACTIONS(27), 1, - anon_sym_POUND, + anon_sym_LPAREN, ACTIONS(29), 1, - anon_sym_POUND_QMARK, + anon_sym_POUND0A, ACTIONS(31), 1, - anon_sym_POUND_QMARK_AT, + anon_sym_POUND, ACTIONS(33), 1, - anon_sym_COLON_COLON, + anon_sym_POUND_QMARK, ACTIONS(35), 1, - anon_sym_POUND_SQUOTE, + anon_sym_POUND_QMARK_AT, ACTIONS(37), 1, - anon_sym_POUND_POUND, + anon_sym_POUND_SQUOTE, ACTIONS(39), 1, - anon_sym_POUND_EQ, + anon_sym_POUND_POUND, ACTIONS(41), 1, - anon_sym_AT, + anon_sym_POUND_EQ, ACTIONS(43), 1, - anon_sym_SQUOTE, + anon_sym_AT, ACTIONS(45), 1, - anon_sym_BQUOTE, + anon_sym_SQUOTE, ACTIONS(47), 1, - anon_sym_COMMA_AT, + anon_sym_BQUOTE, ACTIONS(49), 1, - anon_sym_COMMA, + anon_sym_COMMA_AT, ACTIONS(51), 1, - anon_sym_COLON, + anon_sym_COMMA, ACTIONS(55), 1, anon_sym_POUNDC, - ACTIONS(329), 1, - anon_sym_RBRACE, + ACTIONS(331), 1, + anon_sym_RPAREN, STATE(11), 1, aux_sym__bare_list_lit_repeat1, - STATE(815), 1, + STATE(780), 1, sym_sym_lit, - STATE(838), 1, + STATE(786), 1, sym__bare_vec_lit, - STATE(841), 1, + STATE(884), 1, sym__bare_set_lit, - STATE(1047), 1, + STATE(1033), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1909), 1, + STATE(1863), 1, sym_dotted_sym_lit, ACTIONS(53), 2, anon_sym_POUND_PLUS, @@ -7004,15 +6895,16 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(323), 2, sym__ws, sym_comment, - STATE(931), 2, + STATE(893), 2, sym__gap, sym_dis_expr, - STATE(842), 3, + STATE(787), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(932), 18, + STATE(895), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -7030,70 +6922,70 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [569] = 39, + [572] = 39, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(13), 1, - aux_sym_str_lit_token1, + anon_sym_COLON, + ACTIONS(15), 1, + anon_sym_COLON_COLON, ACTIONS(17), 1, - aux_sym_sym_lit_token1, - ACTIONS(19), 1, - anon_sym_CARET, + aux_sym_str_lit_token1, ACTIONS(21), 1, - anon_sym_POUND_CARET, + aux_sym_sym_lit_token1, ACTIONS(23), 1, - anon_sym_LPAREN, + anon_sym_CARET, ACTIONS(25), 1, - anon_sym_POUND0A, + anon_sym_POUND_CARET, ACTIONS(27), 1, - anon_sym_POUND, + anon_sym_LPAREN, ACTIONS(29), 1, - anon_sym_POUND_QMARK, + anon_sym_POUND0A, ACTIONS(31), 1, - anon_sym_POUND_QMARK_AT, + anon_sym_POUND, ACTIONS(33), 1, - anon_sym_COLON_COLON, + anon_sym_POUND_QMARK, ACTIONS(35), 1, - anon_sym_POUND_SQUOTE, + anon_sym_POUND_QMARK_AT, ACTIONS(37), 1, - anon_sym_POUND_POUND, + anon_sym_POUND_SQUOTE, ACTIONS(39), 1, - anon_sym_POUND_EQ, + anon_sym_POUND_POUND, ACTIONS(41), 1, - anon_sym_AT, + anon_sym_POUND_EQ, ACTIONS(43), 1, - anon_sym_SQUOTE, + anon_sym_AT, ACTIONS(45), 1, - anon_sym_BQUOTE, + anon_sym_SQUOTE, ACTIONS(47), 1, - anon_sym_COMMA_AT, + anon_sym_BQUOTE, ACTIONS(49), 1, - anon_sym_COMMA, + anon_sym_COMMA_AT, ACTIONS(51), 1, - anon_sym_COLON, + anon_sym_COMMA, ACTIONS(55), 1, anon_sym_POUNDC, - ACTIONS(331), 1, - anon_sym_RPAREN, - STATE(11), 1, + ACTIONS(333), 1, + anon_sym_RBRACE, + STATE(20), 1, aux_sym__bare_list_lit_repeat1, - STATE(815), 1, + STATE(780), 1, sym_sym_lit, - STATE(838), 1, + STATE(786), 1, sym__bare_vec_lit, - STATE(841), 1, + STATE(884), 1, sym__bare_set_lit, - STATE(1047), 1, + STATE(1033), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1909), 1, + STATE(1863), 1, sym_dotted_sym_lit, ACTIONS(53), 2, anon_sym_POUND_PLUS, @@ -7107,15 +6999,16 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(323), 2, sym__ws, sym_comment, - STATE(931), 2, + STATE(893), 2, sym__gap, sym_dis_expr, - STATE(842), 3, + STATE(787), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(932), 18, + STATE(895), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -7133,70 +7026,70 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [711] = 39, + [715] = 39, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(13), 1, - aux_sym_str_lit_token1, + anon_sym_COLON, + ACTIONS(15), 1, + anon_sym_COLON_COLON, ACTIONS(17), 1, - aux_sym_sym_lit_token1, - ACTIONS(19), 1, - anon_sym_CARET, + aux_sym_str_lit_token1, ACTIONS(21), 1, - anon_sym_POUND_CARET, + aux_sym_sym_lit_token1, ACTIONS(23), 1, - anon_sym_LPAREN, + anon_sym_CARET, ACTIONS(25), 1, - anon_sym_POUND0A, + anon_sym_POUND_CARET, ACTIONS(27), 1, - anon_sym_POUND, + anon_sym_LPAREN, ACTIONS(29), 1, - anon_sym_POUND_QMARK, + anon_sym_POUND0A, ACTIONS(31), 1, - anon_sym_POUND_QMARK_AT, + anon_sym_POUND, ACTIONS(33), 1, - anon_sym_COLON_COLON, + anon_sym_POUND_QMARK, ACTIONS(35), 1, - anon_sym_POUND_SQUOTE, + anon_sym_POUND_QMARK_AT, ACTIONS(37), 1, - anon_sym_POUND_POUND, + anon_sym_POUND_SQUOTE, ACTIONS(39), 1, - anon_sym_POUND_EQ, + anon_sym_POUND_POUND, ACTIONS(41), 1, - anon_sym_AT, + anon_sym_POUND_EQ, ACTIONS(43), 1, - anon_sym_SQUOTE, + anon_sym_AT, ACTIONS(45), 1, - anon_sym_BQUOTE, + anon_sym_SQUOTE, ACTIONS(47), 1, - anon_sym_COMMA_AT, + anon_sym_BQUOTE, ACTIONS(49), 1, - anon_sym_COMMA, + anon_sym_COMMA_AT, ACTIONS(51), 1, - anon_sym_COLON, + anon_sym_COMMA, ACTIONS(55), 1, anon_sym_POUNDC, - ACTIONS(333), 1, + ACTIONS(335), 1, anon_sym_RPAREN, - STATE(20), 1, + STATE(62), 1, aux_sym__bare_list_lit_repeat1, - STATE(815), 1, + STATE(780), 1, sym_sym_lit, - STATE(838), 1, + STATE(786), 1, sym__bare_vec_lit, - STATE(841), 1, + STATE(884), 1, sym__bare_set_lit, - STATE(1047), 1, + STATE(1033), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1909), 1, + STATE(1863), 1, sym_dotted_sym_lit, ACTIONS(53), 2, anon_sym_POUND_PLUS, @@ -7210,15 +7103,16 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(323), 2, sym__ws, sym_comment, - STATE(931), 2, + STATE(893), 2, sym__gap, sym_dis_expr, - STATE(842), 3, + STATE(787), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(932), 18, + STATE(895), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -7236,70 +7130,70 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [853] = 39, + [858] = 39, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(13), 1, - aux_sym_str_lit_token1, + anon_sym_COLON, + ACTIONS(15), 1, + anon_sym_COLON_COLON, ACTIONS(17), 1, - aux_sym_sym_lit_token1, - ACTIONS(19), 1, - anon_sym_CARET, + aux_sym_str_lit_token1, ACTIONS(21), 1, - anon_sym_POUND_CARET, + aux_sym_sym_lit_token1, ACTIONS(23), 1, - anon_sym_LPAREN, + anon_sym_CARET, ACTIONS(25), 1, - anon_sym_POUND0A, + anon_sym_POUND_CARET, ACTIONS(27), 1, - anon_sym_POUND, + anon_sym_LPAREN, ACTIONS(29), 1, - anon_sym_POUND_QMARK, + anon_sym_POUND0A, ACTIONS(31), 1, - anon_sym_POUND_QMARK_AT, + anon_sym_POUND, ACTIONS(33), 1, - anon_sym_COLON_COLON, + anon_sym_POUND_QMARK, ACTIONS(35), 1, - anon_sym_POUND_SQUOTE, + anon_sym_POUND_QMARK_AT, ACTIONS(37), 1, - anon_sym_POUND_POUND, + anon_sym_POUND_SQUOTE, ACTIONS(39), 1, - anon_sym_POUND_EQ, + anon_sym_POUND_POUND, ACTIONS(41), 1, - anon_sym_AT, + anon_sym_POUND_EQ, ACTIONS(43), 1, - anon_sym_SQUOTE, + anon_sym_AT, ACTIONS(45), 1, - anon_sym_BQUOTE, + anon_sym_SQUOTE, ACTIONS(47), 1, - anon_sym_COMMA_AT, + anon_sym_BQUOTE, ACTIONS(49), 1, - anon_sym_COMMA, + anon_sym_COMMA_AT, ACTIONS(51), 1, - anon_sym_COLON, + anon_sym_COMMA, ACTIONS(55), 1, anon_sym_POUNDC, - ACTIONS(335), 1, + ACTIONS(337), 1, anon_sym_RPAREN, - STATE(11), 1, + STATE(21), 1, aux_sym__bare_list_lit_repeat1, - STATE(815), 1, + STATE(780), 1, sym_sym_lit, - STATE(838), 1, + STATE(786), 1, sym__bare_vec_lit, - STATE(841), 1, + STATE(884), 1, sym__bare_set_lit, - STATE(1047), 1, + STATE(1033), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1909), 1, + STATE(1863), 1, sym_dotted_sym_lit, ACTIONS(53), 2, anon_sym_POUND_PLUS, @@ -7313,15 +7207,16 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(323), 2, sym__ws, sym_comment, - STATE(931), 2, + STATE(893), 2, sym__gap, sym_dis_expr, - STATE(842), 3, + STATE(787), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(932), 18, + STATE(895), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -7339,70 +7234,70 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [995] = 39, + [1001] = 39, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(13), 1, - aux_sym_str_lit_token1, + anon_sym_COLON, + ACTIONS(15), 1, + anon_sym_COLON_COLON, ACTIONS(17), 1, - aux_sym_sym_lit_token1, - ACTIONS(19), 1, - anon_sym_CARET, + aux_sym_str_lit_token1, ACTIONS(21), 1, - anon_sym_POUND_CARET, + aux_sym_sym_lit_token1, ACTIONS(23), 1, - anon_sym_LPAREN, + anon_sym_CARET, ACTIONS(25), 1, - anon_sym_POUND0A, + anon_sym_POUND_CARET, ACTIONS(27), 1, - anon_sym_POUND, + anon_sym_LPAREN, ACTIONS(29), 1, - anon_sym_POUND_QMARK, + anon_sym_POUND0A, ACTIONS(31), 1, - anon_sym_POUND_QMARK_AT, + anon_sym_POUND, ACTIONS(33), 1, - anon_sym_COLON_COLON, + anon_sym_POUND_QMARK, ACTIONS(35), 1, - anon_sym_POUND_SQUOTE, + anon_sym_POUND_QMARK_AT, ACTIONS(37), 1, - anon_sym_POUND_POUND, + anon_sym_POUND_SQUOTE, ACTIONS(39), 1, - anon_sym_POUND_EQ, + anon_sym_POUND_POUND, ACTIONS(41), 1, - anon_sym_AT, + anon_sym_POUND_EQ, ACTIONS(43), 1, - anon_sym_SQUOTE, + anon_sym_AT, ACTIONS(45), 1, - anon_sym_BQUOTE, + anon_sym_SQUOTE, ACTIONS(47), 1, - anon_sym_COMMA_AT, + anon_sym_BQUOTE, ACTIONS(49), 1, - anon_sym_COMMA, + anon_sym_COMMA_AT, ACTIONS(51), 1, - anon_sym_COLON, + anon_sym_COMMA, ACTIONS(55), 1, anon_sym_POUNDC, - ACTIONS(337), 1, - anon_sym_RBRACE, - STATE(21), 1, + ACTIONS(339), 1, + anon_sym_RPAREN, + STATE(11), 1, aux_sym__bare_list_lit_repeat1, - STATE(815), 1, + STATE(780), 1, sym_sym_lit, - STATE(838), 1, + STATE(786), 1, sym__bare_vec_lit, - STATE(841), 1, + STATE(884), 1, sym__bare_set_lit, - STATE(1047), 1, + STATE(1033), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1909), 1, + STATE(1863), 1, sym_dotted_sym_lit, ACTIONS(53), 2, anon_sym_POUND_PLUS, @@ -7416,15 +7311,16 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(323), 2, sym__ws, sym_comment, - STATE(931), 2, + STATE(893), 2, sym__gap, sym_dis_expr, - STATE(842), 3, + STATE(787), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(932), 18, + STATE(895), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -7442,70 +7338,70 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [1137] = 39, + [1144] = 39, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(13), 1, - aux_sym_str_lit_token1, + anon_sym_COLON, + ACTIONS(15), 1, + anon_sym_COLON_COLON, ACTIONS(17), 1, - aux_sym_sym_lit_token1, - ACTIONS(19), 1, - anon_sym_CARET, + aux_sym_str_lit_token1, ACTIONS(21), 1, - anon_sym_POUND_CARET, + aux_sym_sym_lit_token1, ACTIONS(23), 1, - anon_sym_LPAREN, + anon_sym_CARET, ACTIONS(25), 1, - anon_sym_POUND0A, + anon_sym_POUND_CARET, ACTIONS(27), 1, - anon_sym_POUND, + anon_sym_LPAREN, ACTIONS(29), 1, - anon_sym_POUND_QMARK, + anon_sym_POUND0A, ACTIONS(31), 1, - anon_sym_POUND_QMARK_AT, + anon_sym_POUND, ACTIONS(33), 1, - anon_sym_COLON_COLON, + anon_sym_POUND_QMARK, ACTIONS(35), 1, - anon_sym_POUND_SQUOTE, + anon_sym_POUND_QMARK_AT, ACTIONS(37), 1, - anon_sym_POUND_POUND, + anon_sym_POUND_SQUOTE, ACTIONS(39), 1, - anon_sym_POUND_EQ, + anon_sym_POUND_POUND, ACTIONS(41), 1, - anon_sym_AT, + anon_sym_POUND_EQ, ACTIONS(43), 1, - anon_sym_SQUOTE, + anon_sym_AT, ACTIONS(45), 1, - anon_sym_BQUOTE, + anon_sym_SQUOTE, ACTIONS(47), 1, - anon_sym_COMMA_AT, + anon_sym_BQUOTE, ACTIONS(49), 1, - anon_sym_COMMA, + anon_sym_COMMA_AT, ACTIONS(51), 1, - anon_sym_COLON, + anon_sym_COMMA, ACTIONS(55), 1, anon_sym_POUNDC, - ACTIONS(339), 1, - anon_sym_RPAREN, - STATE(22), 1, + ACTIONS(341), 1, + anon_sym_RBRACE, + STATE(11), 1, aux_sym__bare_list_lit_repeat1, - STATE(815), 1, + STATE(780), 1, sym_sym_lit, - STATE(838), 1, + STATE(786), 1, sym__bare_vec_lit, - STATE(841), 1, + STATE(884), 1, sym__bare_set_lit, - STATE(1047), 1, + STATE(1033), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1909), 1, + STATE(1863), 1, sym_dotted_sym_lit, ACTIONS(53), 2, anon_sym_POUND_PLUS, @@ -7519,15 +7415,16 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(323), 2, sym__ws, sym_comment, - STATE(931), 2, + STATE(893), 2, sym__gap, sym_dis_expr, - STATE(842), 3, + STATE(787), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(932), 18, + STATE(895), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -7545,70 +7442,70 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [1279] = 39, + [1287] = 39, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(13), 1, - aux_sym_str_lit_token1, + anon_sym_COLON, + ACTIONS(15), 1, + anon_sym_COLON_COLON, ACTIONS(17), 1, - aux_sym_sym_lit_token1, - ACTIONS(19), 1, - anon_sym_CARET, + aux_sym_str_lit_token1, ACTIONS(21), 1, - anon_sym_POUND_CARET, + aux_sym_sym_lit_token1, ACTIONS(23), 1, - anon_sym_LPAREN, + anon_sym_CARET, ACTIONS(25), 1, - anon_sym_POUND0A, + anon_sym_POUND_CARET, ACTIONS(27), 1, - anon_sym_POUND, + anon_sym_LPAREN, ACTIONS(29), 1, - anon_sym_POUND_QMARK, + anon_sym_POUND0A, ACTIONS(31), 1, - anon_sym_POUND_QMARK_AT, + anon_sym_POUND, ACTIONS(33), 1, - anon_sym_COLON_COLON, + anon_sym_POUND_QMARK, ACTIONS(35), 1, - anon_sym_POUND_SQUOTE, + anon_sym_POUND_QMARK_AT, ACTIONS(37), 1, - anon_sym_POUND_POUND, + anon_sym_POUND_SQUOTE, ACTIONS(39), 1, - anon_sym_POUND_EQ, + anon_sym_POUND_POUND, ACTIONS(41), 1, - anon_sym_AT, + anon_sym_POUND_EQ, ACTIONS(43), 1, - anon_sym_SQUOTE, + anon_sym_AT, ACTIONS(45), 1, - anon_sym_BQUOTE, + anon_sym_SQUOTE, ACTIONS(47), 1, - anon_sym_COMMA_AT, + anon_sym_BQUOTE, ACTIONS(49), 1, - anon_sym_COMMA, + anon_sym_COMMA_AT, ACTIONS(51), 1, - anon_sym_COLON, + anon_sym_COMMA, ACTIONS(55), 1, anon_sym_POUNDC, - ACTIONS(341), 1, + ACTIONS(343), 1, anon_sym_RPAREN, STATE(11), 1, aux_sym__bare_list_lit_repeat1, - STATE(815), 1, + STATE(780), 1, sym_sym_lit, - STATE(838), 1, + STATE(786), 1, sym__bare_vec_lit, - STATE(841), 1, + STATE(884), 1, sym__bare_set_lit, - STATE(1047), 1, + STATE(1033), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1909), 1, + STATE(1863), 1, sym_dotted_sym_lit, ACTIONS(53), 2, anon_sym_POUND_PLUS, @@ -7622,15 +7519,16 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(323), 2, sym__ws, sym_comment, - STATE(931), 2, + STATE(893), 2, sym__gap, sym_dis_expr, - STATE(842), 3, + STATE(787), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(932), 18, + STATE(895), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -7648,70 +7546,70 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [1421] = 39, + [1430] = 39, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(13), 1, - aux_sym_str_lit_token1, + anon_sym_COLON, + ACTIONS(15), 1, + anon_sym_COLON_COLON, ACTIONS(17), 1, - aux_sym_sym_lit_token1, - ACTIONS(19), 1, - anon_sym_CARET, + aux_sym_str_lit_token1, ACTIONS(21), 1, - anon_sym_POUND_CARET, + aux_sym_sym_lit_token1, ACTIONS(23), 1, - anon_sym_LPAREN, + anon_sym_CARET, ACTIONS(25), 1, - anon_sym_POUND0A, + anon_sym_POUND_CARET, ACTIONS(27), 1, - anon_sym_POUND, + anon_sym_LPAREN, ACTIONS(29), 1, - anon_sym_POUND_QMARK, + anon_sym_POUND0A, ACTIONS(31), 1, - anon_sym_POUND_QMARK_AT, + anon_sym_POUND, ACTIONS(33), 1, - anon_sym_COLON_COLON, + anon_sym_POUND_QMARK, ACTIONS(35), 1, - anon_sym_POUND_SQUOTE, + anon_sym_POUND_QMARK_AT, ACTIONS(37), 1, - anon_sym_POUND_POUND, + anon_sym_POUND_SQUOTE, ACTIONS(39), 1, - anon_sym_POUND_EQ, + anon_sym_POUND_POUND, ACTIONS(41), 1, - anon_sym_AT, + anon_sym_POUND_EQ, ACTIONS(43), 1, - anon_sym_SQUOTE, + anon_sym_AT, ACTIONS(45), 1, - anon_sym_BQUOTE, + anon_sym_SQUOTE, ACTIONS(47), 1, - anon_sym_COMMA_AT, + anon_sym_BQUOTE, ACTIONS(49), 1, - anon_sym_COMMA, + anon_sym_COMMA_AT, ACTIONS(51), 1, - anon_sym_COLON, + anon_sym_COMMA, ACTIONS(55), 1, anon_sym_POUNDC, - ACTIONS(343), 1, - anon_sym_RBRACE, - STATE(11), 1, + ACTIONS(345), 1, + anon_sym_RPAREN, + STATE(26), 1, aux_sym__bare_list_lit_repeat1, - STATE(815), 1, + STATE(780), 1, sym_sym_lit, - STATE(838), 1, + STATE(786), 1, sym__bare_vec_lit, - STATE(841), 1, + STATE(884), 1, sym__bare_set_lit, - STATE(1047), 1, + STATE(1033), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1909), 1, + STATE(1863), 1, sym_dotted_sym_lit, ACTIONS(53), 2, anon_sym_POUND_PLUS, @@ -7725,15 +7623,16 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(323), 2, sym__ws, sym_comment, - STATE(931), 2, + STATE(893), 2, sym__gap, sym_dis_expr, - STATE(842), 3, + STATE(787), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(932), 18, + STATE(895), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -7751,70 +7650,70 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [1563] = 39, + [1573] = 39, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(13), 1, - aux_sym_str_lit_token1, + anon_sym_COLON, + ACTIONS(15), 1, + anon_sym_COLON_COLON, ACTIONS(17), 1, - aux_sym_sym_lit_token1, - ACTIONS(19), 1, - anon_sym_CARET, + aux_sym_str_lit_token1, ACTIONS(21), 1, - anon_sym_POUND_CARET, + aux_sym_sym_lit_token1, ACTIONS(23), 1, - anon_sym_LPAREN, + anon_sym_CARET, ACTIONS(25), 1, - anon_sym_POUND0A, + anon_sym_POUND_CARET, ACTIONS(27), 1, - anon_sym_POUND, + anon_sym_LPAREN, ACTIONS(29), 1, - anon_sym_POUND_QMARK, + anon_sym_POUND0A, ACTIONS(31), 1, - anon_sym_POUND_QMARK_AT, + anon_sym_POUND, ACTIONS(33), 1, - anon_sym_COLON_COLON, + anon_sym_POUND_QMARK, ACTIONS(35), 1, - anon_sym_POUND_SQUOTE, + anon_sym_POUND_QMARK_AT, ACTIONS(37), 1, - anon_sym_POUND_POUND, + anon_sym_POUND_SQUOTE, ACTIONS(39), 1, - anon_sym_POUND_EQ, + anon_sym_POUND_POUND, ACTIONS(41), 1, - anon_sym_AT, + anon_sym_POUND_EQ, ACTIONS(43), 1, - anon_sym_SQUOTE, + anon_sym_AT, ACTIONS(45), 1, - anon_sym_BQUOTE, + anon_sym_SQUOTE, ACTIONS(47), 1, - anon_sym_COMMA_AT, + anon_sym_BQUOTE, ACTIONS(49), 1, - anon_sym_COMMA, + anon_sym_COMMA_AT, ACTIONS(51), 1, - anon_sym_COLON, + anon_sym_COMMA, ACTIONS(55), 1, anon_sym_POUNDC, - ACTIONS(345), 1, + ACTIONS(347), 1, anon_sym_RPAREN, STATE(11), 1, aux_sym__bare_list_lit_repeat1, - STATE(815), 1, + STATE(780), 1, sym_sym_lit, - STATE(838), 1, + STATE(786), 1, sym__bare_vec_lit, - STATE(841), 1, + STATE(884), 1, sym__bare_set_lit, - STATE(1047), 1, + STATE(1033), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1909), 1, + STATE(1863), 1, sym_dotted_sym_lit, ACTIONS(53), 2, anon_sym_POUND_PLUS, @@ -7828,15 +7727,16 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(323), 2, sym__ws, sym_comment, - STATE(931), 2, + STATE(893), 2, sym__gap, sym_dis_expr, - STATE(842), 3, + STATE(787), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(932), 18, + STATE(895), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -7854,70 +7754,70 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [1705] = 39, + [1716] = 39, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(13), 1, - aux_sym_str_lit_token1, - ACTIONS(17), 1, - aux_sym_sym_lit_token1, - ACTIONS(19), 1, - anon_sym_CARET, + anon_sym_COLON, + ACTIONS(15), 1, + anon_sym_COLON_COLON, + ACTIONS(17), 1, + aux_sym_str_lit_token1, ACTIONS(21), 1, - anon_sym_POUND_CARET, + aux_sym_sym_lit_token1, ACTIONS(23), 1, - anon_sym_LPAREN, + anon_sym_CARET, ACTIONS(25), 1, - anon_sym_POUND0A, + anon_sym_POUND_CARET, ACTIONS(27), 1, - anon_sym_POUND, + anon_sym_LPAREN, ACTIONS(29), 1, - anon_sym_POUND_QMARK, + anon_sym_POUND0A, ACTIONS(31), 1, - anon_sym_POUND_QMARK_AT, + anon_sym_POUND, ACTIONS(33), 1, - anon_sym_COLON_COLON, + anon_sym_POUND_QMARK, ACTIONS(35), 1, - anon_sym_POUND_SQUOTE, + anon_sym_POUND_QMARK_AT, ACTIONS(37), 1, - anon_sym_POUND_POUND, + anon_sym_POUND_SQUOTE, ACTIONS(39), 1, - anon_sym_POUND_EQ, + anon_sym_POUND_POUND, ACTIONS(41), 1, - anon_sym_AT, + anon_sym_POUND_EQ, ACTIONS(43), 1, - anon_sym_SQUOTE, + anon_sym_AT, ACTIONS(45), 1, - anon_sym_BQUOTE, + anon_sym_SQUOTE, ACTIONS(47), 1, - anon_sym_COMMA_AT, + anon_sym_BQUOTE, ACTIONS(49), 1, - anon_sym_COMMA, + anon_sym_COMMA_AT, ACTIONS(51), 1, - anon_sym_COLON, + anon_sym_COMMA, ACTIONS(55), 1, anon_sym_POUNDC, - ACTIONS(347), 1, - anon_sym_RPAREN, + ACTIONS(349), 1, + anon_sym_RBRACE, STATE(27), 1, aux_sym__bare_list_lit_repeat1, - STATE(815), 1, + STATE(780), 1, sym_sym_lit, - STATE(838), 1, + STATE(786), 1, sym__bare_vec_lit, - STATE(841), 1, + STATE(884), 1, sym__bare_set_lit, - STATE(1047), 1, + STATE(1033), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1909), 1, + STATE(1863), 1, sym_dotted_sym_lit, ACTIONS(53), 2, anon_sym_POUND_PLUS, @@ -7931,15 +7831,16 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(323), 2, sym__ws, sym_comment, - STATE(931), 2, + STATE(893), 2, sym__gap, sym_dis_expr, - STATE(842), 3, + STATE(787), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(932), 18, + STATE(895), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -7957,70 +7858,70 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [1847] = 39, + [1859] = 39, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(13), 1, - aux_sym_str_lit_token1, + anon_sym_COLON, + ACTIONS(15), 1, + anon_sym_COLON_COLON, ACTIONS(17), 1, - aux_sym_sym_lit_token1, - ACTIONS(19), 1, - anon_sym_CARET, + aux_sym_str_lit_token1, ACTIONS(21), 1, - anon_sym_POUND_CARET, + aux_sym_sym_lit_token1, ACTIONS(23), 1, - anon_sym_LPAREN, + anon_sym_CARET, ACTIONS(25), 1, - anon_sym_POUND0A, + anon_sym_POUND_CARET, ACTIONS(27), 1, - anon_sym_POUND, + anon_sym_LPAREN, ACTIONS(29), 1, - anon_sym_POUND_QMARK, + anon_sym_POUND0A, ACTIONS(31), 1, - anon_sym_POUND_QMARK_AT, + anon_sym_POUND, ACTIONS(33), 1, - anon_sym_COLON_COLON, + anon_sym_POUND_QMARK, ACTIONS(35), 1, - anon_sym_POUND_SQUOTE, + anon_sym_POUND_QMARK_AT, ACTIONS(37), 1, - anon_sym_POUND_POUND, + anon_sym_POUND_SQUOTE, ACTIONS(39), 1, - anon_sym_POUND_EQ, + anon_sym_POUND_POUND, ACTIONS(41), 1, - anon_sym_AT, + anon_sym_POUND_EQ, ACTIONS(43), 1, - anon_sym_SQUOTE, + anon_sym_AT, ACTIONS(45), 1, - anon_sym_BQUOTE, + anon_sym_SQUOTE, ACTIONS(47), 1, - anon_sym_COMMA_AT, + anon_sym_BQUOTE, ACTIONS(49), 1, - anon_sym_COMMA, + anon_sym_COMMA_AT, ACTIONS(51), 1, - anon_sym_COLON, + anon_sym_COMMA, ACTIONS(55), 1, anon_sym_POUNDC, - ACTIONS(349), 1, + ACTIONS(351), 1, anon_sym_RPAREN, - STATE(11), 1, + STATE(28), 1, aux_sym__bare_list_lit_repeat1, - STATE(815), 1, + STATE(780), 1, sym_sym_lit, - STATE(838), 1, + STATE(786), 1, sym__bare_vec_lit, - STATE(841), 1, + STATE(884), 1, sym__bare_set_lit, - STATE(1047), 1, + STATE(1033), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1909), 1, + STATE(1863), 1, sym_dotted_sym_lit, ACTIONS(53), 2, anon_sym_POUND_PLUS, @@ -8034,15 +7935,16 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(323), 2, sym__ws, sym_comment, - STATE(931), 2, + STATE(893), 2, sym__gap, sym_dis_expr, - STATE(842), 3, + STATE(787), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(932), 18, + STATE(895), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -8060,70 +7962,70 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [1989] = 39, + [2002] = 39, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(13), 1, - aux_sym_str_lit_token1, + anon_sym_COLON, + ACTIONS(15), 1, + anon_sym_COLON_COLON, ACTIONS(17), 1, - aux_sym_sym_lit_token1, - ACTIONS(19), 1, - anon_sym_CARET, + aux_sym_str_lit_token1, ACTIONS(21), 1, - anon_sym_POUND_CARET, + aux_sym_sym_lit_token1, ACTIONS(23), 1, - anon_sym_LPAREN, + anon_sym_CARET, ACTIONS(25), 1, - anon_sym_POUND0A, + anon_sym_POUND_CARET, ACTIONS(27), 1, - anon_sym_POUND, + anon_sym_LPAREN, ACTIONS(29), 1, - anon_sym_POUND_QMARK, + anon_sym_POUND0A, ACTIONS(31), 1, - anon_sym_POUND_QMARK_AT, + anon_sym_POUND, ACTIONS(33), 1, - anon_sym_COLON_COLON, + anon_sym_POUND_QMARK, ACTIONS(35), 1, - anon_sym_POUND_SQUOTE, + anon_sym_POUND_QMARK_AT, ACTIONS(37), 1, - anon_sym_POUND_POUND, + anon_sym_POUND_SQUOTE, ACTIONS(39), 1, - anon_sym_POUND_EQ, + anon_sym_POUND_POUND, ACTIONS(41), 1, - anon_sym_AT, + anon_sym_POUND_EQ, ACTIONS(43), 1, - anon_sym_SQUOTE, + anon_sym_AT, ACTIONS(45), 1, - anon_sym_BQUOTE, + anon_sym_SQUOTE, ACTIONS(47), 1, - anon_sym_COMMA_AT, + anon_sym_BQUOTE, ACTIONS(49), 1, - anon_sym_COMMA, + anon_sym_COMMA_AT, ACTIONS(51), 1, - anon_sym_COLON, + anon_sym_COMMA, ACTIONS(55), 1, anon_sym_POUNDC, - ACTIONS(351), 1, - anon_sym_RBRACE, - STATE(28), 1, + ACTIONS(353), 1, + anon_sym_RPAREN, + STATE(11), 1, aux_sym__bare_list_lit_repeat1, - STATE(815), 1, + STATE(780), 1, sym_sym_lit, - STATE(838), 1, + STATE(786), 1, sym__bare_vec_lit, - STATE(841), 1, + STATE(884), 1, sym__bare_set_lit, - STATE(1047), 1, + STATE(1033), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1909), 1, + STATE(1863), 1, sym_dotted_sym_lit, ACTIONS(53), 2, anon_sym_POUND_PLUS, @@ -8137,15 +8039,16 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(323), 2, sym__ws, sym_comment, - STATE(931), 2, + STATE(893), 2, sym__gap, sym_dis_expr, - STATE(842), 3, + STATE(787), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(932), 18, + STATE(895), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -8163,70 +8066,70 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [2131] = 39, + [2145] = 39, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(13), 1, - aux_sym_str_lit_token1, + anon_sym_COLON, + ACTIONS(15), 1, + anon_sym_COLON_COLON, ACTIONS(17), 1, - aux_sym_sym_lit_token1, - ACTIONS(19), 1, - anon_sym_CARET, + aux_sym_str_lit_token1, ACTIONS(21), 1, - anon_sym_POUND_CARET, + aux_sym_sym_lit_token1, ACTIONS(23), 1, - anon_sym_LPAREN, + anon_sym_CARET, ACTIONS(25), 1, - anon_sym_POUND0A, + anon_sym_POUND_CARET, ACTIONS(27), 1, - anon_sym_POUND, + anon_sym_LPAREN, ACTIONS(29), 1, - anon_sym_POUND_QMARK, + anon_sym_POUND0A, ACTIONS(31), 1, - anon_sym_POUND_QMARK_AT, + anon_sym_POUND, ACTIONS(33), 1, - anon_sym_COLON_COLON, + anon_sym_POUND_QMARK, ACTIONS(35), 1, - anon_sym_POUND_SQUOTE, + anon_sym_POUND_QMARK_AT, ACTIONS(37), 1, - anon_sym_POUND_POUND, + anon_sym_POUND_SQUOTE, ACTIONS(39), 1, - anon_sym_POUND_EQ, + anon_sym_POUND_POUND, ACTIONS(41), 1, - anon_sym_AT, + anon_sym_POUND_EQ, ACTIONS(43), 1, - anon_sym_SQUOTE, + anon_sym_AT, ACTIONS(45), 1, - anon_sym_BQUOTE, + anon_sym_SQUOTE, ACTIONS(47), 1, - anon_sym_COMMA_AT, + anon_sym_BQUOTE, ACTIONS(49), 1, - anon_sym_COMMA, + anon_sym_COMMA_AT, ACTIONS(51), 1, - anon_sym_COLON, + anon_sym_COMMA, ACTIONS(55), 1, anon_sym_POUNDC, - ACTIONS(353), 1, - anon_sym_RPAREN, - STATE(29), 1, + ACTIONS(355), 1, + anon_sym_RBRACE, + STATE(11), 1, aux_sym__bare_list_lit_repeat1, - STATE(815), 1, + STATE(780), 1, sym_sym_lit, - STATE(838), 1, + STATE(786), 1, sym__bare_vec_lit, - STATE(841), 1, + STATE(884), 1, sym__bare_set_lit, - STATE(1047), 1, + STATE(1033), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1909), 1, + STATE(1863), 1, sym_dotted_sym_lit, ACTIONS(53), 2, anon_sym_POUND_PLUS, @@ -8240,15 +8143,16 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(323), 2, sym__ws, sym_comment, - STATE(931), 2, + STATE(893), 2, sym__gap, sym_dis_expr, - STATE(842), 3, + STATE(787), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(932), 18, + STATE(895), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -8266,70 +8170,70 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [2273] = 39, + [2288] = 39, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(13), 1, - aux_sym_str_lit_token1, + anon_sym_COLON, + ACTIONS(15), 1, + anon_sym_COLON_COLON, ACTIONS(17), 1, - aux_sym_sym_lit_token1, - ACTIONS(19), 1, - anon_sym_CARET, + aux_sym_str_lit_token1, ACTIONS(21), 1, - anon_sym_POUND_CARET, + aux_sym_sym_lit_token1, ACTIONS(23), 1, - anon_sym_LPAREN, + anon_sym_CARET, ACTIONS(25), 1, - anon_sym_POUND0A, + anon_sym_POUND_CARET, ACTIONS(27), 1, - anon_sym_POUND, + anon_sym_LPAREN, ACTIONS(29), 1, - anon_sym_POUND_QMARK, + anon_sym_POUND0A, ACTIONS(31), 1, - anon_sym_POUND_QMARK_AT, + anon_sym_POUND, ACTIONS(33), 1, - anon_sym_COLON_COLON, + anon_sym_POUND_QMARK, ACTIONS(35), 1, - anon_sym_POUND_SQUOTE, + anon_sym_POUND_QMARK_AT, ACTIONS(37), 1, - anon_sym_POUND_POUND, + anon_sym_POUND_SQUOTE, ACTIONS(39), 1, - anon_sym_POUND_EQ, + anon_sym_POUND_POUND, ACTIONS(41), 1, - anon_sym_AT, + anon_sym_POUND_EQ, ACTIONS(43), 1, - anon_sym_SQUOTE, + anon_sym_AT, ACTIONS(45), 1, - anon_sym_BQUOTE, + anon_sym_SQUOTE, ACTIONS(47), 1, - anon_sym_COMMA_AT, + anon_sym_BQUOTE, ACTIONS(49), 1, - anon_sym_COMMA, + anon_sym_COMMA_AT, ACTIONS(51), 1, - anon_sym_COLON, + anon_sym_COMMA, ACTIONS(55), 1, anon_sym_POUNDC, - ACTIONS(355), 1, + ACTIONS(357), 1, anon_sym_RPAREN, STATE(11), 1, aux_sym__bare_list_lit_repeat1, - STATE(815), 1, + STATE(780), 1, sym_sym_lit, - STATE(838), 1, + STATE(786), 1, sym__bare_vec_lit, - STATE(841), 1, + STATE(884), 1, sym__bare_set_lit, - STATE(1047), 1, + STATE(1033), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1909), 1, + STATE(1863), 1, sym_dotted_sym_lit, ACTIONS(53), 2, anon_sym_POUND_PLUS, @@ -8343,15 +8247,16 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(323), 2, sym__ws, sym_comment, - STATE(931), 2, + STATE(893), 2, sym__gap, sym_dis_expr, - STATE(842), 3, + STATE(787), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(932), 18, + STATE(895), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -8369,70 +8274,70 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [2415] = 39, + [2431] = 39, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(13), 1, - aux_sym_str_lit_token1, + anon_sym_COLON, + ACTIONS(15), 1, + anon_sym_COLON_COLON, ACTIONS(17), 1, - aux_sym_sym_lit_token1, - ACTIONS(19), 1, - anon_sym_CARET, + aux_sym_str_lit_token1, ACTIONS(21), 1, - anon_sym_POUND_CARET, + aux_sym_sym_lit_token1, ACTIONS(23), 1, - anon_sym_LPAREN, + anon_sym_CARET, ACTIONS(25), 1, - anon_sym_POUND0A, + anon_sym_POUND_CARET, ACTIONS(27), 1, - anon_sym_POUND, + anon_sym_LPAREN, ACTIONS(29), 1, - anon_sym_POUND_QMARK, + anon_sym_POUND0A, ACTIONS(31), 1, - anon_sym_POUND_QMARK_AT, + anon_sym_POUND, ACTIONS(33), 1, - anon_sym_COLON_COLON, + anon_sym_POUND_QMARK, ACTIONS(35), 1, - anon_sym_POUND_SQUOTE, + anon_sym_POUND_QMARK_AT, ACTIONS(37), 1, - anon_sym_POUND_POUND, + anon_sym_POUND_SQUOTE, ACTIONS(39), 1, - anon_sym_POUND_EQ, + anon_sym_POUND_POUND, ACTIONS(41), 1, - anon_sym_AT, + anon_sym_POUND_EQ, ACTIONS(43), 1, - anon_sym_SQUOTE, + anon_sym_AT, ACTIONS(45), 1, - anon_sym_BQUOTE, + anon_sym_SQUOTE, ACTIONS(47), 1, - anon_sym_COMMA_AT, + anon_sym_BQUOTE, ACTIONS(49), 1, - anon_sym_COMMA, + anon_sym_COMMA_AT, ACTIONS(51), 1, - anon_sym_COLON, + anon_sym_COMMA, ACTIONS(55), 1, anon_sym_POUNDC, - ACTIONS(357), 1, - anon_sym_RBRACE, - STATE(11), 1, + ACTIONS(359), 1, + anon_sym_RPAREN, + STATE(36), 1, aux_sym__bare_list_lit_repeat1, - STATE(815), 1, + STATE(780), 1, sym_sym_lit, - STATE(838), 1, + STATE(786), 1, sym__bare_vec_lit, - STATE(841), 1, + STATE(884), 1, sym__bare_set_lit, - STATE(1047), 1, + STATE(1033), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1909), 1, + STATE(1863), 1, sym_dotted_sym_lit, ACTIONS(53), 2, anon_sym_POUND_PLUS, @@ -8446,15 +8351,16 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(323), 2, sym__ws, sym_comment, - STATE(931), 2, + STATE(893), 2, sym__gap, sym_dis_expr, - STATE(842), 3, + STATE(787), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(932), 18, + STATE(895), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -8472,70 +8378,70 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [2557] = 39, + [2574] = 39, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(13), 1, - aux_sym_str_lit_token1, + anon_sym_COLON, + ACTIONS(15), 1, + anon_sym_COLON_COLON, ACTIONS(17), 1, - aux_sym_sym_lit_token1, - ACTIONS(19), 1, - anon_sym_CARET, + aux_sym_str_lit_token1, ACTIONS(21), 1, - anon_sym_POUND_CARET, + aux_sym_sym_lit_token1, ACTIONS(23), 1, - anon_sym_LPAREN, + anon_sym_CARET, ACTIONS(25), 1, - anon_sym_POUND0A, + anon_sym_POUND_CARET, ACTIONS(27), 1, - anon_sym_POUND, + anon_sym_LPAREN, ACTIONS(29), 1, - anon_sym_POUND_QMARK, + anon_sym_POUND0A, ACTIONS(31), 1, - anon_sym_POUND_QMARK_AT, + anon_sym_POUND, ACTIONS(33), 1, - anon_sym_COLON_COLON, + anon_sym_POUND_QMARK, ACTIONS(35), 1, - anon_sym_POUND_SQUOTE, + anon_sym_POUND_QMARK_AT, ACTIONS(37), 1, - anon_sym_POUND_POUND, + anon_sym_POUND_SQUOTE, ACTIONS(39), 1, - anon_sym_POUND_EQ, + anon_sym_POUND_POUND, ACTIONS(41), 1, - anon_sym_AT, + anon_sym_POUND_EQ, ACTIONS(43), 1, - anon_sym_SQUOTE, + anon_sym_AT, ACTIONS(45), 1, - anon_sym_BQUOTE, + anon_sym_SQUOTE, ACTIONS(47), 1, - anon_sym_COMMA_AT, + anon_sym_BQUOTE, ACTIONS(49), 1, - anon_sym_COMMA, + anon_sym_COMMA_AT, ACTIONS(51), 1, - anon_sym_COLON, + anon_sym_COMMA, ACTIONS(55), 1, anon_sym_POUNDC, - ACTIONS(359), 1, + ACTIONS(361), 1, anon_sym_RPAREN, STATE(11), 1, aux_sym__bare_list_lit_repeat1, - STATE(815), 1, + STATE(780), 1, sym_sym_lit, - STATE(838), 1, + STATE(786), 1, sym__bare_vec_lit, - STATE(841), 1, + STATE(884), 1, sym__bare_set_lit, - STATE(1047), 1, + STATE(1033), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1909), 1, + STATE(1863), 1, sym_dotted_sym_lit, ACTIONS(53), 2, anon_sym_POUND_PLUS, @@ -8549,15 +8455,16 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(323), 2, sym__ws, sym_comment, - STATE(931), 2, + STATE(893), 2, sym__gap, sym_dis_expr, - STATE(842), 3, + STATE(787), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(932), 18, + STATE(895), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -8575,70 +8482,70 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [2699] = 39, + [2717] = 39, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(13), 1, - aux_sym_str_lit_token1, + anon_sym_COLON, + ACTIONS(15), 1, + anon_sym_COLON_COLON, ACTIONS(17), 1, - aux_sym_sym_lit_token1, - ACTIONS(19), 1, - anon_sym_CARET, + aux_sym_str_lit_token1, ACTIONS(21), 1, - anon_sym_POUND_CARET, + aux_sym_sym_lit_token1, ACTIONS(23), 1, - anon_sym_LPAREN, + anon_sym_CARET, ACTIONS(25), 1, - anon_sym_POUND0A, + anon_sym_POUND_CARET, ACTIONS(27), 1, - anon_sym_POUND, + anon_sym_LPAREN, ACTIONS(29), 1, - anon_sym_POUND_QMARK, + anon_sym_POUND0A, ACTIONS(31), 1, - anon_sym_POUND_QMARK_AT, + anon_sym_POUND, ACTIONS(33), 1, - anon_sym_COLON_COLON, + anon_sym_POUND_QMARK, ACTIONS(35), 1, - anon_sym_POUND_SQUOTE, + anon_sym_POUND_QMARK_AT, ACTIONS(37), 1, - anon_sym_POUND_POUND, + anon_sym_POUND_SQUOTE, ACTIONS(39), 1, - anon_sym_POUND_EQ, + anon_sym_POUND_POUND, ACTIONS(41), 1, - anon_sym_AT, + anon_sym_POUND_EQ, ACTIONS(43), 1, - anon_sym_SQUOTE, + anon_sym_AT, ACTIONS(45), 1, - anon_sym_BQUOTE, + anon_sym_SQUOTE, ACTIONS(47), 1, - anon_sym_COMMA_AT, + anon_sym_BQUOTE, ACTIONS(49), 1, - anon_sym_COMMA, + anon_sym_COMMA_AT, ACTIONS(51), 1, - anon_sym_COLON, + anon_sym_COMMA, ACTIONS(55), 1, anon_sym_POUNDC, - ACTIONS(361), 1, + ACTIONS(363), 1, anon_sym_RPAREN, - STATE(34), 1, + STATE(11), 1, aux_sym__bare_list_lit_repeat1, - STATE(815), 1, + STATE(780), 1, sym_sym_lit, - STATE(838), 1, + STATE(786), 1, sym__bare_vec_lit, - STATE(841), 1, + STATE(884), 1, sym__bare_set_lit, - STATE(1047), 1, + STATE(1033), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1909), 1, + STATE(1863), 1, sym_dotted_sym_lit, ACTIONS(53), 2, anon_sym_POUND_PLUS, @@ -8652,15 +8559,16 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(323), 2, sym__ws, sym_comment, - STATE(931), 2, + STATE(893), 2, sym__gap, sym_dis_expr, - STATE(842), 3, + STATE(787), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(932), 18, + STATE(895), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -8678,70 +8586,70 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [2841] = 39, + [2860] = 39, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(13), 1, - aux_sym_str_lit_token1, + anon_sym_COLON, + ACTIONS(15), 1, + anon_sym_COLON_COLON, ACTIONS(17), 1, - aux_sym_sym_lit_token1, - ACTIONS(19), 1, - anon_sym_CARET, + aux_sym_str_lit_token1, ACTIONS(21), 1, - anon_sym_POUND_CARET, + aux_sym_sym_lit_token1, ACTIONS(23), 1, - anon_sym_LPAREN, + anon_sym_CARET, ACTIONS(25), 1, - anon_sym_POUND0A, + anon_sym_POUND_CARET, ACTIONS(27), 1, - anon_sym_POUND, + anon_sym_LPAREN, ACTIONS(29), 1, - anon_sym_POUND_QMARK, + anon_sym_POUND0A, ACTIONS(31), 1, - anon_sym_POUND_QMARK_AT, + anon_sym_POUND, ACTIONS(33), 1, - anon_sym_COLON_COLON, + anon_sym_POUND_QMARK, ACTIONS(35), 1, - anon_sym_POUND_SQUOTE, + anon_sym_POUND_QMARK_AT, ACTIONS(37), 1, - anon_sym_POUND_POUND, + anon_sym_POUND_SQUOTE, ACTIONS(39), 1, - anon_sym_POUND_EQ, + anon_sym_POUND_POUND, ACTIONS(41), 1, - anon_sym_AT, + anon_sym_POUND_EQ, ACTIONS(43), 1, - anon_sym_SQUOTE, + anon_sym_AT, ACTIONS(45), 1, - anon_sym_BQUOTE, + anon_sym_SQUOTE, ACTIONS(47), 1, - anon_sym_COMMA_AT, + anon_sym_BQUOTE, ACTIONS(49), 1, - anon_sym_COMMA, + anon_sym_COMMA_AT, ACTIONS(51), 1, - anon_sym_COLON, + anon_sym_COMMA, ACTIONS(55), 1, anon_sym_POUNDC, - ACTIONS(363), 1, - anon_sym_RPAREN, + ACTIONS(365), 1, + anon_sym_RBRACE, STATE(11), 1, aux_sym__bare_list_lit_repeat1, - STATE(815), 1, + STATE(780), 1, sym_sym_lit, - STATE(838), 1, + STATE(786), 1, sym__bare_vec_lit, - STATE(841), 1, + STATE(884), 1, sym__bare_set_lit, - STATE(1047), 1, + STATE(1033), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1909), 1, + STATE(1863), 1, sym_dotted_sym_lit, ACTIONS(53), 2, anon_sym_POUND_PLUS, @@ -8755,15 +8663,16 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(323), 2, sym__ws, sym_comment, - STATE(931), 2, + STATE(893), 2, sym__gap, sym_dis_expr, - STATE(842), 3, + STATE(787), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(932), 18, + STATE(895), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -8781,92 +8690,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [2983] = 39, + [3003] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(13), 1, - aux_sym_str_lit_token1, + anon_sym_COLON, + ACTIONS(15), 1, + anon_sym_COLON_COLON, ACTIONS(17), 1, - aux_sym_sym_lit_token1, - ACTIONS(19), 1, - anon_sym_CARET, + aux_sym_str_lit_token1, ACTIONS(21), 1, - anon_sym_POUND_CARET, + aux_sym_sym_lit_token1, ACTIONS(23), 1, - anon_sym_LPAREN, + anon_sym_CARET, ACTIONS(25), 1, - anon_sym_POUND0A, + anon_sym_POUND_CARET, ACTIONS(27), 1, - anon_sym_POUND, + anon_sym_LPAREN, ACTIONS(29), 1, - anon_sym_POUND_QMARK, + anon_sym_POUND0A, ACTIONS(31), 1, - anon_sym_POUND_QMARK_AT, + anon_sym_POUND, ACTIONS(33), 1, - anon_sym_COLON_COLON, + anon_sym_POUND_QMARK, ACTIONS(35), 1, - anon_sym_POUND_SQUOTE, + anon_sym_POUND_QMARK_AT, ACTIONS(37), 1, - anon_sym_POUND_POUND, + anon_sym_POUND_SQUOTE, ACTIONS(39), 1, - anon_sym_POUND_EQ, + anon_sym_POUND_POUND, ACTIONS(41), 1, - anon_sym_AT, + anon_sym_POUND_EQ, ACTIONS(43), 1, - anon_sym_SQUOTE, + anon_sym_AT, ACTIONS(45), 1, - anon_sym_BQUOTE, + anon_sym_SQUOTE, ACTIONS(47), 1, - anon_sym_COMMA_AT, + anon_sym_BQUOTE, ACTIONS(49), 1, - anon_sym_COMMA, + anon_sym_COMMA_AT, ACTIONS(51), 1, - anon_sym_COLON, + anon_sym_COMMA, ACTIONS(55), 1, anon_sym_POUNDC, - ACTIONS(365), 1, - anon_sym_RBRACE, - STATE(35), 1, - aux_sym__bare_list_lit_repeat1, - STATE(815), 1, + ACTIONS(367), 1, + ts_builtin_sym_end, + STATE(780), 1, sym_sym_lit, - STATE(838), 1, + STATE(786), 1, sym__bare_vec_lit, - STATE(841), 1, + STATE(884), 1, sym__bare_set_lit, - STATE(1047), 1, + STATE(1033), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1909), 1, + STATE(1863), 1, sym_dotted_sym_lit, + ACTIONS(7), 2, + sym__ws, + sym_comment, ACTIONS(53), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(184), 2, + ACTIONS(369), 2, sym_num_lit, sym_char_lit, - ACTIONS(186), 2, + ACTIONS(371), 2, sym_nil_lit, sym_fancy_literal, - ACTIONS(323), 2, - sym__ws, - sym_comment, - STATE(931), 2, + STATE(894), 2, sym__gap, sym_dis_expr, - STATE(842), 3, + STATE(787), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(932), 18, + STATE(63), 20, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -8884,90 +8792,94 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [3125] = 38, + aux_sym_source_repeat1, + [3144] = 39, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(13), 1, - aux_sym_str_lit_token1, + anon_sym_COLON, + ACTIONS(15), 1, + anon_sym_COLON_COLON, ACTIONS(17), 1, - aux_sym_sym_lit_token1, - ACTIONS(19), 1, - anon_sym_CARET, + aux_sym_str_lit_token1, ACTIONS(21), 1, - anon_sym_POUND_CARET, + aux_sym_sym_lit_token1, ACTIONS(23), 1, - anon_sym_LPAREN, + anon_sym_CARET, ACTIONS(25), 1, - anon_sym_POUND0A, + anon_sym_POUND_CARET, ACTIONS(27), 1, - anon_sym_POUND, + anon_sym_LPAREN, ACTIONS(29), 1, - anon_sym_POUND_QMARK, + anon_sym_POUND0A, ACTIONS(31), 1, - anon_sym_POUND_QMARK_AT, + anon_sym_POUND, ACTIONS(33), 1, - anon_sym_COLON_COLON, + anon_sym_POUND_QMARK, ACTIONS(35), 1, - anon_sym_POUND_SQUOTE, + anon_sym_POUND_QMARK_AT, ACTIONS(37), 1, - anon_sym_POUND_POUND, + anon_sym_POUND_SQUOTE, ACTIONS(39), 1, - anon_sym_POUND_EQ, + anon_sym_POUND_POUND, ACTIONS(41), 1, - anon_sym_AT, + anon_sym_POUND_EQ, ACTIONS(43), 1, - anon_sym_SQUOTE, + anon_sym_AT, ACTIONS(45), 1, - anon_sym_BQUOTE, + anon_sym_SQUOTE, ACTIONS(47), 1, - anon_sym_COMMA_AT, + anon_sym_BQUOTE, ACTIONS(49), 1, - anon_sym_COMMA, + anon_sym_COMMA_AT, ACTIONS(51), 1, - anon_sym_COLON, + anon_sym_COMMA, ACTIONS(55), 1, anon_sym_POUNDC, - ACTIONS(367), 1, - ts_builtin_sym_end, - STATE(815), 1, + ACTIONS(373), 1, + anon_sym_RPAREN, + STATE(11), 1, + aux_sym__bare_list_lit_repeat1, + STATE(780), 1, sym_sym_lit, - STATE(838), 1, + STATE(786), 1, sym__bare_vec_lit, - STATE(841), 1, + STATE(884), 1, sym__bare_set_lit, - STATE(1047), 1, + STATE(1033), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1909), 1, + STATE(1863), 1, sym_dotted_sym_lit, - ACTIONS(7), 2, - sym__ws, - sym_comment, ACTIONS(53), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(369), 2, + ACTIONS(184), 2, sym_num_lit, sym_char_lit, - ACTIONS(371), 2, + ACTIONS(186), 2, sym_nil_lit, sym_fancy_literal, - STATE(933), 2, + ACTIONS(323), 2, + sym__ws, + sym_comment, + STATE(893), 2, sym__gap, sym_dis_expr, - STATE(842), 3, + STATE(787), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(65), 19, + STATE(895), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -8985,71 +8897,70 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - aux_sym_source_repeat1, - [3265] = 39, + [3287] = 39, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(13), 1, - aux_sym_str_lit_token1, + anon_sym_COLON, + ACTIONS(15), 1, + anon_sym_COLON_COLON, ACTIONS(17), 1, - aux_sym_sym_lit_token1, - ACTIONS(19), 1, - anon_sym_CARET, + aux_sym_str_lit_token1, ACTIONS(21), 1, - anon_sym_POUND_CARET, + aux_sym_sym_lit_token1, ACTIONS(23), 1, - anon_sym_LPAREN, + anon_sym_CARET, ACTIONS(25), 1, - anon_sym_POUND0A, + anon_sym_POUND_CARET, ACTIONS(27), 1, - anon_sym_POUND, + anon_sym_LPAREN, ACTIONS(29), 1, - anon_sym_POUND_QMARK, + anon_sym_POUND0A, ACTIONS(31), 1, - anon_sym_POUND_QMARK_AT, + anon_sym_POUND, ACTIONS(33), 1, - anon_sym_COLON_COLON, + anon_sym_POUND_QMARK, ACTIONS(35), 1, - anon_sym_POUND_SQUOTE, + anon_sym_POUND_QMARK_AT, ACTIONS(37), 1, - anon_sym_POUND_POUND, + anon_sym_POUND_SQUOTE, ACTIONS(39), 1, - anon_sym_POUND_EQ, + anon_sym_POUND_POUND, ACTIONS(41), 1, - anon_sym_AT, + anon_sym_POUND_EQ, ACTIONS(43), 1, - anon_sym_SQUOTE, + anon_sym_AT, ACTIONS(45), 1, - anon_sym_BQUOTE, + anon_sym_SQUOTE, ACTIONS(47), 1, - anon_sym_COMMA_AT, + anon_sym_BQUOTE, ACTIONS(49), 1, - anon_sym_COMMA, + anon_sym_COMMA_AT, ACTIONS(51), 1, - anon_sym_COLON, + anon_sym_COMMA, ACTIONS(55), 1, anon_sym_POUNDC, - ACTIONS(373), 1, + ACTIONS(375), 1, anon_sym_RPAREN, - STATE(11), 1, + STATE(13), 1, aux_sym__bare_list_lit_repeat1, - STATE(815), 1, + STATE(780), 1, sym_sym_lit, - STATE(838), 1, + STATE(786), 1, sym__bare_vec_lit, - STATE(841), 1, + STATE(884), 1, sym__bare_set_lit, - STATE(1047), 1, + STATE(1033), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1909), 1, + STATE(1863), 1, sym_dotted_sym_lit, ACTIONS(53), 2, anon_sym_POUND_PLUS, @@ -9063,15 +8974,16 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(323), 2, sym__ws, sym_comment, - STATE(931), 2, + STATE(893), 2, sym__gap, sym_dis_expr, - STATE(842), 3, + STATE(787), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(932), 18, + STATE(895), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -9089,70 +9001,70 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [3407] = 39, + [3430] = 39, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(13), 1, - aux_sym_str_lit_token1, + anon_sym_COLON, + ACTIONS(15), 1, + anon_sym_COLON_COLON, ACTIONS(17), 1, - aux_sym_sym_lit_token1, - ACTIONS(19), 1, - anon_sym_CARET, + aux_sym_str_lit_token1, ACTIONS(21), 1, - anon_sym_POUND_CARET, + aux_sym_sym_lit_token1, ACTIONS(23), 1, - anon_sym_LPAREN, + anon_sym_CARET, ACTIONS(25), 1, - anon_sym_POUND0A, + anon_sym_POUND_CARET, ACTIONS(27), 1, - anon_sym_POUND, + anon_sym_LPAREN, ACTIONS(29), 1, - anon_sym_POUND_QMARK, + anon_sym_POUND0A, ACTIONS(31), 1, - anon_sym_POUND_QMARK_AT, + anon_sym_POUND, ACTIONS(33), 1, - anon_sym_COLON_COLON, + anon_sym_POUND_QMARK, ACTIONS(35), 1, - anon_sym_POUND_SQUOTE, + anon_sym_POUND_QMARK_AT, ACTIONS(37), 1, - anon_sym_POUND_POUND, + anon_sym_POUND_SQUOTE, ACTIONS(39), 1, - anon_sym_POUND_EQ, + anon_sym_POUND_POUND, ACTIONS(41), 1, - anon_sym_AT, + anon_sym_POUND_EQ, ACTIONS(43), 1, - anon_sym_SQUOTE, + anon_sym_AT, ACTIONS(45), 1, - anon_sym_BQUOTE, + anon_sym_SQUOTE, ACTIONS(47), 1, - anon_sym_COMMA_AT, + anon_sym_BQUOTE, ACTIONS(49), 1, - anon_sym_COMMA, + anon_sym_COMMA_AT, ACTIONS(51), 1, - anon_sym_COLON, + anon_sym_COMMA, ACTIONS(55), 1, anon_sym_POUNDC, - ACTIONS(375), 1, - anon_sym_RBRACE, + ACTIONS(377), 1, + anon_sym_RPAREN, STATE(11), 1, aux_sym__bare_list_lit_repeat1, - STATE(815), 1, + STATE(780), 1, sym_sym_lit, - STATE(838), 1, + STATE(786), 1, sym__bare_vec_lit, - STATE(841), 1, + STATE(884), 1, sym__bare_set_lit, - STATE(1047), 1, + STATE(1033), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1909), 1, + STATE(1863), 1, sym_dotted_sym_lit, ACTIONS(53), 2, anon_sym_POUND_PLUS, @@ -9166,15 +9078,16 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(323), 2, sym__ws, sym_comment, - STATE(931), 2, + STATE(893), 2, sym__gap, sym_dis_expr, - STATE(842), 3, + STATE(787), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(932), 18, + STATE(895), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -9192,70 +9105,70 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [3549] = 39, + [3573] = 39, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(13), 1, - aux_sym_str_lit_token1, + anon_sym_COLON, + ACTIONS(15), 1, + anon_sym_COLON_COLON, ACTIONS(17), 1, - aux_sym_sym_lit_token1, - ACTIONS(19), 1, - anon_sym_CARET, + aux_sym_str_lit_token1, ACTIONS(21), 1, - anon_sym_POUND_CARET, + aux_sym_sym_lit_token1, ACTIONS(23), 1, - anon_sym_LPAREN, + anon_sym_CARET, ACTIONS(25), 1, - anon_sym_POUND0A, + anon_sym_POUND_CARET, ACTIONS(27), 1, - anon_sym_POUND, + anon_sym_LPAREN, ACTIONS(29), 1, - anon_sym_POUND_QMARK, + anon_sym_POUND0A, ACTIONS(31), 1, - anon_sym_POUND_QMARK_AT, + anon_sym_POUND, ACTIONS(33), 1, - anon_sym_COLON_COLON, + anon_sym_POUND_QMARK, ACTIONS(35), 1, - anon_sym_POUND_SQUOTE, + anon_sym_POUND_QMARK_AT, ACTIONS(37), 1, - anon_sym_POUND_POUND, + anon_sym_POUND_SQUOTE, ACTIONS(39), 1, - anon_sym_POUND_EQ, + anon_sym_POUND_POUND, ACTIONS(41), 1, - anon_sym_AT, + anon_sym_POUND_EQ, ACTIONS(43), 1, - anon_sym_SQUOTE, + anon_sym_AT, ACTIONS(45), 1, - anon_sym_BQUOTE, + anon_sym_SQUOTE, ACTIONS(47), 1, - anon_sym_COMMA_AT, + anon_sym_BQUOTE, ACTIONS(49), 1, - anon_sym_COMMA, + anon_sym_COMMA_AT, ACTIONS(51), 1, - anon_sym_COLON, + anon_sym_COMMA, ACTIONS(55), 1, anon_sym_POUNDC, - ACTIONS(377), 1, - anon_sym_RPAREN, + ACTIONS(379), 1, + anon_sym_RBRACE, STATE(11), 1, aux_sym__bare_list_lit_repeat1, - STATE(815), 1, + STATE(780), 1, sym_sym_lit, - STATE(838), 1, + STATE(786), 1, sym__bare_vec_lit, - STATE(841), 1, + STATE(884), 1, sym__bare_set_lit, - STATE(1047), 1, + STATE(1033), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1909), 1, + STATE(1863), 1, sym_dotted_sym_lit, ACTIONS(53), 2, anon_sym_POUND_PLUS, @@ -9269,15 +9182,16 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(323), 2, sym__ws, sym_comment, - STATE(931), 2, + STATE(893), 2, sym__gap, sym_dis_expr, - STATE(842), 3, + STATE(787), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(932), 18, + STATE(895), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -9295,92 +9209,93 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [3691] = 39, + [3716] = 39, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(19), 1, - anon_sym_CARET, - ACTIONS(21), 1, - anon_sym_POUND_CARET, - ACTIONS(61), 1, + ACTIONS(13), 1, + anon_sym_COLON, + ACTIONS(15), 1, + anon_sym_COLON_COLON, + ACTIONS(17), 1, aux_sym_str_lit_token1, - ACTIONS(65), 1, + ACTIONS(21), 1, aux_sym_sym_lit_token1, - ACTIONS(67), 1, + ACTIONS(23), 1, + anon_sym_CARET, + ACTIONS(25), 1, + anon_sym_POUND_CARET, + ACTIONS(27), 1, + anon_sym_LPAREN, + ACTIONS(29), 1, anon_sym_POUND0A, - ACTIONS(69), 1, + ACTIONS(31), 1, anon_sym_POUND, - ACTIONS(71), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(73), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(75), 1, - anon_sym_COLON_COLON, - ACTIONS(77), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(79), 1, + ACTIONS(39), 1, anon_sym_POUND_POUND, - ACTIONS(81), 1, + ACTIONS(41), 1, anon_sym_POUND_EQ, - ACTIONS(83), 1, + ACTIONS(43), 1, anon_sym_AT, - ACTIONS(85), 1, + ACTIONS(45), 1, anon_sym_SQUOTE, - ACTIONS(87), 1, + ACTIONS(47), 1, anon_sym_BQUOTE, - ACTIONS(89), 1, + ACTIONS(49), 1, anon_sym_COMMA_AT, - ACTIONS(91), 1, + ACTIONS(51), 1, anon_sym_COMMA, - ACTIONS(95), 1, - anon_sym_COLON, - ACTIONS(99), 1, + ACTIONS(55), 1, anon_sym_POUNDC, ACTIONS(381), 1, - anon_sym_LPAREN, - STATE(2), 1, - aux_sym_do_clause_repeat1, - STATE(192), 1, - aux_sym_dis_expr_repeat1, - STATE(446), 1, + anon_sym_RBRACE, + STATE(32), 1, + aux_sym__bare_list_lit_repeat1, + STATE(780), 1, sym_sym_lit, - STATE(513), 1, - sym__bare_set_lit, - STATE(514), 1, + STATE(786), 1, sym__bare_vec_lit, - STATE(1044), 1, + STATE(884), 1, + sym__bare_set_lit, + STATE(1033), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1907), 1, + STATE(1863), 1, sym_dotted_sym_lit, - ACTIONS(59), 2, + ACTIONS(53), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(184), 2, sym_num_lit, sym_char_lit, - ACTIONS(63), 2, + ACTIONS(186), 2, sym_nil_lit, sym_fancy_literal, - ACTIONS(97), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(379), 2, + ACTIONS(323), 2, sym__ws, sym_comment, - STATE(934), 2, + STATE(893), 2, sym__gap, sym_dis_expr, - STATE(515), 3, + STATE(787), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(437), 18, + STATE(895), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -9398,70 +9313,70 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [3833] = 39, + [3859] = 39, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(13), 1, - aux_sym_str_lit_token1, + anon_sym_COLON, + ACTIONS(15), 1, + anon_sym_COLON_COLON, ACTIONS(17), 1, - aux_sym_sym_lit_token1, - ACTIONS(19), 1, - anon_sym_CARET, + aux_sym_str_lit_token1, ACTIONS(21), 1, - anon_sym_POUND_CARET, + aux_sym_sym_lit_token1, ACTIONS(23), 1, - anon_sym_LPAREN, + anon_sym_CARET, ACTIONS(25), 1, - anon_sym_POUND0A, + anon_sym_POUND_CARET, ACTIONS(27), 1, - anon_sym_POUND, + anon_sym_LPAREN, ACTIONS(29), 1, - anon_sym_POUND_QMARK, + anon_sym_POUND0A, ACTIONS(31), 1, - anon_sym_POUND_QMARK_AT, + anon_sym_POUND, ACTIONS(33), 1, - anon_sym_COLON_COLON, + anon_sym_POUND_QMARK, ACTIONS(35), 1, - anon_sym_POUND_SQUOTE, + anon_sym_POUND_QMARK_AT, ACTIONS(37), 1, - anon_sym_POUND_POUND, + anon_sym_POUND_SQUOTE, ACTIONS(39), 1, - anon_sym_POUND_EQ, + anon_sym_POUND_POUND, ACTIONS(41), 1, - anon_sym_AT, + anon_sym_POUND_EQ, ACTIONS(43), 1, - anon_sym_SQUOTE, + anon_sym_AT, ACTIONS(45), 1, - anon_sym_BQUOTE, + anon_sym_SQUOTE, ACTIONS(47), 1, - anon_sym_COMMA_AT, + anon_sym_BQUOTE, ACTIONS(49), 1, - anon_sym_COMMA, + anon_sym_COMMA_AT, ACTIONS(51), 1, - anon_sym_COLON, + anon_sym_COMMA, ACTIONS(55), 1, anon_sym_POUNDC, ACTIONS(383), 1, anon_sym_RPAREN, - STATE(43), 1, + STATE(19), 1, aux_sym__bare_list_lit_repeat1, - STATE(815), 1, + STATE(780), 1, sym_sym_lit, - STATE(838), 1, + STATE(786), 1, sym__bare_vec_lit, - STATE(841), 1, + STATE(884), 1, sym__bare_set_lit, - STATE(1047), 1, + STATE(1033), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1909), 1, + STATE(1863), 1, sym_dotted_sym_lit, ACTIONS(53), 2, anon_sym_POUND_PLUS, @@ -9475,15 +9390,16 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(323), 2, sym__ws, sym_comment, - STATE(931), 2, + STATE(893), 2, sym__gap, sym_dis_expr, - STATE(842), 3, + STATE(787), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(932), 18, + STATE(895), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -9501,70 +9417,70 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [3975] = 39, + [4002] = 39, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(13), 1, - aux_sym_str_lit_token1, + anon_sym_COLON, + ACTIONS(15), 1, + anon_sym_COLON_COLON, ACTIONS(17), 1, - aux_sym_sym_lit_token1, - ACTIONS(19), 1, - anon_sym_CARET, + aux_sym_str_lit_token1, ACTIONS(21), 1, - anon_sym_POUND_CARET, + aux_sym_sym_lit_token1, ACTIONS(23), 1, - anon_sym_LPAREN, + anon_sym_CARET, ACTIONS(25), 1, - anon_sym_POUND0A, + anon_sym_POUND_CARET, ACTIONS(27), 1, - anon_sym_POUND, + anon_sym_LPAREN, ACTIONS(29), 1, - anon_sym_POUND_QMARK, + anon_sym_POUND0A, ACTIONS(31), 1, - anon_sym_POUND_QMARK_AT, + anon_sym_POUND, ACTIONS(33), 1, - anon_sym_COLON_COLON, + anon_sym_POUND_QMARK, ACTIONS(35), 1, - anon_sym_POUND_SQUOTE, + anon_sym_POUND_QMARK_AT, ACTIONS(37), 1, - anon_sym_POUND_POUND, + anon_sym_POUND_SQUOTE, ACTIONS(39), 1, - anon_sym_POUND_EQ, + anon_sym_POUND_POUND, ACTIONS(41), 1, - anon_sym_AT, + anon_sym_POUND_EQ, ACTIONS(43), 1, - anon_sym_SQUOTE, + anon_sym_AT, ACTIONS(45), 1, - anon_sym_BQUOTE, + anon_sym_SQUOTE, ACTIONS(47), 1, - anon_sym_COMMA_AT, + anon_sym_BQUOTE, ACTIONS(49), 1, - anon_sym_COMMA, + anon_sym_COMMA_AT, ACTIONS(51), 1, - anon_sym_COLON, + anon_sym_COMMA, ACTIONS(55), 1, anon_sym_POUNDC, ACTIONS(385), 1, anon_sym_RPAREN, STATE(11), 1, aux_sym__bare_list_lit_repeat1, - STATE(815), 1, + STATE(780), 1, sym_sym_lit, - STATE(838), 1, + STATE(786), 1, sym__bare_vec_lit, - STATE(841), 1, + STATE(884), 1, sym__bare_set_lit, - STATE(1047), 1, + STATE(1033), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1909), 1, + STATE(1863), 1, sym_dotted_sym_lit, ACTIONS(53), 2, anon_sym_POUND_PLUS, @@ -9578,15 +9494,16 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(323), 2, sym__ws, sym_comment, - STATE(931), 2, + STATE(893), 2, sym__gap, sym_dis_expr, - STATE(842), 3, + STATE(787), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(932), 18, + STATE(895), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -9604,70 +9521,70 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [4117] = 39, + [4145] = 39, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(13), 1, - aux_sym_str_lit_token1, + anon_sym_COLON, + ACTIONS(15), 1, + anon_sym_COLON_COLON, ACTIONS(17), 1, - aux_sym_sym_lit_token1, - ACTIONS(19), 1, - anon_sym_CARET, + aux_sym_str_lit_token1, ACTIONS(21), 1, - anon_sym_POUND_CARET, + aux_sym_sym_lit_token1, ACTIONS(23), 1, - anon_sym_LPAREN, + anon_sym_CARET, ACTIONS(25), 1, - anon_sym_POUND0A, + anon_sym_POUND_CARET, ACTIONS(27), 1, - anon_sym_POUND, + anon_sym_LPAREN, ACTIONS(29), 1, - anon_sym_POUND_QMARK, + anon_sym_POUND0A, ACTIONS(31), 1, - anon_sym_POUND_QMARK_AT, + anon_sym_POUND, ACTIONS(33), 1, - anon_sym_COLON_COLON, + anon_sym_POUND_QMARK, ACTIONS(35), 1, - anon_sym_POUND_SQUOTE, + anon_sym_POUND_QMARK_AT, ACTIONS(37), 1, - anon_sym_POUND_POUND, + anon_sym_POUND_SQUOTE, ACTIONS(39), 1, - anon_sym_POUND_EQ, + anon_sym_POUND_POUND, ACTIONS(41), 1, - anon_sym_AT, + anon_sym_POUND_EQ, ACTIONS(43), 1, - anon_sym_SQUOTE, + anon_sym_AT, ACTIONS(45), 1, - anon_sym_BQUOTE, + anon_sym_SQUOTE, ACTIONS(47), 1, - anon_sym_COMMA_AT, + anon_sym_BQUOTE, ACTIONS(49), 1, - anon_sym_COMMA, + anon_sym_COMMA_AT, ACTIONS(51), 1, - anon_sym_COLON, + anon_sym_COMMA, ACTIONS(55), 1, anon_sym_POUNDC, ACTIONS(387), 1, - anon_sym_RPAREN, - STATE(11), 1, + anon_sym_RBRACE, + STATE(57), 1, aux_sym__bare_list_lit_repeat1, - STATE(815), 1, + STATE(780), 1, sym_sym_lit, - STATE(838), 1, + STATE(786), 1, sym__bare_vec_lit, - STATE(841), 1, + STATE(884), 1, sym__bare_set_lit, - STATE(1047), 1, + STATE(1033), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1909), 1, + STATE(1863), 1, sym_dotted_sym_lit, ACTIONS(53), 2, anon_sym_POUND_PLUS, @@ -9681,15 +9598,16 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(323), 2, sym__ws, sym_comment, - STATE(931), 2, + STATE(893), 2, sym__gap, sym_dis_expr, - STATE(842), 3, + STATE(787), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(932), 18, + STATE(895), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -9707,70 +9625,70 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [4259] = 39, + [4288] = 39, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(13), 1, - aux_sym_str_lit_token1, + anon_sym_COLON, + ACTIONS(15), 1, + anon_sym_COLON_COLON, ACTIONS(17), 1, - aux_sym_sym_lit_token1, - ACTIONS(19), 1, - anon_sym_CARET, + aux_sym_str_lit_token1, ACTIONS(21), 1, - anon_sym_POUND_CARET, + aux_sym_sym_lit_token1, ACTIONS(23), 1, - anon_sym_LPAREN, + anon_sym_CARET, ACTIONS(25), 1, - anon_sym_POUND0A, + anon_sym_POUND_CARET, ACTIONS(27), 1, - anon_sym_POUND, + anon_sym_LPAREN, ACTIONS(29), 1, - anon_sym_POUND_QMARK, + anon_sym_POUND0A, ACTIONS(31), 1, - anon_sym_POUND_QMARK_AT, + anon_sym_POUND, ACTIONS(33), 1, - anon_sym_COLON_COLON, + anon_sym_POUND_QMARK, ACTIONS(35), 1, - anon_sym_POUND_SQUOTE, + anon_sym_POUND_QMARK_AT, ACTIONS(37), 1, - anon_sym_POUND_POUND, + anon_sym_POUND_SQUOTE, ACTIONS(39), 1, - anon_sym_POUND_EQ, + anon_sym_POUND_POUND, ACTIONS(41), 1, - anon_sym_AT, + anon_sym_POUND_EQ, ACTIONS(43), 1, - anon_sym_SQUOTE, + anon_sym_AT, ACTIONS(45), 1, - anon_sym_BQUOTE, + anon_sym_SQUOTE, ACTIONS(47), 1, - anon_sym_COMMA_AT, + anon_sym_BQUOTE, ACTIONS(49), 1, - anon_sym_COMMA, + anon_sym_COMMA_AT, ACTIONS(51), 1, - anon_sym_COLON, + anon_sym_COMMA, ACTIONS(55), 1, anon_sym_POUNDC, ACTIONS(389), 1, - anon_sym_RBRACE, - STATE(44), 1, + anon_sym_RPAREN, + STATE(11), 1, aux_sym__bare_list_lit_repeat1, - STATE(815), 1, + STATE(780), 1, sym_sym_lit, - STATE(838), 1, + STATE(786), 1, sym__bare_vec_lit, - STATE(841), 1, + STATE(884), 1, sym__bare_set_lit, - STATE(1047), 1, + STATE(1033), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1909), 1, + STATE(1863), 1, sym_dotted_sym_lit, ACTIONS(53), 2, anon_sym_POUND_PLUS, @@ -9784,15 +9702,16 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(323), 2, sym__ws, sym_comment, - STATE(931), 2, + STATE(893), 2, sym__gap, sym_dis_expr, - STATE(842), 3, + STATE(787), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(932), 18, + STATE(895), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -9810,70 +9729,70 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [4401] = 39, + [4431] = 39, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(13), 1, - aux_sym_str_lit_token1, + anon_sym_COLON, + ACTIONS(15), 1, + anon_sym_COLON_COLON, ACTIONS(17), 1, - aux_sym_sym_lit_token1, - ACTIONS(19), 1, - anon_sym_CARET, + aux_sym_str_lit_token1, ACTIONS(21), 1, - anon_sym_POUND_CARET, + aux_sym_sym_lit_token1, ACTIONS(23), 1, - anon_sym_LPAREN, + anon_sym_CARET, ACTIONS(25), 1, - anon_sym_POUND0A, + anon_sym_POUND_CARET, ACTIONS(27), 1, - anon_sym_POUND, + anon_sym_LPAREN, ACTIONS(29), 1, - anon_sym_POUND_QMARK, + anon_sym_POUND0A, ACTIONS(31), 1, - anon_sym_POUND_QMARK_AT, + anon_sym_POUND, ACTIONS(33), 1, - anon_sym_COLON_COLON, + anon_sym_POUND_QMARK, ACTIONS(35), 1, - anon_sym_POUND_SQUOTE, + anon_sym_POUND_QMARK_AT, ACTIONS(37), 1, - anon_sym_POUND_POUND, + anon_sym_POUND_SQUOTE, ACTIONS(39), 1, - anon_sym_POUND_EQ, + anon_sym_POUND_POUND, ACTIONS(41), 1, - anon_sym_AT, + anon_sym_POUND_EQ, ACTIONS(43), 1, - anon_sym_SQUOTE, + anon_sym_AT, ACTIONS(45), 1, - anon_sym_BQUOTE, + anon_sym_SQUOTE, ACTIONS(47), 1, - anon_sym_COMMA_AT, + anon_sym_BQUOTE, ACTIONS(49), 1, - anon_sym_COMMA, + anon_sym_COMMA_AT, ACTIONS(51), 1, - anon_sym_COLON, + anon_sym_COMMA, ACTIONS(55), 1, anon_sym_POUNDC, ACTIONS(391), 1, anon_sym_RPAREN, - STATE(45), 1, + STATE(52), 1, aux_sym__bare_list_lit_repeat1, - STATE(815), 1, + STATE(780), 1, sym_sym_lit, - STATE(838), 1, + STATE(786), 1, sym__bare_vec_lit, - STATE(841), 1, + STATE(884), 1, sym__bare_set_lit, - STATE(1047), 1, + STATE(1033), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1909), 1, + STATE(1863), 1, sym_dotted_sym_lit, ACTIONS(53), 2, anon_sym_POUND_PLUS, @@ -9887,15 +9806,16 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(323), 2, sym__ws, sym_comment, - STATE(931), 2, + STATE(893), 2, sym__gap, sym_dis_expr, - STATE(842), 3, + STATE(787), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(932), 18, + STATE(895), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -9913,70 +9833,70 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [4543] = 39, + [4574] = 39, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(13), 1, - aux_sym_str_lit_token1, + anon_sym_COLON, + ACTIONS(15), 1, + anon_sym_COLON_COLON, ACTIONS(17), 1, - aux_sym_sym_lit_token1, - ACTIONS(19), 1, - anon_sym_CARET, + aux_sym_str_lit_token1, ACTIONS(21), 1, - anon_sym_POUND_CARET, + aux_sym_sym_lit_token1, ACTIONS(23), 1, - anon_sym_LPAREN, + anon_sym_CARET, ACTIONS(25), 1, - anon_sym_POUND0A, + anon_sym_POUND_CARET, ACTIONS(27), 1, - anon_sym_POUND, + anon_sym_LPAREN, ACTIONS(29), 1, - anon_sym_POUND_QMARK, + anon_sym_POUND0A, ACTIONS(31), 1, - anon_sym_POUND_QMARK_AT, + anon_sym_POUND, ACTIONS(33), 1, - anon_sym_COLON_COLON, + anon_sym_POUND_QMARK, ACTIONS(35), 1, - anon_sym_POUND_SQUOTE, + anon_sym_POUND_QMARK_AT, ACTIONS(37), 1, - anon_sym_POUND_POUND, + anon_sym_POUND_SQUOTE, ACTIONS(39), 1, - anon_sym_POUND_EQ, + anon_sym_POUND_POUND, ACTIONS(41), 1, - anon_sym_AT, + anon_sym_POUND_EQ, ACTIONS(43), 1, - anon_sym_SQUOTE, + anon_sym_AT, ACTIONS(45), 1, - anon_sym_BQUOTE, + anon_sym_SQUOTE, ACTIONS(47), 1, - anon_sym_COMMA_AT, + anon_sym_BQUOTE, ACTIONS(49), 1, - anon_sym_COMMA, + anon_sym_COMMA_AT, ACTIONS(51), 1, - anon_sym_COLON, + anon_sym_COMMA, ACTIONS(55), 1, anon_sym_POUNDC, ACTIONS(393), 1, anon_sym_RPAREN, STATE(11), 1, aux_sym__bare_list_lit_repeat1, - STATE(815), 1, + STATE(780), 1, sym_sym_lit, - STATE(838), 1, + STATE(786), 1, sym__bare_vec_lit, - STATE(841), 1, + STATE(884), 1, sym__bare_set_lit, - STATE(1047), 1, + STATE(1033), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1909), 1, + STATE(1863), 1, sym_dotted_sym_lit, ACTIONS(53), 2, anon_sym_POUND_PLUS, @@ -9990,15 +9910,16 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(323), 2, sym__ws, sym_comment, - STATE(931), 2, + STATE(893), 2, sym__gap, sym_dis_expr, - STATE(842), 3, + STATE(787), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(932), 18, + STATE(895), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -10016,70 +9937,70 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [4685] = 39, + [4717] = 39, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(13), 1, - aux_sym_str_lit_token1, + anon_sym_COLON, + ACTIONS(15), 1, + anon_sym_COLON_COLON, ACTIONS(17), 1, - aux_sym_sym_lit_token1, - ACTIONS(19), 1, - anon_sym_CARET, + aux_sym_str_lit_token1, ACTIONS(21), 1, - anon_sym_POUND_CARET, + aux_sym_sym_lit_token1, ACTIONS(23), 1, - anon_sym_LPAREN, + anon_sym_CARET, ACTIONS(25), 1, - anon_sym_POUND0A, + anon_sym_POUND_CARET, ACTIONS(27), 1, - anon_sym_POUND, + anon_sym_LPAREN, ACTIONS(29), 1, - anon_sym_POUND_QMARK, + anon_sym_POUND0A, ACTIONS(31), 1, - anon_sym_POUND_QMARK_AT, + anon_sym_POUND, ACTIONS(33), 1, - anon_sym_COLON_COLON, + anon_sym_POUND_QMARK, ACTIONS(35), 1, - anon_sym_POUND_SQUOTE, + anon_sym_POUND_QMARK_AT, ACTIONS(37), 1, - anon_sym_POUND_POUND, + anon_sym_POUND_SQUOTE, ACTIONS(39), 1, - anon_sym_POUND_EQ, + anon_sym_POUND_POUND, ACTIONS(41), 1, - anon_sym_AT, + anon_sym_POUND_EQ, ACTIONS(43), 1, - anon_sym_SQUOTE, + anon_sym_AT, ACTIONS(45), 1, - anon_sym_BQUOTE, + anon_sym_SQUOTE, ACTIONS(47), 1, - anon_sym_COMMA_AT, + anon_sym_BQUOTE, ACTIONS(49), 1, - anon_sym_COMMA, + anon_sym_COMMA_AT, ACTIONS(51), 1, - anon_sym_COLON, + anon_sym_COMMA, ACTIONS(55), 1, anon_sym_POUNDC, ACTIONS(395), 1, anon_sym_RBRACE, STATE(11), 1, aux_sym__bare_list_lit_repeat1, - STATE(815), 1, + STATE(780), 1, sym_sym_lit, - STATE(838), 1, + STATE(786), 1, sym__bare_vec_lit, - STATE(841), 1, + STATE(884), 1, sym__bare_set_lit, - STATE(1047), 1, + STATE(1033), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1909), 1, + STATE(1863), 1, sym_dotted_sym_lit, ACTIONS(53), 2, anon_sym_POUND_PLUS, @@ -10093,15 +10014,16 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(323), 2, sym__ws, sym_comment, - STATE(931), 2, + STATE(893), 2, sym__gap, sym_dis_expr, - STATE(842), 3, + STATE(787), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(932), 18, + STATE(895), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -10119,70 +10041,70 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [4827] = 39, + [4860] = 39, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(13), 1, - aux_sym_str_lit_token1, + anon_sym_COLON, + ACTIONS(15), 1, + anon_sym_COLON_COLON, ACTIONS(17), 1, - aux_sym_sym_lit_token1, - ACTIONS(19), 1, - anon_sym_CARET, + aux_sym_str_lit_token1, ACTIONS(21), 1, - anon_sym_POUND_CARET, + aux_sym_sym_lit_token1, ACTIONS(23), 1, - anon_sym_LPAREN, + anon_sym_CARET, ACTIONS(25), 1, - anon_sym_POUND0A, + anon_sym_POUND_CARET, ACTIONS(27), 1, - anon_sym_POUND, + anon_sym_LPAREN, ACTIONS(29), 1, - anon_sym_POUND_QMARK, + anon_sym_POUND0A, ACTIONS(31), 1, - anon_sym_POUND_QMARK_AT, + anon_sym_POUND, ACTIONS(33), 1, - anon_sym_COLON_COLON, + anon_sym_POUND_QMARK, ACTIONS(35), 1, - anon_sym_POUND_SQUOTE, + anon_sym_POUND_QMARK_AT, ACTIONS(37), 1, - anon_sym_POUND_POUND, + anon_sym_POUND_SQUOTE, ACTIONS(39), 1, - anon_sym_POUND_EQ, + anon_sym_POUND_POUND, ACTIONS(41), 1, - anon_sym_AT, + anon_sym_POUND_EQ, ACTIONS(43), 1, - anon_sym_SQUOTE, + anon_sym_AT, ACTIONS(45), 1, - anon_sym_BQUOTE, + anon_sym_SQUOTE, ACTIONS(47), 1, - anon_sym_COMMA_AT, + anon_sym_BQUOTE, ACTIONS(49), 1, - anon_sym_COMMA, + anon_sym_COMMA_AT, ACTIONS(51), 1, - anon_sym_COLON, + anon_sym_COMMA, ACTIONS(55), 1, anon_sym_POUNDC, ACTIONS(397), 1, - anon_sym_RPAREN, - STATE(11), 1, + anon_sym_RBRACE, + STATE(54), 1, aux_sym__bare_list_lit_repeat1, - STATE(815), 1, + STATE(780), 1, sym_sym_lit, - STATE(838), 1, + STATE(786), 1, sym__bare_vec_lit, - STATE(841), 1, + STATE(884), 1, sym__bare_set_lit, - STATE(1047), 1, + STATE(1033), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1909), 1, + STATE(1863), 1, sym_dotted_sym_lit, ACTIONS(53), 2, anon_sym_POUND_PLUS, @@ -10196,15 +10118,16 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(323), 2, sym__ws, sym_comment, - STATE(931), 2, + STATE(893), 2, sym__gap, sym_dis_expr, - STATE(842), 3, + STATE(787), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(932), 18, + STATE(895), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -10222,70 +10145,70 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [4969] = 39, + [5003] = 39, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(13), 1, - aux_sym_str_lit_token1, + anon_sym_COLON, + ACTIONS(15), 1, + anon_sym_COLON_COLON, ACTIONS(17), 1, - aux_sym_sym_lit_token1, - ACTIONS(19), 1, - anon_sym_CARET, + aux_sym_str_lit_token1, ACTIONS(21), 1, - anon_sym_POUND_CARET, + aux_sym_sym_lit_token1, ACTIONS(23), 1, - anon_sym_LPAREN, + anon_sym_CARET, ACTIONS(25), 1, - anon_sym_POUND0A, + anon_sym_POUND_CARET, ACTIONS(27), 1, - anon_sym_POUND, + anon_sym_LPAREN, ACTIONS(29), 1, - anon_sym_POUND_QMARK, + anon_sym_POUND0A, ACTIONS(31), 1, - anon_sym_POUND_QMARK_AT, + anon_sym_POUND, ACTIONS(33), 1, - anon_sym_COLON_COLON, + anon_sym_POUND_QMARK, ACTIONS(35), 1, - anon_sym_POUND_SQUOTE, + anon_sym_POUND_QMARK_AT, ACTIONS(37), 1, - anon_sym_POUND_POUND, + anon_sym_POUND_SQUOTE, ACTIONS(39), 1, - anon_sym_POUND_EQ, + anon_sym_POUND_POUND, ACTIONS(41), 1, - anon_sym_AT, + anon_sym_POUND_EQ, ACTIONS(43), 1, - anon_sym_SQUOTE, + anon_sym_AT, ACTIONS(45), 1, - anon_sym_BQUOTE, + anon_sym_SQUOTE, ACTIONS(47), 1, - anon_sym_COMMA_AT, + anon_sym_BQUOTE, ACTIONS(49), 1, - anon_sym_COMMA, + anon_sym_COMMA_AT, ACTIONS(51), 1, - anon_sym_COLON, + anon_sym_COMMA, ACTIONS(55), 1, anon_sym_POUNDC, ACTIONS(399), 1, anon_sym_RPAREN, - STATE(15), 1, + STATE(40), 1, aux_sym__bare_list_lit_repeat1, - STATE(815), 1, + STATE(780), 1, sym_sym_lit, - STATE(838), 1, + STATE(786), 1, sym__bare_vec_lit, - STATE(841), 1, + STATE(884), 1, sym__bare_set_lit, - STATE(1047), 1, + STATE(1033), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1909), 1, + STATE(1863), 1, sym_dotted_sym_lit, ACTIONS(53), 2, anon_sym_POUND_PLUS, @@ -10299,15 +10222,16 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(323), 2, sym__ws, sym_comment, - STATE(931), 2, + STATE(893), 2, sym__gap, sym_dis_expr, - STATE(842), 3, + STATE(787), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(932), 18, + STATE(895), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -10325,70 +10249,70 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [5111] = 39, + [5146] = 39, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(13), 1, - aux_sym_str_lit_token1, + anon_sym_COLON, + ACTIONS(15), 1, + anon_sym_COLON_COLON, ACTIONS(17), 1, - aux_sym_sym_lit_token1, - ACTIONS(19), 1, - anon_sym_CARET, + aux_sym_str_lit_token1, ACTIONS(21), 1, - anon_sym_POUND_CARET, + aux_sym_sym_lit_token1, ACTIONS(23), 1, - anon_sym_LPAREN, + anon_sym_CARET, ACTIONS(25), 1, - anon_sym_POUND0A, + anon_sym_POUND_CARET, ACTIONS(27), 1, - anon_sym_POUND, + anon_sym_LPAREN, ACTIONS(29), 1, - anon_sym_POUND_QMARK, + anon_sym_POUND0A, ACTIONS(31), 1, - anon_sym_POUND_QMARK_AT, + anon_sym_POUND, ACTIONS(33), 1, - anon_sym_COLON_COLON, + anon_sym_POUND_QMARK, ACTIONS(35), 1, - anon_sym_POUND_SQUOTE, + anon_sym_POUND_QMARK_AT, ACTIONS(37), 1, - anon_sym_POUND_POUND, + anon_sym_POUND_SQUOTE, ACTIONS(39), 1, - anon_sym_POUND_EQ, + anon_sym_POUND_POUND, ACTIONS(41), 1, - anon_sym_AT, + anon_sym_POUND_EQ, ACTIONS(43), 1, - anon_sym_SQUOTE, + anon_sym_AT, ACTIONS(45), 1, - anon_sym_BQUOTE, + anon_sym_SQUOTE, ACTIONS(47), 1, - anon_sym_COMMA_AT, + anon_sym_BQUOTE, ACTIONS(49), 1, - anon_sym_COMMA, + anon_sym_COMMA_AT, ACTIONS(51), 1, - anon_sym_COLON, + anon_sym_COMMA, ACTIONS(55), 1, anon_sym_POUNDC, ACTIONS(401), 1, anon_sym_RPAREN, - STATE(51), 1, + STATE(11), 1, aux_sym__bare_list_lit_repeat1, - STATE(815), 1, + STATE(780), 1, sym_sym_lit, - STATE(838), 1, + STATE(786), 1, sym__bare_vec_lit, - STATE(841), 1, + STATE(884), 1, sym__bare_set_lit, - STATE(1047), 1, + STATE(1033), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1909), 1, + STATE(1863), 1, sym_dotted_sym_lit, ACTIONS(53), 2, anon_sym_POUND_PLUS, @@ -10402,15 +10326,16 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(323), 2, sym__ws, sym_comment, - STATE(931), 2, + STATE(893), 2, sym__gap, sym_dis_expr, - STATE(842), 3, + STATE(787), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(932), 18, + STATE(895), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -10428,70 +10353,70 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [5253] = 39, + [5289] = 39, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(13), 1, - aux_sym_str_lit_token1, + anon_sym_COLON, + ACTIONS(15), 1, + anon_sym_COLON_COLON, ACTIONS(17), 1, - aux_sym_sym_lit_token1, - ACTIONS(19), 1, - anon_sym_CARET, + aux_sym_str_lit_token1, ACTIONS(21), 1, - anon_sym_POUND_CARET, + aux_sym_sym_lit_token1, ACTIONS(23), 1, - anon_sym_LPAREN, + anon_sym_CARET, ACTIONS(25), 1, - anon_sym_POUND0A, + anon_sym_POUND_CARET, ACTIONS(27), 1, - anon_sym_POUND, + anon_sym_LPAREN, ACTIONS(29), 1, - anon_sym_POUND_QMARK, + anon_sym_POUND0A, ACTIONS(31), 1, - anon_sym_POUND_QMARK_AT, + anon_sym_POUND, ACTIONS(33), 1, - anon_sym_COLON_COLON, + anon_sym_POUND_QMARK, ACTIONS(35), 1, - anon_sym_POUND_SQUOTE, + anon_sym_POUND_QMARK_AT, ACTIONS(37), 1, - anon_sym_POUND_POUND, + anon_sym_POUND_SQUOTE, ACTIONS(39), 1, - anon_sym_POUND_EQ, + anon_sym_POUND_POUND, ACTIONS(41), 1, - anon_sym_AT, + anon_sym_POUND_EQ, ACTIONS(43), 1, - anon_sym_SQUOTE, + anon_sym_AT, ACTIONS(45), 1, - anon_sym_BQUOTE, + anon_sym_SQUOTE, ACTIONS(47), 1, - anon_sym_COMMA_AT, + anon_sym_BQUOTE, ACTIONS(49), 1, - anon_sym_COMMA, + anon_sym_COMMA_AT, ACTIONS(51), 1, - anon_sym_COLON, + anon_sym_COMMA, ACTIONS(55), 1, anon_sym_POUNDC, ACTIONS(403), 1, anon_sym_RPAREN, - STATE(11), 1, + STATE(34), 1, aux_sym__bare_list_lit_repeat1, - STATE(815), 1, + STATE(780), 1, sym_sym_lit, - STATE(838), 1, + STATE(786), 1, sym__bare_vec_lit, - STATE(841), 1, + STATE(884), 1, sym__bare_set_lit, - STATE(1047), 1, + STATE(1033), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1909), 1, + STATE(1863), 1, sym_dotted_sym_lit, ACTIONS(53), 2, anon_sym_POUND_PLUS, @@ -10505,15 +10430,16 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(323), 2, sym__ws, sym_comment, - STATE(931), 2, + STATE(893), 2, sym__gap, sym_dis_expr, - STATE(842), 3, + STATE(787), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(932), 18, + STATE(895), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -10531,70 +10457,70 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [5395] = 39, + [5432] = 39, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(13), 1, - aux_sym_str_lit_token1, + anon_sym_COLON, + ACTIONS(15), 1, + anon_sym_COLON_COLON, ACTIONS(17), 1, - aux_sym_sym_lit_token1, - ACTIONS(19), 1, - anon_sym_CARET, + aux_sym_str_lit_token1, ACTIONS(21), 1, - anon_sym_POUND_CARET, + aux_sym_sym_lit_token1, ACTIONS(23), 1, - anon_sym_LPAREN, + anon_sym_CARET, ACTIONS(25), 1, - anon_sym_POUND0A, + anon_sym_POUND_CARET, ACTIONS(27), 1, - anon_sym_POUND, + anon_sym_LPAREN, ACTIONS(29), 1, - anon_sym_POUND_QMARK, + anon_sym_POUND0A, ACTIONS(31), 1, - anon_sym_POUND_QMARK_AT, + anon_sym_POUND, ACTIONS(33), 1, - anon_sym_COLON_COLON, + anon_sym_POUND_QMARK, ACTIONS(35), 1, - anon_sym_POUND_SQUOTE, + anon_sym_POUND_QMARK_AT, ACTIONS(37), 1, - anon_sym_POUND_POUND, + anon_sym_POUND_SQUOTE, ACTIONS(39), 1, - anon_sym_POUND_EQ, + anon_sym_POUND_POUND, ACTIONS(41), 1, - anon_sym_AT, + anon_sym_POUND_EQ, ACTIONS(43), 1, - anon_sym_SQUOTE, + anon_sym_AT, ACTIONS(45), 1, - anon_sym_BQUOTE, + anon_sym_SQUOTE, ACTIONS(47), 1, - anon_sym_COMMA_AT, + anon_sym_BQUOTE, ACTIONS(49), 1, - anon_sym_COMMA, + anon_sym_COMMA_AT, ACTIONS(51), 1, - anon_sym_COLON, + anon_sym_COMMA, ACTIONS(55), 1, anon_sym_POUNDC, ACTIONS(405), 1, - anon_sym_RBRACE, - STATE(54), 1, + anon_sym_RPAREN, + STATE(11), 1, aux_sym__bare_list_lit_repeat1, - STATE(815), 1, + STATE(780), 1, sym_sym_lit, - STATE(838), 1, + STATE(786), 1, sym__bare_vec_lit, - STATE(841), 1, + STATE(884), 1, sym__bare_set_lit, - STATE(1047), 1, + STATE(1033), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1909), 1, + STATE(1863), 1, sym_dotted_sym_lit, ACTIONS(53), 2, anon_sym_POUND_PLUS, @@ -10608,15 +10534,16 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(323), 2, sym__ws, sym_comment, - STATE(931), 2, + STATE(893), 2, sym__gap, sym_dis_expr, - STATE(842), 3, + STATE(787), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(932), 18, + STATE(895), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -10634,70 +10561,70 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [5537] = 39, + [5575] = 39, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(13), 1, - aux_sym_str_lit_token1, + anon_sym_COLON, + ACTIONS(15), 1, + anon_sym_COLON_COLON, ACTIONS(17), 1, - aux_sym_sym_lit_token1, - ACTIONS(19), 1, - anon_sym_CARET, + aux_sym_str_lit_token1, ACTIONS(21), 1, - anon_sym_POUND_CARET, + aux_sym_sym_lit_token1, ACTIONS(23), 1, - anon_sym_LPAREN, + anon_sym_CARET, ACTIONS(25), 1, - anon_sym_POUND0A, + anon_sym_POUND_CARET, ACTIONS(27), 1, - anon_sym_POUND, + anon_sym_LPAREN, ACTIONS(29), 1, - anon_sym_POUND_QMARK, + anon_sym_POUND0A, ACTIONS(31), 1, - anon_sym_POUND_QMARK_AT, + anon_sym_POUND, ACTIONS(33), 1, - anon_sym_COLON_COLON, + anon_sym_POUND_QMARK, ACTIONS(35), 1, - anon_sym_POUND_SQUOTE, + anon_sym_POUND_QMARK_AT, ACTIONS(37), 1, - anon_sym_POUND_POUND, + anon_sym_POUND_SQUOTE, ACTIONS(39), 1, - anon_sym_POUND_EQ, + anon_sym_POUND_POUND, ACTIONS(41), 1, - anon_sym_AT, + anon_sym_POUND_EQ, ACTIONS(43), 1, - anon_sym_SQUOTE, + anon_sym_AT, ACTIONS(45), 1, - anon_sym_BQUOTE, + anon_sym_SQUOTE, ACTIONS(47), 1, - anon_sym_COMMA_AT, + anon_sym_BQUOTE, ACTIONS(49), 1, - anon_sym_COMMA, + anon_sym_COMMA_AT, ACTIONS(51), 1, - anon_sym_COLON, + anon_sym_COMMA, ACTIONS(55), 1, anon_sym_POUNDC, ACTIONS(407), 1, - anon_sym_RPAREN, - STATE(57), 1, + anon_sym_RBRACE, + STATE(11), 1, aux_sym__bare_list_lit_repeat1, - STATE(815), 1, + STATE(780), 1, sym_sym_lit, - STATE(838), 1, + STATE(786), 1, sym__bare_vec_lit, - STATE(841), 1, + STATE(884), 1, sym__bare_set_lit, - STATE(1047), 1, + STATE(1033), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1909), 1, + STATE(1863), 1, sym_dotted_sym_lit, ACTIONS(53), 2, anon_sym_POUND_PLUS, @@ -10711,15 +10638,16 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(323), 2, sym__ws, sym_comment, - STATE(931), 2, + STATE(893), 2, sym__gap, sym_dis_expr, - STATE(842), 3, + STATE(787), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(932), 18, + STATE(895), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -10737,70 +10665,70 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [5679] = 39, + [5718] = 39, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(13), 1, - aux_sym_str_lit_token1, + anon_sym_COLON, + ACTIONS(15), 1, + anon_sym_COLON_COLON, ACTIONS(17), 1, - aux_sym_sym_lit_token1, - ACTIONS(19), 1, - anon_sym_CARET, + aux_sym_str_lit_token1, ACTIONS(21), 1, - anon_sym_POUND_CARET, + aux_sym_sym_lit_token1, ACTIONS(23), 1, - anon_sym_LPAREN, + anon_sym_CARET, ACTIONS(25), 1, - anon_sym_POUND0A, + anon_sym_POUND_CARET, ACTIONS(27), 1, - anon_sym_POUND, + anon_sym_LPAREN, ACTIONS(29), 1, - anon_sym_POUND_QMARK, + anon_sym_POUND0A, ACTIONS(31), 1, - anon_sym_POUND_QMARK_AT, + anon_sym_POUND, ACTIONS(33), 1, - anon_sym_COLON_COLON, + anon_sym_POUND_QMARK, ACTIONS(35), 1, - anon_sym_POUND_SQUOTE, + anon_sym_POUND_QMARK_AT, ACTIONS(37), 1, - anon_sym_POUND_POUND, + anon_sym_POUND_SQUOTE, ACTIONS(39), 1, - anon_sym_POUND_EQ, + anon_sym_POUND_POUND, ACTIONS(41), 1, - anon_sym_AT, + anon_sym_POUND_EQ, ACTIONS(43), 1, - anon_sym_SQUOTE, + anon_sym_AT, ACTIONS(45), 1, - anon_sym_BQUOTE, + anon_sym_SQUOTE, ACTIONS(47), 1, - anon_sym_COMMA_AT, + anon_sym_BQUOTE, ACTIONS(49), 1, - anon_sym_COMMA, + anon_sym_COMMA_AT, ACTIONS(51), 1, - anon_sym_COLON, + anon_sym_COMMA, ACTIONS(55), 1, anon_sym_POUNDC, ACTIONS(409), 1, anon_sym_RPAREN, STATE(11), 1, aux_sym__bare_list_lit_repeat1, - STATE(815), 1, + STATE(780), 1, sym_sym_lit, - STATE(838), 1, + STATE(786), 1, sym__bare_vec_lit, - STATE(841), 1, + STATE(884), 1, sym__bare_set_lit, - STATE(1047), 1, + STATE(1033), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1909), 1, + STATE(1863), 1, sym_dotted_sym_lit, ACTIONS(53), 2, anon_sym_POUND_PLUS, @@ -10814,15 +10742,16 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(323), 2, sym__ws, sym_comment, - STATE(931), 2, + STATE(893), 2, sym__gap, sym_dis_expr, - STATE(842), 3, + STATE(787), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(932), 18, + STATE(895), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -10840,92 +10769,93 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [5821] = 39, + [5861] = 39, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(13), 1, - aux_sym_str_lit_token1, - ACTIONS(17), 1, - aux_sym_sym_lit_token1, - ACTIONS(19), 1, - anon_sym_CARET, - ACTIONS(21), 1, - anon_sym_POUND_CARET, ACTIONS(23), 1, - anon_sym_LPAREN, + anon_sym_CARET, ACTIONS(25), 1, + anon_sym_POUND_CARET, + ACTIONS(140), 1, + anon_sym_COLON, + ACTIONS(142), 1, + anon_sym_COLON_COLON, + ACTIONS(144), 1, + aux_sym_str_lit_token1, + ACTIONS(148), 1, + aux_sym_sym_lit_token1, + ACTIONS(150), 1, anon_sym_POUND0A, - ACTIONS(27), 1, + ACTIONS(152), 1, anon_sym_POUND, - ACTIONS(29), 1, + ACTIONS(154), 1, anon_sym_POUND_QMARK, - ACTIONS(31), 1, + ACTIONS(156), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(33), 1, - anon_sym_COLON_COLON, - ACTIONS(35), 1, + ACTIONS(158), 1, anon_sym_POUND_SQUOTE, - ACTIONS(37), 1, + ACTIONS(160), 1, anon_sym_POUND_POUND, - ACTIONS(39), 1, + ACTIONS(162), 1, anon_sym_POUND_EQ, - ACTIONS(41), 1, + ACTIONS(164), 1, anon_sym_AT, - ACTIONS(43), 1, + ACTIONS(166), 1, anon_sym_SQUOTE, - ACTIONS(45), 1, + ACTIONS(168), 1, anon_sym_BQUOTE, - ACTIONS(47), 1, + ACTIONS(170), 1, anon_sym_COMMA_AT, - ACTIONS(49), 1, + ACTIONS(172), 1, anon_sym_COMMA, - ACTIONS(51), 1, - anon_sym_COLON, - ACTIONS(55), 1, + ACTIONS(178), 1, anon_sym_POUNDC, - ACTIONS(411), 1, - anon_sym_RPAREN, - STATE(62), 1, - aux_sym__bare_list_lit_repeat1, - STATE(815), 1, + ACTIONS(413), 1, + anon_sym_LPAREN, + STATE(3), 1, + aux_sym_do_clause_repeat1, + STATE(192), 1, + aux_sym_dis_expr_repeat1, + STATE(404), 1, sym_sym_lit, - STATE(838), 1, + STATE(487), 1, sym__bare_vec_lit, - STATE(841), 1, + STATE(488), 1, sym__bare_set_lit, - STATE(1047), 1, + STATE(981), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1909), 1, + STATE(1866), 1, sym_dotted_sym_lit, - ACTIONS(53), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(184), 2, + ACTIONS(138), 2, sym_num_lit, sym_char_lit, - ACTIONS(186), 2, + ACTIONS(146), 2, sym_nil_lit, sym_fancy_literal, - ACTIONS(323), 2, + ACTIONS(176), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(411), 2, sym__ws, sym_comment, - STATE(931), 2, + STATE(903), 2, sym__gap, sym_dis_expr, - STATE(842), 3, + STATE(486), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(932), 18, + STATE(399), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -10943,70 +10873,70 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [5963] = 39, + [6004] = 39, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(13), 1, - aux_sym_str_lit_token1, + anon_sym_COLON, + ACTIONS(15), 1, + anon_sym_COLON_COLON, ACTIONS(17), 1, - aux_sym_sym_lit_token1, - ACTIONS(19), 1, - anon_sym_CARET, + aux_sym_str_lit_token1, ACTIONS(21), 1, - anon_sym_POUND_CARET, + aux_sym_sym_lit_token1, ACTIONS(23), 1, - anon_sym_LPAREN, + anon_sym_CARET, ACTIONS(25), 1, - anon_sym_POUND0A, + anon_sym_POUND_CARET, ACTIONS(27), 1, - anon_sym_POUND, + anon_sym_LPAREN, ACTIONS(29), 1, - anon_sym_POUND_QMARK, + anon_sym_POUND0A, ACTIONS(31), 1, - anon_sym_POUND_QMARK_AT, + anon_sym_POUND, ACTIONS(33), 1, - anon_sym_COLON_COLON, + anon_sym_POUND_QMARK, ACTIONS(35), 1, - anon_sym_POUND_SQUOTE, + anon_sym_POUND_QMARK_AT, ACTIONS(37), 1, - anon_sym_POUND_POUND, + anon_sym_POUND_SQUOTE, ACTIONS(39), 1, - anon_sym_POUND_EQ, + anon_sym_POUND_POUND, ACTIONS(41), 1, - anon_sym_AT, + anon_sym_POUND_EQ, ACTIONS(43), 1, - anon_sym_SQUOTE, + anon_sym_AT, ACTIONS(45), 1, - anon_sym_BQUOTE, + anon_sym_SQUOTE, ACTIONS(47), 1, - anon_sym_COMMA_AT, + anon_sym_BQUOTE, ACTIONS(49), 1, - anon_sym_COMMA, + anon_sym_COMMA_AT, ACTIONS(51), 1, - anon_sym_COLON, + anon_sym_COMMA, ACTIONS(55), 1, anon_sym_POUNDC, - ACTIONS(413), 1, - anon_sym_RPAREN, + ACTIONS(415), 1, + anon_sym_RBRACE, STATE(11), 1, aux_sym__bare_list_lit_repeat1, - STATE(815), 1, + STATE(780), 1, sym_sym_lit, - STATE(838), 1, + STATE(786), 1, sym__bare_vec_lit, - STATE(841), 1, + STATE(884), 1, sym__bare_set_lit, - STATE(1047), 1, + STATE(1033), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1909), 1, + STATE(1863), 1, sym_dotted_sym_lit, ACTIONS(53), 2, anon_sym_POUND_PLUS, @@ -11020,15 +10950,16 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(323), 2, sym__ws, sym_comment, - STATE(931), 2, + STATE(893), 2, sym__gap, sym_dis_expr, - STATE(842), 3, + STATE(787), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(932), 18, + STATE(895), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -11046,70 +10977,70 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [6105] = 39, + [6147] = 39, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(13), 1, - aux_sym_str_lit_token1, + anon_sym_COLON, + ACTIONS(15), 1, + anon_sym_COLON_COLON, ACTIONS(17), 1, - aux_sym_sym_lit_token1, - ACTIONS(19), 1, - anon_sym_CARET, + aux_sym_str_lit_token1, ACTIONS(21), 1, - anon_sym_POUND_CARET, + aux_sym_sym_lit_token1, ACTIONS(23), 1, - anon_sym_LPAREN, + anon_sym_CARET, ACTIONS(25), 1, - anon_sym_POUND0A, + anon_sym_POUND_CARET, ACTIONS(27), 1, - anon_sym_POUND, + anon_sym_LPAREN, ACTIONS(29), 1, - anon_sym_POUND_QMARK, + anon_sym_POUND0A, ACTIONS(31), 1, - anon_sym_POUND_QMARK_AT, + anon_sym_POUND, ACTIONS(33), 1, - anon_sym_COLON_COLON, + anon_sym_POUND_QMARK, ACTIONS(35), 1, - anon_sym_POUND_SQUOTE, + anon_sym_POUND_QMARK_AT, ACTIONS(37), 1, - anon_sym_POUND_POUND, + anon_sym_POUND_SQUOTE, ACTIONS(39), 1, - anon_sym_POUND_EQ, + anon_sym_POUND_POUND, ACTIONS(41), 1, - anon_sym_AT, + anon_sym_POUND_EQ, ACTIONS(43), 1, - anon_sym_SQUOTE, + anon_sym_AT, ACTIONS(45), 1, - anon_sym_BQUOTE, + anon_sym_SQUOTE, ACTIONS(47), 1, - anon_sym_COMMA_AT, + anon_sym_BQUOTE, ACTIONS(49), 1, - anon_sym_COMMA, + anon_sym_COMMA_AT, ACTIONS(51), 1, - anon_sym_COLON, + anon_sym_COMMA, ACTIONS(55), 1, anon_sym_POUNDC, - ACTIONS(415), 1, - anon_sym_RBRACE, - STATE(11), 1, + ACTIONS(417), 1, + anon_sym_RPAREN, + STATE(48), 1, aux_sym__bare_list_lit_repeat1, - STATE(815), 1, + STATE(780), 1, sym_sym_lit, - STATE(838), 1, + STATE(786), 1, sym__bare_vec_lit, - STATE(841), 1, + STATE(884), 1, sym__bare_set_lit, - STATE(1047), 1, + STATE(1033), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1909), 1, + STATE(1863), 1, sym_dotted_sym_lit, ACTIONS(53), 2, anon_sym_POUND_PLUS, @@ -11123,15 +11054,16 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(323), 2, sym__ws, sym_comment, - STATE(931), 2, + STATE(893), 2, sym__gap, sym_dis_expr, - STATE(842), 3, + STATE(787), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(932), 18, + STATE(895), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -11149,70 +11081,70 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [6247] = 39, + [6290] = 39, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(13), 1, - aux_sym_str_lit_token1, + anon_sym_COLON, + ACTIONS(15), 1, + anon_sym_COLON_COLON, ACTIONS(17), 1, - aux_sym_sym_lit_token1, - ACTIONS(19), 1, - anon_sym_CARET, + aux_sym_str_lit_token1, ACTIONS(21), 1, - anon_sym_POUND_CARET, + aux_sym_sym_lit_token1, ACTIONS(23), 1, - anon_sym_LPAREN, + anon_sym_CARET, ACTIONS(25), 1, - anon_sym_POUND0A, + anon_sym_POUND_CARET, ACTIONS(27), 1, - anon_sym_POUND, + anon_sym_LPAREN, ACTIONS(29), 1, - anon_sym_POUND_QMARK, + anon_sym_POUND0A, ACTIONS(31), 1, - anon_sym_POUND_QMARK_AT, + anon_sym_POUND, ACTIONS(33), 1, - anon_sym_COLON_COLON, + anon_sym_POUND_QMARK, ACTIONS(35), 1, - anon_sym_POUND_SQUOTE, + anon_sym_POUND_QMARK_AT, ACTIONS(37), 1, - anon_sym_POUND_POUND, + anon_sym_POUND_SQUOTE, ACTIONS(39), 1, - anon_sym_POUND_EQ, + anon_sym_POUND_POUND, ACTIONS(41), 1, - anon_sym_AT, + anon_sym_POUND_EQ, ACTIONS(43), 1, - anon_sym_SQUOTE, + anon_sym_AT, ACTIONS(45), 1, - anon_sym_BQUOTE, + anon_sym_SQUOTE, ACTIONS(47), 1, - anon_sym_COMMA_AT, + anon_sym_BQUOTE, ACTIONS(49), 1, - anon_sym_COMMA, + anon_sym_COMMA_AT, ACTIONS(51), 1, - anon_sym_COLON, + anon_sym_COMMA, ACTIONS(55), 1, anon_sym_POUNDC, - ACTIONS(417), 1, - anon_sym_RBRACE, - STATE(14), 1, + ACTIONS(419), 1, + anon_sym_RPAREN, + STATE(11), 1, aux_sym__bare_list_lit_repeat1, - STATE(815), 1, + STATE(780), 1, sym_sym_lit, - STATE(838), 1, + STATE(786), 1, sym__bare_vec_lit, - STATE(841), 1, + STATE(884), 1, sym__bare_set_lit, - STATE(1047), 1, + STATE(1033), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1909), 1, + STATE(1863), 1, sym_dotted_sym_lit, ACTIONS(53), 2, anon_sym_POUND_PLUS, @@ -11226,15 +11158,16 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(323), 2, sym__ws, sym_comment, - STATE(931), 2, + STATE(893), 2, sym__gap, sym_dis_expr, - STATE(842), 3, + STATE(787), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(932), 18, + STATE(895), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -11252,70 +11185,70 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [6389] = 39, + [6433] = 39, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(13), 1, - aux_sym_str_lit_token1, + anon_sym_COLON, + ACTIONS(15), 1, + anon_sym_COLON_COLON, ACTIONS(17), 1, - aux_sym_sym_lit_token1, - ACTIONS(19), 1, - anon_sym_CARET, + aux_sym_str_lit_token1, ACTIONS(21), 1, - anon_sym_POUND_CARET, + aux_sym_sym_lit_token1, ACTIONS(23), 1, - anon_sym_LPAREN, + anon_sym_CARET, ACTIONS(25), 1, - anon_sym_POUND0A, + anon_sym_POUND_CARET, ACTIONS(27), 1, - anon_sym_POUND, + anon_sym_LPAREN, ACTIONS(29), 1, - anon_sym_POUND_QMARK, + anon_sym_POUND0A, ACTIONS(31), 1, - anon_sym_POUND_QMARK_AT, + anon_sym_POUND, ACTIONS(33), 1, - anon_sym_COLON_COLON, + anon_sym_POUND_QMARK, ACTIONS(35), 1, - anon_sym_POUND_SQUOTE, + anon_sym_POUND_QMARK_AT, ACTIONS(37), 1, - anon_sym_POUND_POUND, + anon_sym_POUND_SQUOTE, ACTIONS(39), 1, - anon_sym_POUND_EQ, + anon_sym_POUND_POUND, ACTIONS(41), 1, - anon_sym_AT, + anon_sym_POUND_EQ, ACTIONS(43), 1, - anon_sym_SQUOTE, + anon_sym_AT, ACTIONS(45), 1, - anon_sym_BQUOTE, + anon_sym_SQUOTE, ACTIONS(47), 1, - anon_sym_COMMA_AT, + anon_sym_BQUOTE, ACTIONS(49), 1, - anon_sym_COMMA, + anon_sym_COMMA_AT, ACTIONS(51), 1, - anon_sym_COLON, + anon_sym_COMMA, ACTIONS(55), 1, anon_sym_POUNDC, - ACTIONS(419), 1, + ACTIONS(421), 1, anon_sym_RBRACE, - STATE(60), 1, + STATE(11), 1, aux_sym__bare_list_lit_repeat1, - STATE(815), 1, + STATE(780), 1, sym_sym_lit, - STATE(838), 1, + STATE(786), 1, sym__bare_vec_lit, - STATE(841), 1, + STATE(884), 1, sym__bare_set_lit, - STATE(1047), 1, + STATE(1033), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1909), 1, + STATE(1863), 1, sym_dotted_sym_lit, ACTIONS(53), 2, anon_sym_POUND_PLUS, @@ -11329,15 +11262,16 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(323), 2, sym__ws, sym_comment, - STATE(931), 2, + STATE(893), 2, sym__gap, sym_dis_expr, - STATE(842), 3, + STATE(787), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(932), 18, + STATE(895), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -11355,70 +11289,70 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [6531] = 39, + [6576] = 39, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(13), 1, - aux_sym_str_lit_token1, + anon_sym_COLON, + ACTIONS(15), 1, + anon_sym_COLON_COLON, ACTIONS(17), 1, - aux_sym_sym_lit_token1, - ACTIONS(19), 1, - anon_sym_CARET, + aux_sym_str_lit_token1, ACTIONS(21), 1, - anon_sym_POUND_CARET, + aux_sym_sym_lit_token1, ACTIONS(23), 1, - anon_sym_LPAREN, + anon_sym_CARET, ACTIONS(25), 1, - anon_sym_POUND0A, + anon_sym_POUND_CARET, ACTIONS(27), 1, - anon_sym_POUND, + anon_sym_LPAREN, ACTIONS(29), 1, - anon_sym_POUND_QMARK, + anon_sym_POUND0A, ACTIONS(31), 1, - anon_sym_POUND_QMARK_AT, + anon_sym_POUND, ACTIONS(33), 1, - anon_sym_COLON_COLON, + anon_sym_POUND_QMARK, ACTIONS(35), 1, - anon_sym_POUND_SQUOTE, + anon_sym_POUND_QMARK_AT, ACTIONS(37), 1, - anon_sym_POUND_POUND, + anon_sym_POUND_SQUOTE, ACTIONS(39), 1, - anon_sym_POUND_EQ, + anon_sym_POUND_POUND, ACTIONS(41), 1, - anon_sym_AT, + anon_sym_POUND_EQ, ACTIONS(43), 1, - anon_sym_SQUOTE, + anon_sym_AT, ACTIONS(45), 1, - anon_sym_BQUOTE, + anon_sym_SQUOTE, ACTIONS(47), 1, - anon_sym_COMMA_AT, + anon_sym_BQUOTE, ACTIONS(49), 1, - anon_sym_COMMA, + anon_sym_COMMA_AT, ACTIONS(51), 1, - anon_sym_COLON, + anon_sym_COMMA, ACTIONS(55), 1, anon_sym_POUNDC, - ACTIONS(421), 1, + ACTIONS(423), 1, anon_sym_RPAREN, STATE(11), 1, aux_sym__bare_list_lit_repeat1, - STATE(815), 1, + STATE(780), 1, sym_sym_lit, - STATE(838), 1, + STATE(786), 1, sym__bare_vec_lit, - STATE(841), 1, + STATE(884), 1, sym__bare_set_lit, - STATE(1047), 1, + STATE(1033), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1909), 1, + STATE(1863), 1, sym_dotted_sym_lit, ACTIONS(53), 2, anon_sym_POUND_PLUS, @@ -11432,15 +11366,16 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(323), 2, sym__ws, sym_comment, - STATE(931), 2, + STATE(893), 2, sym__gap, sym_dis_expr, - STATE(842), 3, + STATE(787), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(932), 18, + STATE(895), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -11458,70 +11393,70 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [6673] = 39, + [6719] = 39, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(13), 1, - aux_sym_str_lit_token1, + anon_sym_COLON, + ACTIONS(15), 1, + anon_sym_COLON_COLON, ACTIONS(17), 1, - aux_sym_sym_lit_token1, - ACTIONS(19), 1, - anon_sym_CARET, + aux_sym_str_lit_token1, ACTIONS(21), 1, - anon_sym_POUND_CARET, + aux_sym_sym_lit_token1, ACTIONS(23), 1, - anon_sym_LPAREN, + anon_sym_CARET, ACTIONS(25), 1, - anon_sym_POUND0A, + anon_sym_POUND_CARET, ACTIONS(27), 1, - anon_sym_POUND, + anon_sym_LPAREN, ACTIONS(29), 1, - anon_sym_POUND_QMARK, + anon_sym_POUND0A, ACTIONS(31), 1, - anon_sym_POUND_QMARK_AT, + anon_sym_POUND, ACTIONS(33), 1, - anon_sym_COLON_COLON, + anon_sym_POUND_QMARK, ACTIONS(35), 1, - anon_sym_POUND_SQUOTE, + anon_sym_POUND_QMARK_AT, ACTIONS(37), 1, - anon_sym_POUND_POUND, + anon_sym_POUND_SQUOTE, ACTIONS(39), 1, - anon_sym_POUND_EQ, + anon_sym_POUND_POUND, ACTIONS(41), 1, - anon_sym_AT, + anon_sym_POUND_EQ, ACTIONS(43), 1, - anon_sym_SQUOTE, + anon_sym_AT, ACTIONS(45), 1, - anon_sym_BQUOTE, + anon_sym_SQUOTE, ACTIONS(47), 1, - anon_sym_COMMA_AT, + anon_sym_BQUOTE, ACTIONS(49), 1, - anon_sym_COMMA, + anon_sym_COMMA_AT, ACTIONS(51), 1, - anon_sym_COLON, + anon_sym_COMMA, ACTIONS(55), 1, anon_sym_POUNDC, - ACTIONS(423), 1, - anon_sym_RPAREN, - STATE(11), 1, + ACTIONS(425), 1, + anon_sym_RBRACE, + STATE(45), 1, aux_sym__bare_list_lit_repeat1, - STATE(815), 1, + STATE(780), 1, sym_sym_lit, - STATE(838), 1, + STATE(786), 1, sym__bare_vec_lit, - STATE(841), 1, + STATE(884), 1, sym__bare_set_lit, - STATE(1047), 1, + STATE(1033), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1909), 1, + STATE(1863), 1, sym_dotted_sym_lit, ACTIONS(53), 2, anon_sym_POUND_PLUS, @@ -11535,15 +11470,16 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(323), 2, sym__ws, sym_comment, - STATE(931), 2, + STATE(893), 2, sym__gap, sym_dis_expr, - STATE(842), 3, + STATE(787), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(932), 18, + STATE(895), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -11561,70 +11497,70 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [6815] = 39, + [6862] = 39, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(13), 1, - aux_sym_str_lit_token1, + anon_sym_COLON, + ACTIONS(15), 1, + anon_sym_COLON_COLON, ACTIONS(17), 1, - aux_sym_sym_lit_token1, - ACTIONS(19), 1, - anon_sym_CARET, + aux_sym_str_lit_token1, ACTIONS(21), 1, - anon_sym_POUND_CARET, + aux_sym_sym_lit_token1, ACTIONS(23), 1, - anon_sym_LPAREN, + anon_sym_CARET, ACTIONS(25), 1, - anon_sym_POUND0A, + anon_sym_POUND_CARET, ACTIONS(27), 1, - anon_sym_POUND, + anon_sym_LPAREN, ACTIONS(29), 1, - anon_sym_POUND_QMARK, + anon_sym_POUND0A, ACTIONS(31), 1, - anon_sym_POUND_QMARK_AT, + anon_sym_POUND, ACTIONS(33), 1, - anon_sym_COLON_COLON, + anon_sym_POUND_QMARK, ACTIONS(35), 1, - anon_sym_POUND_SQUOTE, + anon_sym_POUND_QMARK_AT, ACTIONS(37), 1, - anon_sym_POUND_POUND, + anon_sym_POUND_SQUOTE, ACTIONS(39), 1, - anon_sym_POUND_EQ, + anon_sym_POUND_POUND, ACTIONS(41), 1, - anon_sym_AT, + anon_sym_POUND_EQ, ACTIONS(43), 1, - anon_sym_SQUOTE, + anon_sym_AT, ACTIONS(45), 1, - anon_sym_BQUOTE, + anon_sym_SQUOTE, ACTIONS(47), 1, - anon_sym_COMMA_AT, + anon_sym_BQUOTE, ACTIONS(49), 1, - anon_sym_COMMA, + anon_sym_COMMA_AT, ACTIONS(51), 1, - anon_sym_COLON, + anon_sym_COMMA, ACTIONS(55), 1, anon_sym_POUNDC, - ACTIONS(425), 1, + ACTIONS(427), 1, anon_sym_RPAREN, - STATE(11), 1, + STATE(42), 1, aux_sym__bare_list_lit_repeat1, - STATE(815), 1, + STATE(780), 1, sym_sym_lit, - STATE(838), 1, + STATE(786), 1, sym__bare_vec_lit, - STATE(841), 1, + STATE(884), 1, sym__bare_set_lit, - STATE(1047), 1, + STATE(1033), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1909), 1, + STATE(1863), 1, sym_dotted_sym_lit, ACTIONS(53), 2, anon_sym_POUND_PLUS, @@ -11638,15 +11574,16 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(323), 2, sym__ws, sym_comment, - STATE(931), 2, + STATE(893), 2, sym__gap, sym_dis_expr, - STATE(842), 3, + STATE(787), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(932), 18, + STATE(895), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -11664,70 +11601,70 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [6957] = 39, + [7005] = 39, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(13), 1, - aux_sym_str_lit_token1, + anon_sym_COLON, + ACTIONS(15), 1, + anon_sym_COLON_COLON, ACTIONS(17), 1, - aux_sym_sym_lit_token1, - ACTIONS(19), 1, - anon_sym_CARET, + aux_sym_str_lit_token1, ACTIONS(21), 1, - anon_sym_POUND_CARET, + aux_sym_sym_lit_token1, ACTIONS(23), 1, - anon_sym_LPAREN, + anon_sym_CARET, ACTIONS(25), 1, - anon_sym_POUND0A, + anon_sym_POUND_CARET, ACTIONS(27), 1, - anon_sym_POUND, + anon_sym_LPAREN, ACTIONS(29), 1, - anon_sym_POUND_QMARK, + anon_sym_POUND0A, ACTIONS(31), 1, - anon_sym_POUND_QMARK_AT, + anon_sym_POUND, ACTIONS(33), 1, - anon_sym_COLON_COLON, + anon_sym_POUND_QMARK, ACTIONS(35), 1, - anon_sym_POUND_SQUOTE, + anon_sym_POUND_QMARK_AT, ACTIONS(37), 1, - anon_sym_POUND_POUND, + anon_sym_POUND_SQUOTE, ACTIONS(39), 1, - anon_sym_POUND_EQ, + anon_sym_POUND_POUND, ACTIONS(41), 1, - anon_sym_AT, + anon_sym_POUND_EQ, ACTIONS(43), 1, - anon_sym_SQUOTE, + anon_sym_AT, ACTIONS(45), 1, - anon_sym_BQUOTE, + anon_sym_SQUOTE, ACTIONS(47), 1, - anon_sym_COMMA_AT, + anon_sym_BQUOTE, ACTIONS(49), 1, - anon_sym_COMMA, + anon_sym_COMMA_AT, ACTIONS(51), 1, - anon_sym_COLON, + anon_sym_COMMA, ACTIONS(55), 1, anon_sym_POUNDC, - ACTIONS(427), 1, + ACTIONS(429), 1, anon_sym_RBRACE, - STATE(11), 1, + STATE(51), 1, aux_sym__bare_list_lit_repeat1, - STATE(815), 1, + STATE(780), 1, sym_sym_lit, - STATE(838), 1, + STATE(786), 1, sym__bare_vec_lit, - STATE(841), 1, + STATE(884), 1, sym__bare_set_lit, - STATE(1047), 1, + STATE(1033), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1909), 1, + STATE(1863), 1, sym_dotted_sym_lit, ACTIONS(53), 2, anon_sym_POUND_PLUS, @@ -11741,15 +11678,16 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(323), 2, sym__ws, sym_comment, - STATE(931), 2, + STATE(893), 2, sym__gap, sym_dis_expr, - STATE(842), 3, + STATE(787), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(932), 18, + STATE(895), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -11767,70 +11705,70 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [7099] = 39, + [7148] = 39, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(13), 1, - aux_sym_str_lit_token1, - ACTIONS(17), 1, - aux_sym_sym_lit_token1, - ACTIONS(19), 1, - anon_sym_CARET, + anon_sym_COLON, + ACTIONS(15), 1, + anon_sym_COLON_COLON, + ACTIONS(17), 1, + aux_sym_str_lit_token1, ACTIONS(21), 1, - anon_sym_POUND_CARET, + aux_sym_sym_lit_token1, ACTIONS(23), 1, - anon_sym_LPAREN, + anon_sym_CARET, ACTIONS(25), 1, - anon_sym_POUND0A, + anon_sym_POUND_CARET, ACTIONS(27), 1, - anon_sym_POUND, + anon_sym_LPAREN, ACTIONS(29), 1, - anon_sym_POUND_QMARK, + anon_sym_POUND0A, ACTIONS(31), 1, - anon_sym_POUND_QMARK_AT, + anon_sym_POUND, ACTIONS(33), 1, - anon_sym_COLON_COLON, + anon_sym_POUND_QMARK, ACTIONS(35), 1, - anon_sym_POUND_SQUOTE, + anon_sym_POUND_QMARK_AT, ACTIONS(37), 1, - anon_sym_POUND_POUND, + anon_sym_POUND_SQUOTE, ACTIONS(39), 1, - anon_sym_POUND_EQ, + anon_sym_POUND_POUND, ACTIONS(41), 1, - anon_sym_AT, + anon_sym_POUND_EQ, ACTIONS(43), 1, - anon_sym_SQUOTE, + anon_sym_AT, ACTIONS(45), 1, - anon_sym_BQUOTE, + anon_sym_SQUOTE, ACTIONS(47), 1, - anon_sym_COMMA_AT, + anon_sym_BQUOTE, ACTIONS(49), 1, - anon_sym_COMMA, + anon_sym_COMMA_AT, ACTIONS(51), 1, - anon_sym_COLON, + anon_sym_COMMA, ACTIONS(55), 1, anon_sym_POUNDC, - ACTIONS(429), 1, + ACTIONS(431), 1, anon_sym_RPAREN, - STATE(39), 1, + STATE(11), 1, aux_sym__bare_list_lit_repeat1, - STATE(815), 1, + STATE(780), 1, sym_sym_lit, - STATE(838), 1, + STATE(786), 1, sym__bare_vec_lit, - STATE(841), 1, + STATE(884), 1, sym__bare_set_lit, - STATE(1047), 1, + STATE(1033), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1909), 1, + STATE(1863), 1, sym_dotted_sym_lit, ACTIONS(53), 2, anon_sym_POUND_PLUS, @@ -11844,15 +11782,16 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(323), 2, sym__ws, sym_comment, - STATE(931), 2, + STATE(893), 2, sym__gap, sym_dis_expr, - STATE(842), 3, + STATE(787), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(932), 18, + STATE(895), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -11870,92 +11809,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [7241] = 39, + [7291] = 38, ACTIONS(3), 1, sym_block_comment, - ACTIONS(9), 1, + ACTIONS(433), 1, + ts_builtin_sym_end, + ACTIONS(438), 1, anon_sym_POUND_, - ACTIONS(13), 1, + ACTIONS(444), 1, + anon_sym_COLON, + ACTIONS(447), 1, + anon_sym_COLON_COLON, + ACTIONS(450), 1, aux_sym_str_lit_token1, - ACTIONS(17), 1, + ACTIONS(456), 1, aux_sym_sym_lit_token1, - ACTIONS(19), 1, + ACTIONS(459), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(462), 1, anon_sym_POUND_CARET, - ACTIONS(23), 1, + ACTIONS(465), 1, anon_sym_LPAREN, - ACTIONS(25), 1, + ACTIONS(468), 1, anon_sym_POUND0A, - ACTIONS(27), 1, + ACTIONS(471), 1, anon_sym_POUND, - ACTIONS(29), 1, + ACTIONS(474), 1, anon_sym_POUND_QMARK, - ACTIONS(31), 1, + ACTIONS(477), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(33), 1, - anon_sym_COLON_COLON, - ACTIONS(35), 1, + ACTIONS(480), 1, anon_sym_POUND_SQUOTE, - ACTIONS(37), 1, + ACTIONS(483), 1, anon_sym_POUND_POUND, - ACTIONS(39), 1, + ACTIONS(486), 1, anon_sym_POUND_EQ, - ACTIONS(41), 1, + ACTIONS(489), 1, anon_sym_AT, - ACTIONS(43), 1, + ACTIONS(492), 1, anon_sym_SQUOTE, - ACTIONS(45), 1, + ACTIONS(495), 1, anon_sym_BQUOTE, - ACTIONS(47), 1, + ACTIONS(498), 1, anon_sym_COMMA_AT, - ACTIONS(49), 1, + ACTIONS(501), 1, anon_sym_COMMA, - ACTIONS(51), 1, - anon_sym_COLON, - ACTIONS(55), 1, + ACTIONS(507), 1, anon_sym_POUNDC, - ACTIONS(431), 1, - anon_sym_RPAREN, - STATE(11), 1, - aux_sym__bare_list_lit_repeat1, - STATE(815), 1, + STATE(780), 1, sym_sym_lit, - STATE(838), 1, + STATE(786), 1, sym__bare_vec_lit, - STATE(841), 1, + STATE(884), 1, sym__bare_set_lit, - STATE(1047), 1, + STATE(1033), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1909), 1, + STATE(1863), 1, sym_dotted_sym_lit, - ACTIONS(53), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(184), 2, + ACTIONS(435), 2, + sym__ws, + sym_comment, + ACTIONS(441), 2, sym_num_lit, sym_char_lit, - ACTIONS(186), 2, + ACTIONS(453), 2, sym_nil_lit, sym_fancy_literal, - ACTIONS(323), 2, - sym__ws, - sym_comment, - STATE(931), 2, + ACTIONS(504), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + STATE(894), 2, sym__gap, sym_dis_expr, - STATE(842), 3, + STATE(787), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(932), 18, + STATE(63), 20, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -11973,70 +11911,71 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [7383] = 39, + aux_sym_source_repeat1, + [7432] = 39, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(13), 1, - aux_sym_str_lit_token1, + anon_sym_COLON, + ACTIONS(15), 1, + anon_sym_COLON_COLON, ACTIONS(17), 1, - aux_sym_sym_lit_token1, - ACTIONS(19), 1, - anon_sym_CARET, + aux_sym_str_lit_token1, ACTIONS(21), 1, - anon_sym_POUND_CARET, + aux_sym_sym_lit_token1, ACTIONS(23), 1, - anon_sym_LPAREN, + anon_sym_CARET, ACTIONS(25), 1, - anon_sym_POUND0A, + anon_sym_POUND_CARET, ACTIONS(27), 1, - anon_sym_POUND, + anon_sym_LPAREN, ACTIONS(29), 1, - anon_sym_POUND_QMARK, + anon_sym_POUND0A, ACTIONS(31), 1, - anon_sym_POUND_QMARK_AT, + anon_sym_POUND, ACTIONS(33), 1, - anon_sym_COLON_COLON, + anon_sym_POUND_QMARK, ACTIONS(35), 1, - anon_sym_POUND_SQUOTE, + anon_sym_POUND_QMARK_AT, ACTIONS(37), 1, - anon_sym_POUND_POUND, + anon_sym_POUND_SQUOTE, ACTIONS(39), 1, - anon_sym_POUND_EQ, + anon_sym_POUND_POUND, ACTIONS(41), 1, - anon_sym_AT, + anon_sym_POUND_EQ, ACTIONS(43), 1, - anon_sym_SQUOTE, + anon_sym_AT, ACTIONS(45), 1, - anon_sym_BQUOTE, + anon_sym_SQUOTE, ACTIONS(47), 1, - anon_sym_COMMA_AT, + anon_sym_BQUOTE, ACTIONS(49), 1, - anon_sym_COMMA, + anon_sym_COMMA_AT, ACTIONS(51), 1, - anon_sym_COLON, + anon_sym_COMMA, ACTIONS(55), 1, anon_sym_POUNDC, - ACTIONS(433), 1, - anon_sym_RBRACE, - STATE(11), 1, + ACTIONS(510), 1, + anon_sym_RPAREN, + STATE(58), 1, aux_sym__bare_list_lit_repeat1, - STATE(815), 1, + STATE(780), 1, sym_sym_lit, - STATE(838), 1, + STATE(786), 1, sym__bare_vec_lit, - STATE(841), 1, + STATE(884), 1, sym__bare_set_lit, - STATE(1047), 1, + STATE(1033), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1909), 1, + STATE(1863), 1, sym_dotted_sym_lit, ACTIONS(53), 2, anon_sym_POUND_PLUS, @@ -12050,15 +11989,16 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(323), 2, sym__ws, sym_comment, - STATE(931), 2, + STATE(893), 2, sym__gap, sym_dis_expr, - STATE(842), 3, + STATE(787), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(932), 18, + STATE(895), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -12076,70 +12016,70 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [7525] = 39, + [7575] = 39, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(13), 1, - aux_sym_str_lit_token1, + anon_sym_COLON, + ACTIONS(15), 1, + anon_sym_COLON_COLON, ACTIONS(17), 1, - aux_sym_sym_lit_token1, - ACTIONS(19), 1, - anon_sym_CARET, + aux_sym_str_lit_token1, ACTIONS(21), 1, - anon_sym_POUND_CARET, + aux_sym_sym_lit_token1, ACTIONS(23), 1, - anon_sym_LPAREN, + anon_sym_CARET, ACTIONS(25), 1, - anon_sym_POUND0A, + anon_sym_POUND_CARET, ACTIONS(27), 1, - anon_sym_POUND, + anon_sym_LPAREN, ACTIONS(29), 1, - anon_sym_POUND_QMARK, + anon_sym_POUND0A, ACTIONS(31), 1, - anon_sym_POUND_QMARK_AT, + anon_sym_POUND, ACTIONS(33), 1, - anon_sym_COLON_COLON, + anon_sym_POUND_QMARK, ACTIONS(35), 1, - anon_sym_POUND_SQUOTE, + anon_sym_POUND_QMARK_AT, ACTIONS(37), 1, - anon_sym_POUND_POUND, + anon_sym_POUND_SQUOTE, ACTIONS(39), 1, - anon_sym_POUND_EQ, + anon_sym_POUND_POUND, ACTIONS(41), 1, - anon_sym_AT, + anon_sym_POUND_EQ, ACTIONS(43), 1, - anon_sym_SQUOTE, + anon_sym_AT, ACTIONS(45), 1, - anon_sym_BQUOTE, + anon_sym_SQUOTE, ACTIONS(47), 1, - anon_sym_COMMA_AT, + anon_sym_BQUOTE, ACTIONS(49), 1, - anon_sym_COMMA, + anon_sym_COMMA_AT, ACTIONS(51), 1, - anon_sym_COLON, + anon_sym_COMMA, ACTIONS(55), 1, anon_sym_POUNDC, - ACTIONS(435), 1, + ACTIONS(512), 1, anon_sym_RPAREN, - STATE(58), 1, + STATE(31), 1, aux_sym__bare_list_lit_repeat1, - STATE(815), 1, + STATE(780), 1, sym_sym_lit, - STATE(838), 1, + STATE(786), 1, sym__bare_vec_lit, - STATE(841), 1, + STATE(884), 1, sym__bare_set_lit, - STATE(1047), 1, + STATE(1033), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1909), 1, + STATE(1863), 1, sym_dotted_sym_lit, ACTIONS(53), 2, anon_sym_POUND_PLUS, @@ -12153,15 +12093,16 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(323), 2, sym__ws, sym_comment, - STATE(931), 2, + STATE(893), 2, sym__gap, sym_dis_expr, - STATE(842), 3, + STATE(787), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(932), 18, + STATE(895), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -12179,90 +12120,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [7667] = 38, + [7718] = 38, ACTIONS(3), 1, sym_block_comment, - ACTIONS(437), 1, - ts_builtin_sym_end, - ACTIONS(442), 1, + ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(448), 1, - aux_sym_str_lit_token1, - ACTIONS(454), 1, - aux_sym_sym_lit_token1, - ACTIONS(457), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(460), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(463), 1, + ACTIONS(518), 1, + anon_sym_COLON, + ACTIONS(520), 1, + anon_sym_COLON_COLON, + ACTIONS(522), 1, + aux_sym_str_lit_token1, + ACTIONS(526), 1, + aux_sym_sym_lit_token1, + ACTIONS(528), 1, anon_sym_LPAREN, - ACTIONS(466), 1, + ACTIONS(530), 1, anon_sym_POUND0A, - ACTIONS(469), 1, + ACTIONS(532), 1, anon_sym_POUND, - ACTIONS(472), 1, + ACTIONS(534), 1, anon_sym_POUND_QMARK, - ACTIONS(475), 1, + ACTIONS(536), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(478), 1, - anon_sym_COLON_COLON, - ACTIONS(481), 1, + ACTIONS(538), 1, anon_sym_POUND_SQUOTE, - ACTIONS(484), 1, + ACTIONS(540), 1, anon_sym_POUND_POUND, - ACTIONS(487), 1, + ACTIONS(542), 1, anon_sym_POUND_EQ, - ACTIONS(490), 1, + ACTIONS(544), 1, anon_sym_AT, - ACTIONS(493), 1, + ACTIONS(546), 1, anon_sym_SQUOTE, - ACTIONS(496), 1, + ACTIONS(548), 1, anon_sym_BQUOTE, - ACTIONS(499), 1, + ACTIONS(550), 1, anon_sym_COMMA_AT, - ACTIONS(502), 1, + ACTIONS(552), 1, anon_sym_COMMA, - ACTIONS(505), 1, - anon_sym_COLON, - ACTIONS(511), 1, + ACTIONS(556), 1, anon_sym_POUNDC, - STATE(815), 1, + STATE(204), 1, + aux_sym_dis_expr_repeat1, + STATE(909), 1, sym_sym_lit, - STATE(838), 1, - sym__bare_vec_lit, - STATE(841), 1, + STATE(922), 1, sym__bare_set_lit, - STATE(1047), 1, + STATE(931), 1, + sym__bare_vec_lit, + STATE(936), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1909), 1, + STATE(1865), 1, sym_dotted_sym_lit, - ACTIONS(439), 2, + ACTIONS(514), 2, sym__ws, sym_comment, - ACTIONS(445), 2, + ACTIONS(516), 2, sym_num_lit, sym_char_lit, - ACTIONS(451), 2, + ACTIONS(524), 2, sym_nil_lit, sym_fancy_literal, - ACTIONS(508), 2, + ACTIONS(554), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - STATE(933), 2, + STATE(897), 2, sym__gap, sym_dis_expr, - STATE(842), 3, + STATE(930), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(65), 19, + STATE(965), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -12280,91 +12222,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - aux_sym_source_repeat1, - [7807] = 38, + [7858] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(518), 1, + ACTIONS(562), 1, + anon_sym_COLON, + ACTIONS(564), 1, + anon_sym_COLON_COLON, + ACTIONS(566), 1, aux_sym_str_lit_token1, - ACTIONS(522), 1, + ACTIONS(570), 1, aux_sym_sym_lit_token1, - ACTIONS(524), 1, + ACTIONS(572), 1, anon_sym_LPAREN, - ACTIONS(526), 1, + ACTIONS(574), 1, anon_sym_POUND0A, - ACTIONS(528), 1, + ACTIONS(576), 1, anon_sym_POUND, - ACTIONS(530), 1, + ACTIONS(578), 1, anon_sym_POUND_QMARK, - ACTIONS(532), 1, + ACTIONS(580), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(534), 1, - anon_sym_COLON_COLON, - ACTIONS(536), 1, + ACTIONS(582), 1, anon_sym_POUND_SQUOTE, - ACTIONS(538), 1, + ACTIONS(584), 1, anon_sym_POUND_POUND, - ACTIONS(540), 1, + ACTIONS(586), 1, anon_sym_POUND_EQ, - ACTIONS(542), 1, + ACTIONS(588), 1, anon_sym_AT, - ACTIONS(544), 1, + ACTIONS(590), 1, anon_sym_SQUOTE, - ACTIONS(546), 1, + ACTIONS(592), 1, anon_sym_BQUOTE, - ACTIONS(548), 1, + ACTIONS(594), 1, anon_sym_COMMA_AT, - ACTIONS(550), 1, + ACTIONS(596), 1, anon_sym_COMMA, - ACTIONS(552), 1, - anon_sym_COLON, - ACTIONS(556), 1, + ACTIONS(600), 1, anon_sym_POUNDC, - STATE(575), 1, + STATE(176), 1, + aux_sym_dis_expr_repeat1, + STATE(924), 1, sym_sym_lit, - STATE(654), 1, + STATE(926), 1, + aux_sym_sym_lit_repeat1, + STATE(1068), 1, sym__bare_vec_lit, - STATE(683), 1, + STATE(1069), 1, sym__bare_set_lit, - STATE(930), 1, - aux_sym_dis_expr_repeat1, - STATE(1029), 1, - aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1906), 1, + STATE(1861), 1, sym_dotted_sym_lit, - ACTIONS(514), 2, + ACTIONS(558), 2, sym__ws, sym_comment, - ACTIONS(516), 2, + ACTIONS(560), 2, sym_num_lit, sym_char_lit, - ACTIONS(520), 2, + ACTIONS(568), 2, sym_nil_lit, sym_fancy_literal, - ACTIONS(554), 2, + ACTIONS(598), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - STATE(936), 2, + STATE(902), 2, sym__gap, sym_dis_expr, - STATE(651), 3, + STATE(1067), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(796), 18, + STATE(1132), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -12382,90 +12324,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [7946] = 38, + [7998] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(562), 1, + ACTIONS(518), 1, + anon_sym_COLON, + ACTIONS(520), 1, + anon_sym_COLON_COLON, + ACTIONS(522), 1, aux_sym_str_lit_token1, - ACTIONS(566), 1, + ACTIONS(526), 1, aux_sym_sym_lit_token1, - ACTIONS(568), 1, + ACTIONS(528), 1, anon_sym_LPAREN, - ACTIONS(570), 1, + ACTIONS(530), 1, anon_sym_POUND0A, - ACTIONS(572), 1, + ACTIONS(532), 1, anon_sym_POUND, - ACTIONS(574), 1, + ACTIONS(534), 1, anon_sym_POUND_QMARK, - ACTIONS(576), 1, + ACTIONS(536), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(578), 1, - anon_sym_COLON_COLON, - ACTIONS(580), 1, + ACTIONS(538), 1, anon_sym_POUND_SQUOTE, - ACTIONS(582), 1, + ACTIONS(540), 1, anon_sym_POUND_POUND, - ACTIONS(584), 1, + ACTIONS(542), 1, anon_sym_POUND_EQ, - ACTIONS(586), 1, + ACTIONS(544), 1, anon_sym_AT, - ACTIONS(588), 1, + ACTIONS(546), 1, anon_sym_SQUOTE, - ACTIONS(590), 1, + ACTIONS(548), 1, anon_sym_BQUOTE, - ACTIONS(592), 1, + ACTIONS(550), 1, anon_sym_COMMA_AT, - ACTIONS(594), 1, + ACTIONS(552), 1, anon_sym_COMMA, - ACTIONS(596), 1, - anon_sym_COLON, - ACTIONS(600), 1, + ACTIONS(556), 1, anon_sym_POUNDC, - STATE(311), 1, + STATE(100), 1, aux_sym_dis_expr_repeat1, - STATE(599), 1, + STATE(909), 1, sym_sym_lit, - STATE(779), 1, + STATE(922), 1, sym__bare_set_lit, - STATE(784), 1, + STATE(931), 1, sym__bare_vec_lit, - STATE(1021), 1, + STATE(936), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1905), 1, + STATE(1865), 1, sym_dotted_sym_lit, - ACTIONS(558), 2, + ACTIONS(514), 2, sym__ws, sym_comment, - ACTIONS(560), 2, + ACTIONS(554), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(602), 2, sym_num_lit, sym_char_lit, - ACTIONS(564), 2, + ACTIONS(604), 2, sym_nil_lit, sym_fancy_literal, - ACTIONS(598), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - STATE(945), 2, + STATE(897), 2, sym__gap, sym_dis_expr, - STATE(786), 3, + STATE(930), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(650), 18, + STATE(1034), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -12483,90 +12426,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [8085] = 38, + [8138] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(606), 1, - aux_sym_str_lit_token1, ACTIONS(610), 1, - aux_sym_sym_lit_token1, + anon_sym_COLON, ACTIONS(612), 1, - anon_sym_LPAREN, + anon_sym_COLON_COLON, ACTIONS(614), 1, - anon_sym_POUND0A, - ACTIONS(616), 1, - anon_sym_POUND, + aux_sym_str_lit_token1, ACTIONS(618), 1, - anon_sym_POUND_QMARK, + aux_sym_sym_lit_token1, ACTIONS(620), 1, - anon_sym_POUND_QMARK_AT, + anon_sym_LPAREN, ACTIONS(622), 1, - anon_sym_COLON_COLON, + anon_sym_POUND0A, ACTIONS(624), 1, - anon_sym_POUND_SQUOTE, + anon_sym_POUND, ACTIONS(626), 1, - anon_sym_POUND_POUND, + anon_sym_POUND_QMARK, ACTIONS(628), 1, - anon_sym_POUND_EQ, + anon_sym_POUND_QMARK_AT, ACTIONS(630), 1, - anon_sym_AT, + anon_sym_POUND_SQUOTE, ACTIONS(632), 1, - anon_sym_SQUOTE, + anon_sym_POUND_POUND, ACTIONS(634), 1, - anon_sym_BQUOTE, + anon_sym_POUND_EQ, ACTIONS(636), 1, - anon_sym_COMMA_AT, + anon_sym_AT, ACTIONS(638), 1, - anon_sym_COMMA, + anon_sym_SQUOTE, ACTIONS(640), 1, - anon_sym_COLON, + anon_sym_BQUOTE, + ACTIONS(642), 1, + anon_sym_COMMA_AT, ACTIONS(644), 1, + anon_sym_COMMA, + ACTIONS(648), 1, anon_sym_POUNDC, - STATE(108), 1, + STATE(122), 1, aux_sym_dis_expr_repeat1, - STATE(949), 1, + STATE(545), 1, sym_sym_lit, - STATE(963), 1, - sym__bare_set_lit, - STATE(964), 1, + STATE(688), 1, sym__bare_vec_lit, - STATE(967), 1, + STATE(691), 1, + sym__bare_set_lit, + STATE(1013), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1911), 1, + STATE(1862), 1, sym_dotted_sym_lit, - ACTIONS(602), 2, + ACTIONS(606), 2, sym__ws, sym_comment, - ACTIONS(604), 2, + ACTIONS(608), 2, sym_num_lit, sym_char_lit, - ACTIONS(608), 2, + ACTIONS(616), 2, sym_nil_lit, sym_fancy_literal, - ACTIONS(642), 2, + ACTIONS(646), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - STATE(944), 2, + STATE(896), 2, sym__gap, sym_dis_expr, - STATE(965), 3, + STATE(687), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1069), 18, + STATE(715), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -12584,90 +12528,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [8224] = 38, + [8278] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(13), 1, - aux_sym_str_lit_token1, + anon_sym_COLON, + ACTIONS(15), 1, + anon_sym_COLON_COLON, ACTIONS(17), 1, + aux_sym_str_lit_token1, + ACTIONS(21), 1, aux_sym_sym_lit_token1, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(23), 1, + ACTIONS(27), 1, anon_sym_LPAREN, - ACTIONS(25), 1, + ACTIONS(29), 1, anon_sym_POUND0A, - ACTIONS(27), 1, + ACTIONS(31), 1, anon_sym_POUND, - ACTIONS(29), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(31), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, ACTIONS(37), 1, - anon_sym_POUND_POUND, + anon_sym_POUND_SQUOTE, ACTIONS(39), 1, + anon_sym_POUND_POUND, + ACTIONS(41), 1, anon_sym_POUND_EQ, - ACTIONS(45), 1, - anon_sym_BQUOTE, - ACTIONS(55), 1, - anon_sym_POUNDC, - ACTIONS(652), 1, - anon_sym_COLON_COLON, - ACTIONS(654), 1, - anon_sym_POUND_SQUOTE, - ACTIONS(656), 1, + ACTIONS(43), 1, anon_sym_AT, - ACTIONS(658), 1, + ACTIONS(45), 1, anon_sym_SQUOTE, - ACTIONS(660), 1, + ACTIONS(47), 1, + anon_sym_BQUOTE, + ACTIONS(49), 1, anon_sym_COMMA_AT, - ACTIONS(662), 1, + ACTIONS(51), 1, anon_sym_COMMA, - ACTIONS(664), 1, - anon_sym_COLON, - STATE(817), 1, + ACTIONS(55), 1, + anon_sym_POUNDC, + STATE(132), 1, + aux_sym_dis_expr_repeat1, + STATE(780), 1, sym_sym_lit, - STATE(838), 1, + STATE(786), 1, sym__bare_vec_lit, - STATE(841), 1, + STATE(884), 1, sym__bare_set_lit, - STATE(930), 1, - aux_sym_dis_expr_repeat1, - STATE(999), 1, + STATE(1033), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1908), 1, + STATE(1863), 1, sym_dotted_sym_lit, - ACTIONS(646), 2, + ACTIONS(53), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(650), 2, sym__ws, sym_comment, - ACTIONS(648), 2, + ACTIONS(652), 2, sym_num_lit, sym_char_lit, - ACTIONS(650), 2, + ACTIONS(654), 2, sym_nil_lit, sym_fancy_literal, - ACTIONS(666), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - STATE(942), 2, + STATE(898), 2, sym__gap, sym_dis_expr, - STATE(842), 3, + STATE(787), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(909), 18, + STATE(1320), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -12685,90 +12630,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [8363] = 38, + [8418] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(606), 1, + ACTIONS(660), 1, + anon_sym_COLON, + ACTIONS(662), 1, + anon_sym_COLON_COLON, + ACTIONS(664), 1, aux_sym_str_lit_token1, - ACTIONS(610), 1, + ACTIONS(668), 1, aux_sym_sym_lit_token1, - ACTIONS(612), 1, + ACTIONS(670), 1, anon_sym_LPAREN, - ACTIONS(614), 1, + ACTIONS(672), 1, anon_sym_POUND0A, - ACTIONS(616), 1, + ACTIONS(674), 1, anon_sym_POUND, - ACTIONS(618), 1, + ACTIONS(676), 1, anon_sym_POUND_QMARK, - ACTIONS(620), 1, + ACTIONS(678), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(622), 1, - anon_sym_COLON_COLON, - ACTIONS(624), 1, + ACTIONS(680), 1, anon_sym_POUND_SQUOTE, - ACTIONS(626), 1, + ACTIONS(682), 1, anon_sym_POUND_POUND, - ACTIONS(628), 1, + ACTIONS(684), 1, anon_sym_POUND_EQ, - ACTIONS(630), 1, + ACTIONS(686), 1, anon_sym_AT, - ACTIONS(632), 1, + ACTIONS(688), 1, anon_sym_SQUOTE, - ACTIONS(634), 1, + ACTIONS(690), 1, anon_sym_BQUOTE, - ACTIONS(636), 1, + ACTIONS(692), 1, anon_sym_COMMA_AT, - ACTIONS(638), 1, + ACTIONS(694), 1, anon_sym_COMMA, - ACTIONS(640), 1, - anon_sym_COLON, - ACTIONS(644), 1, + ACTIONS(698), 1, anon_sym_POUNDC, - STATE(110), 1, + STATE(324), 1, aux_sym_dis_expr_repeat1, - STATE(949), 1, + STATE(566), 1, sym_sym_lit, - STATE(963), 1, + STATE(678), 1, sym__bare_set_lit, - STATE(964), 1, + STATE(679), 1, sym__bare_vec_lit, - STATE(967), 1, + STATE(925), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1911), 1, + STATE(1868), 1, sym_dotted_sym_lit, - ACTIONS(602), 2, + ACTIONS(656), 2, sym__ws, sym_comment, - ACTIONS(642), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(668), 2, + ACTIONS(658), 2, sym_num_lit, sym_char_lit, - ACTIONS(670), 2, + ACTIONS(666), 2, sym_nil_lit, sym_fancy_literal, - STATE(944), 2, + ACTIONS(696), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + STATE(906), 2, sym__gap, sym_dis_expr, - STATE(965), 3, + STATE(680), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1068), 18, + STATE(583), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -12786,90 +12732,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [8502] = 38, + [8558] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(13), 1, - aux_sym_str_lit_token1, - ACTIONS(17), 1, - aux_sym_sym_lit_token1, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(23), 1, + ACTIONS(660), 1, + anon_sym_COLON, + ACTIONS(662), 1, + anon_sym_COLON_COLON, + ACTIONS(664), 1, + aux_sym_str_lit_token1, + ACTIONS(668), 1, + aux_sym_sym_lit_token1, + ACTIONS(670), 1, anon_sym_LPAREN, - ACTIONS(25), 1, + ACTIONS(672), 1, anon_sym_POUND0A, - ACTIONS(27), 1, + ACTIONS(674), 1, anon_sym_POUND, - ACTIONS(29), 1, + ACTIONS(676), 1, anon_sym_POUND_QMARK, - ACTIONS(31), 1, + ACTIONS(678), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(33), 1, - anon_sym_COLON_COLON, - ACTIONS(35), 1, + ACTIONS(680), 1, anon_sym_POUND_SQUOTE, - ACTIONS(37), 1, + ACTIONS(682), 1, anon_sym_POUND_POUND, - ACTIONS(39), 1, + ACTIONS(684), 1, anon_sym_POUND_EQ, - ACTIONS(41), 1, + ACTIONS(686), 1, anon_sym_AT, - ACTIONS(43), 1, + ACTIONS(688), 1, anon_sym_SQUOTE, - ACTIONS(45), 1, + ACTIONS(690), 1, anon_sym_BQUOTE, - ACTIONS(47), 1, + ACTIONS(692), 1, anon_sym_COMMA_AT, - ACTIONS(49), 1, + ACTIONS(694), 1, anon_sym_COMMA, - ACTIONS(51), 1, - anon_sym_COLON, - ACTIONS(55), 1, + ACTIONS(698), 1, anon_sym_POUNDC, - STATE(815), 1, + STATE(322), 1, + aux_sym_dis_expr_repeat1, + STATE(566), 1, sym_sym_lit, - STATE(838), 1, - sym__bare_vec_lit, - STATE(841), 1, + STATE(678), 1, sym__bare_set_lit, - STATE(930), 1, - aux_sym_dis_expr_repeat1, - STATE(1047), 1, + STATE(679), 1, + sym__bare_vec_lit, + STATE(925), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1909), 1, + STATE(1868), 1, sym_dotted_sym_lit, - ACTIONS(53), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(646), 2, + ACTIONS(656), 2, sym__ws, sym_comment, - ACTIONS(672), 2, + ACTIONS(696), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(700), 2, sym_num_lit, sym_char_lit, - ACTIONS(674), 2, + ACTIONS(702), 2, sym_nil_lit, sym_fancy_literal, - STATE(942), 2, + STATE(906), 2, sym__gap, sym_dis_expr, - STATE(842), 3, + STATE(680), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(855), 18, + STATE(582), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -12887,191 +12834,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [8641] = 38, + [8698] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(13), 1, - aux_sym_str_lit_token1, - ACTIONS(17), 1, - aux_sym_sym_lit_token1, - ACTIONS(19), 1, - anon_sym_CARET, - ACTIONS(21), 1, - anon_sym_POUND_CARET, ACTIONS(23), 1, - anon_sym_LPAREN, + anon_sym_CARET, ACTIONS(25), 1, - anon_sym_POUND0A, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(29), 1, - anon_sym_POUND_QMARK, - ACTIONS(31), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(33), 1, - anon_sym_COLON_COLON, - ACTIONS(35), 1, - anon_sym_POUND_SQUOTE, - ACTIONS(37), 1, - anon_sym_POUND_POUND, - ACTIONS(39), 1, - anon_sym_POUND_EQ, - ACTIONS(41), 1, - anon_sym_AT, - ACTIONS(43), 1, - anon_sym_SQUOTE, - ACTIONS(45), 1, - anon_sym_BQUOTE, - ACTIONS(47), 1, - anon_sym_COMMA_AT, - ACTIONS(49), 1, - anon_sym_COMMA, - ACTIONS(51), 1, + anon_sym_POUND_CARET, + ACTIONS(660), 1, anon_sym_COLON, - ACTIONS(55), 1, - anon_sym_POUNDC, - STATE(815), 1, - sym_sym_lit, - STATE(838), 1, - sym__bare_vec_lit, - STATE(841), 1, - sym__bare_set_lit, - STATE(930), 1, - aux_sym_dis_expr_repeat1, - STATE(1047), 1, - aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, - sym_meta_lit, - STATE(1369), 1, - sym__metadata_lit, - STATE(1909), 1, - sym_dotted_sym_lit, - ACTIONS(53), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(646), 2, - sym__ws, - sym_comment, - ACTIONS(676), 2, - sym_num_lit, - sym_char_lit, - ACTIONS(678), 2, - sym_nil_lit, - sym_fancy_literal, - STATE(942), 2, - sym__gap, - sym_dis_expr, - STATE(842), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(128), 18, - sym__form, - sym_str_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, - sym_package_lit, - sym_include_reader_macro, - sym_complex_num_lit, - [8780] = 38, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(9), 1, - anon_sym_POUND_, - ACTIONS(13), 1, + ACTIONS(662), 1, + anon_sym_COLON_COLON, + ACTIONS(664), 1, aux_sym_str_lit_token1, - ACTIONS(17), 1, + ACTIONS(668), 1, aux_sym_sym_lit_token1, - ACTIONS(19), 1, - anon_sym_CARET, - ACTIONS(21), 1, - anon_sym_POUND_CARET, - ACTIONS(23), 1, + ACTIONS(670), 1, anon_sym_LPAREN, - ACTIONS(25), 1, + ACTIONS(672), 1, anon_sym_POUND0A, - ACTIONS(27), 1, + ACTIONS(674), 1, anon_sym_POUND, - ACTIONS(29), 1, + ACTIONS(676), 1, anon_sym_POUND_QMARK, - ACTIONS(31), 1, + ACTIONS(678), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(680), 1, + anon_sym_POUND_SQUOTE, + ACTIONS(682), 1, anon_sym_POUND_POUND, - ACTIONS(39), 1, + ACTIONS(684), 1, anon_sym_POUND_EQ, - ACTIONS(45), 1, - anon_sym_BQUOTE, - ACTIONS(55), 1, - anon_sym_POUNDC, - ACTIONS(652), 1, - anon_sym_COLON_COLON, - ACTIONS(654), 1, - anon_sym_POUND_SQUOTE, - ACTIONS(656), 1, + ACTIONS(686), 1, anon_sym_AT, - ACTIONS(658), 1, + ACTIONS(688), 1, anon_sym_SQUOTE, - ACTIONS(660), 1, + ACTIONS(690), 1, + anon_sym_BQUOTE, + ACTIONS(692), 1, anon_sym_COMMA_AT, - ACTIONS(662), 1, + ACTIONS(694), 1, anon_sym_COMMA, - ACTIONS(664), 1, - anon_sym_COLON, - STATE(193), 1, + ACTIONS(698), 1, + anon_sym_POUNDC, + STATE(247), 1, aux_sym_dis_expr_repeat1, - STATE(817), 1, + STATE(566), 1, sym_sym_lit, - STATE(838), 1, - sym__bare_vec_lit, - STATE(841), 1, + STATE(678), 1, sym__bare_set_lit, - STATE(999), 1, + STATE(679), 1, + sym__bare_vec_lit, + STATE(925), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1908), 1, + STATE(1868), 1, sym_dotted_sym_lit, - ACTIONS(646), 2, + ACTIONS(656), 2, sym__ws, sym_comment, - ACTIONS(666), 2, + ACTIONS(696), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(680), 2, + ACTIONS(704), 2, sym_num_lit, sym_char_lit, - ACTIONS(682), 2, + ACTIONS(706), 2, sym_nil_lit, sym_fancy_literal, - STATE(942), 2, + STATE(906), 2, sym__gap, sym_dis_expr, - STATE(842), 3, + STATE(680), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(907), 18, + STATE(580), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -13089,90 +12936,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [8919] = 38, + [8838] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(606), 1, + ACTIONS(660), 1, + anon_sym_COLON, + ACTIONS(662), 1, + anon_sym_COLON_COLON, + ACTIONS(664), 1, aux_sym_str_lit_token1, - ACTIONS(610), 1, + ACTIONS(668), 1, aux_sym_sym_lit_token1, - ACTIONS(612), 1, + ACTIONS(670), 1, anon_sym_LPAREN, - ACTIONS(614), 1, + ACTIONS(672), 1, anon_sym_POUND0A, - ACTIONS(616), 1, + ACTIONS(674), 1, anon_sym_POUND, - ACTIONS(618), 1, + ACTIONS(676), 1, anon_sym_POUND_QMARK, - ACTIONS(620), 1, + ACTIONS(678), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(622), 1, - anon_sym_COLON_COLON, - ACTIONS(624), 1, + ACTIONS(680), 1, anon_sym_POUND_SQUOTE, - ACTIONS(626), 1, + ACTIONS(682), 1, anon_sym_POUND_POUND, - ACTIONS(628), 1, + ACTIONS(684), 1, anon_sym_POUND_EQ, - ACTIONS(630), 1, + ACTIONS(686), 1, anon_sym_AT, - ACTIONS(632), 1, + ACTIONS(688), 1, anon_sym_SQUOTE, - ACTIONS(634), 1, + ACTIONS(690), 1, anon_sym_BQUOTE, - ACTIONS(636), 1, + ACTIONS(692), 1, anon_sym_COMMA_AT, - ACTIONS(638), 1, + ACTIONS(694), 1, anon_sym_COMMA, - ACTIONS(640), 1, - anon_sym_COLON, - ACTIONS(644), 1, + ACTIONS(698), 1, anon_sym_POUNDC, - STATE(97), 1, + STATE(242), 1, aux_sym_dis_expr_repeat1, - STATE(949), 1, + STATE(566), 1, sym_sym_lit, - STATE(963), 1, + STATE(678), 1, sym__bare_set_lit, - STATE(964), 1, + STATE(679), 1, sym__bare_vec_lit, - STATE(967), 1, + STATE(925), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1911), 1, + STATE(1868), 1, sym_dotted_sym_lit, - ACTIONS(602), 2, + ACTIONS(656), 2, sym__ws, sym_comment, - ACTIONS(642), 2, + ACTIONS(696), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(684), 2, + ACTIONS(708), 2, sym_num_lit, sym_char_lit, - ACTIONS(686), 2, + ACTIONS(710), 2, sym_nil_lit, sym_fancy_literal, - STATE(944), 2, + STATE(906), 2, sym__gap, sym_dis_expr, - STATE(965), 3, + STATE(680), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1049), 18, + STATE(579), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -13190,90 +13038,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [9058] = 38, + [8978] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(606), 1, - aux_sym_str_lit_token1, ACTIONS(610), 1, - aux_sym_sym_lit_token1, + anon_sym_COLON, ACTIONS(612), 1, - anon_sym_LPAREN, + anon_sym_COLON_COLON, ACTIONS(614), 1, - anon_sym_POUND0A, - ACTIONS(616), 1, - anon_sym_POUND, + aux_sym_str_lit_token1, ACTIONS(618), 1, - anon_sym_POUND_QMARK, + aux_sym_sym_lit_token1, ACTIONS(620), 1, - anon_sym_POUND_QMARK_AT, + anon_sym_LPAREN, ACTIONS(622), 1, - anon_sym_COLON_COLON, + anon_sym_POUND0A, ACTIONS(624), 1, - anon_sym_POUND_SQUOTE, + anon_sym_POUND, ACTIONS(626), 1, - anon_sym_POUND_POUND, + anon_sym_POUND_QMARK, ACTIONS(628), 1, - anon_sym_POUND_EQ, + anon_sym_POUND_QMARK_AT, ACTIONS(630), 1, - anon_sym_AT, + anon_sym_POUND_SQUOTE, ACTIONS(632), 1, - anon_sym_SQUOTE, + anon_sym_POUND_POUND, ACTIONS(634), 1, - anon_sym_BQUOTE, + anon_sym_POUND_EQ, ACTIONS(636), 1, - anon_sym_COMMA_AT, + anon_sym_AT, ACTIONS(638), 1, - anon_sym_COMMA, + anon_sym_SQUOTE, ACTIONS(640), 1, - anon_sym_COLON, + anon_sym_BQUOTE, + ACTIONS(642), 1, + anon_sym_COMMA_AT, ACTIONS(644), 1, + anon_sym_COMMA, + ACTIONS(648), 1, anon_sym_POUNDC, - STATE(117), 1, - aux_sym_dis_expr_repeat1, - STATE(949), 1, + STATE(545), 1, sym_sym_lit, - STATE(963), 1, - sym__bare_set_lit, - STATE(964), 1, + STATE(688), 1, sym__bare_vec_lit, - STATE(967), 1, + STATE(691), 1, + sym__bare_set_lit, + STATE(892), 1, + aux_sym_dis_expr_repeat1, + STATE(1013), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1911), 1, + STATE(1862), 1, sym_dotted_sym_lit, - ACTIONS(602), 2, + ACTIONS(606), 2, sym__ws, sym_comment, - ACTIONS(642), 2, + ACTIONS(646), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(688), 2, + ACTIONS(712), 2, sym_num_lit, sym_char_lit, - ACTIONS(690), 2, + ACTIONS(714), 2, sym_nil_lit, sym_fancy_literal, - STATE(944), 2, + STATE(896), 2, sym__gap, sym_dis_expr, - STATE(965), 3, + STATE(687), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1066), 18, + STATE(720), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -13291,90 +13140,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [9197] = 38, + [9118] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(13), 1, - aux_sym_str_lit_token1, + anon_sym_COLON, + ACTIONS(15), 1, + anon_sym_COLON_COLON, ACTIONS(17), 1, + aux_sym_str_lit_token1, + ACTIONS(21), 1, aux_sym_sym_lit_token1, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(23), 1, + ACTIONS(27), 1, anon_sym_LPAREN, - ACTIONS(25), 1, + ACTIONS(29), 1, anon_sym_POUND0A, - ACTIONS(27), 1, + ACTIONS(31), 1, anon_sym_POUND, - ACTIONS(29), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(31), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, ACTIONS(37), 1, - anon_sym_POUND_POUND, + anon_sym_POUND_SQUOTE, ACTIONS(39), 1, + anon_sym_POUND_POUND, + ACTIONS(41), 1, anon_sym_POUND_EQ, - ACTIONS(45), 1, - anon_sym_BQUOTE, - ACTIONS(55), 1, - anon_sym_POUNDC, - ACTIONS(652), 1, - anon_sym_COLON_COLON, - ACTIONS(654), 1, - anon_sym_POUND_SQUOTE, - ACTIONS(656), 1, + ACTIONS(43), 1, anon_sym_AT, - ACTIONS(658), 1, + ACTIONS(45), 1, anon_sym_SQUOTE, - ACTIONS(660), 1, + ACTIONS(47), 1, + anon_sym_BQUOTE, + ACTIONS(49), 1, anon_sym_COMMA_AT, - ACTIONS(662), 1, + ACTIONS(51), 1, anon_sym_COMMA, - ACTIONS(664), 1, - anon_sym_COLON, - STATE(817), 1, + ACTIONS(55), 1, + anon_sym_POUNDC, + STATE(142), 1, + aux_sym_dis_expr_repeat1, + STATE(780), 1, sym_sym_lit, - STATE(838), 1, + STATE(786), 1, sym__bare_vec_lit, - STATE(841), 1, + STATE(884), 1, sym__bare_set_lit, - STATE(930), 1, - aux_sym_dis_expr_repeat1, - STATE(999), 1, + STATE(1033), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1908), 1, + STATE(1863), 1, sym_dotted_sym_lit, - ACTIONS(646), 2, - sym__ws, - sym_comment, - ACTIONS(666), 2, + ACTIONS(53), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(692), 2, + ACTIONS(650), 2, + sym__ws, + sym_comment, + ACTIONS(716), 2, sym_num_lit, sym_char_lit, - ACTIONS(694), 2, + ACTIONS(718), 2, sym_nil_lit, sym_fancy_literal, - STATE(942), 2, + STATE(898), 2, sym__gap, sym_dis_expr, - STATE(842), 3, + STATE(787), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(906), 18, + STATE(114), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -13392,90 +13242,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [9336] = 38, + [9258] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(606), 1, + ACTIONS(518), 1, + anon_sym_COLON, + ACTIONS(520), 1, + anon_sym_COLON_COLON, + ACTIONS(522), 1, aux_sym_str_lit_token1, - ACTIONS(610), 1, + ACTIONS(526), 1, aux_sym_sym_lit_token1, - ACTIONS(612), 1, + ACTIONS(528), 1, anon_sym_LPAREN, - ACTIONS(614), 1, + ACTIONS(530), 1, anon_sym_POUND0A, - ACTIONS(616), 1, + ACTIONS(532), 1, anon_sym_POUND, - ACTIONS(618), 1, + ACTIONS(534), 1, anon_sym_POUND_QMARK, - ACTIONS(620), 1, + ACTIONS(536), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(622), 1, - anon_sym_COLON_COLON, - ACTIONS(624), 1, + ACTIONS(538), 1, anon_sym_POUND_SQUOTE, - ACTIONS(626), 1, + ACTIONS(540), 1, anon_sym_POUND_POUND, - ACTIONS(628), 1, + ACTIONS(542), 1, anon_sym_POUND_EQ, - ACTIONS(630), 1, + ACTIONS(544), 1, anon_sym_AT, - ACTIONS(632), 1, + ACTIONS(546), 1, anon_sym_SQUOTE, - ACTIONS(634), 1, + ACTIONS(548), 1, anon_sym_BQUOTE, - ACTIONS(636), 1, + ACTIONS(550), 1, anon_sym_COMMA_AT, - ACTIONS(638), 1, + ACTIONS(552), 1, anon_sym_COMMA, - ACTIONS(640), 1, - anon_sym_COLON, - ACTIONS(644), 1, + ACTIONS(556), 1, anon_sym_POUNDC, - STATE(118), 1, + STATE(116), 1, aux_sym_dis_expr_repeat1, - STATE(949), 1, + STATE(909), 1, sym_sym_lit, - STATE(963), 1, + STATE(922), 1, sym__bare_set_lit, - STATE(964), 1, + STATE(931), 1, sym__bare_vec_lit, - STATE(967), 1, + STATE(936), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1911), 1, + STATE(1865), 1, sym_dotted_sym_lit, - ACTIONS(602), 2, + ACTIONS(514), 2, sym__ws, sym_comment, - ACTIONS(642), 2, + ACTIONS(554), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(696), 2, + ACTIONS(720), 2, sym_num_lit, sym_char_lit, - ACTIONS(698), 2, + ACTIONS(722), 2, sym_nil_lit, sym_fancy_literal, - STATE(944), 2, + STATE(897), 2, sym__gap, sym_dis_expr, - STATE(965), 3, + STATE(930), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1065), 18, + STATE(1027), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -13493,90 +13344,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [9475] = 38, + [9398] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(13), 1, - aux_sym_str_lit_token1, + anon_sym_COLON, + ACTIONS(15), 1, + anon_sym_COLON_COLON, ACTIONS(17), 1, - aux_sym_sym_lit_token1, - ACTIONS(19), 1, - anon_sym_CARET, + aux_sym_str_lit_token1, ACTIONS(21), 1, - anon_sym_POUND_CARET, + aux_sym_sym_lit_token1, ACTIONS(23), 1, - anon_sym_LPAREN, + anon_sym_CARET, ACTIONS(25), 1, - anon_sym_POUND0A, + anon_sym_POUND_CARET, ACTIONS(27), 1, - anon_sym_POUND, + anon_sym_LPAREN, ACTIONS(29), 1, - anon_sym_POUND_QMARK, + anon_sym_POUND0A, ACTIONS(31), 1, - anon_sym_POUND_QMARK_AT, + anon_sym_POUND, ACTIONS(33), 1, - anon_sym_COLON_COLON, + anon_sym_POUND_QMARK, ACTIONS(35), 1, - anon_sym_POUND_SQUOTE, + anon_sym_POUND_QMARK_AT, ACTIONS(37), 1, - anon_sym_POUND_POUND, + anon_sym_POUND_SQUOTE, ACTIONS(39), 1, - anon_sym_POUND_EQ, + anon_sym_POUND_POUND, ACTIONS(41), 1, - anon_sym_AT, + anon_sym_POUND_EQ, ACTIONS(43), 1, - anon_sym_SQUOTE, + anon_sym_AT, ACTIONS(45), 1, - anon_sym_BQUOTE, + anon_sym_SQUOTE, ACTIONS(47), 1, - anon_sym_COMMA_AT, + anon_sym_BQUOTE, ACTIONS(49), 1, - anon_sym_COMMA, + anon_sym_COMMA_AT, ACTIONS(51), 1, - anon_sym_COLON, + anon_sym_COMMA, ACTIONS(55), 1, anon_sym_POUNDC, - STATE(815), 1, + STATE(780), 1, sym_sym_lit, - STATE(838), 1, + STATE(786), 1, sym__bare_vec_lit, - STATE(841), 1, + STATE(884), 1, sym__bare_set_lit, - STATE(930), 1, + STATE(892), 1, aux_sym_dis_expr_repeat1, - STATE(1047), 1, + STATE(1033), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1909), 1, + STATE(1863), 1, sym_dotted_sym_lit, ACTIONS(53), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(646), 2, + ACTIONS(650), 2, sym__ws, sym_comment, - ACTIONS(700), 2, + ACTIONS(724), 2, sym_num_lit, sym_char_lit, - ACTIONS(702), 2, + ACTIONS(726), 2, sym_nil_lit, sym_fancy_literal, - STATE(942), 2, + STATE(898), 2, sym__gap, sym_dis_expr, - STATE(842), 3, + STATE(787), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(858), 18, + STATE(838), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -13594,90 +13446,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [9614] = 38, + [9538] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(13), 1, - aux_sym_str_lit_token1, - ACTIONS(17), 1, - aux_sym_sym_lit_token1, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(23), 1, + ACTIONS(660), 1, + anon_sym_COLON, + ACTIONS(662), 1, + anon_sym_COLON_COLON, + ACTIONS(664), 1, + aux_sym_str_lit_token1, + ACTIONS(668), 1, + aux_sym_sym_lit_token1, + ACTIONS(670), 1, anon_sym_LPAREN, - ACTIONS(25), 1, + ACTIONS(672), 1, anon_sym_POUND0A, - ACTIONS(27), 1, + ACTIONS(674), 1, anon_sym_POUND, - ACTIONS(29), 1, + ACTIONS(676), 1, anon_sym_POUND_QMARK, - ACTIONS(31), 1, + ACTIONS(678), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(680), 1, + anon_sym_POUND_SQUOTE, + ACTIONS(682), 1, anon_sym_POUND_POUND, - ACTIONS(39), 1, + ACTIONS(684), 1, anon_sym_POUND_EQ, - ACTIONS(45), 1, - anon_sym_BQUOTE, - ACTIONS(55), 1, - anon_sym_POUNDC, - ACTIONS(652), 1, - anon_sym_COLON_COLON, - ACTIONS(654), 1, - anon_sym_POUND_SQUOTE, - ACTIONS(656), 1, + ACTIONS(686), 1, anon_sym_AT, - ACTIONS(658), 1, + ACTIONS(688), 1, anon_sym_SQUOTE, - ACTIONS(660), 1, + ACTIONS(690), 1, + anon_sym_BQUOTE, + ACTIONS(692), 1, anon_sym_COMMA_AT, - ACTIONS(662), 1, + ACTIONS(694), 1, anon_sym_COMMA, - ACTIONS(664), 1, - anon_sym_COLON, - STATE(368), 1, + ACTIONS(698), 1, + anon_sym_POUNDC, + STATE(205), 1, aux_sym_dis_expr_repeat1, - STATE(817), 1, + STATE(566), 1, sym_sym_lit, - STATE(838), 1, - sym__bare_vec_lit, - STATE(841), 1, + STATE(678), 1, sym__bare_set_lit, - STATE(999), 1, + STATE(679), 1, + sym__bare_vec_lit, + STATE(925), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1908), 1, + STATE(1868), 1, sym_dotted_sym_lit, - ACTIONS(646), 2, + ACTIONS(656), 2, sym__ws, sym_comment, - ACTIONS(666), 2, + ACTIONS(696), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(704), 2, + ACTIONS(728), 2, sym_num_lit, sym_char_lit, - ACTIONS(706), 2, + ACTIONS(730), 2, sym_nil_lit, sym_fancy_literal, - STATE(942), 2, + STATE(906), 2, sym__gap, sym_dis_expr, - STATE(842), 3, + STATE(680), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(849), 18, + STATE(574), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -13695,90 +13548,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [9753] = 38, + [9678] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(13), 1, - aux_sym_str_lit_token1, + anon_sym_COLON, + ACTIONS(15), 1, + anon_sym_COLON_COLON, ACTIONS(17), 1, - aux_sym_sym_lit_token1, - ACTIONS(19), 1, - anon_sym_CARET, + aux_sym_str_lit_token1, ACTIONS(21), 1, - anon_sym_POUND_CARET, + aux_sym_sym_lit_token1, ACTIONS(23), 1, - anon_sym_LPAREN, + anon_sym_CARET, ACTIONS(25), 1, - anon_sym_POUND0A, + anon_sym_POUND_CARET, ACTIONS(27), 1, - anon_sym_POUND, + anon_sym_LPAREN, ACTIONS(29), 1, - anon_sym_POUND_QMARK, + anon_sym_POUND0A, ACTIONS(31), 1, - anon_sym_POUND_QMARK_AT, + anon_sym_POUND, ACTIONS(33), 1, - anon_sym_COLON_COLON, + anon_sym_POUND_QMARK, ACTIONS(35), 1, - anon_sym_POUND_SQUOTE, + anon_sym_POUND_QMARK_AT, ACTIONS(37), 1, - anon_sym_POUND_POUND, + anon_sym_POUND_SQUOTE, ACTIONS(39), 1, - anon_sym_POUND_EQ, + anon_sym_POUND_POUND, ACTIONS(41), 1, - anon_sym_AT, + anon_sym_POUND_EQ, ACTIONS(43), 1, - anon_sym_SQUOTE, + anon_sym_AT, ACTIONS(45), 1, - anon_sym_BQUOTE, + anon_sym_SQUOTE, ACTIONS(47), 1, - anon_sym_COMMA_AT, + anon_sym_BQUOTE, ACTIONS(49), 1, - anon_sym_COMMA, + anon_sym_COMMA_AT, ACTIONS(51), 1, - anon_sym_COLON, + anon_sym_COMMA, ACTIONS(55), 1, anon_sym_POUNDC, - STATE(815), 1, + STATE(139), 1, + aux_sym_dis_expr_repeat1, + STATE(780), 1, sym_sym_lit, - STATE(838), 1, + STATE(786), 1, sym__bare_vec_lit, - STATE(841), 1, + STATE(884), 1, sym__bare_set_lit, - STATE(930), 1, - aux_sym_dis_expr_repeat1, - STATE(1047), 1, + STATE(1033), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1909), 1, + STATE(1863), 1, sym_dotted_sym_lit, ACTIONS(53), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(646), 2, + ACTIONS(650), 2, sym__ws, sym_comment, - ACTIONS(708), 2, + ACTIONS(732), 2, sym_num_lit, sym_char_lit, - ACTIONS(710), 2, + ACTIONS(734), 2, sym_nil_lit, sym_fancy_literal, - STATE(942), 2, + STATE(898), 2, sym__gap, sym_dis_expr, - STATE(842), 3, + STATE(787), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(859), 18, + STATE(112), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -13796,90 +13650,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [9892] = 38, + [9818] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(606), 1, + ACTIONS(518), 1, + anon_sym_COLON, + ACTIONS(520), 1, + anon_sym_COLON_COLON, + ACTIONS(522), 1, aux_sym_str_lit_token1, - ACTIONS(610), 1, + ACTIONS(526), 1, aux_sym_sym_lit_token1, - ACTIONS(612), 1, + ACTIONS(528), 1, anon_sym_LPAREN, - ACTIONS(614), 1, + ACTIONS(530), 1, anon_sym_POUND0A, - ACTIONS(616), 1, + ACTIONS(532), 1, anon_sym_POUND, - ACTIONS(618), 1, + ACTIONS(534), 1, anon_sym_POUND_QMARK, - ACTIONS(620), 1, + ACTIONS(536), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(622), 1, - anon_sym_COLON_COLON, - ACTIONS(624), 1, + ACTIONS(538), 1, anon_sym_POUND_SQUOTE, - ACTIONS(626), 1, + ACTIONS(540), 1, anon_sym_POUND_POUND, - ACTIONS(628), 1, + ACTIONS(542), 1, anon_sym_POUND_EQ, - ACTIONS(630), 1, + ACTIONS(544), 1, anon_sym_AT, - ACTIONS(632), 1, + ACTIONS(546), 1, anon_sym_SQUOTE, - ACTIONS(634), 1, + ACTIONS(548), 1, anon_sym_BQUOTE, - ACTIONS(636), 1, + ACTIONS(550), 1, anon_sym_COMMA_AT, - ACTIONS(638), 1, + ACTIONS(552), 1, anon_sym_COMMA, - ACTIONS(640), 1, - anon_sym_COLON, - ACTIONS(644), 1, + ACTIONS(556), 1, anon_sym_POUNDC, - STATE(930), 1, + STATE(117), 1, aux_sym_dis_expr_repeat1, - STATE(949), 1, + STATE(909), 1, sym_sym_lit, - STATE(963), 1, + STATE(922), 1, sym__bare_set_lit, - STATE(964), 1, + STATE(931), 1, sym__bare_vec_lit, - STATE(967), 1, + STATE(936), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1911), 1, + STATE(1865), 1, sym_dotted_sym_lit, - ACTIONS(602), 2, + ACTIONS(514), 2, sym__ws, sym_comment, - ACTIONS(642), 2, + ACTIONS(554), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(712), 2, + ACTIONS(736), 2, sym_num_lit, sym_char_lit, - ACTIONS(714), 2, + ACTIONS(738), 2, sym_nil_lit, sym_fancy_literal, - STATE(944), 2, + STATE(897), 2, sym__gap, sym_dis_expr, - STATE(965), 3, + STATE(930), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1060), 18, + STATE(1026), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -13897,90 +13752,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [10031] = 38, + [9958] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(13), 1, - aux_sym_str_lit_token1, + anon_sym_COLON, + ACTIONS(15), 1, + anon_sym_COLON_COLON, ACTIONS(17), 1, + aux_sym_str_lit_token1, + ACTIONS(21), 1, aux_sym_sym_lit_token1, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(23), 1, + ACTIONS(27), 1, anon_sym_LPAREN, - ACTIONS(25), 1, + ACTIONS(29), 1, anon_sym_POUND0A, - ACTIONS(27), 1, + ACTIONS(31), 1, anon_sym_POUND, - ACTIONS(29), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(31), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, ACTIONS(37), 1, - anon_sym_POUND_POUND, + anon_sym_POUND_SQUOTE, ACTIONS(39), 1, + anon_sym_POUND_POUND, + ACTIONS(41), 1, anon_sym_POUND_EQ, - ACTIONS(45), 1, - anon_sym_BQUOTE, - ACTIONS(55), 1, - anon_sym_POUNDC, - ACTIONS(652), 1, - anon_sym_COLON_COLON, - ACTIONS(654), 1, - anon_sym_POUND_SQUOTE, - ACTIONS(656), 1, + ACTIONS(43), 1, anon_sym_AT, - ACTIONS(658), 1, + ACTIONS(45), 1, anon_sym_SQUOTE, - ACTIONS(660), 1, + ACTIONS(47), 1, + anon_sym_BQUOTE, + ACTIONS(49), 1, anon_sym_COMMA_AT, - ACTIONS(662), 1, + ACTIONS(51), 1, anon_sym_COMMA, - ACTIONS(664), 1, - anon_sym_COLON, - STATE(817), 1, + ACTIONS(55), 1, + anon_sym_POUNDC, + STATE(780), 1, sym_sym_lit, - STATE(838), 1, + STATE(786), 1, sym__bare_vec_lit, - STATE(841), 1, + STATE(884), 1, sym__bare_set_lit, - STATE(930), 1, + STATE(892), 1, aux_sym_dis_expr_repeat1, - STATE(999), 1, + STATE(1033), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1908), 1, + STATE(1863), 1, sym_dotted_sym_lit, - ACTIONS(646), 2, - sym__ws, - sym_comment, - ACTIONS(666), 2, + ACTIONS(53), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(716), 2, + ACTIONS(650), 2, + sym__ws, + sym_comment, + ACTIONS(740), 2, sym_num_lit, sym_char_lit, - ACTIONS(718), 2, + ACTIONS(742), 2, sym_nil_lit, sym_fancy_literal, - STATE(942), 2, + STATE(898), 2, sym__gap, sym_dis_expr, - STATE(842), 3, + STATE(787), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(903), 18, + STATE(69), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -13998,90 +13854,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [10170] = 38, + [10098] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(13), 1, - aux_sym_str_lit_token1, - ACTIONS(17), 1, - aux_sym_sym_lit_token1, - ACTIONS(19), 1, - anon_sym_CARET, - ACTIONS(21), 1, - anon_sym_POUND_CARET, ACTIONS(23), 1, - anon_sym_LPAREN, + anon_sym_CARET, ACTIONS(25), 1, + anon_sym_POUND_CARET, + ACTIONS(140), 1, + anon_sym_COLON, + ACTIONS(142), 1, + anon_sym_COLON_COLON, + ACTIONS(144), 1, + aux_sym_str_lit_token1, + ACTIONS(148), 1, + aux_sym_sym_lit_token1, + ACTIONS(150), 1, anon_sym_POUND0A, - ACTIONS(27), 1, + ACTIONS(152), 1, anon_sym_POUND, - ACTIONS(29), 1, + ACTIONS(154), 1, anon_sym_POUND_QMARK, - ACTIONS(31), 1, + ACTIONS(156), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(33), 1, - anon_sym_COLON_COLON, - ACTIONS(35), 1, + ACTIONS(158), 1, anon_sym_POUND_SQUOTE, - ACTIONS(37), 1, + ACTIONS(160), 1, anon_sym_POUND_POUND, - ACTIONS(39), 1, + ACTIONS(162), 1, anon_sym_POUND_EQ, - ACTIONS(41), 1, + ACTIONS(164), 1, anon_sym_AT, - ACTIONS(43), 1, + ACTIONS(166), 1, anon_sym_SQUOTE, - ACTIONS(45), 1, + ACTIONS(168), 1, anon_sym_BQUOTE, - ACTIONS(47), 1, + ACTIONS(170), 1, anon_sym_COMMA_AT, - ACTIONS(49), 1, + ACTIONS(172), 1, anon_sym_COMMA, - ACTIONS(51), 1, - anon_sym_COLON, - ACTIONS(55), 1, + ACTIONS(178), 1, anon_sym_POUNDC, - STATE(316), 1, + ACTIONS(413), 1, + anon_sym_LPAREN, + STATE(186), 1, aux_sym_dis_expr_repeat1, - STATE(815), 1, + STATE(404), 1, sym_sym_lit, - STATE(838), 1, + STATE(487), 1, sym__bare_vec_lit, - STATE(841), 1, + STATE(488), 1, sym__bare_set_lit, - STATE(1047), 1, + STATE(981), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1909), 1, + STATE(1866), 1, sym_dotted_sym_lit, - ACTIONS(53), 2, + ACTIONS(176), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(646), 2, + ACTIONS(411), 2, sym__ws, sym_comment, - ACTIONS(720), 2, + ACTIONS(744), 2, sym_num_lit, sym_char_lit, - ACTIONS(722), 2, + ACTIONS(746), 2, sym_nil_lit, sym_fancy_literal, - STATE(942), 2, + STATE(903), 2, sym__gap, sym_dis_expr, - STATE(842), 3, + STATE(486), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(161), 18, + STATE(481), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -14099,90 +13956,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [10309] = 38, + [10238] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(13), 1, - aux_sym_str_lit_token1, + anon_sym_COLON, + ACTIONS(15), 1, + anon_sym_COLON_COLON, ACTIONS(17), 1, - aux_sym_sym_lit_token1, - ACTIONS(19), 1, - anon_sym_CARET, + aux_sym_str_lit_token1, ACTIONS(21), 1, - anon_sym_POUND_CARET, + aux_sym_sym_lit_token1, ACTIONS(23), 1, - anon_sym_LPAREN, + anon_sym_CARET, ACTIONS(25), 1, - anon_sym_POUND0A, + anon_sym_POUND_CARET, ACTIONS(27), 1, - anon_sym_POUND, + anon_sym_LPAREN, ACTIONS(29), 1, - anon_sym_POUND_QMARK, + anon_sym_POUND0A, ACTIONS(31), 1, - anon_sym_POUND_QMARK_AT, + anon_sym_POUND, ACTIONS(33), 1, - anon_sym_COLON_COLON, + anon_sym_POUND_QMARK, ACTIONS(35), 1, - anon_sym_POUND_SQUOTE, + anon_sym_POUND_QMARK_AT, ACTIONS(37), 1, - anon_sym_POUND_POUND, + anon_sym_POUND_SQUOTE, ACTIONS(39), 1, - anon_sym_POUND_EQ, + anon_sym_POUND_POUND, ACTIONS(41), 1, - anon_sym_AT, + anon_sym_POUND_EQ, ACTIONS(43), 1, - anon_sym_SQUOTE, + anon_sym_AT, ACTIONS(45), 1, - anon_sym_BQUOTE, + anon_sym_SQUOTE, ACTIONS(47), 1, - anon_sym_COMMA_AT, + anon_sym_BQUOTE, ACTIONS(49), 1, - anon_sym_COMMA, + anon_sym_COMMA_AT, ACTIONS(51), 1, - anon_sym_COLON, + anon_sym_COMMA, ACTIONS(55), 1, anon_sym_POUNDC, - STATE(815), 1, + STATE(780), 1, sym_sym_lit, - STATE(838), 1, + STATE(786), 1, sym__bare_vec_lit, - STATE(841), 1, + STATE(884), 1, sym__bare_set_lit, - STATE(930), 1, + STATE(892), 1, aux_sym_dis_expr_repeat1, - STATE(1047), 1, + STATE(1033), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1909), 1, + STATE(1863), 1, sym_dotted_sym_lit, ACTIONS(53), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(646), 2, + ACTIONS(650), 2, sym__ws, sym_comment, - ACTIONS(724), 2, + ACTIONS(748), 2, sym_num_lit, sym_char_lit, - ACTIONS(726), 2, + ACTIONS(750), 2, sym_nil_lit, sym_fancy_literal, - STATE(942), 2, + STATE(898), 2, sym__gap, sym_dis_expr, - STATE(842), 3, + STATE(787), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(861), 18, + STATE(835), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -14200,90 +14058,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [10448] = 38, + [10378] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(61), 1, + ACTIONS(140), 1, + anon_sym_COLON, + ACTIONS(142), 1, + anon_sym_COLON_COLON, + ACTIONS(144), 1, aux_sym_str_lit_token1, - ACTIONS(65), 1, + ACTIONS(148), 1, aux_sym_sym_lit_token1, - ACTIONS(67), 1, + ACTIONS(150), 1, anon_sym_POUND0A, - ACTIONS(69), 1, + ACTIONS(152), 1, anon_sym_POUND, - ACTIONS(71), 1, + ACTIONS(154), 1, anon_sym_POUND_QMARK, - ACTIONS(73), 1, + ACTIONS(156), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(75), 1, - anon_sym_COLON_COLON, - ACTIONS(77), 1, + ACTIONS(158), 1, anon_sym_POUND_SQUOTE, - ACTIONS(79), 1, + ACTIONS(160), 1, anon_sym_POUND_POUND, - ACTIONS(81), 1, + ACTIONS(162), 1, anon_sym_POUND_EQ, - ACTIONS(83), 1, + ACTIONS(164), 1, anon_sym_AT, - ACTIONS(85), 1, + ACTIONS(166), 1, anon_sym_SQUOTE, - ACTIONS(87), 1, + ACTIONS(168), 1, anon_sym_BQUOTE, - ACTIONS(89), 1, + ACTIONS(170), 1, anon_sym_COMMA_AT, - ACTIONS(91), 1, + ACTIONS(172), 1, anon_sym_COMMA, - ACTIONS(95), 1, - anon_sym_COLON, - ACTIONS(99), 1, + ACTIONS(178), 1, anon_sym_POUNDC, - ACTIONS(381), 1, + ACTIONS(413), 1, anon_sym_LPAREN, - STATE(446), 1, + STATE(169), 1, + aux_sym_dis_expr_repeat1, + STATE(404), 1, sym_sym_lit, - STATE(513), 1, - sym__bare_set_lit, - STATE(514), 1, + STATE(487), 1, sym__bare_vec_lit, - STATE(930), 1, - aux_sym_dis_expr_repeat1, - STATE(1044), 1, + STATE(488), 1, + sym__bare_set_lit, + STATE(981), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1907), 1, + STATE(1866), 1, sym_dotted_sym_lit, - ACTIONS(97), 2, + ACTIONS(176), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(379), 2, + ACTIONS(411), 2, sym__ws, sym_comment, - ACTIONS(728), 2, + ACTIONS(752), 2, sym_num_lit, sym_char_lit, - ACTIONS(730), 2, + ACTIONS(754), 2, sym_nil_lit, sym_fancy_literal, - STATE(934), 2, + STATE(903), 2, sym__gap, sym_dis_expr, - STATE(515), 3, + STATE(486), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(496), 18, + STATE(484), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -14301,90 +14160,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [10587] = 38, + [10518] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(13), 1, - aux_sym_str_lit_token1, + anon_sym_COLON, + ACTIONS(15), 1, + anon_sym_COLON_COLON, ACTIONS(17), 1, - aux_sym_sym_lit_token1, - ACTIONS(19), 1, - anon_sym_CARET, + aux_sym_str_lit_token1, ACTIONS(21), 1, - anon_sym_POUND_CARET, + aux_sym_sym_lit_token1, ACTIONS(23), 1, - anon_sym_LPAREN, + anon_sym_CARET, ACTIONS(25), 1, - anon_sym_POUND0A, + anon_sym_POUND_CARET, ACTIONS(27), 1, - anon_sym_POUND, + anon_sym_LPAREN, ACTIONS(29), 1, - anon_sym_POUND_QMARK, + anon_sym_POUND0A, ACTIONS(31), 1, - anon_sym_POUND_QMARK_AT, + anon_sym_POUND, ACTIONS(33), 1, - anon_sym_COLON_COLON, + anon_sym_POUND_QMARK, ACTIONS(35), 1, - anon_sym_POUND_SQUOTE, + anon_sym_POUND_QMARK_AT, ACTIONS(37), 1, - anon_sym_POUND_POUND, + anon_sym_POUND_SQUOTE, ACTIONS(39), 1, - anon_sym_POUND_EQ, + anon_sym_POUND_POUND, ACTIONS(41), 1, - anon_sym_AT, + anon_sym_POUND_EQ, ACTIONS(43), 1, - anon_sym_SQUOTE, + anon_sym_AT, ACTIONS(45), 1, - anon_sym_BQUOTE, + anon_sym_SQUOTE, ACTIONS(47), 1, - anon_sym_COMMA_AT, + anon_sym_BQUOTE, ACTIONS(49), 1, - anon_sym_COMMA, + anon_sym_COMMA_AT, ACTIONS(51), 1, - anon_sym_COLON, + anon_sym_COMMA, ACTIONS(55), 1, anon_sym_POUNDC, - STATE(815), 1, + STATE(780), 1, sym_sym_lit, - STATE(838), 1, + STATE(786), 1, sym__bare_vec_lit, - STATE(841), 1, + STATE(884), 1, sym__bare_set_lit, - STATE(930), 1, + STATE(892), 1, aux_sym_dis_expr_repeat1, - STATE(1047), 1, + STATE(1033), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1909), 1, + STATE(1863), 1, sym_dotted_sym_lit, ACTIONS(53), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(646), 2, + ACTIONS(650), 2, sym__ws, sym_comment, - ACTIONS(732), 2, + ACTIONS(756), 2, sym_num_lit, sym_char_lit, - ACTIONS(734), 2, + ACTIONS(758), 2, sym_nil_lit, sym_fancy_literal, - STATE(942), 2, + STATE(898), 2, sym__gap, sym_dis_expr, - STATE(842), 3, + STATE(787), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(862), 18, + STATE(834), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -14402,90 +14262,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [10726] = 38, + [10658] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(13), 1, - aux_sym_str_lit_token1, - ACTIONS(17), 1, - aux_sym_sym_lit_token1, - ACTIONS(19), 1, - anon_sym_CARET, - ACTIONS(21), 1, - anon_sym_POUND_CARET, ACTIONS(23), 1, - anon_sym_LPAREN, + anon_sym_CARET, ACTIONS(25), 1, + anon_sym_POUND_CARET, + ACTIONS(140), 1, + anon_sym_COLON, + ACTIONS(142), 1, + anon_sym_COLON_COLON, + ACTIONS(144), 1, + aux_sym_str_lit_token1, + ACTIONS(148), 1, + aux_sym_sym_lit_token1, + ACTIONS(150), 1, anon_sym_POUND0A, - ACTIONS(27), 1, + ACTIONS(152), 1, anon_sym_POUND, - ACTIONS(29), 1, + ACTIONS(154), 1, anon_sym_POUND_QMARK, - ACTIONS(31), 1, + ACTIONS(156), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(33), 1, - anon_sym_COLON_COLON, - ACTIONS(35), 1, + ACTIONS(158), 1, anon_sym_POUND_SQUOTE, - ACTIONS(37), 1, + ACTIONS(160), 1, anon_sym_POUND_POUND, - ACTIONS(39), 1, + ACTIONS(162), 1, anon_sym_POUND_EQ, - ACTIONS(41), 1, + ACTIONS(164), 1, anon_sym_AT, - ACTIONS(43), 1, + ACTIONS(166), 1, anon_sym_SQUOTE, - ACTIONS(45), 1, + ACTIONS(168), 1, anon_sym_BQUOTE, - ACTIONS(47), 1, + ACTIONS(170), 1, anon_sym_COMMA_AT, - ACTIONS(49), 1, + ACTIONS(172), 1, anon_sym_COMMA, - ACTIONS(51), 1, - anon_sym_COLON, - ACTIONS(55), 1, + ACTIONS(178), 1, anon_sym_POUNDC, - STATE(153), 1, + ACTIONS(413), 1, + anon_sym_LPAREN, + STATE(151), 1, aux_sym_dis_expr_repeat1, - STATE(815), 1, + STATE(404), 1, sym_sym_lit, - STATE(838), 1, + STATE(487), 1, sym__bare_vec_lit, - STATE(841), 1, + STATE(488), 1, sym__bare_set_lit, - STATE(1047), 1, + STATE(981), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1909), 1, + STATE(1866), 1, sym_dotted_sym_lit, - ACTIONS(53), 2, + ACTIONS(176), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(646), 2, + ACTIONS(411), 2, sym__ws, sym_comment, - ACTIONS(736), 2, + ACTIONS(760), 2, sym_num_lit, sym_char_lit, - ACTIONS(738), 2, + ACTIONS(762), 2, sym_nil_lit, sym_fancy_literal, - STATE(942), 2, + STATE(903), 2, sym__gap, sym_dis_expr, - STATE(842), 3, + STATE(486), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(863), 18, + STATE(498), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -14503,90 +14364,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [10865] = 38, + [10798] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(13), 1, - aux_sym_str_lit_token1, - ACTIONS(17), 1, - aux_sym_sym_lit_token1, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(23), 1, + ACTIONS(518), 1, + anon_sym_COLON, + ACTIONS(520), 1, + anon_sym_COLON_COLON, + ACTIONS(522), 1, + aux_sym_str_lit_token1, + ACTIONS(526), 1, + aux_sym_sym_lit_token1, + ACTIONS(528), 1, anon_sym_LPAREN, - ACTIONS(25), 1, + ACTIONS(530), 1, anon_sym_POUND0A, - ACTIONS(27), 1, + ACTIONS(532), 1, anon_sym_POUND, - ACTIONS(29), 1, + ACTIONS(534), 1, anon_sym_POUND_QMARK, - ACTIONS(31), 1, + ACTIONS(536), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(33), 1, - anon_sym_COLON_COLON, - ACTIONS(35), 1, + ACTIONS(538), 1, anon_sym_POUND_SQUOTE, - ACTIONS(37), 1, + ACTIONS(540), 1, anon_sym_POUND_POUND, - ACTIONS(39), 1, + ACTIONS(542), 1, anon_sym_POUND_EQ, - ACTIONS(41), 1, + ACTIONS(544), 1, anon_sym_AT, - ACTIONS(43), 1, + ACTIONS(546), 1, anon_sym_SQUOTE, - ACTIONS(45), 1, + ACTIONS(548), 1, anon_sym_BQUOTE, - ACTIONS(47), 1, + ACTIONS(550), 1, anon_sym_COMMA_AT, - ACTIONS(49), 1, + ACTIONS(552), 1, anon_sym_COMMA, - ACTIONS(51), 1, - anon_sym_COLON, - ACTIONS(55), 1, + ACTIONS(556), 1, anon_sym_POUNDC, - STATE(815), 1, + STATE(119), 1, + aux_sym_dis_expr_repeat1, + STATE(909), 1, sym_sym_lit, - STATE(838), 1, - sym__bare_vec_lit, - STATE(841), 1, + STATE(922), 1, sym__bare_set_lit, - STATE(930), 1, - aux_sym_dis_expr_repeat1, - STATE(1047), 1, + STATE(931), 1, + sym__bare_vec_lit, + STATE(936), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1909), 1, + STATE(1865), 1, sym_dotted_sym_lit, - ACTIONS(53), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(646), 2, + ACTIONS(514), 2, sym__ws, sym_comment, - ACTIONS(740), 2, + ACTIONS(554), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(764), 2, sym_num_lit, sym_char_lit, - ACTIONS(742), 2, + ACTIONS(766), 2, sym_nil_lit, sym_fancy_literal, - STATE(942), 2, + STATE(897), 2, sym__gap, sym_dis_expr, - STATE(842), 3, + STATE(930), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(154), 18, + STATE(1024), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -14604,90 +14466,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [11004] = 38, + [10938] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(13), 1, - aux_sym_str_lit_token1, + anon_sym_COLON, + ACTIONS(15), 1, + anon_sym_COLON_COLON, ACTIONS(17), 1, + aux_sym_str_lit_token1, + ACTIONS(21), 1, aux_sym_sym_lit_token1, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(23), 1, + ACTIONS(27), 1, anon_sym_LPAREN, - ACTIONS(25), 1, + ACTIONS(29), 1, anon_sym_POUND0A, - ACTIONS(27), 1, + ACTIONS(31), 1, anon_sym_POUND, - ACTIONS(29), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(31), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, ACTIONS(37), 1, - anon_sym_POUND_POUND, + anon_sym_POUND_SQUOTE, ACTIONS(39), 1, + anon_sym_POUND_POUND, + ACTIONS(41), 1, anon_sym_POUND_EQ, - ACTIONS(45), 1, - anon_sym_BQUOTE, - ACTIONS(55), 1, - anon_sym_POUNDC, - ACTIONS(652), 1, - anon_sym_COLON_COLON, - ACTIONS(654), 1, - anon_sym_POUND_SQUOTE, - ACTIONS(656), 1, + ACTIONS(43), 1, anon_sym_AT, - ACTIONS(658), 1, + ACTIONS(45), 1, anon_sym_SQUOTE, - ACTIONS(660), 1, + ACTIONS(47), 1, + anon_sym_BQUOTE, + ACTIONS(49), 1, anon_sym_COMMA_AT, - ACTIONS(662), 1, + ACTIONS(51), 1, anon_sym_COMMA, - ACTIONS(664), 1, - anon_sym_COLON, - STATE(69), 1, - aux_sym_dis_expr_repeat1, - STATE(817), 1, + ACTIONS(55), 1, + anon_sym_POUNDC, + STATE(780), 1, sym_sym_lit, - STATE(838), 1, + STATE(786), 1, sym__bare_vec_lit, - STATE(841), 1, + STATE(884), 1, sym__bare_set_lit, - STATE(999), 1, + STATE(892), 1, + aux_sym_dis_expr_repeat1, + STATE(1033), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1908), 1, + STATE(1863), 1, sym_dotted_sym_lit, - ACTIONS(646), 2, - sym__ws, - sym_comment, - ACTIONS(666), 2, + ACTIONS(53), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(744), 2, + ACTIONS(650), 2, + sym__ws, + sym_comment, + ACTIONS(768), 2, sym_num_lit, sym_char_lit, - ACTIONS(746), 2, + ACTIONS(770), 2, sym_nil_lit, sym_fancy_literal, - STATE(942), 2, + STATE(898), 2, sym__gap, sym_dis_expr, - STATE(842), 3, + STATE(787), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(896), 18, + STATE(831), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -14705,90 +14568,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [11143] = 38, + [11078] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(13), 1, - aux_sym_str_lit_token1, - ACTIONS(17), 1, - aux_sym_sym_lit_token1, - ACTIONS(19), 1, - anon_sym_CARET, - ACTIONS(21), 1, - anon_sym_POUND_CARET, ACTIONS(23), 1, - anon_sym_LPAREN, + anon_sym_CARET, ACTIONS(25), 1, + anon_sym_POUND_CARET, + ACTIONS(140), 1, + anon_sym_COLON, + ACTIONS(142), 1, + anon_sym_COLON_COLON, + ACTIONS(144), 1, + aux_sym_str_lit_token1, + ACTIONS(148), 1, + aux_sym_sym_lit_token1, + ACTIONS(150), 1, anon_sym_POUND0A, - ACTIONS(27), 1, + ACTIONS(152), 1, anon_sym_POUND, - ACTIONS(29), 1, + ACTIONS(154), 1, anon_sym_POUND_QMARK, - ACTIONS(31), 1, + ACTIONS(156), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(158), 1, + anon_sym_POUND_SQUOTE, + ACTIONS(160), 1, anon_sym_POUND_POUND, - ACTIONS(39), 1, + ACTIONS(162), 1, anon_sym_POUND_EQ, - ACTIONS(45), 1, - anon_sym_BQUOTE, - ACTIONS(55), 1, - anon_sym_POUNDC, - ACTIONS(652), 1, - anon_sym_COLON_COLON, - ACTIONS(654), 1, - anon_sym_POUND_SQUOTE, - ACTIONS(656), 1, + ACTIONS(164), 1, anon_sym_AT, - ACTIONS(658), 1, + ACTIONS(166), 1, anon_sym_SQUOTE, - ACTIONS(660), 1, + ACTIONS(168), 1, + anon_sym_BQUOTE, + ACTIONS(170), 1, anon_sym_COMMA_AT, - ACTIONS(662), 1, + ACTIONS(172), 1, anon_sym_COMMA, - ACTIONS(664), 1, - anon_sym_COLON, - STATE(76), 1, + ACTIONS(178), 1, + anon_sym_POUNDC, + ACTIONS(413), 1, + anon_sym_LPAREN, + STATE(96), 1, aux_sym_dis_expr_repeat1, - STATE(817), 1, + STATE(404), 1, sym_sym_lit, - STATE(838), 1, + STATE(487), 1, sym__bare_vec_lit, - STATE(841), 1, + STATE(488), 1, sym__bare_set_lit, - STATE(999), 1, + STATE(981), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1908), 1, + STATE(1866), 1, sym_dotted_sym_lit, - ACTIONS(646), 2, - sym__ws, - sym_comment, - ACTIONS(666), 2, + ACTIONS(176), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(748), 2, + ACTIONS(411), 2, + sym__ws, + sym_comment, + ACTIONS(772), 2, sym_num_lit, sym_char_lit, - ACTIONS(750), 2, + ACTIONS(774), 2, sym_nil_lit, sym_fancy_literal, - STATE(942), 2, + STATE(903), 2, sym__gap, sym_dis_expr, - STATE(842), 3, + STATE(486), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(895), 18, + STATE(485), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -14806,90 +14670,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [11282] = 38, + [11218] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(13), 1, - aux_sym_str_lit_token1, + anon_sym_COLON, + ACTIONS(15), 1, + anon_sym_COLON_COLON, ACTIONS(17), 1, - aux_sym_sym_lit_token1, - ACTIONS(19), 1, - anon_sym_CARET, + aux_sym_str_lit_token1, ACTIONS(21), 1, - anon_sym_POUND_CARET, + aux_sym_sym_lit_token1, ACTIONS(23), 1, - anon_sym_LPAREN, + anon_sym_CARET, ACTIONS(25), 1, - anon_sym_POUND0A, + anon_sym_POUND_CARET, ACTIONS(27), 1, - anon_sym_POUND, + anon_sym_LPAREN, ACTIONS(29), 1, - anon_sym_POUND_QMARK, + anon_sym_POUND0A, ACTIONS(31), 1, - anon_sym_POUND_QMARK_AT, + anon_sym_POUND, ACTIONS(33), 1, - anon_sym_COLON_COLON, + anon_sym_POUND_QMARK, ACTIONS(35), 1, - anon_sym_POUND_SQUOTE, + anon_sym_POUND_QMARK_AT, ACTIONS(37), 1, - anon_sym_POUND_POUND, + anon_sym_POUND_SQUOTE, ACTIONS(39), 1, - anon_sym_POUND_EQ, + anon_sym_POUND_POUND, ACTIONS(41), 1, - anon_sym_AT, + anon_sym_POUND_EQ, ACTIONS(43), 1, - anon_sym_SQUOTE, + anon_sym_AT, ACTIONS(45), 1, - anon_sym_BQUOTE, + anon_sym_SQUOTE, ACTIONS(47), 1, - anon_sym_COMMA_AT, + anon_sym_BQUOTE, ACTIONS(49), 1, - anon_sym_COMMA, + anon_sym_COMMA_AT, ACTIONS(51), 1, - anon_sym_COLON, + anon_sym_COMMA, ACTIONS(55), 1, anon_sym_POUNDC, - STATE(72), 1, - aux_sym_dis_expr_repeat1, - STATE(815), 1, + STATE(780), 1, sym_sym_lit, - STATE(838), 1, + STATE(786), 1, sym__bare_vec_lit, - STATE(841), 1, + STATE(884), 1, sym__bare_set_lit, - STATE(1047), 1, + STATE(892), 1, + aux_sym_dis_expr_repeat1, + STATE(1033), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1909), 1, + STATE(1863), 1, sym_dotted_sym_lit, ACTIONS(53), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(646), 2, + ACTIONS(650), 2, sym__ws, sym_comment, - ACTIONS(752), 2, + ACTIONS(776), 2, sym_num_lit, sym_char_lit, - ACTIONS(754), 2, + ACTIONS(778), 2, sym_nil_lit, sym_fancy_literal, - STATE(942), 2, + STATE(898), 2, sym__gap, sym_dis_expr, - STATE(842), 3, + STATE(787), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(162), 18, + STATE(830), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -14907,90 +14772,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [11421] = 38, + [11358] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(13), 1, - aux_sym_str_lit_token1, + anon_sym_COLON, + ACTIONS(15), 1, + anon_sym_COLON_COLON, ACTIONS(17), 1, + aux_sym_str_lit_token1, + ACTIONS(21), 1, aux_sym_sym_lit_token1, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(23), 1, + ACTIONS(27), 1, anon_sym_LPAREN, - ACTIONS(25), 1, + ACTIONS(29), 1, anon_sym_POUND0A, - ACTIONS(27), 1, + ACTIONS(31), 1, anon_sym_POUND, - ACTIONS(29), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(31), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, ACTIONS(37), 1, - anon_sym_POUND_POUND, + anon_sym_POUND_SQUOTE, ACTIONS(39), 1, + anon_sym_POUND_POUND, + ACTIONS(41), 1, anon_sym_POUND_EQ, - ACTIONS(45), 1, - anon_sym_BQUOTE, - ACTIONS(55), 1, - anon_sym_POUNDC, - ACTIONS(652), 1, - anon_sym_COLON_COLON, - ACTIONS(654), 1, - anon_sym_POUND_SQUOTE, - ACTIONS(656), 1, + ACTIONS(43), 1, anon_sym_AT, - ACTIONS(658), 1, + ACTIONS(45), 1, anon_sym_SQUOTE, - ACTIONS(660), 1, + ACTIONS(47), 1, + anon_sym_BQUOTE, + ACTIONS(49), 1, anon_sym_COMMA_AT, - ACTIONS(662), 1, + ACTIONS(51), 1, anon_sym_COMMA, - ACTIONS(664), 1, - anon_sym_COLON, - STATE(817), 1, + ACTIONS(55), 1, + anon_sym_POUNDC, + STATE(153), 1, + aux_sym_dis_expr_repeat1, + STATE(780), 1, sym_sym_lit, - STATE(838), 1, + STATE(786), 1, sym__bare_vec_lit, - STATE(841), 1, + STATE(884), 1, sym__bare_set_lit, - STATE(930), 1, - aux_sym_dis_expr_repeat1, - STATE(999), 1, + STATE(1033), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1908), 1, + STATE(1863), 1, sym_dotted_sym_lit, - ACTIONS(646), 2, - sym__ws, - sym_comment, - ACTIONS(666), 2, + ACTIONS(53), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(756), 2, + ACTIONS(650), 2, + sym__ws, + sym_comment, + ACTIONS(780), 2, sym_num_lit, sym_char_lit, - ACTIONS(758), 2, + ACTIONS(782), 2, sym_nil_lit, sym_fancy_literal, - STATE(942), 2, + STATE(898), 2, sym__gap, sym_dis_expr, - STATE(842), 3, + STATE(787), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(894), 18, + STATE(829), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -15008,90 +14874,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [11560] = 38, + [11498] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(13), 1, - aux_sym_str_lit_token1, + anon_sym_COLON, + ACTIONS(15), 1, + anon_sym_COLON_COLON, ACTIONS(17), 1, + aux_sym_str_lit_token1, + ACTIONS(21), 1, aux_sym_sym_lit_token1, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(23), 1, + ACTIONS(27), 1, anon_sym_LPAREN, - ACTIONS(25), 1, + ACTIONS(29), 1, anon_sym_POUND0A, - ACTIONS(27), 1, + ACTIONS(31), 1, anon_sym_POUND, - ACTIONS(29), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(31), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, ACTIONS(37), 1, - anon_sym_POUND_POUND, + anon_sym_POUND_SQUOTE, ACTIONS(39), 1, + anon_sym_POUND_POUND, + ACTIONS(41), 1, anon_sym_POUND_EQ, - ACTIONS(45), 1, - anon_sym_BQUOTE, - ACTIONS(55), 1, - anon_sym_POUNDC, - ACTIONS(652), 1, - anon_sym_COLON_COLON, - ACTIONS(654), 1, - anon_sym_POUND_SQUOTE, - ACTIONS(656), 1, + ACTIONS(43), 1, anon_sym_AT, - ACTIONS(658), 1, + ACTIONS(45), 1, anon_sym_SQUOTE, - ACTIONS(660), 1, + ACTIONS(47), 1, + anon_sym_BQUOTE, + ACTIONS(49), 1, anon_sym_COMMA_AT, - ACTIONS(662), 1, + ACTIONS(51), 1, anon_sym_COMMA, - ACTIONS(664), 1, - anon_sym_COLON, - STATE(817), 1, + ACTIONS(55), 1, + anon_sym_POUNDC, + STATE(780), 1, sym_sym_lit, - STATE(838), 1, + STATE(786), 1, sym__bare_vec_lit, - STATE(841), 1, + STATE(884), 1, sym__bare_set_lit, - STATE(930), 1, + STATE(892), 1, aux_sym_dis_expr_repeat1, - STATE(999), 1, + STATE(1033), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1908), 1, + STATE(1863), 1, sym_dotted_sym_lit, - ACTIONS(646), 2, - sym__ws, - sym_comment, - ACTIONS(666), 2, + ACTIONS(53), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(760), 2, + ACTIONS(650), 2, + sym__ws, + sym_comment, + ACTIONS(784), 2, sym_num_lit, sym_char_lit, - ACTIONS(762), 2, + ACTIONS(786), 2, sym_nil_lit, sym_fancy_literal, - STATE(942), 2, + STATE(898), 2, sym__gap, sym_dis_expr, - STATE(842), 3, + STATE(787), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(893), 18, + STATE(154), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -15109,90 +14976,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [11699] = 38, + [11638] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(13), 1, - aux_sym_str_lit_token1, - ACTIONS(17), 1, - aux_sym_sym_lit_token1, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(23), 1, + ACTIONS(518), 1, + anon_sym_COLON, + ACTIONS(520), 1, + anon_sym_COLON_COLON, + ACTIONS(522), 1, + aux_sym_str_lit_token1, + ACTIONS(526), 1, + aux_sym_sym_lit_token1, + ACTIONS(528), 1, anon_sym_LPAREN, - ACTIONS(25), 1, + ACTIONS(530), 1, anon_sym_POUND0A, - ACTIONS(27), 1, + ACTIONS(532), 1, anon_sym_POUND, - ACTIONS(29), 1, + ACTIONS(534), 1, anon_sym_POUND_QMARK, - ACTIONS(31), 1, + ACTIONS(536), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(33), 1, - anon_sym_COLON_COLON, - ACTIONS(35), 1, + ACTIONS(538), 1, anon_sym_POUND_SQUOTE, - ACTIONS(37), 1, + ACTIONS(540), 1, anon_sym_POUND_POUND, - ACTIONS(39), 1, + ACTIONS(542), 1, anon_sym_POUND_EQ, - ACTIONS(41), 1, + ACTIONS(544), 1, anon_sym_AT, - ACTIONS(43), 1, + ACTIONS(546), 1, anon_sym_SQUOTE, - ACTIONS(45), 1, + ACTIONS(548), 1, anon_sym_BQUOTE, - ACTIONS(47), 1, + ACTIONS(550), 1, anon_sym_COMMA_AT, - ACTIONS(49), 1, + ACTIONS(552), 1, anon_sym_COMMA, - ACTIONS(51), 1, - anon_sym_COLON, - ACTIONS(55), 1, + ACTIONS(556), 1, anon_sym_POUNDC, - STATE(815), 1, + STATE(120), 1, + aux_sym_dis_expr_repeat1, + STATE(909), 1, sym_sym_lit, - STATE(838), 1, - sym__bare_vec_lit, - STATE(841), 1, + STATE(922), 1, sym__bare_set_lit, - STATE(930), 1, - aux_sym_dis_expr_repeat1, - STATE(1047), 1, + STATE(931), 1, + sym__bare_vec_lit, + STATE(936), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1909), 1, + STATE(1865), 1, sym_dotted_sym_lit, - ACTIONS(53), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(646), 2, + ACTIONS(514), 2, sym__ws, sym_comment, - ACTIONS(764), 2, + ACTIONS(554), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(788), 2, sym_num_lit, sym_char_lit, - ACTIONS(766), 2, + ACTIONS(790), 2, sym_nil_lit, sym_fancy_literal, - STATE(942), 2, + STATE(897), 2, sym__gap, sym_dis_expr, - STATE(842), 3, + STATE(930), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(200), 18, + STATE(1023), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -15210,90 +15078,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [11838] = 38, + [11778] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(13), 1, - aux_sym_str_lit_token1, - ACTIONS(17), 1, - aux_sym_sym_lit_token1, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(23), 1, + ACTIONS(518), 1, + anon_sym_COLON, + ACTIONS(520), 1, + anon_sym_COLON_COLON, + ACTIONS(522), 1, + aux_sym_str_lit_token1, + ACTIONS(526), 1, + aux_sym_sym_lit_token1, + ACTIONS(528), 1, anon_sym_LPAREN, - ACTIONS(25), 1, + ACTIONS(530), 1, anon_sym_POUND0A, - ACTIONS(27), 1, + ACTIONS(532), 1, anon_sym_POUND, - ACTIONS(29), 1, + ACTIONS(534), 1, anon_sym_POUND_QMARK, - ACTIONS(31), 1, + ACTIONS(536), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(33), 1, - anon_sym_COLON_COLON, - ACTIONS(35), 1, + ACTIONS(538), 1, anon_sym_POUND_SQUOTE, - ACTIONS(37), 1, + ACTIONS(540), 1, anon_sym_POUND_POUND, - ACTIONS(39), 1, + ACTIONS(542), 1, anon_sym_POUND_EQ, - ACTIONS(41), 1, + ACTIONS(544), 1, anon_sym_AT, - ACTIONS(43), 1, + ACTIONS(546), 1, anon_sym_SQUOTE, - ACTIONS(45), 1, + ACTIONS(548), 1, anon_sym_BQUOTE, - ACTIONS(47), 1, + ACTIONS(550), 1, anon_sym_COMMA_AT, - ACTIONS(49), 1, + ACTIONS(552), 1, anon_sym_COMMA, - ACTIONS(51), 1, - anon_sym_COLON, - ACTIONS(55), 1, + ACTIONS(556), 1, anon_sym_POUNDC, - STATE(207), 1, + STATE(892), 1, aux_sym_dis_expr_repeat1, - STATE(815), 1, + STATE(909), 1, sym_sym_lit, - STATE(838), 1, - sym__bare_vec_lit, - STATE(841), 1, + STATE(922), 1, sym__bare_set_lit, - STATE(1047), 1, + STATE(931), 1, + sym__bare_vec_lit, + STATE(936), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1909), 1, + STATE(1865), 1, sym_dotted_sym_lit, - ACTIONS(53), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(646), 2, + ACTIONS(514), 2, sym__ws, sym_comment, - ACTIONS(704), 2, + ACTIONS(554), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(792), 2, sym_num_lit, sym_char_lit, - ACTIONS(706), 2, + ACTIONS(794), 2, sym_nil_lit, sym_fancy_literal, - STATE(942), 2, + STATE(897), 2, sym__gap, sym_dis_expr, - STATE(842), 3, + STATE(930), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(849), 18, + STATE(1018), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -15311,90 +15180,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [11977] = 38, + [11918] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(61), 1, + ACTIONS(140), 1, + anon_sym_COLON, + ACTIONS(142), 1, + anon_sym_COLON_COLON, + ACTIONS(144), 1, aux_sym_str_lit_token1, - ACTIONS(65), 1, + ACTIONS(148), 1, aux_sym_sym_lit_token1, - ACTIONS(67), 1, + ACTIONS(150), 1, anon_sym_POUND0A, - ACTIONS(69), 1, + ACTIONS(152), 1, anon_sym_POUND, - ACTIONS(71), 1, + ACTIONS(154), 1, anon_sym_POUND_QMARK, - ACTIONS(73), 1, + ACTIONS(156), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(75), 1, - anon_sym_COLON_COLON, - ACTIONS(77), 1, + ACTIONS(158), 1, anon_sym_POUND_SQUOTE, - ACTIONS(79), 1, + ACTIONS(160), 1, anon_sym_POUND_POUND, - ACTIONS(81), 1, + ACTIONS(162), 1, anon_sym_POUND_EQ, - ACTIONS(83), 1, + ACTIONS(164), 1, anon_sym_AT, - ACTIONS(85), 1, + ACTIONS(166), 1, anon_sym_SQUOTE, - ACTIONS(87), 1, + ACTIONS(168), 1, anon_sym_BQUOTE, - ACTIONS(89), 1, + ACTIONS(170), 1, anon_sym_COMMA_AT, - ACTIONS(91), 1, + ACTIONS(172), 1, anon_sym_COMMA, - ACTIONS(95), 1, - anon_sym_COLON, - ACTIONS(99), 1, + ACTIONS(178), 1, anon_sym_POUNDC, - ACTIONS(381), 1, + ACTIONS(413), 1, anon_sym_LPAREN, - STATE(446), 1, + STATE(404), 1, sym_sym_lit, - STATE(513), 1, - sym__bare_set_lit, - STATE(514), 1, + STATE(487), 1, sym__bare_vec_lit, - STATE(930), 1, + STATE(488), 1, + sym__bare_set_lit, + STATE(892), 1, aux_sym_dis_expr_repeat1, - STATE(1044), 1, + STATE(981), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1907), 1, + STATE(1866), 1, sym_dotted_sym_lit, - ACTIONS(97), 2, + ACTIONS(176), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(379), 2, + ACTIONS(411), 2, sym__ws, sym_comment, - ACTIONS(768), 2, + ACTIONS(796), 2, sym_num_lit, sym_char_lit, - ACTIONS(770), 2, + ACTIONS(798), 2, sym_nil_lit, sym_fancy_literal, - STATE(934), 2, + STATE(903), 2, sym__gap, sym_dis_expr, - STATE(515), 3, + STATE(486), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(495), 18, + STATE(466), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -15412,90 +15282,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [12116] = 38, + [12058] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(606), 1, - aux_sym_str_lit_token1, ACTIONS(610), 1, - aux_sym_sym_lit_token1, + anon_sym_COLON, ACTIONS(612), 1, - anon_sym_LPAREN, + anon_sym_COLON_COLON, ACTIONS(614), 1, - anon_sym_POUND0A, - ACTIONS(616), 1, - anon_sym_POUND, + aux_sym_str_lit_token1, ACTIONS(618), 1, - anon_sym_POUND_QMARK, + aux_sym_sym_lit_token1, ACTIONS(620), 1, - anon_sym_POUND_QMARK_AT, + anon_sym_LPAREN, ACTIONS(622), 1, - anon_sym_COLON_COLON, + anon_sym_POUND0A, ACTIONS(624), 1, - anon_sym_POUND_SQUOTE, + anon_sym_POUND, ACTIONS(626), 1, - anon_sym_POUND_POUND, + anon_sym_POUND_QMARK, ACTIONS(628), 1, - anon_sym_POUND_EQ, + anon_sym_POUND_QMARK_AT, ACTIONS(630), 1, - anon_sym_AT, + anon_sym_POUND_SQUOTE, ACTIONS(632), 1, - anon_sym_SQUOTE, + anon_sym_POUND_POUND, ACTIONS(634), 1, - anon_sym_BQUOTE, + anon_sym_POUND_EQ, ACTIONS(636), 1, - anon_sym_COMMA_AT, + anon_sym_AT, ACTIONS(638), 1, - anon_sym_COMMA, + anon_sym_SQUOTE, ACTIONS(640), 1, - anon_sym_COLON, + anon_sym_BQUOTE, + ACTIONS(642), 1, + anon_sym_COMMA_AT, ACTIONS(644), 1, + anon_sym_COMMA, + ACTIONS(648), 1, anon_sym_POUNDC, - STATE(930), 1, - aux_sym_dis_expr_repeat1, - STATE(949), 1, + STATE(545), 1, sym_sym_lit, - STATE(963), 1, - sym__bare_set_lit, - STATE(964), 1, + STATE(688), 1, sym__bare_vec_lit, - STATE(967), 1, + STATE(691), 1, + sym__bare_set_lit, + STATE(892), 1, + aux_sym_dis_expr_repeat1, + STATE(1013), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1911), 1, + STATE(1862), 1, sym_dotted_sym_lit, - ACTIONS(602), 2, + ACTIONS(606), 2, sym__ws, sym_comment, - ACTIONS(642), 2, + ACTIONS(646), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(772), 2, + ACTIONS(800), 2, sym_num_lit, sym_char_lit, - ACTIONS(774), 2, + ACTIONS(802), 2, sym_nil_lit, sym_fancy_literal, - STATE(944), 2, + STATE(896), 2, sym__gap, sym_dis_expr, - STATE(965), 3, + STATE(687), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1052), 18, + STATE(751), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -15513,90 +15384,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [12255] = 38, + [12198] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(13), 1, - aux_sym_str_lit_token1, - ACTIONS(17), 1, - aux_sym_sym_lit_token1, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(23), 1, + ACTIONS(610), 1, + anon_sym_COLON, + ACTIONS(612), 1, + anon_sym_COLON_COLON, + ACTIONS(614), 1, + aux_sym_str_lit_token1, + ACTIONS(618), 1, + aux_sym_sym_lit_token1, + ACTIONS(620), 1, anon_sym_LPAREN, - ACTIONS(25), 1, + ACTIONS(622), 1, anon_sym_POUND0A, - ACTIONS(27), 1, + ACTIONS(624), 1, anon_sym_POUND, - ACTIONS(29), 1, + ACTIONS(626), 1, anon_sym_POUND_QMARK, - ACTIONS(31), 1, + ACTIONS(628), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(630), 1, + anon_sym_POUND_SQUOTE, + ACTIONS(632), 1, anon_sym_POUND_POUND, - ACTIONS(39), 1, + ACTIONS(634), 1, anon_sym_POUND_EQ, - ACTIONS(45), 1, - anon_sym_BQUOTE, - ACTIONS(55), 1, - anon_sym_POUNDC, - ACTIONS(652), 1, - anon_sym_COLON_COLON, - ACTIONS(654), 1, - anon_sym_POUND_SQUOTE, - ACTIONS(656), 1, + ACTIONS(636), 1, anon_sym_AT, - ACTIONS(658), 1, + ACTIONS(638), 1, anon_sym_SQUOTE, - ACTIONS(660), 1, + ACTIONS(640), 1, + anon_sym_BQUOTE, + ACTIONS(642), 1, anon_sym_COMMA_AT, - ACTIONS(662), 1, + ACTIONS(644), 1, anon_sym_COMMA, - ACTIONS(664), 1, - anon_sym_COLON, - STATE(817), 1, + ACTIONS(648), 1, + anon_sym_POUNDC, + STATE(545), 1, sym_sym_lit, - STATE(838), 1, + STATE(688), 1, sym__bare_vec_lit, - STATE(841), 1, + STATE(691), 1, sym__bare_set_lit, - STATE(930), 1, + STATE(892), 1, aux_sym_dis_expr_repeat1, - STATE(999), 1, + STATE(1013), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1908), 1, + STATE(1862), 1, sym_dotted_sym_lit, - ACTIONS(646), 2, + ACTIONS(606), 2, sym__ws, sym_comment, - ACTIONS(666), 2, + ACTIONS(646), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(776), 2, + ACTIONS(804), 2, sym_num_lit, sym_char_lit, - ACTIONS(778), 2, + ACTIONS(806), 2, sym_nil_lit, sym_fancy_literal, - STATE(942), 2, + STATE(896), 2, sym__gap, sym_dis_expr, - STATE(842), 3, + STATE(687), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(892), 18, + STATE(757), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -15614,90 +15486,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [12394] = 38, + [12338] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(13), 1, - aux_sym_str_lit_token1, + anon_sym_COLON, + ACTIONS(15), 1, + anon_sym_COLON_COLON, ACTIONS(17), 1, + aux_sym_str_lit_token1, + ACTIONS(21), 1, aux_sym_sym_lit_token1, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(23), 1, + ACTIONS(27), 1, anon_sym_LPAREN, - ACTIONS(25), 1, + ACTIONS(29), 1, anon_sym_POUND0A, - ACTIONS(27), 1, + ACTIONS(31), 1, anon_sym_POUND, - ACTIONS(29), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(31), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, ACTIONS(37), 1, - anon_sym_POUND_POUND, + anon_sym_POUND_SQUOTE, ACTIONS(39), 1, + anon_sym_POUND_POUND, + ACTIONS(41), 1, anon_sym_POUND_EQ, - ACTIONS(45), 1, - anon_sym_BQUOTE, - ACTIONS(55), 1, - anon_sym_POUNDC, - ACTIONS(652), 1, - anon_sym_COLON_COLON, - ACTIONS(654), 1, - anon_sym_POUND_SQUOTE, - ACTIONS(656), 1, + ACTIONS(43), 1, anon_sym_AT, - ACTIONS(658), 1, + ACTIONS(45), 1, anon_sym_SQUOTE, - ACTIONS(660), 1, + ACTIONS(47), 1, + anon_sym_BQUOTE, + ACTIONS(49), 1, anon_sym_COMMA_AT, - ACTIONS(662), 1, + ACTIONS(51), 1, anon_sym_COMMA, - ACTIONS(664), 1, - anon_sym_COLON, - STATE(817), 1, + ACTIONS(55), 1, + anon_sym_POUNDC, + STATE(82), 1, + aux_sym_dis_expr_repeat1, + STATE(780), 1, sym_sym_lit, - STATE(838), 1, + STATE(786), 1, sym__bare_vec_lit, - STATE(841), 1, + STATE(884), 1, sym__bare_set_lit, - STATE(930), 1, - aux_sym_dis_expr_repeat1, - STATE(999), 1, + STATE(1033), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1908), 1, + STATE(1863), 1, sym_dotted_sym_lit, - ACTIONS(646), 2, - sym__ws, - sym_comment, - ACTIONS(666), 2, + ACTIONS(53), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(780), 2, + ACTIONS(650), 2, + sym__ws, + sym_comment, + ACTIONS(808), 2, sym_num_lit, sym_char_lit, - ACTIONS(782), 2, + ACTIONS(810), 2, sym_nil_lit, sym_fancy_literal, - STATE(942), 2, + STATE(898), 2, sym__gap, sym_dis_expr, - STATE(842), 3, + STATE(787), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(887), 18, + STATE(243), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -15715,90 +15588,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [12533] = 38, + [12478] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(13), 1, - aux_sym_str_lit_token1, - ACTIONS(17), 1, - aux_sym_sym_lit_token1, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(23), 1, + ACTIONS(518), 1, + anon_sym_COLON, + ACTIONS(520), 1, + anon_sym_COLON_COLON, + ACTIONS(522), 1, + aux_sym_str_lit_token1, + ACTIONS(526), 1, + aux_sym_sym_lit_token1, + ACTIONS(528), 1, anon_sym_LPAREN, - ACTIONS(25), 1, + ACTIONS(530), 1, anon_sym_POUND0A, - ACTIONS(27), 1, + ACTIONS(532), 1, anon_sym_POUND, - ACTIONS(29), 1, + ACTIONS(534), 1, anon_sym_POUND_QMARK, - ACTIONS(31), 1, + ACTIONS(536), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(33), 1, - anon_sym_COLON_COLON, - ACTIONS(35), 1, + ACTIONS(538), 1, anon_sym_POUND_SQUOTE, - ACTIONS(37), 1, + ACTIONS(540), 1, anon_sym_POUND_POUND, - ACTIONS(39), 1, + ACTIONS(542), 1, anon_sym_POUND_EQ, - ACTIONS(41), 1, + ACTIONS(544), 1, anon_sym_AT, - ACTIONS(43), 1, + ACTIONS(546), 1, anon_sym_SQUOTE, - ACTIONS(45), 1, + ACTIONS(548), 1, anon_sym_BQUOTE, - ACTIONS(47), 1, + ACTIONS(550), 1, anon_sym_COMMA_AT, - ACTIONS(49), 1, + ACTIONS(552), 1, anon_sym_COMMA, - ACTIONS(51), 1, - anon_sym_COLON, - ACTIONS(55), 1, + ACTIONS(556), 1, anon_sym_POUNDC, - STATE(167), 1, + STATE(892), 1, aux_sym_dis_expr_repeat1, - STATE(815), 1, + STATE(909), 1, sym_sym_lit, - STATE(838), 1, - sym__bare_vec_lit, - STATE(841), 1, + STATE(922), 1, sym__bare_set_lit, - STATE(1047), 1, + STATE(931), 1, + sym__bare_vec_lit, + STATE(936), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1909), 1, + STATE(1865), 1, sym_dotted_sym_lit, - ACTIONS(53), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(646), 2, + ACTIONS(514), 2, sym__ws, sym_comment, - ACTIONS(784), 2, + ACTIONS(554), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(812), 2, sym_num_lit, sym_char_lit, - ACTIONS(786), 2, + ACTIONS(814), 2, sym_nil_lit, sym_fancy_literal, - STATE(942), 2, + STATE(897), 2, sym__gap, sym_dis_expr, - STATE(842), 3, + STATE(930), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(867), 18, + STATE(1009), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -15816,90 +15690,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [12672] = 38, + [12618] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(13), 1, - aux_sym_str_lit_token1, - ACTIONS(17), 1, - aux_sym_sym_lit_token1, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(23), 1, + ACTIONS(610), 1, + anon_sym_COLON, + ACTIONS(612), 1, + anon_sym_COLON_COLON, + ACTIONS(614), 1, + aux_sym_str_lit_token1, + ACTIONS(618), 1, + aux_sym_sym_lit_token1, + ACTIONS(620), 1, anon_sym_LPAREN, - ACTIONS(25), 1, + ACTIONS(622), 1, anon_sym_POUND0A, - ACTIONS(27), 1, + ACTIONS(624), 1, anon_sym_POUND, - ACTIONS(29), 1, + ACTIONS(626), 1, anon_sym_POUND_QMARK, - ACTIONS(31), 1, + ACTIONS(628), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(33), 1, - anon_sym_COLON_COLON, - ACTIONS(35), 1, + ACTIONS(630), 1, anon_sym_POUND_SQUOTE, - ACTIONS(37), 1, + ACTIONS(632), 1, anon_sym_POUND_POUND, - ACTIONS(39), 1, + ACTIONS(634), 1, anon_sym_POUND_EQ, - ACTIONS(41), 1, + ACTIONS(636), 1, anon_sym_AT, - ACTIONS(43), 1, + ACTIONS(638), 1, anon_sym_SQUOTE, - ACTIONS(45), 1, + ACTIONS(640), 1, anon_sym_BQUOTE, - ACTIONS(47), 1, + ACTIONS(642), 1, anon_sym_COMMA_AT, - ACTIONS(49), 1, + ACTIONS(644), 1, anon_sym_COMMA, - ACTIONS(51), 1, - anon_sym_COLON, - ACTIONS(55), 1, + ACTIONS(648), 1, anon_sym_POUNDC, - STATE(134), 1, - aux_sym_dis_expr_repeat1, - STATE(815), 1, + STATE(545), 1, sym_sym_lit, - STATE(838), 1, + STATE(688), 1, sym__bare_vec_lit, - STATE(841), 1, + STATE(691), 1, sym__bare_set_lit, - STATE(1047), 1, + STATE(892), 1, + aux_sym_dis_expr_repeat1, + STATE(1013), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1909), 1, + STATE(1862), 1, sym_dotted_sym_lit, - ACTIONS(53), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(646), 2, + ACTIONS(606), 2, sym__ws, sym_comment, - ACTIONS(788), 2, + ACTIONS(646), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(816), 2, sym_num_lit, sym_char_lit, - ACTIONS(790), 2, + ACTIONS(818), 2, sym_nil_lit, sym_fancy_literal, - STATE(942), 2, + STATE(896), 2, sym__gap, sym_dis_expr, - STATE(842), 3, + STATE(687), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(156), 18, + STATE(759), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -15917,90 +15792,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [12811] = 38, + [12758] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(13), 1, - aux_sym_str_lit_token1, + anon_sym_COLON, + ACTIONS(15), 1, + anon_sym_COLON_COLON, ACTIONS(17), 1, - aux_sym_sym_lit_token1, - ACTIONS(19), 1, - anon_sym_CARET, + aux_sym_str_lit_token1, ACTIONS(21), 1, - anon_sym_POUND_CARET, + aux_sym_sym_lit_token1, ACTIONS(23), 1, - anon_sym_LPAREN, + anon_sym_CARET, ACTIONS(25), 1, - anon_sym_POUND0A, + anon_sym_POUND_CARET, ACTIONS(27), 1, - anon_sym_POUND, + anon_sym_LPAREN, ACTIONS(29), 1, - anon_sym_POUND_QMARK, + anon_sym_POUND0A, ACTIONS(31), 1, - anon_sym_POUND_QMARK_AT, + anon_sym_POUND, ACTIONS(33), 1, - anon_sym_COLON_COLON, + anon_sym_POUND_QMARK, ACTIONS(35), 1, - anon_sym_POUND_SQUOTE, + anon_sym_POUND_QMARK_AT, ACTIONS(37), 1, - anon_sym_POUND_POUND, + anon_sym_POUND_SQUOTE, ACTIONS(39), 1, - anon_sym_POUND_EQ, + anon_sym_POUND_POUND, ACTIONS(41), 1, - anon_sym_AT, + anon_sym_POUND_EQ, ACTIONS(43), 1, - anon_sym_SQUOTE, + anon_sym_AT, ACTIONS(45), 1, - anon_sym_BQUOTE, + anon_sym_SQUOTE, ACTIONS(47), 1, - anon_sym_COMMA_AT, + anon_sym_BQUOTE, ACTIONS(49), 1, - anon_sym_COMMA, + anon_sym_COMMA_AT, ACTIONS(51), 1, - anon_sym_COLON, + anon_sym_COMMA, ACTIONS(55), 1, anon_sym_POUNDC, - STATE(173), 1, + STATE(167), 1, aux_sym_dis_expr_repeat1, - STATE(815), 1, + STATE(780), 1, sym_sym_lit, - STATE(838), 1, + STATE(786), 1, sym__bare_vec_lit, - STATE(841), 1, + STATE(884), 1, sym__bare_set_lit, - STATE(1047), 1, + STATE(1033), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1909), 1, + STATE(1863), 1, sym_dotted_sym_lit, ACTIONS(53), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(646), 2, + ACTIONS(650), 2, sym__ws, sym_comment, - ACTIONS(792), 2, + ACTIONS(820), 2, sym_num_lit, sym_char_lit, - ACTIONS(794), 2, + ACTIONS(822), 2, sym_nil_lit, sym_fancy_literal, - STATE(942), 2, + STATE(898), 2, sym__gap, sym_dis_expr, - STATE(842), 3, + STATE(787), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(872), 18, + STATE(886), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -16018,90 +15894,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [12950] = 38, + [12898] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(13), 1, - aux_sym_str_lit_token1, + anon_sym_COLON, + ACTIONS(15), 1, + anon_sym_COLON_COLON, ACTIONS(17), 1, - aux_sym_sym_lit_token1, - ACTIONS(19), 1, - anon_sym_CARET, + aux_sym_str_lit_token1, ACTIONS(21), 1, - anon_sym_POUND_CARET, + aux_sym_sym_lit_token1, ACTIONS(23), 1, - anon_sym_LPAREN, + anon_sym_CARET, ACTIONS(25), 1, - anon_sym_POUND0A, + anon_sym_POUND_CARET, ACTIONS(27), 1, - anon_sym_POUND, + anon_sym_LPAREN, ACTIONS(29), 1, - anon_sym_POUND_QMARK, + anon_sym_POUND0A, ACTIONS(31), 1, - anon_sym_POUND_QMARK_AT, + anon_sym_POUND, ACTIONS(33), 1, - anon_sym_COLON_COLON, + anon_sym_POUND_QMARK, ACTIONS(35), 1, - anon_sym_POUND_SQUOTE, + anon_sym_POUND_QMARK_AT, ACTIONS(37), 1, - anon_sym_POUND_POUND, + anon_sym_POUND_SQUOTE, ACTIONS(39), 1, - anon_sym_POUND_EQ, + anon_sym_POUND_POUND, ACTIONS(41), 1, - anon_sym_AT, + anon_sym_POUND_EQ, ACTIONS(43), 1, - anon_sym_SQUOTE, + anon_sym_AT, ACTIONS(45), 1, - anon_sym_BQUOTE, + anon_sym_SQUOTE, ACTIONS(47), 1, - anon_sym_COMMA_AT, + anon_sym_BQUOTE, ACTIONS(49), 1, - anon_sym_COMMA, + anon_sym_COMMA_AT, ACTIONS(51), 1, - anon_sym_COLON, + anon_sym_COMMA, ACTIONS(55), 1, anon_sym_POUNDC, - STATE(175), 1, - aux_sym_dis_expr_repeat1, - STATE(815), 1, + STATE(780), 1, sym_sym_lit, - STATE(838), 1, + STATE(786), 1, sym__bare_vec_lit, - STATE(841), 1, + STATE(884), 1, sym__bare_set_lit, - STATE(1047), 1, + STATE(892), 1, + aux_sym_dis_expr_repeat1, + STATE(1033), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1909), 1, + STATE(1863), 1, sym_dotted_sym_lit, ACTIONS(53), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(646), 2, + ACTIONS(650), 2, sym__ws, sym_comment, - ACTIONS(796), 2, + ACTIONS(824), 2, sym_num_lit, sym_char_lit, - ACTIONS(798), 2, + ACTIONS(826), 2, sym_nil_lit, sym_fancy_literal, - STATE(942), 2, + STATE(898), 2, sym__gap, sym_dis_expr, - STATE(842), 3, + STATE(787), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(873), 18, + STATE(254), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -16119,90 +15996,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [13089] = 38, + [13038] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(13), 1, - aux_sym_str_lit_token1, + anon_sym_COLON, + ACTIONS(15), 1, + anon_sym_COLON_COLON, ACTIONS(17), 1, - aux_sym_sym_lit_token1, - ACTIONS(19), 1, - anon_sym_CARET, + aux_sym_str_lit_token1, ACTIONS(21), 1, - anon_sym_POUND_CARET, + aux_sym_sym_lit_token1, ACTIONS(23), 1, - anon_sym_LPAREN, + anon_sym_CARET, ACTIONS(25), 1, - anon_sym_POUND0A, + anon_sym_POUND_CARET, ACTIONS(27), 1, - anon_sym_POUND, + anon_sym_LPAREN, ACTIONS(29), 1, - anon_sym_POUND_QMARK, + anon_sym_POUND0A, ACTIONS(31), 1, - anon_sym_POUND_QMARK_AT, + anon_sym_POUND, ACTIONS(33), 1, - anon_sym_COLON_COLON, + anon_sym_POUND_QMARK, ACTIONS(35), 1, - anon_sym_POUND_SQUOTE, + anon_sym_POUND_QMARK_AT, ACTIONS(37), 1, - anon_sym_POUND_POUND, + anon_sym_POUND_SQUOTE, ACTIONS(39), 1, - anon_sym_POUND_EQ, + anon_sym_POUND_POUND, ACTIONS(41), 1, - anon_sym_AT, + anon_sym_POUND_EQ, ACTIONS(43), 1, - anon_sym_SQUOTE, + anon_sym_AT, ACTIONS(45), 1, - anon_sym_BQUOTE, + anon_sym_SQUOTE, ACTIONS(47), 1, - anon_sym_COMMA_AT, + anon_sym_BQUOTE, ACTIONS(49), 1, - anon_sym_COMMA, + anon_sym_COMMA_AT, ACTIONS(51), 1, - anon_sym_COLON, + anon_sym_COMMA, ACTIONS(55), 1, anon_sym_POUNDC, - STATE(177), 1, + STATE(173), 1, aux_sym_dis_expr_repeat1, - STATE(815), 1, + STATE(780), 1, sym_sym_lit, - STATE(838), 1, + STATE(786), 1, sym__bare_vec_lit, - STATE(841), 1, + STATE(884), 1, sym__bare_set_lit, - STATE(1047), 1, + STATE(1033), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1909), 1, + STATE(1863), 1, sym_dotted_sym_lit, ACTIONS(53), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(646), 2, + ACTIONS(650), 2, sym__ws, sym_comment, - ACTIONS(800), 2, + ACTIONS(828), 2, sym_num_lit, sym_char_lit, - ACTIONS(802), 2, + ACTIONS(830), 2, sym_nil_lit, sym_fancy_literal, - STATE(942), 2, + STATE(898), 2, sym__gap, sym_dis_expr, - STATE(842), 3, + STATE(787), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(874), 18, + STATE(848), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -16220,90 +16098,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [13228] = 38, + [13178] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(13), 1, - aux_sym_str_lit_token1, + anon_sym_COLON, + ACTIONS(15), 1, + anon_sym_COLON_COLON, ACTIONS(17), 1, - aux_sym_sym_lit_token1, - ACTIONS(19), 1, - anon_sym_CARET, + aux_sym_str_lit_token1, ACTIONS(21), 1, - anon_sym_POUND_CARET, + aux_sym_sym_lit_token1, ACTIONS(23), 1, - anon_sym_LPAREN, + anon_sym_CARET, ACTIONS(25), 1, - anon_sym_POUND0A, + anon_sym_POUND_CARET, ACTIONS(27), 1, - anon_sym_POUND, + anon_sym_LPAREN, ACTIONS(29), 1, - anon_sym_POUND_QMARK, + anon_sym_POUND0A, ACTIONS(31), 1, - anon_sym_POUND_QMARK_AT, + anon_sym_POUND, ACTIONS(33), 1, - anon_sym_COLON_COLON, + anon_sym_POUND_QMARK, ACTIONS(35), 1, - anon_sym_POUND_SQUOTE, + anon_sym_POUND_QMARK_AT, ACTIONS(37), 1, - anon_sym_POUND_POUND, + anon_sym_POUND_SQUOTE, ACTIONS(39), 1, - anon_sym_POUND_EQ, + anon_sym_POUND_POUND, ACTIONS(41), 1, - anon_sym_AT, + anon_sym_POUND_EQ, ACTIONS(43), 1, - anon_sym_SQUOTE, + anon_sym_AT, ACTIONS(45), 1, - anon_sym_BQUOTE, + anon_sym_SQUOTE, ACTIONS(47), 1, - anon_sym_COMMA_AT, + anon_sym_BQUOTE, ACTIONS(49), 1, - anon_sym_COMMA, + anon_sym_COMMA_AT, ACTIONS(51), 1, - anon_sym_COLON, + anon_sym_COMMA, ACTIONS(55), 1, anon_sym_POUNDC, - STATE(179), 1, + STATE(175), 1, aux_sym_dis_expr_repeat1, - STATE(815), 1, + STATE(780), 1, sym_sym_lit, - STATE(838), 1, + STATE(786), 1, sym__bare_vec_lit, - STATE(841), 1, + STATE(884), 1, sym__bare_set_lit, - STATE(1047), 1, + STATE(1033), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1909), 1, + STATE(1863), 1, sym_dotted_sym_lit, ACTIONS(53), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(646), 2, + ACTIONS(650), 2, sym__ws, sym_comment, - ACTIONS(804), 2, + ACTIONS(832), 2, sym_num_lit, sym_char_lit, - ACTIONS(806), 2, + ACTIONS(834), 2, sym_nil_lit, sym_fancy_literal, - STATE(942), 2, + STATE(898), 2, sym__gap, sym_dis_expr, - STATE(842), 3, + STATE(787), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(178), 18, + STATE(877), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -16321,90 +16200,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [13367] = 38, + [13318] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(13), 1, - aux_sym_str_lit_token1, + anon_sym_COLON, + ACTIONS(15), 1, + anon_sym_COLON_COLON, ACTIONS(17), 1, - aux_sym_sym_lit_token1, - ACTIONS(19), 1, - anon_sym_CARET, + aux_sym_str_lit_token1, ACTIONS(21), 1, - anon_sym_POUND_CARET, + aux_sym_sym_lit_token1, ACTIONS(23), 1, - anon_sym_LPAREN, + anon_sym_CARET, ACTIONS(25), 1, - anon_sym_POUND0A, + anon_sym_POUND_CARET, ACTIONS(27), 1, - anon_sym_POUND, + anon_sym_LPAREN, ACTIONS(29), 1, - anon_sym_POUND_QMARK, + anon_sym_POUND0A, ACTIONS(31), 1, - anon_sym_POUND_QMARK_AT, + anon_sym_POUND, ACTIONS(33), 1, - anon_sym_COLON_COLON, + anon_sym_POUND_QMARK, ACTIONS(35), 1, - anon_sym_POUND_SQUOTE, + anon_sym_POUND_QMARK_AT, ACTIONS(37), 1, - anon_sym_POUND_POUND, + anon_sym_POUND_SQUOTE, ACTIONS(39), 1, - anon_sym_POUND_EQ, + anon_sym_POUND_POUND, ACTIONS(41), 1, - anon_sym_AT, + anon_sym_POUND_EQ, ACTIONS(43), 1, - anon_sym_SQUOTE, + anon_sym_AT, ACTIONS(45), 1, - anon_sym_BQUOTE, + anon_sym_SQUOTE, ACTIONS(47), 1, - anon_sym_COMMA_AT, + anon_sym_BQUOTE, ACTIONS(49), 1, - anon_sym_COMMA, + anon_sym_COMMA_AT, ACTIONS(51), 1, - anon_sym_COLON, + anon_sym_COMMA, ACTIONS(55), 1, anon_sym_POUNDC, - STATE(181), 1, + STATE(177), 1, aux_sym_dis_expr_repeat1, - STATE(815), 1, + STATE(780), 1, sym_sym_lit, - STATE(838), 1, + STATE(786), 1, sym__bare_vec_lit, - STATE(841), 1, + STATE(884), 1, sym__bare_set_lit, - STATE(1047), 1, + STATE(1033), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1909), 1, + STATE(1863), 1, sym_dotted_sym_lit, ACTIONS(53), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(646), 2, + ACTIONS(650), 2, sym__ws, sym_comment, - ACTIONS(808), 2, + ACTIONS(836), 2, sym_num_lit, sym_char_lit, - ACTIONS(810), 2, + ACTIONS(838), 2, sym_nil_lit, sym_fancy_literal, - STATE(942), 2, + STATE(898), 2, sym__gap, sym_dis_expr, - STATE(842), 3, + STATE(787), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(180), 18, + STATE(878), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -16422,90 +16302,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [13506] = 38, + [13458] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(13), 1, - aux_sym_str_lit_token1, + anon_sym_COLON, + ACTIONS(15), 1, + anon_sym_COLON_COLON, ACTIONS(17), 1, + aux_sym_str_lit_token1, + ACTIONS(21), 1, aux_sym_sym_lit_token1, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(23), 1, + ACTIONS(27), 1, anon_sym_LPAREN, - ACTIONS(25), 1, + ACTIONS(29), 1, anon_sym_POUND0A, - ACTIONS(27), 1, + ACTIONS(31), 1, anon_sym_POUND, - ACTIONS(29), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(31), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, ACTIONS(37), 1, - anon_sym_POUND_POUND, + anon_sym_POUND_SQUOTE, ACTIONS(39), 1, + anon_sym_POUND_POUND, + ACTIONS(41), 1, anon_sym_POUND_EQ, - ACTIONS(45), 1, - anon_sym_BQUOTE, - ACTIONS(55), 1, - anon_sym_POUNDC, - ACTIONS(652), 1, - anon_sym_COLON_COLON, - ACTIONS(654), 1, - anon_sym_POUND_SQUOTE, - ACTIONS(656), 1, + ACTIONS(43), 1, anon_sym_AT, - ACTIONS(658), 1, + ACTIONS(45), 1, anon_sym_SQUOTE, - ACTIONS(660), 1, + ACTIONS(47), 1, + anon_sym_BQUOTE, + ACTIONS(49), 1, anon_sym_COMMA_AT, - ACTIONS(662), 1, + ACTIONS(51), 1, anon_sym_COMMA, - ACTIONS(664), 1, - anon_sym_COLON, - STATE(82), 1, + ACTIONS(55), 1, + anon_sym_POUNDC, + STATE(179), 1, aux_sym_dis_expr_repeat1, - STATE(817), 1, + STATE(780), 1, sym_sym_lit, - STATE(838), 1, + STATE(786), 1, sym__bare_vec_lit, - STATE(841), 1, + STATE(884), 1, sym__bare_set_lit, - STATE(999), 1, + STATE(1033), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1908), 1, + STATE(1863), 1, sym_dotted_sym_lit, - ACTIONS(646), 2, - sym__ws, - sym_comment, - ACTIONS(666), 2, + ACTIONS(53), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(812), 2, + ACTIONS(650), 2, + sym__ws, + sym_comment, + ACTIONS(840), 2, sym_num_lit, sym_char_lit, - ACTIONS(814), 2, + ACTIONS(842), 2, sym_nil_lit, sym_fancy_literal, - STATE(942), 2, + STATE(898), 2, sym__gap, sym_dis_expr, - STATE(842), 3, + STATE(787), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(884), 18, + STATE(178), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -16523,90 +16404,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [13645] = 38, + [13598] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(19), 1, - anon_sym_CARET, - ACTIONS(21), 1, - anon_sym_POUND_CARET, - ACTIONS(606), 1, + ACTIONS(13), 1, + anon_sym_COLON, + ACTIONS(15), 1, + anon_sym_COLON_COLON, + ACTIONS(17), 1, aux_sym_str_lit_token1, - ACTIONS(610), 1, + ACTIONS(21), 1, aux_sym_sym_lit_token1, - ACTIONS(612), 1, + ACTIONS(23), 1, + anon_sym_CARET, + ACTIONS(25), 1, + anon_sym_POUND_CARET, + ACTIONS(27), 1, anon_sym_LPAREN, - ACTIONS(614), 1, + ACTIONS(29), 1, anon_sym_POUND0A, - ACTIONS(616), 1, + ACTIONS(31), 1, anon_sym_POUND, - ACTIONS(618), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(620), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(622), 1, - anon_sym_COLON_COLON, - ACTIONS(624), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(626), 1, + ACTIONS(39), 1, anon_sym_POUND_POUND, - ACTIONS(628), 1, + ACTIONS(41), 1, anon_sym_POUND_EQ, - ACTIONS(630), 1, + ACTIONS(43), 1, anon_sym_AT, - ACTIONS(632), 1, + ACTIONS(45), 1, anon_sym_SQUOTE, - ACTIONS(634), 1, + ACTIONS(47), 1, anon_sym_BQUOTE, - ACTIONS(636), 1, + ACTIONS(49), 1, anon_sym_COMMA_AT, - ACTIONS(638), 1, + ACTIONS(51), 1, anon_sym_COMMA, - ACTIONS(640), 1, - anon_sym_COLON, - ACTIONS(644), 1, + ACTIONS(55), 1, anon_sym_POUNDC, - STATE(930), 1, + STATE(181), 1, aux_sym_dis_expr_repeat1, - STATE(949), 1, + STATE(780), 1, sym_sym_lit, - STATE(963), 1, - sym__bare_set_lit, - STATE(964), 1, + STATE(786), 1, sym__bare_vec_lit, - STATE(967), 1, + STATE(884), 1, + sym__bare_set_lit, + STATE(1033), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1911), 1, + STATE(1863), 1, sym_dotted_sym_lit, - ACTIONS(602), 2, - sym__ws, - sym_comment, - ACTIONS(642), 2, + ACTIONS(53), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(816), 2, + ACTIONS(650), 2, + sym__ws, + sym_comment, + ACTIONS(844), 2, sym_num_lit, sym_char_lit, - ACTIONS(818), 2, + ACTIONS(846), 2, sym_nil_lit, sym_fancy_literal, - STATE(944), 2, + STATE(898), 2, sym__gap, sym_dis_expr, - STATE(965), 3, + STATE(787), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1042), 18, + STATE(180), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -16624,90 +16506,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [13784] = 38, + [13738] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(13), 1, - aux_sym_str_lit_token1, + anon_sym_COLON, + ACTIONS(15), 1, + anon_sym_COLON_COLON, ACTIONS(17), 1, - aux_sym_sym_lit_token1, - ACTIONS(19), 1, - anon_sym_CARET, + aux_sym_str_lit_token1, ACTIONS(21), 1, - anon_sym_POUND_CARET, + aux_sym_sym_lit_token1, ACTIONS(23), 1, - anon_sym_LPAREN, + anon_sym_CARET, ACTIONS(25), 1, - anon_sym_POUND0A, + anon_sym_POUND_CARET, ACTIONS(27), 1, - anon_sym_POUND, + anon_sym_LPAREN, ACTIONS(29), 1, - anon_sym_POUND_QMARK, + anon_sym_POUND0A, ACTIONS(31), 1, - anon_sym_POUND_QMARK_AT, + anon_sym_POUND, ACTIONS(33), 1, - anon_sym_COLON_COLON, + anon_sym_POUND_QMARK, ACTIONS(35), 1, - anon_sym_POUND_SQUOTE, + anon_sym_POUND_QMARK_AT, ACTIONS(37), 1, - anon_sym_POUND_POUND, + anon_sym_POUND_SQUOTE, ACTIONS(39), 1, - anon_sym_POUND_EQ, + anon_sym_POUND_POUND, ACTIONS(41), 1, - anon_sym_AT, + anon_sym_POUND_EQ, ACTIONS(43), 1, - anon_sym_SQUOTE, + anon_sym_AT, ACTIONS(45), 1, - anon_sym_BQUOTE, + anon_sym_SQUOTE, ACTIONS(47), 1, - anon_sym_COMMA_AT, + anon_sym_BQUOTE, ACTIONS(49), 1, - anon_sym_COMMA, + anon_sym_COMMA_AT, ACTIONS(51), 1, - anon_sym_COLON, + anon_sym_COMMA, ACTIONS(55), 1, anon_sym_POUNDC, - STATE(94), 1, - aux_sym_dis_expr_repeat1, - STATE(815), 1, + STATE(780), 1, sym_sym_lit, - STATE(838), 1, + STATE(786), 1, sym__bare_vec_lit, - STATE(841), 1, + STATE(884), 1, sym__bare_set_lit, - STATE(1047), 1, + STATE(892), 1, + aux_sym_dis_expr_repeat1, + STATE(1033), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1909), 1, + STATE(1863), 1, sym_dotted_sym_lit, ACTIONS(53), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(646), 2, + ACTIONS(650), 2, sym__ws, sym_comment, - ACTIONS(820), 2, + ACTIONS(848), 2, sym_num_lit, sym_char_lit, - ACTIONS(822), 2, + ACTIONS(850), 2, sym_nil_lit, sym_fancy_literal, - STATE(942), 2, + STATE(898), 2, sym__gap, sym_dis_expr, - STATE(842), 3, + STATE(787), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(251), 18, + STATE(237), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -16725,90 +16608,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [13923] = 38, + [13878] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(606), 1, + ACTIONS(140), 1, + anon_sym_COLON, + ACTIONS(142), 1, + anon_sym_COLON_COLON, + ACTIONS(144), 1, aux_sym_str_lit_token1, - ACTIONS(610), 1, + ACTIONS(148), 1, aux_sym_sym_lit_token1, - ACTIONS(612), 1, - anon_sym_LPAREN, - ACTIONS(614), 1, + ACTIONS(150), 1, anon_sym_POUND0A, - ACTIONS(616), 1, + ACTIONS(152), 1, anon_sym_POUND, - ACTIONS(618), 1, + ACTIONS(154), 1, anon_sym_POUND_QMARK, - ACTIONS(620), 1, + ACTIONS(156), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(622), 1, - anon_sym_COLON_COLON, - ACTIONS(624), 1, + ACTIONS(158), 1, anon_sym_POUND_SQUOTE, - ACTIONS(626), 1, + ACTIONS(160), 1, anon_sym_POUND_POUND, - ACTIONS(628), 1, + ACTIONS(162), 1, anon_sym_POUND_EQ, - ACTIONS(630), 1, + ACTIONS(164), 1, anon_sym_AT, - ACTIONS(632), 1, + ACTIONS(166), 1, anon_sym_SQUOTE, - ACTIONS(634), 1, + ACTIONS(168), 1, anon_sym_BQUOTE, - ACTIONS(636), 1, + ACTIONS(170), 1, anon_sym_COMMA_AT, - ACTIONS(638), 1, + ACTIONS(172), 1, anon_sym_COMMA, - ACTIONS(640), 1, - anon_sym_COLON, - ACTIONS(644), 1, + ACTIONS(178), 1, anon_sym_POUNDC, - STATE(930), 1, + ACTIONS(413), 1, + anon_sym_LPAREN, + STATE(261), 1, aux_sym_dis_expr_repeat1, - STATE(949), 1, + STATE(404), 1, sym_sym_lit, - STATE(963), 1, - sym__bare_set_lit, - STATE(964), 1, + STATE(487), 1, sym__bare_vec_lit, - STATE(967), 1, + STATE(488), 1, + sym__bare_set_lit, + STATE(981), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1911), 1, + STATE(1866), 1, sym_dotted_sym_lit, - ACTIONS(602), 2, - sym__ws, - sym_comment, - ACTIONS(642), 2, + ACTIONS(176), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(824), 2, + ACTIONS(411), 2, + sym__ws, + sym_comment, + ACTIONS(852), 2, sym_num_lit, sym_char_lit, - ACTIONS(826), 2, + ACTIONS(854), 2, sym_nil_lit, sym_fancy_literal, - STATE(944), 2, + STATE(903), 2, sym__gap, sym_dis_expr, - STATE(965), 3, + STATE(486), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1041), 18, + STATE(430), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -16826,90 +16710,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [14062] = 38, + [14018] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(832), 1, + ACTIONS(140), 1, + anon_sym_COLON, + ACTIONS(142), 1, + anon_sym_COLON_COLON, + ACTIONS(144), 1, aux_sym_str_lit_token1, - ACTIONS(836), 1, + ACTIONS(148), 1, aux_sym_sym_lit_token1, - ACTIONS(838), 1, - anon_sym_LPAREN, - ACTIONS(840), 1, + ACTIONS(150), 1, anon_sym_POUND0A, - ACTIONS(842), 1, + ACTIONS(152), 1, anon_sym_POUND, - ACTIONS(844), 1, + ACTIONS(154), 1, anon_sym_POUND_QMARK, - ACTIONS(846), 1, + ACTIONS(156), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(848), 1, - anon_sym_COLON_COLON, - ACTIONS(850), 1, + ACTIONS(158), 1, anon_sym_POUND_SQUOTE, - ACTIONS(852), 1, + ACTIONS(160), 1, anon_sym_POUND_POUND, - ACTIONS(854), 1, + ACTIONS(162), 1, anon_sym_POUND_EQ, - ACTIONS(856), 1, + ACTIONS(164), 1, anon_sym_AT, - ACTIONS(858), 1, + ACTIONS(166), 1, anon_sym_SQUOTE, - ACTIONS(860), 1, + ACTIONS(168), 1, anon_sym_BQUOTE, - ACTIONS(862), 1, + ACTIONS(170), 1, anon_sym_COMMA_AT, - ACTIONS(864), 1, + ACTIONS(172), 1, anon_sym_COMMA, - ACTIONS(866), 1, - anon_sym_COLON, - ACTIONS(870), 1, + ACTIONS(178), 1, anon_sym_POUNDC, - STATE(286), 1, + ACTIONS(413), 1, + anon_sym_LPAREN, + STATE(404), 1, + sym_sym_lit, + STATE(487), 1, + sym__bare_vec_lit, + STATE(488), 1, + sym__bare_set_lit, + STATE(892), 1, aux_sym_dis_expr_repeat1, - STATE(992), 1, + STATE(981), 1, aux_sym_sym_lit_repeat1, - STATE(1076), 1, - sym_sym_lit, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1108), 1, - sym__bare_set_lit, - STATE(1109), 1, - sym__bare_vec_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1910), 1, + STATE(1866), 1, sym_dotted_sym_lit, - ACTIONS(828), 2, + ACTIONS(176), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(411), 2, sym__ws, sym_comment, - ACTIONS(830), 2, + ACTIONS(856), 2, sym_num_lit, sym_char_lit, - ACTIONS(834), 2, + ACTIONS(858), 2, sym_nil_lit, sym_fancy_literal, - ACTIONS(868), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - STATE(943), 2, + STATE(903), 2, sym__gap, sym_dis_expr, - STATE(1110), 3, + STATE(486), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1107), 18, + STATE(431), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -16927,90 +16812,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [14201] = 38, + [14158] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(61), 1, + ACTIONS(610), 1, + anon_sym_COLON, + ACTIONS(612), 1, + anon_sym_COLON_COLON, + ACTIONS(614), 1, aux_sym_str_lit_token1, - ACTIONS(65), 1, + ACTIONS(618), 1, aux_sym_sym_lit_token1, - ACTIONS(67), 1, + ACTIONS(620), 1, + anon_sym_LPAREN, + ACTIONS(622), 1, anon_sym_POUND0A, - ACTIONS(69), 1, + ACTIONS(624), 1, anon_sym_POUND, - ACTIONS(71), 1, + ACTIONS(626), 1, anon_sym_POUND_QMARK, - ACTIONS(73), 1, + ACTIONS(628), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(75), 1, - anon_sym_COLON_COLON, - ACTIONS(77), 1, + ACTIONS(630), 1, anon_sym_POUND_SQUOTE, - ACTIONS(79), 1, + ACTIONS(632), 1, anon_sym_POUND_POUND, - ACTIONS(81), 1, + ACTIONS(634), 1, anon_sym_POUND_EQ, - ACTIONS(83), 1, + ACTIONS(636), 1, anon_sym_AT, - ACTIONS(85), 1, + ACTIONS(638), 1, anon_sym_SQUOTE, - ACTIONS(87), 1, + ACTIONS(640), 1, anon_sym_BQUOTE, - ACTIONS(89), 1, + ACTIONS(642), 1, anon_sym_COMMA_AT, - ACTIONS(91), 1, + ACTIONS(644), 1, anon_sym_COMMA, - ACTIONS(95), 1, - anon_sym_COLON, - ACTIONS(99), 1, + ACTIONS(648), 1, anon_sym_POUNDC, - ACTIONS(381), 1, - anon_sym_LPAREN, - STATE(85), 1, + STATE(143), 1, aux_sym_dis_expr_repeat1, - STATE(446), 1, + STATE(545), 1, sym_sym_lit, - STATE(513), 1, - sym__bare_set_lit, - STATE(514), 1, + STATE(688), 1, sym__bare_vec_lit, - STATE(1044), 1, + STATE(691), 1, + sym__bare_set_lit, + STATE(1013), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1907), 1, + STATE(1862), 1, sym_dotted_sym_lit, - ACTIONS(97), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(379), 2, + ACTIONS(606), 2, sym__ws, sym_comment, - ACTIONS(872), 2, + ACTIONS(646), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(860), 2, sym_num_lit, sym_char_lit, - ACTIONS(874), 2, + ACTIONS(862), 2, sym_nil_lit, sym_fancy_literal, - STATE(934), 2, + STATE(896), 2, sym__gap, sym_dis_expr, - STATE(515), 3, + STATE(687), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(485), 18, + STATE(761), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -17028,90 +16914,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [14340] = 38, + [14298] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(61), 1, + ACTIONS(140), 1, + anon_sym_COLON, + ACTIONS(142), 1, + anon_sym_COLON_COLON, + ACTIONS(144), 1, aux_sym_str_lit_token1, - ACTIONS(65), 1, + ACTIONS(148), 1, aux_sym_sym_lit_token1, - ACTIONS(67), 1, + ACTIONS(150), 1, anon_sym_POUND0A, - ACTIONS(69), 1, + ACTIONS(152), 1, anon_sym_POUND, - ACTIONS(71), 1, + ACTIONS(154), 1, anon_sym_POUND_QMARK, - ACTIONS(73), 1, + ACTIONS(156), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(75), 1, - anon_sym_COLON_COLON, - ACTIONS(77), 1, + ACTIONS(158), 1, anon_sym_POUND_SQUOTE, - ACTIONS(79), 1, + ACTIONS(160), 1, anon_sym_POUND_POUND, - ACTIONS(81), 1, + ACTIONS(162), 1, anon_sym_POUND_EQ, - ACTIONS(83), 1, + ACTIONS(164), 1, anon_sym_AT, - ACTIONS(85), 1, + ACTIONS(166), 1, anon_sym_SQUOTE, - ACTIONS(87), 1, + ACTIONS(168), 1, anon_sym_BQUOTE, - ACTIONS(89), 1, + ACTIONS(170), 1, anon_sym_COMMA_AT, - ACTIONS(91), 1, + ACTIONS(172), 1, anon_sym_COMMA, - ACTIONS(95), 1, - anon_sym_COLON, - ACTIONS(99), 1, + ACTIONS(178), 1, anon_sym_POUNDC, - ACTIONS(381), 1, + ACTIONS(413), 1, anon_sym_LPAREN, - STATE(446), 1, + STATE(404), 1, sym_sym_lit, - STATE(513), 1, - sym__bare_set_lit, - STATE(514), 1, + STATE(487), 1, sym__bare_vec_lit, - STATE(930), 1, + STATE(488), 1, + sym__bare_set_lit, + STATE(892), 1, aux_sym_dis_expr_repeat1, - STATE(1044), 1, + STATE(981), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1907), 1, + STATE(1866), 1, sym_dotted_sym_lit, - ACTIONS(97), 2, + ACTIONS(176), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(379), 2, + ACTIONS(411), 2, sym__ws, sym_comment, - ACTIONS(876), 2, + ACTIONS(864), 2, sym_num_lit, sym_char_lit, - ACTIONS(878), 2, + ACTIONS(866), 2, sym_nil_lit, sym_fancy_literal, - STATE(934), 2, + STATE(903), 2, sym__gap, sym_dis_expr, - STATE(515), 3, + STATE(486), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(484), 18, + STATE(433), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -17129,90 +17016,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [14479] = 38, + [14438] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(832), 1, + ACTIONS(610), 1, + anon_sym_COLON, + ACTIONS(612), 1, + anon_sym_COLON_COLON, + ACTIONS(614), 1, aux_sym_str_lit_token1, - ACTIONS(836), 1, + ACTIONS(618), 1, aux_sym_sym_lit_token1, - ACTIONS(838), 1, + ACTIONS(620), 1, anon_sym_LPAREN, - ACTIONS(840), 1, + ACTIONS(622), 1, anon_sym_POUND0A, - ACTIONS(842), 1, + ACTIONS(624), 1, anon_sym_POUND, - ACTIONS(844), 1, + ACTIONS(626), 1, anon_sym_POUND_QMARK, - ACTIONS(846), 1, + ACTIONS(628), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(848), 1, - anon_sym_COLON_COLON, - ACTIONS(850), 1, + ACTIONS(630), 1, anon_sym_POUND_SQUOTE, - ACTIONS(852), 1, + ACTIONS(632), 1, anon_sym_POUND_POUND, - ACTIONS(854), 1, + ACTIONS(634), 1, anon_sym_POUND_EQ, - ACTIONS(856), 1, + ACTIONS(636), 1, anon_sym_AT, - ACTIONS(858), 1, + ACTIONS(638), 1, anon_sym_SQUOTE, - ACTIONS(860), 1, + ACTIONS(640), 1, anon_sym_BQUOTE, - ACTIONS(862), 1, + ACTIONS(642), 1, anon_sym_COMMA_AT, - ACTIONS(864), 1, + ACTIONS(644), 1, anon_sym_COMMA, - ACTIONS(866), 1, - anon_sym_COLON, - ACTIONS(870), 1, + ACTIONS(648), 1, anon_sym_POUNDC, - STATE(930), 1, + STATE(148), 1, aux_sym_dis_expr_repeat1, - STATE(992), 1, - aux_sym_sym_lit_repeat1, - STATE(1076), 1, + STATE(545), 1, sym_sym_lit, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, - sym_meta_lit, - STATE(1108), 1, - sym__bare_set_lit, - STATE(1109), 1, + STATE(688), 1, sym__bare_vec_lit, - STATE(1369), 1, + STATE(691), 1, + sym__bare_set_lit, + STATE(1013), 1, + aux_sym_sym_lit_repeat1, + STATE(1162), 1, + sym_meta_lit, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1910), 1, + STATE(1862), 1, sym_dotted_sym_lit, - ACTIONS(828), 2, + ACTIONS(606), 2, sym__ws, sym_comment, - ACTIONS(868), 2, + ACTIONS(646), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(880), 2, + ACTIONS(868), 2, sym_num_lit, sym_char_lit, - ACTIONS(882), 2, + ACTIONS(870), 2, sym_nil_lit, sym_fancy_literal, - STATE(943), 2, + STATE(896), 2, sym__gap, sym_dis_expr, - STATE(1110), 3, + STATE(687), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1210), 18, + STATE(762), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -17230,90 +17118,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [14618] = 38, + [14578] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(61), 1, + ACTIONS(610), 1, + anon_sym_COLON, + ACTIONS(612), 1, + anon_sym_COLON_COLON, + ACTIONS(614), 1, aux_sym_str_lit_token1, - ACTIONS(65), 1, + ACTIONS(618), 1, aux_sym_sym_lit_token1, - ACTIONS(67), 1, + ACTIONS(620), 1, + anon_sym_LPAREN, + ACTIONS(622), 1, anon_sym_POUND0A, - ACTIONS(69), 1, + ACTIONS(624), 1, anon_sym_POUND, - ACTIONS(71), 1, + ACTIONS(626), 1, anon_sym_POUND_QMARK, - ACTIONS(73), 1, + ACTIONS(628), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(75), 1, - anon_sym_COLON_COLON, - ACTIONS(77), 1, + ACTIONS(630), 1, anon_sym_POUND_SQUOTE, - ACTIONS(79), 1, + ACTIONS(632), 1, anon_sym_POUND_POUND, - ACTIONS(81), 1, + ACTIONS(634), 1, anon_sym_POUND_EQ, - ACTIONS(83), 1, + ACTIONS(636), 1, anon_sym_AT, - ACTIONS(85), 1, + ACTIONS(638), 1, anon_sym_SQUOTE, - ACTIONS(87), 1, + ACTIONS(640), 1, anon_sym_BQUOTE, - ACTIONS(89), 1, + ACTIONS(642), 1, anon_sym_COMMA_AT, - ACTIONS(91), 1, + ACTIONS(644), 1, anon_sym_COMMA, - ACTIONS(95), 1, - anon_sym_COLON, - ACTIONS(99), 1, + ACTIONS(648), 1, anon_sym_POUNDC, - ACTIONS(381), 1, - anon_sym_LPAREN, - STATE(96), 1, - aux_sym_dis_expr_repeat1, - STATE(446), 1, + STATE(545), 1, sym_sym_lit, - STATE(513), 1, - sym__bare_set_lit, - STATE(514), 1, + STATE(688), 1, sym__bare_vec_lit, - STATE(1044), 1, + STATE(691), 1, + sym__bare_set_lit, + STATE(892), 1, + aux_sym_dis_expr_repeat1, + STATE(1013), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1907), 1, + STATE(1862), 1, sym_dotted_sym_lit, - ACTIONS(97), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(379), 2, + ACTIONS(606), 2, sym__ws, sym_comment, - ACTIONS(884), 2, + ACTIONS(646), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(872), 2, sym_num_lit, sym_char_lit, - ACTIONS(886), 2, + ACTIONS(874), 2, sym_nil_lit, sym_fancy_literal, - STATE(934), 2, + STATE(896), 2, sym__gap, sym_dis_expr, - STATE(515), 3, + STATE(687), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(482), 18, + STATE(711), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -17331,90 +17220,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [14757] = 38, + [14718] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(61), 1, + ACTIONS(518), 1, + anon_sym_COLON, + ACTIONS(520), 1, + anon_sym_COLON_COLON, + ACTIONS(522), 1, aux_sym_str_lit_token1, - ACTIONS(65), 1, + ACTIONS(526), 1, aux_sym_sym_lit_token1, - ACTIONS(67), 1, + ACTIONS(528), 1, + anon_sym_LPAREN, + ACTIONS(530), 1, anon_sym_POUND0A, - ACTIONS(69), 1, + ACTIONS(532), 1, anon_sym_POUND, - ACTIONS(71), 1, + ACTIONS(534), 1, anon_sym_POUND_QMARK, - ACTIONS(73), 1, + ACTIONS(536), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(75), 1, - anon_sym_COLON_COLON, - ACTIONS(77), 1, + ACTIONS(538), 1, anon_sym_POUND_SQUOTE, - ACTIONS(79), 1, + ACTIONS(540), 1, anon_sym_POUND_POUND, - ACTIONS(81), 1, + ACTIONS(542), 1, anon_sym_POUND_EQ, - ACTIONS(83), 1, + ACTIONS(544), 1, anon_sym_AT, - ACTIONS(85), 1, + ACTIONS(546), 1, anon_sym_SQUOTE, - ACTIONS(87), 1, + ACTIONS(548), 1, anon_sym_BQUOTE, - ACTIONS(89), 1, + ACTIONS(550), 1, anon_sym_COMMA_AT, - ACTIONS(91), 1, + ACTIONS(552), 1, anon_sym_COMMA, - ACTIONS(95), 1, - anon_sym_COLON, - ACTIONS(99), 1, + ACTIONS(556), 1, anon_sym_POUNDC, - ACTIONS(381), 1, - anon_sym_LPAREN, - STATE(446), 1, + STATE(892), 1, + aux_sym_dis_expr_repeat1, + STATE(909), 1, sym_sym_lit, - STATE(513), 1, + STATE(922), 1, sym__bare_set_lit, - STATE(514), 1, + STATE(931), 1, sym__bare_vec_lit, - STATE(930), 1, - aux_sym_dis_expr_repeat1, - STATE(1044), 1, + STATE(936), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1907), 1, + STATE(1865), 1, sym_dotted_sym_lit, - ACTIONS(97), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(379), 2, + ACTIONS(514), 2, sym__ws, sym_comment, - ACTIONS(888), 2, + ACTIONS(554), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(876), 2, sym_num_lit, sym_char_lit, - ACTIONS(890), 2, + ACTIONS(878), 2, sym_nil_lit, sym_fancy_literal, - STATE(934), 2, + STATE(897), 2, sym__gap, sym_dis_expr, - STATE(515), 3, + STATE(930), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(481), 18, + STATE(1006), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -17432,90 +17322,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [14896] = 38, + [14858] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(606), 1, + ACTIONS(518), 1, + anon_sym_COLON, + ACTIONS(520), 1, + anon_sym_COLON_COLON, + ACTIONS(522), 1, aux_sym_str_lit_token1, - ACTIONS(610), 1, + ACTIONS(526), 1, aux_sym_sym_lit_token1, - ACTIONS(612), 1, + ACTIONS(528), 1, anon_sym_LPAREN, - ACTIONS(614), 1, + ACTIONS(530), 1, anon_sym_POUND0A, - ACTIONS(616), 1, + ACTIONS(532), 1, anon_sym_POUND, - ACTIONS(618), 1, + ACTIONS(534), 1, anon_sym_POUND_QMARK, - ACTIONS(620), 1, + ACTIONS(536), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(622), 1, - anon_sym_COLON_COLON, - ACTIONS(624), 1, + ACTIONS(538), 1, anon_sym_POUND_SQUOTE, - ACTIONS(626), 1, + ACTIONS(540), 1, anon_sym_POUND_POUND, - ACTIONS(628), 1, + ACTIONS(542), 1, anon_sym_POUND_EQ, - ACTIONS(630), 1, + ACTIONS(544), 1, anon_sym_AT, - ACTIONS(632), 1, + ACTIONS(546), 1, anon_sym_SQUOTE, - ACTIONS(634), 1, + ACTIONS(548), 1, anon_sym_BQUOTE, - ACTIONS(636), 1, + ACTIONS(550), 1, anon_sym_COMMA_AT, - ACTIONS(638), 1, + ACTIONS(552), 1, anon_sym_COMMA, - ACTIONS(640), 1, - anon_sym_COLON, - ACTIONS(644), 1, + ACTIONS(556), 1, anon_sym_POUNDC, - STATE(930), 1, + STATE(892), 1, aux_sym_dis_expr_repeat1, - STATE(949), 1, + STATE(909), 1, sym_sym_lit, - STATE(963), 1, + STATE(922), 1, sym__bare_set_lit, - STATE(964), 1, + STATE(931), 1, sym__bare_vec_lit, - STATE(967), 1, + STATE(936), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1911), 1, + STATE(1865), 1, sym_dotted_sym_lit, - ACTIONS(602), 2, + ACTIONS(514), 2, sym__ws, sym_comment, - ACTIONS(642), 2, + ACTIONS(554), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(892), 2, + ACTIONS(880), 2, sym_num_lit, sym_char_lit, - ACTIONS(894), 2, + ACTIONS(882), 2, sym_nil_lit, sym_fancy_literal, - STATE(944), 2, + STATE(897), 2, sym__gap, sym_dis_expr, - STATE(965), 3, + STATE(930), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1039), 18, + STATE(1005), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -17533,90 +17424,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [15035] = 38, + [14998] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(606), 1, + ACTIONS(140), 1, + anon_sym_COLON, + ACTIONS(142), 1, + anon_sym_COLON_COLON, + ACTIONS(144), 1, aux_sym_str_lit_token1, - ACTIONS(610), 1, + ACTIONS(148), 1, aux_sym_sym_lit_token1, - ACTIONS(612), 1, - anon_sym_LPAREN, - ACTIONS(614), 1, + ACTIONS(150), 1, anon_sym_POUND0A, - ACTIONS(616), 1, + ACTIONS(152), 1, anon_sym_POUND, - ACTIONS(618), 1, + ACTIONS(154), 1, anon_sym_POUND_QMARK, - ACTIONS(620), 1, + ACTIONS(156), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(622), 1, - anon_sym_COLON_COLON, - ACTIONS(624), 1, + ACTIONS(158), 1, anon_sym_POUND_SQUOTE, - ACTIONS(626), 1, + ACTIONS(160), 1, anon_sym_POUND_POUND, - ACTIONS(628), 1, + ACTIONS(162), 1, anon_sym_POUND_EQ, - ACTIONS(630), 1, + ACTIONS(164), 1, anon_sym_AT, - ACTIONS(632), 1, + ACTIONS(166), 1, anon_sym_SQUOTE, - ACTIONS(634), 1, + ACTIONS(168), 1, anon_sym_BQUOTE, - ACTIONS(636), 1, + ACTIONS(170), 1, anon_sym_COMMA_AT, - ACTIONS(638), 1, + ACTIONS(172), 1, anon_sym_COMMA, - ACTIONS(640), 1, - anon_sym_COLON, - ACTIONS(644), 1, + ACTIONS(178), 1, anon_sym_POUNDC, - STATE(930), 1, - aux_sym_dis_expr_repeat1, - STATE(949), 1, + ACTIONS(413), 1, + anon_sym_LPAREN, + STATE(404), 1, sym_sym_lit, - STATE(963), 1, - sym__bare_set_lit, - STATE(964), 1, + STATE(487), 1, sym__bare_vec_lit, - STATE(967), 1, + STATE(488), 1, + sym__bare_set_lit, + STATE(892), 1, + aux_sym_dis_expr_repeat1, + STATE(981), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1911), 1, + STATE(1866), 1, sym_dotted_sym_lit, - ACTIONS(602), 2, - sym__ws, - sym_comment, - ACTIONS(642), 2, + ACTIONS(176), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(896), 2, + ACTIONS(411), 2, + sym__ws, + sym_comment, + ACTIONS(884), 2, sym_num_lit, sym_char_lit, - ACTIONS(898), 2, + ACTIONS(886), 2, sym_nil_lit, sym_fancy_literal, - STATE(944), 2, + STATE(903), 2, sym__gap, sym_dis_expr, - STATE(965), 3, + STATE(486), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1038), 18, + STATE(438), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -17634,90 +17526,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [15174] = 38, + [15138] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(832), 1, + ACTIONS(518), 1, + anon_sym_COLON, + ACTIONS(520), 1, + anon_sym_COLON_COLON, + ACTIONS(522), 1, aux_sym_str_lit_token1, - ACTIONS(836), 1, + ACTIONS(526), 1, aux_sym_sym_lit_token1, - ACTIONS(838), 1, + ACTIONS(528), 1, anon_sym_LPAREN, - ACTIONS(840), 1, + ACTIONS(530), 1, anon_sym_POUND0A, - ACTIONS(842), 1, + ACTIONS(532), 1, anon_sym_POUND, - ACTIONS(844), 1, + ACTIONS(534), 1, anon_sym_POUND_QMARK, - ACTIONS(846), 1, + ACTIONS(536), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(848), 1, - anon_sym_COLON_COLON, - ACTIONS(850), 1, + ACTIONS(538), 1, anon_sym_POUND_SQUOTE, - ACTIONS(852), 1, + ACTIONS(540), 1, anon_sym_POUND_POUND, - ACTIONS(854), 1, + ACTIONS(542), 1, anon_sym_POUND_EQ, - ACTIONS(856), 1, + ACTIONS(544), 1, anon_sym_AT, - ACTIONS(858), 1, + ACTIONS(546), 1, anon_sym_SQUOTE, - ACTIONS(860), 1, + ACTIONS(548), 1, anon_sym_BQUOTE, - ACTIONS(862), 1, + ACTIONS(550), 1, anon_sym_COMMA_AT, - ACTIONS(864), 1, + ACTIONS(552), 1, anon_sym_COMMA, - ACTIONS(866), 1, - anon_sym_COLON, - ACTIONS(870), 1, + ACTIONS(556), 1, anon_sym_POUNDC, - STATE(930), 1, + STATE(892), 1, aux_sym_dis_expr_repeat1, - STATE(992), 1, - aux_sym_sym_lit_repeat1, - STATE(1076), 1, + STATE(909), 1, sym_sym_lit, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, - sym_meta_lit, - STATE(1108), 1, + STATE(922), 1, sym__bare_set_lit, - STATE(1109), 1, + STATE(931), 1, sym__bare_vec_lit, - STATE(1369), 1, + STATE(936), 1, + aux_sym_sym_lit_repeat1, + STATE(1162), 1, + sym_meta_lit, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1910), 1, + STATE(1865), 1, sym_dotted_sym_lit, - ACTIONS(828), 2, + ACTIONS(514), 2, sym__ws, sym_comment, - ACTIONS(868), 2, + ACTIONS(554), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(900), 2, + ACTIONS(888), 2, sym_num_lit, sym_char_lit, - ACTIONS(902), 2, + ACTIONS(890), 2, sym_nil_lit, sym_fancy_literal, - STATE(943), 2, + STATE(897), 2, sym__gap, sym_dis_expr, - STATE(1110), 3, + STATE(930), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1207), 18, + STATE(1003), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -17735,90 +17628,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [15313] = 38, + [15278] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(606), 1, + ACTIONS(518), 1, + anon_sym_COLON, + ACTIONS(520), 1, + anon_sym_COLON_COLON, + ACTIONS(522), 1, aux_sym_str_lit_token1, - ACTIONS(610), 1, + ACTIONS(526), 1, aux_sym_sym_lit_token1, - ACTIONS(612), 1, + ACTIONS(528), 1, anon_sym_LPAREN, - ACTIONS(614), 1, + ACTIONS(530), 1, anon_sym_POUND0A, - ACTIONS(616), 1, + ACTIONS(532), 1, anon_sym_POUND, - ACTIONS(618), 1, + ACTIONS(534), 1, anon_sym_POUND_QMARK, - ACTIONS(620), 1, + ACTIONS(536), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(622), 1, - anon_sym_COLON_COLON, - ACTIONS(624), 1, + ACTIONS(538), 1, anon_sym_POUND_SQUOTE, - ACTIONS(626), 1, + ACTIONS(540), 1, anon_sym_POUND_POUND, - ACTIONS(628), 1, + ACTIONS(542), 1, anon_sym_POUND_EQ, - ACTIONS(630), 1, + ACTIONS(544), 1, anon_sym_AT, - ACTIONS(632), 1, + ACTIONS(546), 1, anon_sym_SQUOTE, - ACTIONS(634), 1, + ACTIONS(548), 1, anon_sym_BQUOTE, - ACTIONS(636), 1, + ACTIONS(550), 1, anon_sym_COMMA_AT, - ACTIONS(638), 1, + ACTIONS(552), 1, anon_sym_COMMA, - ACTIONS(640), 1, - anon_sym_COLON, - ACTIONS(644), 1, + ACTIONS(556), 1, anon_sym_POUNDC, - STATE(172), 1, + STATE(892), 1, aux_sym_dis_expr_repeat1, - STATE(949), 1, + STATE(909), 1, sym_sym_lit, - STATE(963), 1, + STATE(922), 1, sym__bare_set_lit, - STATE(964), 1, + STATE(931), 1, sym__bare_vec_lit, - STATE(967), 1, + STATE(936), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1911), 1, + STATE(1865), 1, sym_dotted_sym_lit, - ACTIONS(602), 2, + ACTIONS(514), 2, sym__ws, sym_comment, - ACTIONS(642), 2, + ACTIONS(554), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(904), 2, + ACTIONS(892), 2, sym_num_lit, sym_char_lit, - ACTIONS(906), 2, + ACTIONS(894), 2, sym_nil_lit, sym_fancy_literal, - STATE(944), 2, + STATE(897), 2, sym__gap, sym_dis_expr, - STATE(965), 3, + STATE(930), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1037), 18, + STATE(1002), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -17836,90 +17730,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [15452] = 38, + [15418] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(13), 1, - aux_sym_str_lit_token1, - ACTIONS(17), 1, - aux_sym_sym_lit_token1, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(23), 1, + ACTIONS(518), 1, + anon_sym_COLON, + ACTIONS(520), 1, + anon_sym_COLON_COLON, + ACTIONS(522), 1, + aux_sym_str_lit_token1, + ACTIONS(526), 1, + aux_sym_sym_lit_token1, + ACTIONS(528), 1, anon_sym_LPAREN, - ACTIONS(25), 1, + ACTIONS(530), 1, anon_sym_POUND0A, - ACTIONS(27), 1, + ACTIONS(532), 1, anon_sym_POUND, - ACTIONS(29), 1, + ACTIONS(534), 1, anon_sym_POUND_QMARK, - ACTIONS(31), 1, + ACTIONS(536), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(33), 1, - anon_sym_COLON_COLON, - ACTIONS(35), 1, + ACTIONS(538), 1, anon_sym_POUND_SQUOTE, - ACTIONS(37), 1, + ACTIONS(540), 1, anon_sym_POUND_POUND, - ACTIONS(39), 1, + ACTIONS(542), 1, anon_sym_POUND_EQ, - ACTIONS(41), 1, + ACTIONS(544), 1, anon_sym_AT, - ACTIONS(43), 1, + ACTIONS(546), 1, anon_sym_SQUOTE, - ACTIONS(45), 1, + ACTIONS(548), 1, anon_sym_BQUOTE, - ACTIONS(47), 1, + ACTIONS(550), 1, anon_sym_COMMA_AT, - ACTIONS(49), 1, + ACTIONS(552), 1, anon_sym_COMMA, - ACTIONS(51), 1, - anon_sym_COLON, - ACTIONS(55), 1, + ACTIONS(556), 1, anon_sym_POUNDC, - STATE(815), 1, + STATE(129), 1, + aux_sym_dis_expr_repeat1, + STATE(909), 1, sym_sym_lit, - STATE(838), 1, - sym__bare_vec_lit, - STATE(841), 1, + STATE(922), 1, sym__bare_set_lit, - STATE(930), 1, - aux_sym_dis_expr_repeat1, - STATE(1047), 1, + STATE(931), 1, + sym__bare_vec_lit, + STATE(936), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1909), 1, + STATE(1865), 1, sym_dotted_sym_lit, - ACTIONS(53), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(646), 2, + ACTIONS(514), 2, sym__ws, sym_comment, - ACTIONS(908), 2, + ACTIONS(554), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(896), 2, sym_num_lit, sym_char_lit, - ACTIONS(910), 2, + ACTIONS(898), 2, sym_nil_lit, sym_fancy_literal, - STATE(942), 2, + STATE(897), 2, sym__gap, sym_dis_expr, - STATE(842), 3, + STATE(930), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(312), 18, + STATE(1001), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -17937,90 +17832,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [15591] = 38, + [15558] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(13), 1, - aux_sym_str_lit_token1, - ACTIONS(17), 1, - aux_sym_sym_lit_token1, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(23), 1, + ACTIONS(610), 1, + anon_sym_COLON, + ACTIONS(612), 1, + anon_sym_COLON_COLON, + ACTIONS(614), 1, + aux_sym_str_lit_token1, + ACTIONS(618), 1, + aux_sym_sym_lit_token1, + ACTIONS(620), 1, anon_sym_LPAREN, - ACTIONS(25), 1, + ACTIONS(622), 1, anon_sym_POUND0A, - ACTIONS(27), 1, + ACTIONS(624), 1, anon_sym_POUND, - ACTIONS(29), 1, + ACTIONS(626), 1, anon_sym_POUND_QMARK, - ACTIONS(31), 1, + ACTIONS(628), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(33), 1, - anon_sym_COLON_COLON, - ACTIONS(35), 1, + ACTIONS(630), 1, anon_sym_POUND_SQUOTE, - ACTIONS(37), 1, + ACTIONS(632), 1, anon_sym_POUND_POUND, - ACTIONS(39), 1, + ACTIONS(634), 1, anon_sym_POUND_EQ, - ACTIONS(41), 1, + ACTIONS(636), 1, anon_sym_AT, - ACTIONS(43), 1, + ACTIONS(638), 1, anon_sym_SQUOTE, - ACTIONS(45), 1, + ACTIONS(640), 1, anon_sym_BQUOTE, - ACTIONS(47), 1, + ACTIONS(642), 1, anon_sym_COMMA_AT, - ACTIONS(49), 1, + ACTIONS(644), 1, anon_sym_COMMA, - ACTIONS(51), 1, - anon_sym_COLON, - ACTIONS(55), 1, + ACTIONS(648), 1, anon_sym_POUNDC, - STATE(815), 1, + STATE(545), 1, sym_sym_lit, - STATE(838), 1, + STATE(688), 1, sym__bare_vec_lit, - STATE(841), 1, + STATE(691), 1, sym__bare_set_lit, - STATE(930), 1, + STATE(892), 1, aux_sym_dis_expr_repeat1, - STATE(1047), 1, + STATE(1013), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1909), 1, + STATE(1862), 1, sym_dotted_sym_lit, - ACTIONS(53), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(646), 2, + ACTIONS(606), 2, sym__ws, sym_comment, - ACTIONS(912), 2, + ACTIONS(646), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(900), 2, sym_num_lit, sym_char_lit, - ACTIONS(914), 2, + ACTIONS(902), 2, sym_nil_lit, sym_fancy_literal, - STATE(942), 2, + STATE(896), 2, sym__gap, sym_dis_expr, - STATE(842), 3, + STATE(687), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(67), 18, + STATE(776), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -18038,90 +17934,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [15730] = 38, + [15698] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(606), 1, + ACTIONS(518), 1, + anon_sym_COLON, + ACTIONS(520), 1, + anon_sym_COLON_COLON, + ACTIONS(522), 1, aux_sym_str_lit_token1, - ACTIONS(610), 1, + ACTIONS(526), 1, aux_sym_sym_lit_token1, - ACTIONS(612), 1, + ACTIONS(528), 1, anon_sym_LPAREN, - ACTIONS(614), 1, + ACTIONS(530), 1, anon_sym_POUND0A, - ACTIONS(616), 1, + ACTIONS(532), 1, anon_sym_POUND, - ACTIONS(618), 1, + ACTIONS(534), 1, anon_sym_POUND_QMARK, - ACTIONS(620), 1, + ACTIONS(536), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(622), 1, - anon_sym_COLON_COLON, - ACTIONS(624), 1, + ACTIONS(538), 1, anon_sym_POUND_SQUOTE, - ACTIONS(626), 1, + ACTIONS(540), 1, anon_sym_POUND_POUND, - ACTIONS(628), 1, + ACTIONS(542), 1, anon_sym_POUND_EQ, - ACTIONS(630), 1, + ACTIONS(544), 1, anon_sym_AT, - ACTIONS(632), 1, + ACTIONS(546), 1, anon_sym_SQUOTE, - ACTIONS(634), 1, + ACTIONS(548), 1, anon_sym_BQUOTE, - ACTIONS(636), 1, + ACTIONS(550), 1, anon_sym_COMMA_AT, - ACTIONS(638), 1, + ACTIONS(552), 1, anon_sym_COMMA, - ACTIONS(640), 1, - anon_sym_COLON, - ACTIONS(644), 1, + ACTIONS(556), 1, anon_sym_POUNDC, - STATE(188), 1, + STATE(138), 1, aux_sym_dis_expr_repeat1, - STATE(949), 1, + STATE(909), 1, sym_sym_lit, - STATE(963), 1, + STATE(922), 1, sym__bare_set_lit, - STATE(964), 1, + STATE(931), 1, sym__bare_vec_lit, - STATE(967), 1, + STATE(936), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1911), 1, + STATE(1865), 1, sym_dotted_sym_lit, - ACTIONS(602), 2, + ACTIONS(514), 2, sym__ws, sym_comment, - ACTIONS(642), 2, + ACTIONS(554), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(916), 2, + ACTIONS(904), 2, sym_num_lit, sym_char_lit, - ACTIONS(918), 2, + ACTIONS(906), 2, sym_nil_lit, sym_fancy_literal, - STATE(944), 2, + STATE(897), 2, sym__gap, sym_dis_expr, - STATE(965), 3, + STATE(930), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1033), 18, + STATE(997), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -18139,90 +18036,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [15869] = 38, + [15838] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(606), 1, + ACTIONS(518), 1, + anon_sym_COLON, + ACTIONS(520), 1, + anon_sym_COLON_COLON, + ACTIONS(522), 1, aux_sym_str_lit_token1, - ACTIONS(610), 1, + ACTIONS(526), 1, aux_sym_sym_lit_token1, - ACTIONS(612), 1, + ACTIONS(528), 1, anon_sym_LPAREN, - ACTIONS(614), 1, + ACTIONS(530), 1, anon_sym_POUND0A, - ACTIONS(616), 1, + ACTIONS(532), 1, anon_sym_POUND, - ACTIONS(618), 1, + ACTIONS(534), 1, anon_sym_POUND_QMARK, - ACTIONS(620), 1, + ACTIONS(536), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(622), 1, - anon_sym_COLON_COLON, - ACTIONS(624), 1, + ACTIONS(538), 1, anon_sym_POUND_SQUOTE, - ACTIONS(626), 1, + ACTIONS(540), 1, anon_sym_POUND_POUND, - ACTIONS(628), 1, + ACTIONS(542), 1, anon_sym_POUND_EQ, - ACTIONS(630), 1, + ACTIONS(544), 1, anon_sym_AT, - ACTIONS(632), 1, + ACTIONS(546), 1, anon_sym_SQUOTE, - ACTIONS(634), 1, + ACTIONS(548), 1, anon_sym_BQUOTE, - ACTIONS(636), 1, + ACTIONS(550), 1, anon_sym_COMMA_AT, - ACTIONS(638), 1, + ACTIONS(552), 1, anon_sym_COMMA, - ACTIONS(640), 1, - anon_sym_COLON, - ACTIONS(644), 1, + ACTIONS(556), 1, anon_sym_POUNDC, - STATE(199), 1, + STATE(140), 1, aux_sym_dis_expr_repeat1, - STATE(949), 1, + STATE(909), 1, sym_sym_lit, - STATE(963), 1, + STATE(922), 1, sym__bare_set_lit, - STATE(964), 1, + STATE(931), 1, sym__bare_vec_lit, - STATE(967), 1, + STATE(936), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1911), 1, + STATE(1865), 1, sym_dotted_sym_lit, - ACTIONS(602), 2, + ACTIONS(514), 2, sym__ws, sym_comment, - ACTIONS(642), 2, + ACTIONS(554), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(920), 2, + ACTIONS(908), 2, sym_num_lit, sym_char_lit, - ACTIONS(922), 2, + ACTIONS(910), 2, sym_nil_lit, sym_fancy_literal, - STATE(944), 2, + STATE(897), 2, sym__gap, sym_dis_expr, - STATE(965), 3, + STATE(930), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1028), 18, + STATE(993), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -18240,90 +18138,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [16008] = 38, + [15978] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(19), 1, - anon_sym_CARET, - ACTIONS(21), 1, - anon_sym_POUND_CARET, - ACTIONS(832), 1, + ACTIONS(13), 1, + anon_sym_COLON, + ACTIONS(15), 1, + anon_sym_COLON_COLON, + ACTIONS(17), 1, aux_sym_str_lit_token1, - ACTIONS(836), 1, + ACTIONS(21), 1, aux_sym_sym_lit_token1, - ACTIONS(838), 1, + ACTIONS(23), 1, + anon_sym_CARET, + ACTIONS(25), 1, + anon_sym_POUND_CARET, + ACTIONS(27), 1, anon_sym_LPAREN, - ACTIONS(840), 1, + ACTIONS(29), 1, anon_sym_POUND0A, - ACTIONS(842), 1, + ACTIONS(31), 1, anon_sym_POUND, - ACTIONS(844), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(846), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(848), 1, - anon_sym_COLON_COLON, - ACTIONS(850), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(852), 1, + ACTIONS(39), 1, anon_sym_POUND_POUND, - ACTIONS(854), 1, + ACTIONS(41), 1, anon_sym_POUND_EQ, - ACTIONS(856), 1, + ACTIONS(43), 1, anon_sym_AT, - ACTIONS(858), 1, + ACTIONS(45), 1, anon_sym_SQUOTE, - ACTIONS(860), 1, + ACTIONS(47), 1, anon_sym_BQUOTE, - ACTIONS(862), 1, + ACTIONS(49), 1, anon_sym_COMMA_AT, - ACTIONS(864), 1, + ACTIONS(51), 1, anon_sym_COMMA, - ACTIONS(866), 1, - anon_sym_COLON, - ACTIONS(870), 1, + ACTIONS(55), 1, anon_sym_POUNDC, - STATE(114), 1, + STATE(103), 1, aux_sym_dis_expr_repeat1, - STATE(992), 1, - aux_sym_sym_lit_repeat1, - STATE(1076), 1, + STATE(780), 1, sym_sym_lit, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, - sym_meta_lit, - STATE(1108), 1, - sym__bare_set_lit, - STATE(1109), 1, + STATE(786), 1, sym__bare_vec_lit, - STATE(1369), 1, + STATE(884), 1, + sym__bare_set_lit, + STATE(1033), 1, + aux_sym_sym_lit_repeat1, + STATE(1162), 1, + sym_meta_lit, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1910), 1, + STATE(1863), 1, sym_dotted_sym_lit, - ACTIONS(828), 2, - sym__ws, - sym_comment, - ACTIONS(868), 2, + ACTIONS(53), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(924), 2, + ACTIONS(650), 2, + sym__ws, + sym_comment, + ACTIONS(912), 2, sym_num_lit, sym_char_lit, - ACTIONS(926), 2, + ACTIONS(914), 2, sym_nil_lit, sym_fancy_literal, - STATE(943), 2, + STATE(898), 2, sym__gap, sym_dis_expr, - STATE(1110), 3, + STATE(787), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1200), 18, + STATE(202), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -18341,90 +18240,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [16147] = 38, + [16118] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(832), 1, + ACTIONS(518), 1, + anon_sym_COLON, + ACTIONS(520), 1, + anon_sym_COLON_COLON, + ACTIONS(522), 1, aux_sym_str_lit_token1, - ACTIONS(836), 1, + ACTIONS(526), 1, aux_sym_sym_lit_token1, - ACTIONS(838), 1, + ACTIONS(528), 1, anon_sym_LPAREN, - ACTIONS(840), 1, + ACTIONS(530), 1, anon_sym_POUND0A, - ACTIONS(842), 1, + ACTIONS(532), 1, anon_sym_POUND, - ACTIONS(844), 1, + ACTIONS(534), 1, anon_sym_POUND_QMARK, - ACTIONS(846), 1, + ACTIONS(536), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(848), 1, - anon_sym_COLON_COLON, - ACTIONS(850), 1, + ACTIONS(538), 1, anon_sym_POUND_SQUOTE, - ACTIONS(852), 1, + ACTIONS(540), 1, anon_sym_POUND_POUND, - ACTIONS(854), 1, + ACTIONS(542), 1, anon_sym_POUND_EQ, - ACTIONS(856), 1, + ACTIONS(544), 1, anon_sym_AT, - ACTIONS(858), 1, + ACTIONS(546), 1, anon_sym_SQUOTE, - ACTIONS(860), 1, + ACTIONS(548), 1, anon_sym_BQUOTE, - ACTIONS(862), 1, + ACTIONS(550), 1, anon_sym_COMMA_AT, - ACTIONS(864), 1, + ACTIONS(552), 1, anon_sym_COMMA, - ACTIONS(866), 1, - anon_sym_COLON, - ACTIONS(870), 1, + ACTIONS(556), 1, anon_sym_POUNDC, - STATE(930), 1, + STATE(141), 1, aux_sym_dis_expr_repeat1, - STATE(992), 1, - aux_sym_sym_lit_repeat1, - STATE(1076), 1, + STATE(909), 1, sym_sym_lit, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, - sym_meta_lit, - STATE(1108), 1, + STATE(922), 1, sym__bare_set_lit, - STATE(1109), 1, + STATE(931), 1, sym__bare_vec_lit, - STATE(1369), 1, + STATE(936), 1, + aux_sym_sym_lit_repeat1, + STATE(1162), 1, + sym_meta_lit, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1910), 1, + STATE(1865), 1, sym_dotted_sym_lit, - ACTIONS(828), 2, + ACTIONS(514), 2, sym__ws, sym_comment, - ACTIONS(868), 2, + ACTIONS(554), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(928), 2, + ACTIONS(916), 2, sym_num_lit, sym_char_lit, - ACTIONS(930), 2, + ACTIONS(918), 2, sym_nil_lit, sym_fancy_literal, - STATE(943), 2, + STATE(897), 2, sym__gap, sym_dis_expr, - STATE(1110), 3, + STATE(930), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1197), 18, + STATE(992), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -18442,90 +18342,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [16286] = 38, + [16258] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(606), 1, + ACTIONS(518), 1, + anon_sym_COLON, + ACTIONS(520), 1, + anon_sym_COLON_COLON, + ACTIONS(522), 1, aux_sym_str_lit_token1, - ACTIONS(610), 1, + ACTIONS(526), 1, aux_sym_sym_lit_token1, - ACTIONS(612), 1, + ACTIONS(528), 1, anon_sym_LPAREN, - ACTIONS(614), 1, + ACTIONS(530), 1, anon_sym_POUND0A, - ACTIONS(616), 1, + ACTIONS(532), 1, anon_sym_POUND, - ACTIONS(618), 1, + ACTIONS(534), 1, anon_sym_POUND_QMARK, - ACTIONS(620), 1, + ACTIONS(536), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(622), 1, - anon_sym_COLON_COLON, - ACTIONS(624), 1, + ACTIONS(538), 1, anon_sym_POUND_SQUOTE, - ACTIONS(626), 1, + ACTIONS(540), 1, anon_sym_POUND_POUND, - ACTIONS(628), 1, + ACTIONS(542), 1, anon_sym_POUND_EQ, - ACTIONS(630), 1, + ACTIONS(544), 1, anon_sym_AT, - ACTIONS(632), 1, + ACTIONS(546), 1, anon_sym_SQUOTE, - ACTIONS(634), 1, + ACTIONS(548), 1, anon_sym_BQUOTE, - ACTIONS(636), 1, + ACTIONS(550), 1, anon_sym_COMMA_AT, - ACTIONS(638), 1, + ACTIONS(552), 1, anon_sym_COMMA, - ACTIONS(640), 1, - anon_sym_COLON, - ACTIONS(644), 1, + ACTIONS(556), 1, anon_sym_POUNDC, - STATE(203), 1, + STATE(147), 1, aux_sym_dis_expr_repeat1, - STATE(949), 1, + STATE(909), 1, sym_sym_lit, - STATE(963), 1, + STATE(922), 1, sym__bare_set_lit, - STATE(964), 1, + STATE(931), 1, sym__bare_vec_lit, - STATE(967), 1, + STATE(936), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1911), 1, + STATE(1865), 1, sym_dotted_sym_lit, - ACTIONS(602), 2, + ACTIONS(514), 2, sym__ws, sym_comment, - ACTIONS(642), 2, + ACTIONS(554), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(932), 2, + ACTIONS(920), 2, sym_num_lit, sym_char_lit, - ACTIONS(934), 2, + ACTIONS(922), 2, sym_nil_lit, sym_fancy_literal, - STATE(944), 2, + STATE(897), 2, sym__gap, sym_dis_expr, - STATE(965), 3, + STATE(930), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1027), 18, + STATE(991), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -18543,90 +18444,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [16425] = 38, + [16398] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(19), 1, - anon_sym_CARET, - ACTIONS(21), 1, - anon_sym_POUND_CARET, - ACTIONS(832), 1, + ACTIONS(13), 1, + anon_sym_COLON, + ACTIONS(15), 1, + anon_sym_COLON_COLON, + ACTIONS(17), 1, aux_sym_str_lit_token1, - ACTIONS(836), 1, + ACTIONS(21), 1, aux_sym_sym_lit_token1, - ACTIONS(838), 1, + ACTIONS(23), 1, + anon_sym_CARET, + ACTIONS(25), 1, + anon_sym_POUND_CARET, + ACTIONS(27), 1, anon_sym_LPAREN, - ACTIONS(840), 1, + ACTIONS(29), 1, anon_sym_POUND0A, - ACTIONS(842), 1, + ACTIONS(31), 1, anon_sym_POUND, - ACTIONS(844), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(846), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(848), 1, - anon_sym_COLON_COLON, - ACTIONS(850), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(852), 1, + ACTIONS(39), 1, anon_sym_POUND_POUND, - ACTIONS(854), 1, + ACTIONS(41), 1, anon_sym_POUND_EQ, - ACTIONS(856), 1, + ACTIONS(43), 1, anon_sym_AT, - ACTIONS(858), 1, + ACTIONS(45), 1, anon_sym_SQUOTE, - ACTIONS(860), 1, + ACTIONS(47), 1, anon_sym_BQUOTE, - ACTIONS(862), 1, + ACTIONS(49), 1, anon_sym_COMMA_AT, - ACTIONS(864), 1, + ACTIONS(51), 1, anon_sym_COMMA, - ACTIONS(866), 1, - anon_sym_COLON, - ACTIONS(870), 1, + ACTIONS(55), 1, anon_sym_POUNDC, - STATE(119), 1, + STATE(109), 1, aux_sym_dis_expr_repeat1, - STATE(992), 1, - aux_sym_sym_lit_repeat1, - STATE(1076), 1, + STATE(780), 1, sym_sym_lit, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, - sym_meta_lit, - STATE(1108), 1, - sym__bare_set_lit, - STATE(1109), 1, + STATE(786), 1, sym__bare_vec_lit, - STATE(1369), 1, + STATE(884), 1, + sym__bare_set_lit, + STATE(1033), 1, + aux_sym_sym_lit_repeat1, + STATE(1162), 1, + sym_meta_lit, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1910), 1, + STATE(1863), 1, sym_dotted_sym_lit, - ACTIONS(828), 2, - sym__ws, - sym_comment, - ACTIONS(868), 2, + ACTIONS(53), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(936), 2, + ACTIONS(650), 2, + sym__ws, + sym_comment, + ACTIONS(924), 2, sym_num_lit, sym_char_lit, - ACTIONS(938), 2, + ACTIONS(926), 2, sym_nil_lit, sym_fancy_literal, - STATE(943), 2, + STATE(898), 2, sym__gap, sym_dis_expr, - STATE(1110), 3, + STATE(787), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1195), 18, + STATE(200), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -18644,90 +18546,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [16564] = 38, + [16538] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(13), 1, - aux_sym_str_lit_token1, - ACTIONS(17), 1, - aux_sym_sym_lit_token1, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(23), 1, + ACTIONS(518), 1, + anon_sym_COLON, + ACTIONS(520), 1, + anon_sym_COLON_COLON, + ACTIONS(522), 1, + aux_sym_str_lit_token1, + ACTIONS(526), 1, + aux_sym_sym_lit_token1, + ACTIONS(528), 1, anon_sym_LPAREN, - ACTIONS(25), 1, + ACTIONS(530), 1, anon_sym_POUND0A, - ACTIONS(27), 1, + ACTIONS(532), 1, anon_sym_POUND, - ACTIONS(29), 1, + ACTIONS(534), 1, anon_sym_POUND_QMARK, - ACTIONS(31), 1, + ACTIONS(536), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(538), 1, + anon_sym_POUND_SQUOTE, + ACTIONS(540), 1, anon_sym_POUND_POUND, - ACTIONS(39), 1, + ACTIONS(542), 1, anon_sym_POUND_EQ, - ACTIONS(45), 1, - anon_sym_BQUOTE, - ACTIONS(55), 1, - anon_sym_POUNDC, - ACTIONS(652), 1, - anon_sym_COLON_COLON, - ACTIONS(654), 1, - anon_sym_POUND_SQUOTE, - ACTIONS(656), 1, + ACTIONS(544), 1, anon_sym_AT, - ACTIONS(658), 1, + ACTIONS(546), 1, anon_sym_SQUOTE, - ACTIONS(660), 1, + ACTIONS(548), 1, + anon_sym_BQUOTE, + ACTIONS(550), 1, anon_sym_COMMA_AT, - ACTIONS(662), 1, + ACTIONS(552), 1, anon_sym_COMMA, - ACTIONS(664), 1, - anon_sym_COLON, - STATE(817), 1, + ACTIONS(556), 1, + anon_sym_POUNDC, + STATE(892), 1, + aux_sym_dis_expr_repeat1, + STATE(909), 1, sym_sym_lit, - STATE(838), 1, - sym__bare_vec_lit, - STATE(841), 1, + STATE(922), 1, sym__bare_set_lit, - STATE(930), 1, - aux_sym_dis_expr_repeat1, - STATE(999), 1, + STATE(931), 1, + sym__bare_vec_lit, + STATE(936), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1908), 1, + STATE(1865), 1, sym_dotted_sym_lit, - ACTIONS(646), 2, + ACTIONS(514), 2, sym__ws, sym_comment, - ACTIONS(666), 2, + ACTIONS(554), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(940), 2, + ACTIONS(928), 2, sym_num_lit, sym_char_lit, - ACTIONS(942), 2, + ACTIONS(930), 2, sym_nil_lit, sym_fancy_literal, - STATE(942), 2, + STATE(897), 2, sym__gap, sym_dis_expr, - STATE(842), 3, + STATE(930), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(883), 18, + STATE(986), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -18745,90 +18648,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [16703] = 38, + [16678] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(19), 1, - anon_sym_CARET, - ACTIONS(21), 1, - anon_sym_POUND_CARET, - ACTIONS(832), 1, + ACTIONS(13), 1, + anon_sym_COLON, + ACTIONS(15), 1, + anon_sym_COLON_COLON, + ACTIONS(17), 1, aux_sym_str_lit_token1, - ACTIONS(836), 1, + ACTIONS(21), 1, aux_sym_sym_lit_token1, - ACTIONS(838), 1, + ACTIONS(23), 1, + anon_sym_CARET, + ACTIONS(25), 1, + anon_sym_POUND_CARET, + ACTIONS(27), 1, anon_sym_LPAREN, - ACTIONS(840), 1, + ACTIONS(29), 1, anon_sym_POUND0A, - ACTIONS(842), 1, + ACTIONS(31), 1, anon_sym_POUND, - ACTIONS(844), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(846), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(848), 1, - anon_sym_COLON_COLON, - ACTIONS(850), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(852), 1, + ACTIONS(39), 1, anon_sym_POUND_POUND, - ACTIONS(854), 1, + ACTIONS(41), 1, anon_sym_POUND_EQ, - ACTIONS(856), 1, + ACTIONS(43), 1, anon_sym_AT, - ACTIONS(858), 1, + ACTIONS(45), 1, anon_sym_SQUOTE, - ACTIONS(860), 1, + ACTIONS(47), 1, anon_sym_BQUOTE, - ACTIONS(862), 1, + ACTIONS(49), 1, anon_sym_COMMA_AT, - ACTIONS(864), 1, + ACTIONS(51), 1, anon_sym_COMMA, - ACTIONS(866), 1, - anon_sym_COLON, - ACTIONS(870), 1, + ACTIONS(55), 1, anon_sym_POUNDC, - STATE(930), 1, + STATE(780), 1, + sym_sym_lit, + STATE(786), 1, + sym__bare_vec_lit, + STATE(884), 1, + sym__bare_set_lit, + STATE(892), 1, aux_sym_dis_expr_repeat1, - STATE(992), 1, + STATE(1033), 1, aux_sym_sym_lit_repeat1, - STATE(1076), 1, - sym_sym_lit, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1108), 1, - sym__bare_set_lit, - STATE(1109), 1, - sym__bare_vec_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1910), 1, + STATE(1863), 1, sym_dotted_sym_lit, - ACTIONS(828), 2, - sym__ws, - sym_comment, - ACTIONS(868), 2, + ACTIONS(53), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(944), 2, - sym_num_lit, - sym_char_lit, - ACTIONS(946), 2, + ACTIONS(650), 2, + sym__ws, + sym_comment, + ACTIONS(932), 2, + sym_num_lit, + sym_char_lit, + ACTIONS(934), 2, sym_nil_lit, sym_fancy_literal, - STATE(943), 2, + STATE(898), 2, sym__gap, sym_dis_expr, - STATE(1110), 3, + STATE(787), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1194), 18, + STATE(380), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -18846,90 +18750,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [16842] = 38, + [16818] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(13), 1, - aux_sym_str_lit_token1, + anon_sym_COLON, + ACTIONS(15), 1, + anon_sym_COLON_COLON, ACTIONS(17), 1, + aux_sym_str_lit_token1, + ACTIONS(21), 1, aux_sym_sym_lit_token1, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(23), 1, + ACTIONS(27), 1, anon_sym_LPAREN, - ACTIONS(25), 1, + ACTIONS(29), 1, anon_sym_POUND0A, - ACTIONS(27), 1, + ACTIONS(31), 1, anon_sym_POUND, - ACTIONS(29), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(31), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, ACTIONS(37), 1, - anon_sym_POUND_POUND, + anon_sym_POUND_SQUOTE, ACTIONS(39), 1, + anon_sym_POUND_POUND, + ACTIONS(41), 1, anon_sym_POUND_EQ, - ACTIONS(45), 1, - anon_sym_BQUOTE, - ACTIONS(55), 1, - anon_sym_POUNDC, - ACTIONS(652), 1, - anon_sym_COLON_COLON, - ACTIONS(654), 1, - anon_sym_POUND_SQUOTE, - ACTIONS(656), 1, + ACTIONS(43), 1, anon_sym_AT, - ACTIONS(658), 1, + ACTIONS(45), 1, anon_sym_SQUOTE, - ACTIONS(660), 1, + ACTIONS(47), 1, + anon_sym_BQUOTE, + ACTIONS(49), 1, anon_sym_COMMA_AT, - ACTIONS(662), 1, + ACTIONS(51), 1, anon_sym_COMMA, - ACTIONS(664), 1, - anon_sym_COLON, - STATE(92), 1, - aux_sym_dis_expr_repeat1, - STATE(817), 1, + ACTIONS(55), 1, + anon_sym_POUNDC, + STATE(780), 1, sym_sym_lit, - STATE(838), 1, + STATE(786), 1, sym__bare_vec_lit, - STATE(841), 1, + STATE(884), 1, sym__bare_set_lit, - STATE(999), 1, + STATE(892), 1, + aux_sym_dis_expr_repeat1, + STATE(1033), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1908), 1, + STATE(1863), 1, sym_dotted_sym_lit, - ACTIONS(646), 2, - sym__ws, - sym_comment, - ACTIONS(666), 2, + ACTIONS(53), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(800), 2, + ACTIONS(650), 2, + sym__ws, + sym_comment, + ACTIONS(936), 2, sym_num_lit, sym_char_lit, - ACTIONS(802), 2, + ACTIONS(938), 2, sym_nil_lit, sym_fancy_literal, - STATE(942), 2, + STATE(898), 2, sym__gap, sym_dis_expr, - STATE(842), 3, + STATE(787), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(874), 18, + STATE(262), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -18947,90 +18852,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [16981] = 38, + [16958] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(13), 1, - aux_sym_str_lit_token1, + anon_sym_COLON, + ACTIONS(15), 1, + anon_sym_COLON_COLON, ACTIONS(17), 1, - aux_sym_sym_lit_token1, - ACTIONS(19), 1, - anon_sym_CARET, + aux_sym_str_lit_token1, ACTIONS(21), 1, - anon_sym_POUND_CARET, + aux_sym_sym_lit_token1, ACTIONS(23), 1, - anon_sym_LPAREN, + anon_sym_CARET, ACTIONS(25), 1, - anon_sym_POUND0A, + anon_sym_POUND_CARET, ACTIONS(27), 1, - anon_sym_POUND, + anon_sym_LPAREN, ACTIONS(29), 1, - anon_sym_POUND_QMARK, + anon_sym_POUND0A, ACTIONS(31), 1, - anon_sym_POUND_QMARK_AT, + anon_sym_POUND, ACTIONS(33), 1, - anon_sym_COLON_COLON, + anon_sym_POUND_QMARK, ACTIONS(35), 1, - anon_sym_POUND_SQUOTE, + anon_sym_POUND_QMARK_AT, ACTIONS(37), 1, - anon_sym_POUND_POUND, + anon_sym_POUND_SQUOTE, ACTIONS(39), 1, - anon_sym_POUND_EQ, + anon_sym_POUND_POUND, ACTIONS(41), 1, - anon_sym_AT, + anon_sym_POUND_EQ, ACTIONS(43), 1, - anon_sym_SQUOTE, + anon_sym_AT, ACTIONS(45), 1, - anon_sym_BQUOTE, + anon_sym_SQUOTE, ACTIONS(47), 1, - anon_sym_COMMA_AT, + anon_sym_BQUOTE, ACTIONS(49), 1, - anon_sym_COMMA, + anon_sym_COMMA_AT, ACTIONS(51), 1, - anon_sym_COLON, + anon_sym_COMMA, ACTIONS(55), 1, anon_sym_POUNDC, - STATE(815), 1, + STATE(780), 1, sym_sym_lit, - STATE(838), 1, + STATE(786), 1, sym__bare_vec_lit, - STATE(841), 1, + STATE(884), 1, sym__bare_set_lit, - STATE(930), 1, + STATE(892), 1, aux_sym_dis_expr_repeat1, - STATE(1047), 1, + STATE(1033), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1909), 1, + STATE(1863), 1, sym_dotted_sym_lit, ACTIONS(53), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(646), 2, + ACTIONS(650), 2, sym__ws, sym_comment, - ACTIONS(948), 2, + ACTIONS(940), 2, sym_num_lit, sym_char_lit, - ACTIONS(950), 2, + ACTIONS(942), 2, sym_nil_lit, sym_fancy_literal, - STATE(942), 2, + STATE(898), 2, sym__gap, sym_dis_expr, - STATE(842), 3, + STATE(787), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1362), 18, + STATE(1327), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -19048,90 +18954,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [17120] = 38, + [17098] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(606), 1, + ACTIONS(140), 1, + anon_sym_COLON, + ACTIONS(142), 1, + anon_sym_COLON_COLON, + ACTIONS(144), 1, aux_sym_str_lit_token1, - ACTIONS(610), 1, + ACTIONS(148), 1, aux_sym_sym_lit_token1, - ACTIONS(612), 1, - anon_sym_LPAREN, - ACTIONS(614), 1, + ACTIONS(150), 1, anon_sym_POUND0A, - ACTIONS(616), 1, + ACTIONS(152), 1, anon_sym_POUND, - ACTIONS(618), 1, + ACTIONS(154), 1, anon_sym_POUND_QMARK, - ACTIONS(620), 1, + ACTIONS(156), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(622), 1, - anon_sym_COLON_COLON, - ACTIONS(624), 1, + ACTIONS(158), 1, anon_sym_POUND_SQUOTE, - ACTIONS(626), 1, + ACTIONS(160), 1, anon_sym_POUND_POUND, - ACTIONS(628), 1, + ACTIONS(162), 1, anon_sym_POUND_EQ, - ACTIONS(630), 1, + ACTIONS(164), 1, anon_sym_AT, - ACTIONS(632), 1, + ACTIONS(166), 1, anon_sym_SQUOTE, - ACTIONS(634), 1, + ACTIONS(168), 1, anon_sym_BQUOTE, - ACTIONS(636), 1, + ACTIONS(170), 1, anon_sym_COMMA_AT, - ACTIONS(638), 1, + ACTIONS(172), 1, anon_sym_COMMA, - ACTIONS(640), 1, - anon_sym_COLON, - ACTIONS(644), 1, + ACTIONS(178), 1, anon_sym_POUNDC, - STATE(205), 1, - aux_sym_dis_expr_repeat1, - STATE(949), 1, + ACTIONS(413), 1, + anon_sym_LPAREN, + STATE(404), 1, sym_sym_lit, - STATE(963), 1, - sym__bare_set_lit, - STATE(964), 1, + STATE(487), 1, sym__bare_vec_lit, - STATE(967), 1, + STATE(488), 1, + sym__bare_set_lit, + STATE(892), 1, + aux_sym_dis_expr_repeat1, + STATE(981), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1911), 1, + STATE(1866), 1, sym_dotted_sym_lit, - ACTIONS(602), 2, - sym__ws, - sym_comment, - ACTIONS(642), 2, + ACTIONS(176), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(952), 2, + ACTIONS(411), 2, + sym__ws, + sym_comment, + ACTIONS(944), 2, sym_num_lit, sym_char_lit, - ACTIONS(954), 2, + ACTIONS(946), 2, sym_nil_lit, sym_fancy_literal, - STATE(944), 2, + STATE(903), 2, sym__gap, sym_dis_expr, - STATE(965), 3, + STATE(486), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1026), 18, + STATE(439), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -19149,90 +19056,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [17259] = 38, + [17238] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(13), 1, - aux_sym_str_lit_token1, - ACTIONS(17), 1, - aux_sym_sym_lit_token1, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(23), 1, + ACTIONS(660), 1, + anon_sym_COLON, + ACTIONS(662), 1, + anon_sym_COLON_COLON, + ACTIONS(664), 1, + aux_sym_str_lit_token1, + ACTIONS(668), 1, + aux_sym_sym_lit_token1, + ACTIONS(670), 1, anon_sym_LPAREN, - ACTIONS(25), 1, + ACTIONS(672), 1, anon_sym_POUND0A, - ACTIONS(27), 1, + ACTIONS(674), 1, anon_sym_POUND, - ACTIONS(29), 1, + ACTIONS(676), 1, anon_sym_POUND_QMARK, - ACTIONS(31), 1, + ACTIONS(678), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(33), 1, - anon_sym_COLON_COLON, - ACTIONS(35), 1, + ACTIONS(680), 1, anon_sym_POUND_SQUOTE, - ACTIONS(37), 1, + ACTIONS(682), 1, anon_sym_POUND_POUND, - ACTIONS(39), 1, + ACTIONS(684), 1, anon_sym_POUND_EQ, - ACTIONS(41), 1, + ACTIONS(686), 1, anon_sym_AT, - ACTIONS(43), 1, + ACTIONS(688), 1, anon_sym_SQUOTE, - ACTIONS(45), 1, + ACTIONS(690), 1, anon_sym_BQUOTE, - ACTIONS(47), 1, + ACTIONS(692), 1, anon_sym_COMMA_AT, - ACTIONS(49), 1, + ACTIONS(694), 1, anon_sym_COMMA, - ACTIONS(51), 1, - anon_sym_COLON, - ACTIONS(55), 1, + ACTIONS(698), 1, anon_sym_POUNDC, - STATE(815), 1, + STATE(566), 1, sym_sym_lit, - STATE(838), 1, - sym__bare_vec_lit, - STATE(841), 1, + STATE(678), 1, sym__bare_set_lit, - STATE(930), 1, + STATE(679), 1, + sym__bare_vec_lit, + STATE(892), 1, aux_sym_dis_expr_repeat1, - STATE(1047), 1, + STATE(925), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1909), 1, + STATE(1868), 1, sym_dotted_sym_lit, - ACTIONS(53), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(646), 2, + ACTIONS(656), 2, sym__ws, sym_comment, - ACTIONS(956), 2, + ACTIONS(696), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(948), 2, sym_num_lit, sym_char_lit, - ACTIONS(958), 2, + ACTIONS(950), 2, sym_nil_lit, sym_fancy_literal, - STATE(942), 2, + STATE(906), 2, sym__gap, sym_dis_expr, - STATE(842), 3, + STATE(680), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(107), 18, + STATE(592), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -19250,90 +19158,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [17398] = 38, + [17378] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(13), 1, - aux_sym_str_lit_token1, - ACTIONS(17), 1, - aux_sym_sym_lit_token1, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(23), 1, + ACTIONS(518), 1, + anon_sym_COLON, + ACTIONS(520), 1, + anon_sym_COLON_COLON, + ACTIONS(522), 1, + aux_sym_str_lit_token1, + ACTIONS(526), 1, + aux_sym_sym_lit_token1, + ACTIONS(528), 1, anon_sym_LPAREN, - ACTIONS(25), 1, + ACTIONS(530), 1, anon_sym_POUND0A, - ACTIONS(27), 1, + ACTIONS(532), 1, anon_sym_POUND, - ACTIONS(29), 1, + ACTIONS(534), 1, anon_sym_POUND_QMARK, - ACTIONS(31), 1, + ACTIONS(536), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(33), 1, - anon_sym_COLON_COLON, - ACTIONS(35), 1, + ACTIONS(538), 1, anon_sym_POUND_SQUOTE, - ACTIONS(37), 1, + ACTIONS(540), 1, anon_sym_POUND_POUND, - ACTIONS(39), 1, + ACTIONS(542), 1, anon_sym_POUND_EQ, - ACTIONS(41), 1, + ACTIONS(544), 1, anon_sym_AT, - ACTIONS(43), 1, + ACTIONS(546), 1, anon_sym_SQUOTE, - ACTIONS(45), 1, + ACTIONS(548), 1, anon_sym_BQUOTE, - ACTIONS(47), 1, + ACTIONS(550), 1, anon_sym_COMMA_AT, - ACTIONS(49), 1, + ACTIONS(552), 1, anon_sym_COMMA, - ACTIONS(51), 1, - anon_sym_COLON, - ACTIONS(55), 1, + ACTIONS(556), 1, anon_sym_POUNDC, - STATE(186), 1, + STATE(158), 1, aux_sym_dis_expr_repeat1, - STATE(815), 1, + STATE(909), 1, sym_sym_lit, - STATE(838), 1, - sym__bare_vec_lit, - STATE(841), 1, + STATE(922), 1, sym__bare_set_lit, - STATE(1047), 1, + STATE(931), 1, + sym__bare_vec_lit, + STATE(936), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1909), 1, + STATE(1865), 1, sym_dotted_sym_lit, - ACTIONS(53), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(646), 2, + ACTIONS(514), 2, sym__ws, sym_comment, - ACTIONS(960), 2, + ACTIONS(554), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(952), 2, sym_num_lit, sym_char_lit, - ACTIONS(962), 2, + ACTIONS(954), 2, sym_nil_lit, sym_fancy_literal, - STATE(942), 2, + STATE(897), 2, sym__gap, sym_dis_expr, - STATE(842), 3, + STATE(930), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(90), 18, + STATE(923), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -19351,90 +19260,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [17537] = 38, + [17518] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(13), 1, - aux_sym_str_lit_token1, - ACTIONS(17), 1, - aux_sym_sym_lit_token1, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(23), 1, + ACTIONS(660), 1, + anon_sym_COLON, + ACTIONS(662), 1, + anon_sym_COLON_COLON, + ACTIONS(664), 1, + aux_sym_str_lit_token1, + ACTIONS(668), 1, + aux_sym_sym_lit_token1, + ACTIONS(670), 1, anon_sym_LPAREN, - ACTIONS(25), 1, + ACTIONS(672), 1, anon_sym_POUND0A, - ACTIONS(27), 1, + ACTIONS(674), 1, anon_sym_POUND, - ACTIONS(29), 1, + ACTIONS(676), 1, anon_sym_POUND_QMARK, - ACTIONS(31), 1, + ACTIONS(678), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(680), 1, + anon_sym_POUND_SQUOTE, + ACTIONS(682), 1, anon_sym_POUND_POUND, - ACTIONS(39), 1, + ACTIONS(684), 1, anon_sym_POUND_EQ, - ACTIONS(45), 1, - anon_sym_BQUOTE, - ACTIONS(55), 1, - anon_sym_POUNDC, - ACTIONS(652), 1, - anon_sym_COLON_COLON, - ACTIONS(654), 1, - anon_sym_POUND_SQUOTE, - ACTIONS(656), 1, + ACTIONS(686), 1, anon_sym_AT, - ACTIONS(658), 1, + ACTIONS(688), 1, anon_sym_SQUOTE, - ACTIONS(660), 1, + ACTIONS(690), 1, + anon_sym_BQUOTE, + ACTIONS(692), 1, anon_sym_COMMA_AT, - ACTIONS(662), 1, + ACTIONS(694), 1, anon_sym_COMMA, - ACTIONS(664), 1, - anon_sym_COLON, - STATE(247), 1, + ACTIONS(698), 1, + anon_sym_POUNDC, + STATE(193), 1, aux_sym_dis_expr_repeat1, - STATE(817), 1, + STATE(566), 1, sym_sym_lit, - STATE(838), 1, - sym__bare_vec_lit, - STATE(841), 1, + STATE(678), 1, sym__bare_set_lit, - STATE(999), 1, + STATE(679), 1, + sym__bare_vec_lit, + STATE(925), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1908), 1, + STATE(1868), 1, sym_dotted_sym_lit, - ACTIONS(646), 2, + ACTIONS(656), 2, sym__ws, sym_comment, - ACTIONS(666), 2, + ACTIONS(696), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(964), 2, + ACTIONS(956), 2, sym_num_lit, sym_char_lit, - ACTIONS(966), 2, + ACTIONS(958), 2, sym_nil_lit, sym_fancy_literal, - STATE(942), 2, + STATE(906), 2, sym__gap, sym_dis_expr, - STATE(842), 3, + STATE(680), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(910), 18, + STATE(617), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -19452,90 +19362,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [17676] = 38, + [17658] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(13), 1, - aux_sym_str_lit_token1, - ACTIONS(17), 1, - aux_sym_sym_lit_token1, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(23), 1, + ACTIONS(660), 1, + anon_sym_COLON, + ACTIONS(662), 1, + anon_sym_COLON_COLON, + ACTIONS(664), 1, + aux_sym_str_lit_token1, + ACTIONS(668), 1, + aux_sym_sym_lit_token1, + ACTIONS(670), 1, anon_sym_LPAREN, - ACTIONS(25), 1, + ACTIONS(672), 1, anon_sym_POUND0A, - ACTIONS(27), 1, + ACTIONS(674), 1, anon_sym_POUND, - ACTIONS(29), 1, + ACTIONS(676), 1, anon_sym_POUND_QMARK, - ACTIONS(31), 1, + ACTIONS(678), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(680), 1, + anon_sym_POUND_SQUOTE, + ACTIONS(682), 1, anon_sym_POUND_POUND, - ACTIONS(39), 1, + ACTIONS(684), 1, anon_sym_POUND_EQ, - ACTIONS(45), 1, - anon_sym_BQUOTE, - ACTIONS(55), 1, - anon_sym_POUNDC, - ACTIONS(652), 1, - anon_sym_COLON_COLON, - ACTIONS(654), 1, - anon_sym_POUND_SQUOTE, - ACTIONS(656), 1, + ACTIONS(686), 1, anon_sym_AT, - ACTIONS(658), 1, + ACTIONS(688), 1, anon_sym_SQUOTE, - ACTIONS(660), 1, + ACTIONS(690), 1, + anon_sym_BQUOTE, + ACTIONS(692), 1, anon_sym_COMMA_AT, - ACTIONS(662), 1, + ACTIONS(694), 1, anon_sym_COMMA, - ACTIONS(664), 1, - anon_sym_COLON, - STATE(93), 1, + ACTIONS(698), 1, + anon_sym_POUNDC, + STATE(233), 1, aux_sym_dis_expr_repeat1, - STATE(817), 1, + STATE(566), 1, sym_sym_lit, - STATE(838), 1, - sym__bare_vec_lit, - STATE(841), 1, + STATE(678), 1, sym__bare_set_lit, - STATE(999), 1, + STATE(679), 1, + sym__bare_vec_lit, + STATE(925), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1908), 1, + STATE(1868), 1, sym_dotted_sym_lit, - ACTIONS(646), 2, + ACTIONS(656), 2, sym__ws, sym_comment, - ACTIONS(666), 2, + ACTIONS(696), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(796), 2, + ACTIONS(960), 2, sym_num_lit, sym_char_lit, - ACTIONS(798), 2, + ACTIONS(962), 2, sym_nil_lit, sym_fancy_literal, - STATE(942), 2, + STATE(906), 2, sym__gap, sym_dis_expr, - STATE(842), 3, + STATE(680), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(873), 18, + STATE(618), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -19553,90 +19464,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [17815] = 38, + [17798] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(13), 1, - aux_sym_str_lit_token1, - ACTIONS(17), 1, - aux_sym_sym_lit_token1, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(23), 1, + ACTIONS(518), 1, + anon_sym_COLON, + ACTIONS(520), 1, + anon_sym_COLON_COLON, + ACTIONS(522), 1, + aux_sym_str_lit_token1, + ACTIONS(526), 1, + aux_sym_sym_lit_token1, + ACTIONS(528), 1, anon_sym_LPAREN, - ACTIONS(25), 1, + ACTIONS(530), 1, anon_sym_POUND0A, - ACTIONS(27), 1, + ACTIONS(532), 1, anon_sym_POUND, - ACTIONS(29), 1, + ACTIONS(534), 1, anon_sym_POUND_QMARK, - ACTIONS(31), 1, + ACTIONS(536), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(33), 1, - anon_sym_COLON_COLON, - ACTIONS(35), 1, + ACTIONS(538), 1, anon_sym_POUND_SQUOTE, - ACTIONS(37), 1, + ACTIONS(540), 1, anon_sym_POUND_POUND, - ACTIONS(39), 1, + ACTIONS(542), 1, anon_sym_POUND_EQ, - ACTIONS(41), 1, + ACTIONS(544), 1, anon_sym_AT, - ACTIONS(43), 1, + ACTIONS(546), 1, anon_sym_SQUOTE, - ACTIONS(45), 1, + ACTIONS(548), 1, anon_sym_BQUOTE, - ACTIONS(47), 1, + ACTIONS(550), 1, anon_sym_COMMA_AT, - ACTIONS(49), 1, + ACTIONS(552), 1, anon_sym_COMMA, - ACTIONS(51), 1, - anon_sym_COLON, - ACTIONS(55), 1, + ACTIONS(556), 1, anon_sym_POUNDC, - STATE(88), 1, + STATE(892), 1, aux_sym_dis_expr_repeat1, - STATE(815), 1, + STATE(909), 1, sym_sym_lit, - STATE(838), 1, - sym__bare_vec_lit, - STATE(841), 1, + STATE(922), 1, sym__bare_set_lit, - STATE(1047), 1, + STATE(931), 1, + sym__bare_vec_lit, + STATE(936), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1909), 1, + STATE(1865), 1, sym_dotted_sym_lit, - ACTIONS(53), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(646), 2, + ACTIONS(514), 2, sym__ws, sym_comment, - ACTIONS(968), 2, + ACTIONS(554), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(964), 2, sym_num_lit, sym_char_lit, - ACTIONS(970), 2, + ACTIONS(966), 2, sym_nil_lit, sym_fancy_literal, - STATE(942), 2, + STATE(897), 2, sym__gap, sym_dis_expr, - STATE(842), 3, + STATE(930), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(87), 18, + STATE(982), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -19654,90 +19566,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [17954] = 38, + [17938] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(13), 1, - aux_sym_str_lit_token1, + anon_sym_COLON, + ACTIONS(15), 1, + anon_sym_COLON_COLON, ACTIONS(17), 1, - aux_sym_sym_lit_token1, - ACTIONS(19), 1, - anon_sym_CARET, + aux_sym_str_lit_token1, ACTIONS(21), 1, - anon_sym_POUND_CARET, + aux_sym_sym_lit_token1, ACTIONS(23), 1, - anon_sym_LPAREN, + anon_sym_CARET, ACTIONS(25), 1, - anon_sym_POUND0A, + anon_sym_POUND_CARET, ACTIONS(27), 1, - anon_sym_POUND, + anon_sym_LPAREN, ACTIONS(29), 1, - anon_sym_POUND_QMARK, + anon_sym_POUND0A, ACTIONS(31), 1, - anon_sym_POUND_QMARK_AT, + anon_sym_POUND, ACTIONS(33), 1, - anon_sym_COLON_COLON, + anon_sym_POUND_QMARK, ACTIONS(35), 1, - anon_sym_POUND_SQUOTE, + anon_sym_POUND_QMARK_AT, ACTIONS(37), 1, - anon_sym_POUND_POUND, + anon_sym_POUND_SQUOTE, ACTIONS(39), 1, - anon_sym_POUND_EQ, + anon_sym_POUND_POUND, ACTIONS(41), 1, - anon_sym_AT, + anon_sym_POUND_EQ, ACTIONS(43), 1, - anon_sym_SQUOTE, + anon_sym_AT, ACTIONS(45), 1, - anon_sym_BQUOTE, + anon_sym_SQUOTE, ACTIONS(47), 1, - anon_sym_COMMA_AT, + anon_sym_BQUOTE, ACTIONS(49), 1, - anon_sym_COMMA, + anon_sym_COMMA_AT, ACTIONS(51), 1, - anon_sym_COLON, + anon_sym_COMMA, ACTIONS(55), 1, anon_sym_POUNDC, - STATE(121), 1, - aux_sym_dis_expr_repeat1, - STATE(815), 1, + STATE(780), 1, sym_sym_lit, - STATE(838), 1, + STATE(786), 1, sym__bare_vec_lit, - STATE(841), 1, + STATE(884), 1, sym__bare_set_lit, - STATE(1047), 1, + STATE(892), 1, + aux_sym_dis_expr_repeat1, + STATE(1033), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1909), 1, + STATE(1863), 1, sym_dotted_sym_lit, ACTIONS(53), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(646), 2, + ACTIONS(650), 2, sym__ws, sym_comment, - ACTIONS(972), 2, + ACTIONS(968), 2, sym_num_lit, sym_char_lit, - ACTIONS(974), 2, + ACTIONS(970), 2, sym_nil_lit, sym_fancy_literal, - STATE(942), 2, + STATE(898), 2, sym__gap, sym_dis_expr, - STATE(842), 3, + STATE(787), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(324), 18, + STATE(145), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -19755,90 +19668,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [18093] = 38, + [18078] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(61), 1, + ACTIONS(518), 1, + anon_sym_COLON, + ACTIONS(520), 1, + anon_sym_COLON_COLON, + ACTIONS(522), 1, aux_sym_str_lit_token1, - ACTIONS(65), 1, + ACTIONS(526), 1, aux_sym_sym_lit_token1, - ACTIONS(67), 1, + ACTIONS(528), 1, + anon_sym_LPAREN, + ACTIONS(530), 1, anon_sym_POUND0A, - ACTIONS(69), 1, + ACTIONS(532), 1, anon_sym_POUND, - ACTIONS(71), 1, + ACTIONS(534), 1, anon_sym_POUND_QMARK, - ACTIONS(73), 1, + ACTIONS(536), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(75), 1, - anon_sym_COLON_COLON, - ACTIONS(77), 1, + ACTIONS(538), 1, anon_sym_POUND_SQUOTE, - ACTIONS(79), 1, + ACTIONS(540), 1, anon_sym_POUND_POUND, - ACTIONS(81), 1, + ACTIONS(542), 1, anon_sym_POUND_EQ, - ACTIONS(83), 1, + ACTIONS(544), 1, anon_sym_AT, - ACTIONS(85), 1, + ACTIONS(546), 1, anon_sym_SQUOTE, - ACTIONS(87), 1, + ACTIONS(548), 1, anon_sym_BQUOTE, - ACTIONS(89), 1, + ACTIONS(550), 1, anon_sym_COMMA_AT, - ACTIONS(91), 1, + ACTIONS(552), 1, anon_sym_COMMA, - ACTIONS(95), 1, - anon_sym_COLON, - ACTIONS(99), 1, + ACTIONS(556), 1, anon_sym_POUNDC, - ACTIONS(381), 1, - anon_sym_LPAREN, - STATE(446), 1, + STATE(892), 1, + aux_sym_dis_expr_repeat1, + STATE(909), 1, sym_sym_lit, - STATE(513), 1, + STATE(922), 1, sym__bare_set_lit, - STATE(514), 1, + STATE(931), 1, sym__bare_vec_lit, - STATE(930), 1, - aux_sym_dis_expr_repeat1, - STATE(1044), 1, + STATE(936), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1907), 1, + STATE(1865), 1, sym_dotted_sym_lit, - ACTIONS(97), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(379), 2, + ACTIONS(514), 2, sym__ws, sym_comment, - ACTIONS(976), 2, + ACTIONS(554), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(972), 2, sym_num_lit, sym_char_lit, - ACTIONS(978), 2, + ACTIONS(974), 2, sym_nil_lit, sym_fancy_literal, - STATE(934), 2, + STATE(897), 2, sym__gap, sym_dis_expr, - STATE(515), 3, + STATE(930), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(479), 18, + STATE(977), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -19856,90 +19770,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [18232] = 38, + [18218] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(13), 1, - aux_sym_str_lit_token1, - ACTIONS(17), 1, - aux_sym_sym_lit_token1, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(23), 1, + ACTIONS(518), 1, + anon_sym_COLON, + ACTIONS(520), 1, + anon_sym_COLON_COLON, + ACTIONS(522), 1, + aux_sym_str_lit_token1, + ACTIONS(526), 1, + aux_sym_sym_lit_token1, + ACTIONS(528), 1, anon_sym_LPAREN, - ACTIONS(25), 1, + ACTIONS(530), 1, anon_sym_POUND0A, - ACTIONS(27), 1, + ACTIONS(532), 1, anon_sym_POUND, - ACTIONS(29), 1, + ACTIONS(534), 1, anon_sym_POUND_QMARK, - ACTIONS(31), 1, + ACTIONS(536), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(33), 1, - anon_sym_COLON_COLON, - ACTIONS(35), 1, + ACTIONS(538), 1, anon_sym_POUND_SQUOTE, - ACTIONS(37), 1, + ACTIONS(540), 1, anon_sym_POUND_POUND, - ACTIONS(39), 1, + ACTIONS(542), 1, anon_sym_POUND_EQ, - ACTIONS(41), 1, + ACTIONS(544), 1, anon_sym_AT, - ACTIONS(43), 1, + ACTIONS(546), 1, anon_sym_SQUOTE, - ACTIONS(45), 1, + ACTIONS(548), 1, anon_sym_BQUOTE, - ACTIONS(47), 1, + ACTIONS(550), 1, anon_sym_COMMA_AT, - ACTIONS(49), 1, + ACTIONS(552), 1, anon_sym_COMMA, - ACTIONS(51), 1, - anon_sym_COLON, - ACTIONS(55), 1, + ACTIONS(556), 1, anon_sym_POUNDC, - STATE(122), 1, + STATE(892), 1, aux_sym_dis_expr_repeat1, - STATE(815), 1, + STATE(909), 1, sym_sym_lit, - STATE(838), 1, - sym__bare_vec_lit, - STATE(841), 1, + STATE(922), 1, sym__bare_set_lit, - STATE(1047), 1, + STATE(931), 1, + sym__bare_vec_lit, + STATE(936), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1909), 1, + STATE(1865), 1, sym_dotted_sym_lit, - ACTIONS(53), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(646), 2, + ACTIONS(514), 2, sym__ws, sym_comment, - ACTIONS(980), 2, + ACTIONS(554), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(976), 2, sym_num_lit, sym_char_lit, - ACTIONS(982), 2, + ACTIONS(978), 2, sym_nil_lit, sym_fancy_literal, - STATE(942), 2, + STATE(897), 2, sym__gap, sym_dis_expr, - STATE(842), 3, + STATE(930), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(325), 18, + STATE(976), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -19957,90 +19872,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [18371] = 38, + [18358] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(13), 1, - aux_sym_str_lit_token1, + anon_sym_COLON, + ACTIONS(15), 1, + anon_sym_COLON_COLON, ACTIONS(17), 1, + aux_sym_str_lit_token1, + ACTIONS(21), 1, aux_sym_sym_lit_token1, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(23), 1, + ACTIONS(27), 1, anon_sym_LPAREN, - ACTIONS(25), 1, + ACTIONS(29), 1, anon_sym_POUND0A, - ACTIONS(27), 1, + ACTIONS(31), 1, anon_sym_POUND, - ACTIONS(29), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(31), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, ACTIONS(37), 1, - anon_sym_POUND_POUND, + anon_sym_POUND_SQUOTE, ACTIONS(39), 1, + anon_sym_POUND_POUND, + ACTIONS(41), 1, anon_sym_POUND_EQ, - ACTIONS(45), 1, - anon_sym_BQUOTE, - ACTIONS(55), 1, - anon_sym_POUNDC, - ACTIONS(652), 1, - anon_sym_COLON_COLON, - ACTIONS(654), 1, - anon_sym_POUND_SQUOTE, - ACTIONS(656), 1, + ACTIONS(43), 1, anon_sym_AT, - ACTIONS(658), 1, + ACTIONS(45), 1, anon_sym_SQUOTE, - ACTIONS(660), 1, + ACTIONS(47), 1, + anon_sym_BQUOTE, + ACTIONS(49), 1, anon_sym_COMMA_AT, - ACTIONS(662), 1, + ACTIONS(51), 1, anon_sym_COMMA, - ACTIONS(664), 1, - anon_sym_COLON, - STATE(98), 1, - aux_sym_dis_expr_repeat1, - STATE(817), 1, + ACTIONS(55), 1, + anon_sym_POUNDC, + STATE(780), 1, sym_sym_lit, - STATE(838), 1, + STATE(786), 1, sym__bare_vec_lit, - STATE(841), 1, + STATE(884), 1, sym__bare_set_lit, - STATE(999), 1, + STATE(892), 1, + aux_sym_dis_expr_repeat1, + STATE(1033), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1908), 1, + STATE(1863), 1, sym_dotted_sym_lit, - ACTIONS(646), 2, - sym__ws, - sym_comment, - ACTIONS(666), 2, + ACTIONS(53), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(792), 2, + ACTIONS(650), 2, + sym__ws, + sym_comment, + ACTIONS(980), 2, sym_num_lit, sym_char_lit, - ACTIONS(794), 2, + ACTIONS(982), 2, sym_nil_lit, sym_fancy_literal, - STATE(942), 2, + STATE(898), 2, sym__gap, sym_dis_expr, - STATE(842), 3, + STATE(787), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(872), 18, + STATE(150), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -20058,90 +19974,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [18510] = 38, + [18498] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(13), 1, - aux_sym_str_lit_token1, - ACTIONS(17), 1, - aux_sym_sym_lit_token1, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(23), 1, + ACTIONS(610), 1, + anon_sym_COLON, + ACTIONS(612), 1, + anon_sym_COLON_COLON, + ACTIONS(614), 1, + aux_sym_str_lit_token1, + ACTIONS(618), 1, + aux_sym_sym_lit_token1, + ACTIONS(620), 1, anon_sym_LPAREN, - ACTIONS(25), 1, + ACTIONS(622), 1, anon_sym_POUND0A, - ACTIONS(27), 1, + ACTIONS(624), 1, anon_sym_POUND, - ACTIONS(29), 1, + ACTIONS(626), 1, anon_sym_POUND_QMARK, - ACTIONS(31), 1, + ACTIONS(628), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(33), 1, - anon_sym_COLON_COLON, - ACTIONS(35), 1, + ACTIONS(630), 1, anon_sym_POUND_SQUOTE, - ACTIONS(37), 1, + ACTIONS(632), 1, anon_sym_POUND_POUND, - ACTIONS(39), 1, + ACTIONS(634), 1, anon_sym_POUND_EQ, - ACTIONS(41), 1, + ACTIONS(636), 1, anon_sym_AT, - ACTIONS(43), 1, + ACTIONS(638), 1, anon_sym_SQUOTE, - ACTIONS(45), 1, + ACTIONS(640), 1, anon_sym_BQUOTE, - ACTIONS(47), 1, + ACTIONS(642), 1, anon_sym_COMMA_AT, - ACTIONS(49), 1, + ACTIONS(644), 1, anon_sym_COMMA, - ACTIONS(51), 1, - anon_sym_COLON, - ACTIONS(55), 1, + ACTIONS(648), 1, anon_sym_POUNDC, - STATE(815), 1, + STATE(545), 1, sym_sym_lit, - STATE(838), 1, + STATE(688), 1, sym__bare_vec_lit, - STATE(841), 1, + STATE(691), 1, sym__bare_set_lit, - STATE(930), 1, + STATE(892), 1, aux_sym_dis_expr_repeat1, - STATE(1047), 1, + STATE(1013), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1909), 1, + STATE(1862), 1, sym_dotted_sym_lit, - ACTIONS(53), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(646), 2, + ACTIONS(606), 2, sym__ws, sym_comment, + ACTIONS(646), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, ACTIONS(984), 2, sym_num_lit, sym_char_lit, ACTIONS(986), 2, sym_nil_lit, sym_fancy_literal, - STATE(942), 2, + STATE(896), 2, sym__gap, sym_dis_expr, - STATE(842), 3, + STATE(687), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(333), 18, + STATE(774), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -20159,73 +20076,73 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [18649] = 38, + [18638] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(13), 1, - aux_sym_str_lit_token1, - ACTIONS(17), 1, - aux_sym_sym_lit_token1, - ACTIONS(19), 1, - anon_sym_CARET, - ACTIONS(21), 1, - anon_sym_POUND_CARET, ACTIONS(23), 1, - anon_sym_LPAREN, + anon_sym_CARET, ACTIONS(25), 1, + anon_sym_POUND_CARET, + ACTIONS(140), 1, + anon_sym_COLON, + ACTIONS(142), 1, + anon_sym_COLON_COLON, + ACTIONS(144), 1, + aux_sym_str_lit_token1, + ACTIONS(148), 1, + aux_sym_sym_lit_token1, + ACTIONS(150), 1, anon_sym_POUND0A, - ACTIONS(27), 1, + ACTIONS(152), 1, anon_sym_POUND, - ACTIONS(29), 1, + ACTIONS(154), 1, anon_sym_POUND_QMARK, - ACTIONS(31), 1, + ACTIONS(156), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(33), 1, - anon_sym_COLON_COLON, - ACTIONS(35), 1, + ACTIONS(158), 1, anon_sym_POUND_SQUOTE, - ACTIONS(37), 1, + ACTIONS(160), 1, anon_sym_POUND_POUND, - ACTIONS(39), 1, + ACTIONS(162), 1, anon_sym_POUND_EQ, - ACTIONS(41), 1, + ACTIONS(164), 1, anon_sym_AT, - ACTIONS(43), 1, + ACTIONS(166), 1, anon_sym_SQUOTE, - ACTIONS(45), 1, + ACTIONS(168), 1, anon_sym_BQUOTE, - ACTIONS(47), 1, + ACTIONS(170), 1, anon_sym_COMMA_AT, - ACTIONS(49), 1, + ACTIONS(172), 1, anon_sym_COMMA, - ACTIONS(51), 1, - anon_sym_COLON, - ACTIONS(55), 1, + ACTIONS(178), 1, anon_sym_POUNDC, - STATE(86), 1, - aux_sym_dis_expr_repeat1, - STATE(815), 1, + ACTIONS(413), 1, + anon_sym_LPAREN, + STATE(404), 1, sym_sym_lit, - STATE(838), 1, + STATE(487), 1, sym__bare_vec_lit, - STATE(841), 1, + STATE(488), 1, sym__bare_set_lit, - STATE(1047), 1, + STATE(892), 1, + aux_sym_dis_expr_repeat1, + STATE(981), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1909), 1, + STATE(1866), 1, sym_dotted_sym_lit, - ACTIONS(53), 2, + ACTIONS(176), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(646), 2, + ACTIONS(411), 2, sym__ws, sym_comment, ACTIONS(988), 2, @@ -20234,15 +20151,16 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(990), 2, sym_nil_lit, sym_fancy_literal, - STATE(942), 2, + STATE(903), 2, sym__gap, sym_dis_expr, - STATE(842), 3, + STATE(486), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(833), 18, + STATE(444), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -20260,73 +20178,73 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [18788] = 38, + [18778] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(832), 1, + ACTIONS(610), 1, + anon_sym_COLON, + ACTIONS(612), 1, + anon_sym_COLON_COLON, + ACTIONS(614), 1, aux_sym_str_lit_token1, - ACTIONS(836), 1, + ACTIONS(618), 1, aux_sym_sym_lit_token1, - ACTIONS(838), 1, + ACTIONS(620), 1, anon_sym_LPAREN, - ACTIONS(840), 1, + ACTIONS(622), 1, anon_sym_POUND0A, - ACTIONS(842), 1, + ACTIONS(624), 1, anon_sym_POUND, - ACTIONS(844), 1, + ACTIONS(626), 1, anon_sym_POUND_QMARK, - ACTIONS(846), 1, + ACTIONS(628), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(848), 1, - anon_sym_COLON_COLON, - ACTIONS(850), 1, + ACTIONS(630), 1, anon_sym_POUND_SQUOTE, - ACTIONS(852), 1, + ACTIONS(632), 1, anon_sym_POUND_POUND, - ACTIONS(854), 1, + ACTIONS(634), 1, anon_sym_POUND_EQ, - ACTIONS(856), 1, + ACTIONS(636), 1, anon_sym_AT, - ACTIONS(858), 1, + ACTIONS(638), 1, anon_sym_SQUOTE, - ACTIONS(860), 1, + ACTIONS(640), 1, anon_sym_BQUOTE, - ACTIONS(862), 1, + ACTIONS(642), 1, anon_sym_COMMA_AT, - ACTIONS(864), 1, + ACTIONS(644), 1, anon_sym_COMMA, - ACTIONS(866), 1, - anon_sym_COLON, - ACTIONS(870), 1, + ACTIONS(648), 1, anon_sym_POUNDC, - STATE(930), 1, + STATE(184), 1, aux_sym_dis_expr_repeat1, - STATE(992), 1, - aux_sym_sym_lit_repeat1, - STATE(1076), 1, + STATE(545), 1, sym_sym_lit, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, - sym_meta_lit, - STATE(1108), 1, - sym__bare_set_lit, - STATE(1109), 1, + STATE(688), 1, sym__bare_vec_lit, - STATE(1369), 1, + STATE(691), 1, + sym__bare_set_lit, + STATE(1013), 1, + aux_sym_sym_lit_repeat1, + STATE(1162), 1, + sym_meta_lit, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1910), 1, + STATE(1862), 1, sym_dotted_sym_lit, - ACTIONS(828), 2, + ACTIONS(606), 2, sym__ws, sym_comment, - ACTIONS(868), 2, + ACTIONS(646), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, ACTIONS(992), 2, @@ -20335,15 +20253,16 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(994), 2, sym_nil_lit, sym_fancy_literal, - STATE(943), 2, + STATE(896), 2, sym__gap, sym_dis_expr, - STATE(1110), 3, + STATE(687), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1192), 18, + STATE(773), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -20361,90 +20280,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [18927] = 38, + [18918] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(13), 1, - aux_sym_str_lit_token1, - ACTIONS(17), 1, - aux_sym_sym_lit_token1, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(23), 1, + ACTIONS(562), 1, + anon_sym_COLON, + ACTIONS(564), 1, + anon_sym_COLON_COLON, + ACTIONS(566), 1, + aux_sym_str_lit_token1, + ACTIONS(570), 1, + aux_sym_sym_lit_token1, + ACTIONS(572), 1, anon_sym_LPAREN, - ACTIONS(25), 1, + ACTIONS(574), 1, anon_sym_POUND0A, - ACTIONS(27), 1, + ACTIONS(576), 1, anon_sym_POUND, - ACTIONS(29), 1, + ACTIONS(578), 1, anon_sym_POUND_QMARK, - ACTIONS(31), 1, + ACTIONS(580), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(33), 1, - anon_sym_COLON_COLON, - ACTIONS(35), 1, + ACTIONS(582), 1, anon_sym_POUND_SQUOTE, - ACTIONS(37), 1, + ACTIONS(584), 1, anon_sym_POUND_POUND, - ACTIONS(39), 1, + ACTIONS(586), 1, anon_sym_POUND_EQ, - ACTIONS(41), 1, + ACTIONS(588), 1, anon_sym_AT, - ACTIONS(43), 1, + ACTIONS(590), 1, anon_sym_SQUOTE, - ACTIONS(45), 1, + ACTIONS(592), 1, anon_sym_BQUOTE, - ACTIONS(47), 1, + ACTIONS(594), 1, anon_sym_COMMA_AT, - ACTIONS(49), 1, + ACTIONS(596), 1, anon_sym_COMMA, - ACTIONS(51), 1, - anon_sym_COLON, - ACTIONS(55), 1, + ACTIONS(600), 1, anon_sym_POUNDC, - STATE(84), 1, + STATE(892), 1, aux_sym_dis_expr_repeat1, - STATE(815), 1, + STATE(924), 1, sym_sym_lit, - STATE(838), 1, + STATE(926), 1, + aux_sym_sym_lit_repeat1, + STATE(1068), 1, sym__bare_vec_lit, - STATE(841), 1, + STATE(1069), 1, sym__bare_set_lit, - STATE(1047), 1, - aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1909), 1, + STATE(1861), 1, sym_dotted_sym_lit, - ACTIONS(53), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(646), 2, + ACTIONS(558), 2, sym__ws, sym_comment, + ACTIONS(598), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, ACTIONS(996), 2, sym_num_lit, sym_char_lit, ACTIONS(998), 2, sym_nil_lit, sym_fancy_literal, - STATE(942), 2, + STATE(902), 2, sym__gap, sym_dis_expr, - STATE(842), 3, + STATE(1067), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(832), 18, + STATE(1146), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -20462,90 +20382,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [19066] = 38, + [19058] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(13), 1, - aux_sym_str_lit_token1, - ACTIONS(17), 1, - aux_sym_sym_lit_token1, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(23), 1, + ACTIONS(518), 1, + anon_sym_COLON, + ACTIONS(520), 1, + anon_sym_COLON_COLON, + ACTIONS(522), 1, + aux_sym_str_lit_token1, + ACTIONS(526), 1, + aux_sym_sym_lit_token1, + ACTIONS(528), 1, anon_sym_LPAREN, - ACTIONS(25), 1, + ACTIONS(530), 1, anon_sym_POUND0A, - ACTIONS(27), 1, + ACTIONS(532), 1, anon_sym_POUND, - ACTIONS(29), 1, + ACTIONS(534), 1, anon_sym_POUND_QMARK, - ACTIONS(31), 1, + ACTIONS(536), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(33), 1, - anon_sym_COLON_COLON, - ACTIONS(35), 1, + ACTIONS(538), 1, anon_sym_POUND_SQUOTE, - ACTIONS(37), 1, + ACTIONS(540), 1, anon_sym_POUND_POUND, - ACTIONS(39), 1, + ACTIONS(542), 1, anon_sym_POUND_EQ, - ACTIONS(41), 1, + ACTIONS(544), 1, anon_sym_AT, - ACTIONS(43), 1, + ACTIONS(546), 1, anon_sym_SQUOTE, - ACTIONS(45), 1, + ACTIONS(548), 1, anon_sym_BQUOTE, - ACTIONS(47), 1, + ACTIONS(550), 1, anon_sym_COMMA_AT, - ACTIONS(49), 1, + ACTIONS(552), 1, anon_sym_COMMA, - ACTIONS(51), 1, - anon_sym_COLON, - ACTIONS(55), 1, + ACTIONS(556), 1, anon_sym_POUNDC, - STATE(190), 1, + STATE(892), 1, aux_sym_dis_expr_repeat1, - STATE(815), 1, + STATE(909), 1, sym_sym_lit, - STATE(838), 1, - sym__bare_vec_lit, - STATE(841), 1, + STATE(922), 1, sym__bare_set_lit, - STATE(1047), 1, + STATE(931), 1, + sym__bare_vec_lit, + STATE(936), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1909), 1, + STATE(1865), 1, sym_dotted_sym_lit, - ACTIONS(53), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(646), 2, + ACTIONS(514), 2, sym__ws, sym_comment, + ACTIONS(554), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, ACTIONS(1000), 2, sym_num_lit, sym_char_lit, ACTIONS(1002), 2, sym_nil_lit, sym_fancy_literal, - STATE(942), 2, + STATE(897), 2, sym__gap, sym_dis_expr, - STATE(842), 3, + STATE(930), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(89), 18, + STATE(975), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -20563,90 +20484,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [19205] = 38, + [19198] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(61), 1, + ACTIONS(610), 1, + anon_sym_COLON, + ACTIONS(612), 1, + anon_sym_COLON_COLON, + ACTIONS(614), 1, aux_sym_str_lit_token1, - ACTIONS(65), 1, + ACTIONS(618), 1, aux_sym_sym_lit_token1, - ACTIONS(67), 1, + ACTIONS(620), 1, + anon_sym_LPAREN, + ACTIONS(622), 1, anon_sym_POUND0A, - ACTIONS(69), 1, + ACTIONS(624), 1, anon_sym_POUND, - ACTIONS(71), 1, + ACTIONS(626), 1, anon_sym_POUND_QMARK, - ACTIONS(73), 1, + ACTIONS(628), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(75), 1, - anon_sym_COLON_COLON, - ACTIONS(77), 1, + ACTIONS(630), 1, anon_sym_POUND_SQUOTE, - ACTIONS(79), 1, + ACTIONS(632), 1, anon_sym_POUND_POUND, - ACTIONS(81), 1, + ACTIONS(634), 1, anon_sym_POUND_EQ, - ACTIONS(83), 1, + ACTIONS(636), 1, anon_sym_AT, - ACTIONS(85), 1, + ACTIONS(638), 1, anon_sym_SQUOTE, - ACTIONS(87), 1, + ACTIONS(640), 1, anon_sym_BQUOTE, - ACTIONS(89), 1, + ACTIONS(642), 1, anon_sym_COMMA_AT, - ACTIONS(91), 1, + ACTIONS(644), 1, anon_sym_COMMA, - ACTIONS(95), 1, - anon_sym_COLON, - ACTIONS(99), 1, + ACTIONS(648), 1, anon_sym_POUNDC, - ACTIONS(381), 1, - anon_sym_LPAREN, - STATE(113), 1, - aux_sym_dis_expr_repeat1, - STATE(446), 1, + STATE(545), 1, sym_sym_lit, - STATE(513), 1, - sym__bare_set_lit, - STATE(514), 1, + STATE(688), 1, sym__bare_vec_lit, - STATE(1044), 1, + STATE(691), 1, + sym__bare_set_lit, + STATE(892), 1, + aux_sym_dis_expr_repeat1, + STATE(1013), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1907), 1, + STATE(1862), 1, sym_dotted_sym_lit, - ACTIONS(97), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(379), 2, + ACTIONS(606), 2, sym__ws, sym_comment, + ACTIONS(646), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, ACTIONS(1004), 2, sym_num_lit, sym_char_lit, ACTIONS(1006), 2, sym_nil_lit, sym_fancy_literal, - STATE(934), 2, + STATE(896), 2, sym__gap, sym_dis_expr, - STATE(515), 3, + STATE(687), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(471), 18, + STATE(772), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -20664,90 +20586,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [19344] = 38, + [19338] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(61), 1, + ACTIONS(562), 1, + anon_sym_COLON, + ACTIONS(564), 1, + anon_sym_COLON_COLON, + ACTIONS(566), 1, aux_sym_str_lit_token1, - ACTIONS(65), 1, + ACTIONS(570), 1, aux_sym_sym_lit_token1, - ACTIONS(67), 1, + ACTIONS(572), 1, + anon_sym_LPAREN, + ACTIONS(574), 1, anon_sym_POUND0A, - ACTIONS(69), 1, + ACTIONS(576), 1, anon_sym_POUND, - ACTIONS(71), 1, + ACTIONS(578), 1, anon_sym_POUND_QMARK, - ACTIONS(73), 1, + ACTIONS(580), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(75), 1, - anon_sym_COLON_COLON, - ACTIONS(77), 1, + ACTIONS(582), 1, anon_sym_POUND_SQUOTE, - ACTIONS(79), 1, + ACTIONS(584), 1, anon_sym_POUND_POUND, - ACTIONS(81), 1, + ACTIONS(586), 1, anon_sym_POUND_EQ, - ACTIONS(83), 1, + ACTIONS(588), 1, anon_sym_AT, - ACTIONS(85), 1, + ACTIONS(590), 1, anon_sym_SQUOTE, - ACTIONS(87), 1, + ACTIONS(592), 1, anon_sym_BQUOTE, - ACTIONS(89), 1, + ACTIONS(594), 1, anon_sym_COMMA_AT, - ACTIONS(91), 1, + ACTIONS(596), 1, anon_sym_COMMA, - ACTIONS(95), 1, - anon_sym_COLON, - ACTIONS(99), 1, + ACTIONS(600), 1, anon_sym_POUNDC, - ACTIONS(381), 1, - anon_sym_LPAREN, - STATE(116), 1, + STATE(892), 1, aux_sym_dis_expr_repeat1, - STATE(446), 1, + STATE(924), 1, sym_sym_lit, - STATE(513), 1, - sym__bare_set_lit, - STATE(514), 1, - sym__bare_vec_lit, - STATE(1044), 1, + STATE(926), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1068), 1, + sym__bare_vec_lit, + STATE(1069), 1, + sym__bare_set_lit, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1907), 1, + STATE(1861), 1, sym_dotted_sym_lit, - ACTIONS(97), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(379), 2, + ACTIONS(558), 2, sym__ws, sym_comment, + ACTIONS(598), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, ACTIONS(1008), 2, sym_num_lit, sym_char_lit, ACTIONS(1010), 2, sym_nil_lit, sym_fancy_literal, - STATE(934), 2, + STATE(902), 2, sym__gap, sym_dis_expr, - STATE(515), 3, + STATE(1067), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(464), 18, + STATE(1145), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -20765,90 +20688,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [19483] = 38, + [19478] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(61), 1, + ACTIONS(610), 1, + anon_sym_COLON, + ACTIONS(612), 1, + anon_sym_COLON_COLON, + ACTIONS(614), 1, aux_sym_str_lit_token1, - ACTIONS(65), 1, + ACTIONS(618), 1, aux_sym_sym_lit_token1, - ACTIONS(67), 1, + ACTIONS(620), 1, + anon_sym_LPAREN, + ACTIONS(622), 1, anon_sym_POUND0A, - ACTIONS(69), 1, + ACTIONS(624), 1, anon_sym_POUND, - ACTIONS(71), 1, + ACTIONS(626), 1, anon_sym_POUND_QMARK, - ACTIONS(73), 1, + ACTIONS(628), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(75), 1, - anon_sym_COLON_COLON, - ACTIONS(77), 1, + ACTIONS(630), 1, anon_sym_POUND_SQUOTE, - ACTIONS(79), 1, + ACTIONS(632), 1, anon_sym_POUND_POUND, - ACTIONS(81), 1, + ACTIONS(634), 1, anon_sym_POUND_EQ, - ACTIONS(83), 1, + ACTIONS(636), 1, anon_sym_AT, - ACTIONS(85), 1, + ACTIONS(638), 1, anon_sym_SQUOTE, - ACTIONS(87), 1, + ACTIONS(640), 1, anon_sym_BQUOTE, - ACTIONS(89), 1, + ACTIONS(642), 1, anon_sym_COMMA_AT, - ACTIONS(91), 1, + ACTIONS(644), 1, anon_sym_COMMA, - ACTIONS(95), 1, - anon_sym_COLON, - ACTIONS(99), 1, + ACTIONS(648), 1, anon_sym_POUNDC, - ACTIONS(381), 1, - anon_sym_LPAREN, - STATE(446), 1, + STATE(203), 1, + aux_sym_dis_expr_repeat1, + STATE(545), 1, sym_sym_lit, - STATE(513), 1, - sym__bare_set_lit, - STATE(514), 1, + STATE(688), 1, sym__bare_vec_lit, - STATE(930), 1, - aux_sym_dis_expr_repeat1, - STATE(1044), 1, + STATE(691), 1, + sym__bare_set_lit, + STATE(1013), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1907), 1, + STATE(1862), 1, sym_dotted_sym_lit, - ACTIONS(97), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(379), 2, + ACTIONS(606), 2, sym__ws, sym_comment, + ACTIONS(646), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, ACTIONS(1012), 2, sym_num_lit, sym_char_lit, ACTIONS(1014), 2, sym_nil_lit, sym_fancy_literal, - STATE(934), 2, + STATE(896), 2, sym__gap, sym_dis_expr, - STATE(515), 3, + STATE(687), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(463), 18, + STATE(699), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -20866,73 +20790,73 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [19622] = 38, + [19618] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(13), 1, - aux_sym_str_lit_token1, - ACTIONS(17), 1, - aux_sym_sym_lit_token1, - ACTIONS(19), 1, - anon_sym_CARET, - ACTIONS(21), 1, - anon_sym_POUND_CARET, ACTIONS(23), 1, - anon_sym_LPAREN, + anon_sym_CARET, ACTIONS(25), 1, + anon_sym_POUND_CARET, + ACTIONS(140), 1, + anon_sym_COLON, + ACTIONS(142), 1, + anon_sym_COLON_COLON, + ACTIONS(144), 1, + aux_sym_str_lit_token1, + ACTIONS(148), 1, + aux_sym_sym_lit_token1, + ACTIONS(150), 1, anon_sym_POUND0A, - ACTIONS(27), 1, + ACTIONS(152), 1, anon_sym_POUND, - ACTIONS(29), 1, + ACTIONS(154), 1, anon_sym_POUND_QMARK, - ACTIONS(31), 1, + ACTIONS(156), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(33), 1, - anon_sym_COLON_COLON, - ACTIONS(35), 1, + ACTIONS(158), 1, anon_sym_POUND_SQUOTE, - ACTIONS(37), 1, + ACTIONS(160), 1, anon_sym_POUND_POUND, - ACTIONS(39), 1, + ACTIONS(162), 1, anon_sym_POUND_EQ, - ACTIONS(41), 1, + ACTIONS(164), 1, anon_sym_AT, - ACTIONS(43), 1, + ACTIONS(166), 1, anon_sym_SQUOTE, - ACTIONS(45), 1, + ACTIONS(168), 1, anon_sym_BQUOTE, - ACTIONS(47), 1, + ACTIONS(170), 1, anon_sym_COMMA_AT, - ACTIONS(49), 1, + ACTIONS(172), 1, anon_sym_COMMA, - ACTIONS(51), 1, - anon_sym_COLON, - ACTIONS(55), 1, + ACTIONS(178), 1, anon_sym_POUNDC, - STATE(143), 1, - aux_sym_dis_expr_repeat1, - STATE(815), 1, + ACTIONS(413), 1, + anon_sym_LPAREN, + STATE(404), 1, sym_sym_lit, - STATE(838), 1, + STATE(487), 1, sym__bare_vec_lit, - STATE(841), 1, + STATE(488), 1, sym__bare_set_lit, - STATE(1047), 1, + STATE(892), 1, + aux_sym_dis_expr_repeat1, + STATE(981), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1909), 1, + STATE(1866), 1, sym_dotted_sym_lit, - ACTIONS(53), 2, + ACTIONS(176), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(646), 2, + ACTIONS(411), 2, sym__ws, sym_comment, ACTIONS(1016), 2, @@ -20941,15 +20865,16 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(1018), 2, sym_nil_lit, sym_fancy_literal, - STATE(942), 2, + STATE(903), 2, sym__gap, sym_dis_expr, - STATE(842), 3, + STATE(486), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(341), 18, + STATE(462), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -20967,73 +20892,73 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [19761] = 38, + [19758] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(61), 1, + ACTIONS(140), 1, + anon_sym_COLON, + ACTIONS(142), 1, + anon_sym_COLON_COLON, + ACTIONS(144), 1, aux_sym_str_lit_token1, - ACTIONS(65), 1, + ACTIONS(148), 1, aux_sym_sym_lit_token1, - ACTIONS(67), 1, + ACTIONS(150), 1, anon_sym_POUND0A, - ACTIONS(69), 1, + ACTIONS(152), 1, anon_sym_POUND, - ACTIONS(71), 1, + ACTIONS(154), 1, anon_sym_POUND_QMARK, - ACTIONS(73), 1, + ACTIONS(156), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(75), 1, - anon_sym_COLON_COLON, - ACTIONS(77), 1, + ACTIONS(158), 1, anon_sym_POUND_SQUOTE, - ACTIONS(79), 1, + ACTIONS(160), 1, anon_sym_POUND_POUND, - ACTIONS(81), 1, + ACTIONS(162), 1, anon_sym_POUND_EQ, - ACTIONS(83), 1, + ACTIONS(164), 1, anon_sym_AT, - ACTIONS(85), 1, + ACTIONS(166), 1, anon_sym_SQUOTE, - ACTIONS(87), 1, + ACTIONS(168), 1, anon_sym_BQUOTE, - ACTIONS(89), 1, + ACTIONS(170), 1, anon_sym_COMMA_AT, - ACTIONS(91), 1, + ACTIONS(172), 1, anon_sym_COMMA, - ACTIONS(95), 1, - anon_sym_COLON, - ACTIONS(99), 1, + ACTIONS(178), 1, anon_sym_POUNDC, - ACTIONS(381), 1, + ACTIONS(413), 1, anon_sym_LPAREN, - STATE(446), 1, + STATE(404), 1, sym_sym_lit, - STATE(513), 1, - sym__bare_set_lit, - STATE(514), 1, + STATE(487), 1, sym__bare_vec_lit, - STATE(930), 1, + STATE(488), 1, + sym__bare_set_lit, + STATE(892), 1, aux_sym_dis_expr_repeat1, - STATE(1044), 1, + STATE(981), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1907), 1, + STATE(1866), 1, sym_dotted_sym_lit, - ACTIONS(97), 2, + ACTIONS(176), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(379), 2, + ACTIONS(411), 2, sym__ws, sym_comment, ACTIONS(1020), 2, @@ -21042,15 +20967,16 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(1022), 2, sym_nil_lit, sym_fancy_literal, - STATE(934), 2, + STATE(903), 2, sym__gap, sym_dis_expr, - STATE(515), 3, + STATE(486), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(462), 18, + STATE(474), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -21068,90 +20994,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [19900] = 38, + [19898] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(13), 1, - aux_sym_str_lit_token1, + anon_sym_COLON, + ACTIONS(15), 1, + anon_sym_COLON_COLON, ACTIONS(17), 1, - aux_sym_sym_lit_token1, - ACTIONS(19), 1, - anon_sym_CARET, + aux_sym_str_lit_token1, ACTIONS(21), 1, - anon_sym_POUND_CARET, + aux_sym_sym_lit_token1, ACTIONS(23), 1, - anon_sym_LPAREN, + anon_sym_CARET, ACTIONS(25), 1, - anon_sym_POUND0A, + anon_sym_POUND_CARET, ACTIONS(27), 1, - anon_sym_POUND, + anon_sym_LPAREN, ACTIONS(29), 1, - anon_sym_POUND_QMARK, + anon_sym_POUND0A, ACTIONS(31), 1, - anon_sym_POUND_QMARK_AT, + anon_sym_POUND, ACTIONS(33), 1, - anon_sym_COLON_COLON, + anon_sym_POUND_QMARK, ACTIONS(35), 1, - anon_sym_POUND_SQUOTE, + anon_sym_POUND_QMARK_AT, ACTIONS(37), 1, - anon_sym_POUND_POUND, + anon_sym_POUND_SQUOTE, ACTIONS(39), 1, - anon_sym_POUND_EQ, + anon_sym_POUND_POUND, ACTIONS(41), 1, - anon_sym_AT, + anon_sym_POUND_EQ, ACTIONS(43), 1, - anon_sym_SQUOTE, + anon_sym_AT, ACTIONS(45), 1, - anon_sym_BQUOTE, + anon_sym_SQUOTE, ACTIONS(47), 1, - anon_sym_COMMA_AT, + anon_sym_BQUOTE, ACTIONS(49), 1, - anon_sym_COMMA, + anon_sym_COMMA_AT, ACTIONS(51), 1, - anon_sym_COLON, + anon_sym_COMMA, ACTIONS(55), 1, anon_sym_POUNDC, - STATE(815), 1, + STATE(780), 1, sym_sym_lit, - STATE(838), 1, + STATE(786), 1, sym__bare_vec_lit, - STATE(841), 1, + STATE(884), 1, sym__bare_set_lit, - STATE(930), 1, + STATE(892), 1, aux_sym_dis_expr_repeat1, - STATE(1047), 1, + STATE(1033), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1909), 1, + STATE(1863), 1, sym_dotted_sym_lit, ACTIONS(53), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(646), 2, + ACTIONS(650), 2, sym__ws, sym_comment, - ACTIONS(940), 2, + ACTIONS(1024), 2, sym_num_lit, sym_char_lit, - ACTIONS(942), 2, + ACTIONS(1026), 2, sym_nil_lit, sym_fancy_literal, - STATE(942), 2, + STATE(898), 2, sym__gap, sym_dis_expr, - STATE(842), 3, + STATE(787), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(883), 18, + STATE(796), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -21169,90 +21096,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [20039] = 38, + [20038] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(13), 1, - aux_sym_str_lit_token1, + anon_sym_COLON, + ACTIONS(15), 1, + anon_sym_COLON_COLON, ACTIONS(17), 1, - aux_sym_sym_lit_token1, - ACTIONS(19), 1, - anon_sym_CARET, + aux_sym_str_lit_token1, ACTIONS(21), 1, - anon_sym_POUND_CARET, + aux_sym_sym_lit_token1, ACTIONS(23), 1, - anon_sym_LPAREN, + anon_sym_CARET, ACTIONS(25), 1, - anon_sym_POUND0A, + anon_sym_POUND_CARET, ACTIONS(27), 1, - anon_sym_POUND, + anon_sym_LPAREN, ACTIONS(29), 1, - anon_sym_POUND_QMARK, + anon_sym_POUND0A, ACTIONS(31), 1, - anon_sym_POUND_QMARK_AT, + anon_sym_POUND, ACTIONS(33), 1, - anon_sym_COLON_COLON, + anon_sym_POUND_QMARK, ACTIONS(35), 1, - anon_sym_POUND_SQUOTE, + anon_sym_POUND_QMARK_AT, ACTIONS(37), 1, - anon_sym_POUND_POUND, + anon_sym_POUND_SQUOTE, ACTIONS(39), 1, - anon_sym_POUND_EQ, + anon_sym_POUND_POUND, ACTIONS(41), 1, - anon_sym_AT, + anon_sym_POUND_EQ, ACTIONS(43), 1, - anon_sym_SQUOTE, + anon_sym_AT, ACTIONS(45), 1, - anon_sym_BQUOTE, + anon_sym_SQUOTE, ACTIONS(47), 1, - anon_sym_COMMA_AT, + anon_sym_BQUOTE, ACTIONS(49), 1, - anon_sym_COMMA, + anon_sym_COMMA_AT, ACTIONS(51), 1, - anon_sym_COLON, + anon_sym_COMMA, ACTIONS(55), 1, anon_sym_POUNDC, STATE(213), 1, aux_sym_dis_expr_repeat1, - STATE(815), 1, + STATE(780), 1, sym_sym_lit, - STATE(838), 1, + STATE(786), 1, sym__bare_vec_lit, - STATE(841), 1, + STATE(884), 1, sym__bare_set_lit, - STATE(1047), 1, + STATE(1033), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1909), 1, + STATE(1863), 1, sym_dotted_sym_lit, ACTIONS(53), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(646), 2, + ACTIONS(650), 2, sym__ws, sym_comment, - ACTIONS(812), 2, + ACTIONS(1028), 2, sym_num_lit, sym_char_lit, - ACTIONS(814), 2, + ACTIONS(1030), 2, sym_nil_lit, sym_fancy_literal, - STATE(942), 2, + STATE(898), 2, sym__gap, sym_dis_expr, - STATE(842), 3, + STATE(787), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(884), 18, + STATE(797), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -21275,85 +21203,86 @@ static uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(13), 1, - aux_sym_str_lit_token1, - ACTIONS(17), 1, - aux_sym_sym_lit_token1, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(23), 1, + ACTIONS(660), 1, + anon_sym_COLON, + ACTIONS(662), 1, + anon_sym_COLON_COLON, + ACTIONS(664), 1, + aux_sym_str_lit_token1, + ACTIONS(668), 1, + aux_sym_sym_lit_token1, + ACTIONS(670), 1, anon_sym_LPAREN, - ACTIONS(25), 1, + ACTIONS(672), 1, anon_sym_POUND0A, - ACTIONS(27), 1, + ACTIONS(674), 1, anon_sym_POUND, - ACTIONS(29), 1, + ACTIONS(676), 1, anon_sym_POUND_QMARK, - ACTIONS(31), 1, + ACTIONS(678), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(680), 1, + anon_sym_POUND_SQUOTE, + ACTIONS(682), 1, anon_sym_POUND_POUND, - ACTIONS(39), 1, + ACTIONS(684), 1, anon_sym_POUND_EQ, - ACTIONS(45), 1, - anon_sym_BQUOTE, - ACTIONS(55), 1, - anon_sym_POUNDC, - ACTIONS(652), 1, - anon_sym_COLON_COLON, - ACTIONS(654), 1, - anon_sym_POUND_SQUOTE, - ACTIONS(656), 1, + ACTIONS(686), 1, anon_sym_AT, - ACTIONS(658), 1, + ACTIONS(688), 1, anon_sym_SQUOTE, - ACTIONS(660), 1, + ACTIONS(690), 1, + anon_sym_BQUOTE, + ACTIONS(692), 1, anon_sym_COMMA_AT, - ACTIONS(662), 1, + ACTIONS(694), 1, anon_sym_COMMA, - ACTIONS(664), 1, - anon_sym_COLON, - STATE(99), 1, + ACTIONS(698), 1, + anon_sym_POUNDC, + STATE(250), 1, aux_sym_dis_expr_repeat1, - STATE(817), 1, + STATE(566), 1, sym_sym_lit, - STATE(838), 1, - sym__bare_vec_lit, - STATE(841), 1, + STATE(678), 1, sym__bare_set_lit, - STATE(999), 1, + STATE(679), 1, + sym__bare_vec_lit, + STATE(925), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1908), 1, + STATE(1868), 1, sym_dotted_sym_lit, - ACTIONS(646), 2, + ACTIONS(656), 2, sym__ws, sym_comment, - ACTIONS(666), 2, + ACTIONS(696), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(784), 2, + ACTIONS(1032), 2, sym_num_lit, sym_char_lit, - ACTIONS(786), 2, + ACTIONS(1034), 2, sym_nil_lit, sym_fancy_literal, - STATE(942), 2, + STATE(906), 2, sym__gap, sym_dis_expr, - STATE(842), 3, + STATE(680), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(867), 18, + STATE(619), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -21371,90 +21300,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [20317] = 38, + [20318] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(13), 1, - aux_sym_str_lit_token1, - ACTIONS(17), 1, - aux_sym_sym_lit_token1, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(23), 1, + ACTIONS(518), 1, + anon_sym_COLON, + ACTIONS(520), 1, + anon_sym_COLON_COLON, + ACTIONS(522), 1, + aux_sym_str_lit_token1, + ACTIONS(526), 1, + aux_sym_sym_lit_token1, + ACTIONS(528), 1, anon_sym_LPAREN, - ACTIONS(25), 1, + ACTIONS(530), 1, anon_sym_POUND0A, - ACTIONS(27), 1, + ACTIONS(532), 1, anon_sym_POUND, - ACTIONS(29), 1, + ACTIONS(534), 1, anon_sym_POUND_QMARK, - ACTIONS(31), 1, + ACTIONS(536), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(538), 1, + anon_sym_POUND_SQUOTE, + ACTIONS(540), 1, anon_sym_POUND_POUND, - ACTIONS(39), 1, + ACTIONS(542), 1, anon_sym_POUND_EQ, - ACTIONS(45), 1, - anon_sym_BQUOTE, - ACTIONS(55), 1, - anon_sym_POUNDC, - ACTIONS(652), 1, - anon_sym_COLON_COLON, - ACTIONS(654), 1, - anon_sym_POUND_SQUOTE, - ACTIONS(656), 1, + ACTIONS(544), 1, anon_sym_AT, - ACTIONS(658), 1, + ACTIONS(546), 1, anon_sym_SQUOTE, - ACTIONS(660), 1, + ACTIONS(548), 1, + anon_sym_BQUOTE, + ACTIONS(550), 1, anon_sym_COMMA_AT, - ACTIONS(662), 1, + ACTIONS(552), 1, anon_sym_COMMA, - ACTIONS(664), 1, - anon_sym_COLON, - STATE(129), 1, + ACTIONS(556), 1, + anon_sym_POUNDC, + STATE(159), 1, aux_sym_dis_expr_repeat1, - STATE(817), 1, + STATE(909), 1, sym_sym_lit, - STATE(838), 1, - sym__bare_vec_lit, - STATE(841), 1, + STATE(922), 1, sym__bare_set_lit, - STATE(999), 1, + STATE(931), 1, + sym__bare_vec_lit, + STATE(936), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1908), 1, + STATE(1865), 1, sym_dotted_sym_lit, - ACTIONS(646), 2, + ACTIONS(514), 2, sym__ws, sym_comment, - ACTIONS(666), 2, + ACTIONS(554), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(736), 2, + ACTIONS(1036), 2, sym_num_lit, sym_char_lit, - ACTIONS(738), 2, + ACTIONS(1038), 2, sym_nil_lit, sym_fancy_literal, - STATE(942), 2, + STATE(897), 2, sym__gap, sym_dis_expr, - STATE(842), 3, + STATE(930), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(863), 18, + STATE(974), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -21472,90 +21402,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [20456] = 38, + [20458] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(13), 1, - aux_sym_str_lit_token1, - ACTIONS(17), 1, - aux_sym_sym_lit_token1, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(23), 1, + ACTIONS(518), 1, + anon_sym_COLON, + ACTIONS(520), 1, + anon_sym_COLON_COLON, + ACTIONS(522), 1, + aux_sym_str_lit_token1, + ACTIONS(526), 1, + aux_sym_sym_lit_token1, + ACTIONS(528), 1, anon_sym_LPAREN, - ACTIONS(25), 1, + ACTIONS(530), 1, anon_sym_POUND0A, - ACTIONS(27), 1, + ACTIONS(532), 1, anon_sym_POUND, - ACTIONS(29), 1, + ACTIONS(534), 1, anon_sym_POUND_QMARK, - ACTIONS(31), 1, + ACTIONS(536), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(538), 1, + anon_sym_POUND_SQUOTE, + ACTIONS(540), 1, anon_sym_POUND_POUND, - ACTIONS(39), 1, + ACTIONS(542), 1, anon_sym_POUND_EQ, - ACTIONS(45), 1, - anon_sym_BQUOTE, - ACTIONS(55), 1, - anon_sym_POUNDC, - ACTIONS(652), 1, - anon_sym_COLON_COLON, - ACTIONS(654), 1, - anon_sym_POUND_SQUOTE, - ACTIONS(656), 1, + ACTIONS(544), 1, anon_sym_AT, - ACTIONS(658), 1, + ACTIONS(546), 1, anon_sym_SQUOTE, - ACTIONS(660), 1, + ACTIONS(548), 1, + anon_sym_BQUOTE, + ACTIONS(550), 1, anon_sym_COMMA_AT, - ACTIONS(662), 1, + ACTIONS(552), 1, anon_sym_COMMA, - ACTIONS(664), 1, - anon_sym_COLON, - STATE(817), 1, + ACTIONS(556), 1, + anon_sym_POUNDC, + STATE(172), 1, + aux_sym_dis_expr_repeat1, + STATE(909), 1, sym_sym_lit, - STATE(838), 1, - sym__bare_vec_lit, - STATE(841), 1, + STATE(922), 1, sym__bare_set_lit, - STATE(930), 1, - aux_sym_dis_expr_repeat1, - STATE(999), 1, + STATE(931), 1, + sym__bare_vec_lit, + STATE(936), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1908), 1, + STATE(1865), 1, sym_dotted_sym_lit, - ACTIONS(646), 2, + ACTIONS(514), 2, sym__ws, sym_comment, - ACTIONS(666), 2, + ACTIONS(554), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(732), 2, + ACTIONS(1040), 2, sym_num_lit, sym_char_lit, - ACTIONS(734), 2, + ACTIONS(1042), 2, sym_nil_lit, sym_fancy_literal, - STATE(942), 2, + STATE(897), 2, sym__gap, sym_dis_expr, - STATE(842), 3, + STATE(930), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(862), 18, + STATE(973), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -21573,90 +21504,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [20595] = 38, + [20598] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(13), 1, - aux_sym_str_lit_token1, - ACTIONS(17), 1, - aux_sym_sym_lit_token1, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(23), 1, + ACTIONS(518), 1, + anon_sym_COLON, + ACTIONS(520), 1, + anon_sym_COLON_COLON, + ACTIONS(522), 1, + aux_sym_str_lit_token1, + ACTIONS(526), 1, + aux_sym_sym_lit_token1, + ACTIONS(528), 1, anon_sym_LPAREN, - ACTIONS(25), 1, + ACTIONS(530), 1, anon_sym_POUND0A, - ACTIONS(27), 1, + ACTIONS(532), 1, anon_sym_POUND, - ACTIONS(29), 1, + ACTIONS(534), 1, anon_sym_POUND_QMARK, - ACTIONS(31), 1, + ACTIONS(536), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(33), 1, - anon_sym_COLON_COLON, - ACTIONS(35), 1, + ACTIONS(538), 1, anon_sym_POUND_SQUOTE, - ACTIONS(37), 1, + ACTIONS(540), 1, anon_sym_POUND_POUND, - ACTIONS(39), 1, + ACTIONS(542), 1, anon_sym_POUND_EQ, - ACTIONS(41), 1, + ACTIONS(544), 1, anon_sym_AT, - ACTIONS(43), 1, + ACTIONS(546), 1, anon_sym_SQUOTE, - ACTIONS(45), 1, + ACTIONS(548), 1, anon_sym_BQUOTE, - ACTIONS(47), 1, + ACTIONS(550), 1, anon_sym_COMMA_AT, - ACTIONS(49), 1, + ACTIONS(552), 1, anon_sym_COMMA, - ACTIONS(51), 1, - anon_sym_COLON, - ACTIONS(55), 1, + ACTIONS(556), 1, anon_sym_POUNDC, - STATE(80), 1, + STATE(892), 1, aux_sym_dis_expr_repeat1, - STATE(815), 1, + STATE(909), 1, sym_sym_lit, - STATE(838), 1, - sym__bare_vec_lit, - STATE(841), 1, + STATE(922), 1, sym__bare_set_lit, - STATE(1047), 1, + STATE(931), 1, + sym__bare_vec_lit, + STATE(936), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1909), 1, + STATE(1865), 1, sym_dotted_sym_lit, - ACTIONS(53), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(646), 2, + ACTIONS(514), 2, sym__ws, sym_comment, - ACTIONS(1024), 2, + ACTIONS(554), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(1044), 2, sym_num_lit, sym_char_lit, - ACTIONS(1026), 2, + ACTIONS(1046), 2, sym_nil_lit, sym_fancy_literal, - STATE(942), 2, + STATE(897), 2, sym__gap, sym_dis_expr, - STATE(842), 3, + STATE(930), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(830), 18, + STATE(970), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -21674,90 +21606,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [20734] = 38, + [20738] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(562), 1, + ACTIONS(518), 1, + anon_sym_COLON, + ACTIONS(520), 1, + anon_sym_COLON_COLON, + ACTIONS(522), 1, aux_sym_str_lit_token1, - ACTIONS(566), 1, + ACTIONS(526), 1, aux_sym_sym_lit_token1, - ACTIONS(568), 1, + ACTIONS(528), 1, anon_sym_LPAREN, - ACTIONS(570), 1, + ACTIONS(530), 1, anon_sym_POUND0A, - ACTIONS(572), 1, + ACTIONS(532), 1, anon_sym_POUND, - ACTIONS(574), 1, + ACTIONS(534), 1, anon_sym_POUND_QMARK, - ACTIONS(576), 1, + ACTIONS(536), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(578), 1, - anon_sym_COLON_COLON, - ACTIONS(580), 1, + ACTIONS(538), 1, anon_sym_POUND_SQUOTE, - ACTIONS(582), 1, + ACTIONS(540), 1, anon_sym_POUND_POUND, - ACTIONS(584), 1, + ACTIONS(542), 1, anon_sym_POUND_EQ, - ACTIONS(586), 1, + ACTIONS(544), 1, anon_sym_AT, - ACTIONS(588), 1, + ACTIONS(546), 1, anon_sym_SQUOTE, - ACTIONS(590), 1, + ACTIONS(548), 1, anon_sym_BQUOTE, - ACTIONS(592), 1, + ACTIONS(550), 1, anon_sym_COMMA_AT, - ACTIONS(594), 1, + ACTIONS(552), 1, anon_sym_COMMA, - ACTIONS(596), 1, - anon_sym_COLON, - ACTIONS(600), 1, + ACTIONS(556), 1, anon_sym_POUNDC, - STATE(347), 1, + STATE(892), 1, aux_sym_dis_expr_repeat1, - STATE(599), 1, + STATE(909), 1, sym_sym_lit, - STATE(779), 1, + STATE(922), 1, sym__bare_set_lit, - STATE(784), 1, + STATE(931), 1, sym__bare_vec_lit, - STATE(1021), 1, + STATE(936), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1905), 1, + STATE(1865), 1, sym_dotted_sym_lit, - ACTIONS(558), 2, + ACTIONS(514), 2, sym__ws, sym_comment, - ACTIONS(598), 2, + ACTIONS(554), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1028), 2, + ACTIONS(1048), 2, sym_num_lit, sym_char_lit, - ACTIONS(1030), 2, + ACTIONS(1050), 2, sym_nil_lit, sym_fancy_literal, - STATE(945), 2, + STATE(897), 2, sym__gap, sym_dis_expr, - STATE(786), 3, + STATE(930), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(778), 18, + STATE(968), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -21775,90 +21708,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [20873] = 38, + [20878] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(61), 1, + ACTIONS(518), 1, + anon_sym_COLON, + ACTIONS(520), 1, + anon_sym_COLON_COLON, + ACTIONS(522), 1, aux_sym_str_lit_token1, - ACTIONS(65), 1, + ACTIONS(526), 1, aux_sym_sym_lit_token1, - ACTIONS(67), 1, + ACTIONS(528), 1, + anon_sym_LPAREN, + ACTIONS(530), 1, anon_sym_POUND0A, - ACTIONS(69), 1, + ACTIONS(532), 1, anon_sym_POUND, - ACTIONS(71), 1, + ACTIONS(534), 1, anon_sym_POUND_QMARK, - ACTIONS(73), 1, + ACTIONS(536), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(75), 1, - anon_sym_COLON_COLON, - ACTIONS(77), 1, + ACTIONS(538), 1, anon_sym_POUND_SQUOTE, - ACTIONS(79), 1, + ACTIONS(540), 1, anon_sym_POUND_POUND, - ACTIONS(81), 1, + ACTIONS(542), 1, anon_sym_POUND_EQ, - ACTIONS(83), 1, + ACTIONS(544), 1, anon_sym_AT, - ACTIONS(85), 1, + ACTIONS(546), 1, anon_sym_SQUOTE, - ACTIONS(87), 1, + ACTIONS(548), 1, anon_sym_BQUOTE, - ACTIONS(89), 1, + ACTIONS(550), 1, anon_sym_COMMA_AT, - ACTIONS(91), 1, + ACTIONS(552), 1, anon_sym_COMMA, - ACTIONS(95), 1, - anon_sym_COLON, - ACTIONS(99), 1, + ACTIONS(556), 1, anon_sym_POUNDC, - ACTIONS(381), 1, - anon_sym_LPAREN, - STATE(446), 1, + STATE(201), 1, + aux_sym_dis_expr_repeat1, + STATE(909), 1, sym_sym_lit, - STATE(513), 1, + STATE(922), 1, sym__bare_set_lit, - STATE(514), 1, + STATE(931), 1, sym__bare_vec_lit, - STATE(930), 1, - aux_sym_dis_expr_repeat1, - STATE(1044), 1, + STATE(936), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1907), 1, + STATE(1865), 1, sym_dotted_sym_lit, - ACTIONS(97), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(379), 2, + ACTIONS(514), 2, sym__ws, sym_comment, - ACTIONS(1032), 2, + ACTIONS(554), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(1052), 2, sym_num_lit, sym_char_lit, - ACTIONS(1034), 2, + ACTIONS(1054), 2, sym_nil_lit, sym_fancy_literal, - STATE(934), 2, + STATE(897), 2, sym__gap, sym_dis_expr, - STATE(515), 3, + STATE(930), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(460), 18, + STATE(967), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -21876,90 +21810,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [21012] = 38, + [21018] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(832), 1, + ACTIONS(562), 1, + anon_sym_COLON, + ACTIONS(564), 1, + anon_sym_COLON_COLON, + ACTIONS(566), 1, aux_sym_str_lit_token1, - ACTIONS(836), 1, + ACTIONS(570), 1, aux_sym_sym_lit_token1, - ACTIONS(838), 1, + ACTIONS(572), 1, anon_sym_LPAREN, - ACTIONS(840), 1, + ACTIONS(574), 1, anon_sym_POUND0A, - ACTIONS(842), 1, + ACTIONS(576), 1, anon_sym_POUND, - ACTIONS(844), 1, + ACTIONS(578), 1, anon_sym_POUND_QMARK, - ACTIONS(846), 1, + ACTIONS(580), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(848), 1, - anon_sym_COLON_COLON, - ACTIONS(850), 1, + ACTIONS(582), 1, anon_sym_POUND_SQUOTE, - ACTIONS(852), 1, + ACTIONS(584), 1, anon_sym_POUND_POUND, - ACTIONS(854), 1, + ACTIONS(586), 1, anon_sym_POUND_EQ, - ACTIONS(856), 1, + ACTIONS(588), 1, anon_sym_AT, - ACTIONS(858), 1, + ACTIONS(590), 1, anon_sym_SQUOTE, - ACTIONS(860), 1, + ACTIONS(592), 1, anon_sym_BQUOTE, - ACTIONS(862), 1, + ACTIONS(594), 1, anon_sym_COMMA_AT, - ACTIONS(864), 1, + ACTIONS(596), 1, anon_sym_COMMA, - ACTIONS(866), 1, - anon_sym_COLON, - ACTIONS(870), 1, + ACTIONS(600), 1, anon_sym_POUNDC, - STATE(126), 1, + STATE(146), 1, aux_sym_dis_expr_repeat1, - STATE(992), 1, - aux_sym_sym_lit_repeat1, - STATE(1076), 1, + STATE(924), 1, sym_sym_lit, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, - sym_meta_lit, - STATE(1108), 1, - sym__bare_set_lit, - STATE(1109), 1, + STATE(926), 1, + aux_sym_sym_lit_repeat1, + STATE(1068), 1, sym__bare_vec_lit, - STATE(1369), 1, + STATE(1069), 1, + sym__bare_set_lit, + STATE(1162), 1, + sym_meta_lit, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1910), 1, + STATE(1861), 1, sym_dotted_sym_lit, - ACTIONS(828), 2, + ACTIONS(558), 2, sym__ws, sym_comment, - ACTIONS(868), 2, + ACTIONS(598), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1036), 2, + ACTIONS(1056), 2, sym_num_lit, sym_char_lit, - ACTIONS(1038), 2, + ACTIONS(1058), 2, sym_nil_lit, sym_fancy_literal, - STATE(943), 2, + STATE(902), 2, sym__gap, sym_dis_expr, - STATE(1110), 3, + STATE(1067), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1188), 18, + STATE(1141), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -21977,90 +21912,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [21151] = 38, + [21158] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(832), 1, + ACTIONS(140), 1, + anon_sym_COLON, + ACTIONS(142), 1, + anon_sym_COLON_COLON, + ACTIONS(144), 1, aux_sym_str_lit_token1, - ACTIONS(836), 1, + ACTIONS(148), 1, aux_sym_sym_lit_token1, - ACTIONS(838), 1, - anon_sym_LPAREN, - ACTIONS(840), 1, + ACTIONS(150), 1, anon_sym_POUND0A, - ACTIONS(842), 1, + ACTIONS(152), 1, anon_sym_POUND, - ACTIONS(844), 1, + ACTIONS(154), 1, anon_sym_POUND_QMARK, - ACTIONS(846), 1, + ACTIONS(156), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(848), 1, - anon_sym_COLON_COLON, - ACTIONS(850), 1, + ACTIONS(158), 1, anon_sym_POUND_SQUOTE, - ACTIONS(852), 1, + ACTIONS(160), 1, anon_sym_POUND_POUND, - ACTIONS(854), 1, + ACTIONS(162), 1, anon_sym_POUND_EQ, - ACTIONS(856), 1, + ACTIONS(164), 1, anon_sym_AT, - ACTIONS(858), 1, + ACTIONS(166), 1, anon_sym_SQUOTE, - ACTIONS(860), 1, + ACTIONS(168), 1, anon_sym_BQUOTE, - ACTIONS(862), 1, + ACTIONS(170), 1, anon_sym_COMMA_AT, - ACTIONS(864), 1, + ACTIONS(172), 1, anon_sym_COMMA, - ACTIONS(866), 1, - anon_sym_COLON, - ACTIONS(870), 1, + ACTIONS(178), 1, anon_sym_POUNDC, - STATE(130), 1, + ACTIONS(413), 1, + anon_sym_LPAREN, + STATE(111), 1, aux_sym_dis_expr_repeat1, - STATE(992), 1, - aux_sym_sym_lit_repeat1, - STATE(1076), 1, + STATE(404), 1, sym_sym_lit, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, - sym_meta_lit, - STATE(1108), 1, - sym__bare_set_lit, - STATE(1109), 1, + STATE(487), 1, sym__bare_vec_lit, - STATE(1369), 1, + STATE(488), 1, + sym__bare_set_lit, + STATE(981), 1, + aux_sym_sym_lit_repeat1, + STATE(1162), 1, + sym_meta_lit, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1910), 1, + STATE(1866), 1, sym_dotted_sym_lit, - ACTIONS(828), 2, - sym__ws, - sym_comment, - ACTIONS(868), 2, + ACTIONS(176), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1040), 2, + ACTIONS(411), 2, + sym__ws, + sym_comment, + ACTIONS(1060), 2, sym_num_lit, sym_char_lit, - ACTIONS(1042), 2, + ACTIONS(1062), 2, sym_nil_lit, sym_fancy_literal, - STATE(943), 2, + STATE(903), 2, sym__gap, sym_dis_expr, - STATE(1110), 3, + STATE(486), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1187), 18, + STATE(512), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -22078,90 +22014,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [21290] = 38, + [21298] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(13), 1, - aux_sym_str_lit_token1, - ACTIONS(17), 1, - aux_sym_sym_lit_token1, - ACTIONS(19), 1, - anon_sym_CARET, - ACTIONS(21), 1, - anon_sym_POUND_CARET, ACTIONS(23), 1, - anon_sym_LPAREN, + anon_sym_CARET, ACTIONS(25), 1, + anon_sym_POUND_CARET, + ACTIONS(140), 1, + anon_sym_COLON, + ACTIONS(142), 1, + anon_sym_COLON_COLON, + ACTIONS(144), 1, + aux_sym_str_lit_token1, + ACTIONS(148), 1, + aux_sym_sym_lit_token1, + ACTIONS(150), 1, anon_sym_POUND0A, - ACTIONS(27), 1, + ACTIONS(152), 1, anon_sym_POUND, - ACTIONS(29), 1, + ACTIONS(154), 1, anon_sym_POUND_QMARK, - ACTIONS(31), 1, + ACTIONS(156), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(158), 1, + anon_sym_POUND_SQUOTE, + ACTIONS(160), 1, anon_sym_POUND_POUND, - ACTIONS(39), 1, + ACTIONS(162), 1, anon_sym_POUND_EQ, - ACTIONS(45), 1, - anon_sym_BQUOTE, - ACTIONS(55), 1, - anon_sym_POUNDC, - ACTIONS(652), 1, - anon_sym_COLON_COLON, - ACTIONS(654), 1, - anon_sym_POUND_SQUOTE, - ACTIONS(656), 1, + ACTIONS(164), 1, anon_sym_AT, - ACTIONS(658), 1, + ACTIONS(166), 1, anon_sym_SQUOTE, - ACTIONS(660), 1, + ACTIONS(168), 1, + anon_sym_BQUOTE, + ACTIONS(170), 1, anon_sym_COMMA_AT, - ACTIONS(662), 1, + ACTIONS(172), 1, anon_sym_COMMA, - ACTIONS(664), 1, - anon_sym_COLON, - STATE(817), 1, + ACTIONS(178), 1, + anon_sym_POUNDC, + ACTIONS(413), 1, + anon_sym_LPAREN, + STATE(113), 1, + aux_sym_dis_expr_repeat1, + STATE(404), 1, sym_sym_lit, - STATE(838), 1, + STATE(487), 1, sym__bare_vec_lit, - STATE(841), 1, + STATE(488), 1, sym__bare_set_lit, - STATE(930), 1, - aux_sym_dis_expr_repeat1, - STATE(999), 1, + STATE(981), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1908), 1, + STATE(1866), 1, sym_dotted_sym_lit, - ACTIONS(646), 2, - sym__ws, - sym_comment, - ACTIONS(666), 2, + ACTIONS(176), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(724), 2, + ACTIONS(411), 2, + sym__ws, + sym_comment, + ACTIONS(1064), 2, sym_num_lit, sym_char_lit, - ACTIONS(726), 2, + ACTIONS(1066), 2, sym_nil_lit, sym_fancy_literal, - STATE(942), 2, + STATE(903), 2, sym__gap, sym_dis_expr, - STATE(842), 3, + STATE(486), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(861), 18, + STATE(513), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -22179,90 +22116,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [21429] = 38, + [21438] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(832), 1, + ACTIONS(140), 1, + anon_sym_COLON, + ACTIONS(142), 1, + anon_sym_COLON_COLON, + ACTIONS(144), 1, aux_sym_str_lit_token1, - ACTIONS(836), 1, + ACTIONS(148), 1, aux_sym_sym_lit_token1, - ACTIONS(838), 1, - anon_sym_LPAREN, - ACTIONS(840), 1, + ACTIONS(150), 1, anon_sym_POUND0A, - ACTIONS(842), 1, + ACTIONS(152), 1, anon_sym_POUND, - ACTIONS(844), 1, + ACTIONS(154), 1, anon_sym_POUND_QMARK, - ACTIONS(846), 1, + ACTIONS(156), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(848), 1, - anon_sym_COLON_COLON, - ACTIONS(850), 1, + ACTIONS(158), 1, anon_sym_POUND_SQUOTE, - ACTIONS(852), 1, + ACTIONS(160), 1, anon_sym_POUND_POUND, - ACTIONS(854), 1, + ACTIONS(162), 1, anon_sym_POUND_EQ, - ACTIONS(856), 1, + ACTIONS(164), 1, anon_sym_AT, - ACTIONS(858), 1, + ACTIONS(166), 1, anon_sym_SQUOTE, - ACTIONS(860), 1, + ACTIONS(168), 1, anon_sym_BQUOTE, - ACTIONS(862), 1, + ACTIONS(170), 1, anon_sym_COMMA_AT, - ACTIONS(864), 1, + ACTIONS(172), 1, anon_sym_COMMA, - ACTIONS(866), 1, - anon_sym_COLON, - ACTIONS(870), 1, + ACTIONS(178), 1, anon_sym_POUNDC, - STATE(930), 1, + ACTIONS(413), 1, + anon_sym_LPAREN, + STATE(118), 1, aux_sym_dis_expr_repeat1, - STATE(992), 1, - aux_sym_sym_lit_repeat1, - STATE(1076), 1, + STATE(404), 1, sym_sym_lit, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, - sym_meta_lit, - STATE(1108), 1, - sym__bare_set_lit, - STATE(1109), 1, + STATE(487), 1, sym__bare_vec_lit, - STATE(1369), 1, + STATE(488), 1, + sym__bare_set_lit, + STATE(981), 1, + aux_sym_sym_lit_repeat1, + STATE(1162), 1, + sym_meta_lit, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1910), 1, + STATE(1866), 1, sym_dotted_sym_lit, - ACTIONS(828), 2, - sym__ws, - sym_comment, - ACTIONS(868), 2, + ACTIONS(176), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1044), 2, + ACTIONS(411), 2, + sym__ws, + sym_comment, + ACTIONS(1068), 2, sym_num_lit, sym_char_lit, - ACTIONS(1046), 2, + ACTIONS(1070), 2, sym_nil_lit, sym_fancy_literal, - STATE(943), 2, + STATE(903), 2, sym__gap, sym_dis_expr, - STATE(1110), 3, + STATE(486), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1185), 18, + STATE(503), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -22280,90 +22218,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [21568] = 38, + [21578] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(13), 1, - aux_sym_str_lit_token1, + anon_sym_COLON, + ACTIONS(15), 1, + anon_sym_COLON_COLON, ACTIONS(17), 1, + aux_sym_str_lit_token1, + ACTIONS(21), 1, aux_sym_sym_lit_token1, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(23), 1, + ACTIONS(27), 1, anon_sym_LPAREN, - ACTIONS(25), 1, + ACTIONS(29), 1, anon_sym_POUND0A, - ACTIONS(27), 1, + ACTIONS(31), 1, anon_sym_POUND, - ACTIONS(29), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(31), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, ACTIONS(37), 1, - anon_sym_POUND_POUND, + anon_sym_POUND_SQUOTE, ACTIONS(39), 1, + anon_sym_POUND_POUND, + ACTIONS(41), 1, anon_sym_POUND_EQ, - ACTIONS(45), 1, - anon_sym_BQUOTE, - ACTIONS(55), 1, - anon_sym_POUNDC, - ACTIONS(652), 1, - anon_sym_COLON_COLON, - ACTIONS(654), 1, - anon_sym_POUND_SQUOTE, - ACTIONS(656), 1, + ACTIONS(43), 1, anon_sym_AT, - ACTIONS(658), 1, + ACTIONS(45), 1, anon_sym_SQUOTE, - ACTIONS(660), 1, + ACTIONS(47), 1, + anon_sym_BQUOTE, + ACTIONS(49), 1, anon_sym_COMMA_AT, - ACTIONS(662), 1, + ACTIONS(51), 1, anon_sym_COMMA, - ACTIONS(664), 1, - anon_sym_COLON, - STATE(817), 1, + ACTIONS(55), 1, + anon_sym_POUNDC, + STATE(131), 1, + aux_sym_dis_expr_repeat1, + STATE(780), 1, sym_sym_lit, - STATE(838), 1, + STATE(786), 1, sym__bare_vec_lit, - STATE(841), 1, + STATE(884), 1, sym__bare_set_lit, - STATE(930), 1, - aux_sym_dis_expr_repeat1, - STATE(999), 1, + STATE(1033), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1908), 1, + STATE(1863), 1, sym_dotted_sym_lit, - ACTIONS(646), 2, - sym__ws, - sym_comment, - ACTIONS(666), 2, + ACTIONS(53), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(708), 2, + ACTIONS(650), 2, + sym__ws, + sym_comment, + ACTIONS(1072), 2, sym_num_lit, sym_char_lit, - ACTIONS(710), 2, + ACTIONS(1074), 2, sym_nil_lit, sym_fancy_literal, - STATE(942), 2, + STATE(898), 2, sym__gap, sym_dis_expr, - STATE(842), 3, + STATE(787), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(859), 18, + STATE(110), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -22381,90 +22320,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [21707] = 38, + [21718] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(13), 1, - aux_sym_str_lit_token1, - ACTIONS(17), 1, - aux_sym_sym_lit_token1, - ACTIONS(19), 1, - anon_sym_CARET, - ACTIONS(21), 1, - anon_sym_POUND_CARET, ACTIONS(23), 1, - anon_sym_LPAREN, + anon_sym_CARET, ACTIONS(25), 1, + anon_sym_POUND_CARET, + ACTIONS(140), 1, + anon_sym_COLON, + ACTIONS(142), 1, + anon_sym_COLON_COLON, + ACTIONS(144), 1, + aux_sym_str_lit_token1, + ACTIONS(148), 1, + aux_sym_sym_lit_token1, + ACTIONS(150), 1, anon_sym_POUND0A, - ACTIONS(27), 1, + ACTIONS(152), 1, anon_sym_POUND, - ACTIONS(29), 1, + ACTIONS(154), 1, anon_sym_POUND_QMARK, - ACTIONS(31), 1, + ACTIONS(156), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(33), 1, - anon_sym_COLON_COLON, - ACTIONS(35), 1, + ACTIONS(158), 1, anon_sym_POUND_SQUOTE, - ACTIONS(37), 1, + ACTIONS(160), 1, anon_sym_POUND_POUND, - ACTIONS(39), 1, + ACTIONS(162), 1, anon_sym_POUND_EQ, - ACTIONS(41), 1, + ACTIONS(164), 1, anon_sym_AT, - ACTIONS(43), 1, + ACTIONS(166), 1, anon_sym_SQUOTE, - ACTIONS(45), 1, + ACTIONS(168), 1, anon_sym_BQUOTE, - ACTIONS(47), 1, + ACTIONS(170), 1, anon_sym_COMMA_AT, - ACTIONS(49), 1, + ACTIONS(172), 1, anon_sym_COMMA, - ACTIONS(51), 1, - anon_sym_COLON, - ACTIONS(55), 1, + ACTIONS(178), 1, anon_sym_POUNDC, - STATE(78), 1, + ACTIONS(413), 1, + anon_sym_LPAREN, + STATE(133), 1, aux_sym_dis_expr_repeat1, - STATE(815), 1, + STATE(404), 1, sym_sym_lit, - STATE(838), 1, + STATE(487), 1, sym__bare_vec_lit, - STATE(841), 1, + STATE(488), 1, sym__bare_set_lit, - STATE(1047), 1, + STATE(981), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1909), 1, + STATE(1866), 1, sym_dotted_sym_lit, - ACTIONS(53), 2, + ACTIONS(176), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(646), 2, + ACTIONS(411), 2, sym__ws, sym_comment, - ACTIONS(1048), 2, + ACTIONS(1076), 2, sym_num_lit, sym_char_lit, - ACTIONS(1050), 2, + ACTIONS(1078), 2, sym_nil_lit, sym_fancy_literal, - STATE(942), 2, + STATE(903), 2, sym__gap, sym_dis_expr, - STATE(842), 3, + STATE(486), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(829), 18, + STATE(450), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -22482,90 +22422,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [21846] = 38, + [21858] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(13), 1, - aux_sym_str_lit_token1, + anon_sym_COLON, + ACTIONS(15), 1, + anon_sym_COLON_COLON, ACTIONS(17), 1, - aux_sym_sym_lit_token1, - ACTIONS(19), 1, - anon_sym_CARET, + aux_sym_str_lit_token1, ACTIONS(21), 1, - anon_sym_POUND_CARET, + aux_sym_sym_lit_token1, ACTIONS(23), 1, - anon_sym_LPAREN, + anon_sym_CARET, ACTIONS(25), 1, - anon_sym_POUND0A, + anon_sym_POUND_CARET, ACTIONS(27), 1, - anon_sym_POUND, + anon_sym_LPAREN, ACTIONS(29), 1, - anon_sym_POUND_QMARK, + anon_sym_POUND0A, ACTIONS(31), 1, - anon_sym_POUND_QMARK_AT, + anon_sym_POUND, ACTIONS(33), 1, - anon_sym_COLON_COLON, + anon_sym_POUND_QMARK, ACTIONS(35), 1, - anon_sym_POUND_SQUOTE, + anon_sym_POUND_QMARK_AT, ACTIONS(37), 1, - anon_sym_POUND_POUND, + anon_sym_POUND_SQUOTE, ACTIONS(39), 1, - anon_sym_POUND_EQ, + anon_sym_POUND_POUND, ACTIONS(41), 1, - anon_sym_AT, + anon_sym_POUND_EQ, ACTIONS(43), 1, - anon_sym_SQUOTE, + anon_sym_AT, ACTIONS(45), 1, - anon_sym_BQUOTE, + anon_sym_SQUOTE, ACTIONS(47), 1, - anon_sym_COMMA_AT, + anon_sym_BQUOTE, ACTIONS(49), 1, - anon_sym_COMMA, + anon_sym_COMMA_AT, ACTIONS(51), 1, - anon_sym_COLON, + anon_sym_COMMA, ACTIONS(55), 1, anon_sym_POUNDC, - STATE(815), 1, + STATE(780), 1, sym_sym_lit, - STATE(838), 1, + STATE(786), 1, sym__bare_vec_lit, - STATE(841), 1, + STATE(884), 1, sym__bare_set_lit, - STATE(930), 1, + STATE(892), 1, aux_sym_dis_expr_repeat1, - STATE(1047), 1, + STATE(1033), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1909), 1, + STATE(1863), 1, sym_dotted_sym_lit, ACTIONS(53), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(646), 2, + ACTIONS(650), 2, sym__ws, sym_comment, - ACTIONS(780), 2, + ACTIONS(1080), 2, sym_num_lit, sym_char_lit, - ACTIONS(782), 2, + ACTIONS(1082), 2, sym_nil_lit, sym_fancy_literal, - STATE(942), 2, + STATE(898), 2, sym__gap, sym_dis_expr, - STATE(842), 3, + STATE(787), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(887), 18, + STATE(800), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -22583,90 +22524,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [21985] = 38, + [21998] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(832), 1, + ACTIONS(562), 1, + anon_sym_COLON, + ACTIONS(564), 1, + anon_sym_COLON_COLON, + ACTIONS(566), 1, aux_sym_str_lit_token1, - ACTIONS(836), 1, + ACTIONS(570), 1, aux_sym_sym_lit_token1, - ACTIONS(838), 1, + ACTIONS(572), 1, anon_sym_LPAREN, - ACTIONS(840), 1, + ACTIONS(574), 1, anon_sym_POUND0A, - ACTIONS(842), 1, + ACTIONS(576), 1, anon_sym_POUND, - ACTIONS(844), 1, + ACTIONS(578), 1, anon_sym_POUND_QMARK, - ACTIONS(846), 1, + ACTIONS(580), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(848), 1, - anon_sym_COLON_COLON, - ACTIONS(850), 1, + ACTIONS(582), 1, anon_sym_POUND_SQUOTE, - ACTIONS(852), 1, + ACTIONS(584), 1, anon_sym_POUND_POUND, - ACTIONS(854), 1, + ACTIONS(586), 1, anon_sym_POUND_EQ, - ACTIONS(856), 1, + ACTIONS(588), 1, anon_sym_AT, - ACTIONS(858), 1, + ACTIONS(590), 1, anon_sym_SQUOTE, - ACTIONS(860), 1, + ACTIONS(592), 1, anon_sym_BQUOTE, - ACTIONS(862), 1, + ACTIONS(594), 1, anon_sym_COMMA_AT, - ACTIONS(864), 1, + ACTIONS(596), 1, anon_sym_COMMA, - ACTIONS(866), 1, - anon_sym_COLON, - ACTIONS(870), 1, + ACTIONS(600), 1, anon_sym_POUNDC, - STATE(930), 1, + STATE(892), 1, aux_sym_dis_expr_repeat1, - STATE(992), 1, - aux_sym_sym_lit_repeat1, - STATE(1076), 1, + STATE(924), 1, sym_sym_lit, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, - sym_meta_lit, - STATE(1108), 1, - sym__bare_set_lit, - STATE(1109), 1, + STATE(926), 1, + aux_sym_sym_lit_repeat1, + STATE(1068), 1, sym__bare_vec_lit, - STATE(1369), 1, + STATE(1069), 1, + sym__bare_set_lit, + STATE(1162), 1, + sym_meta_lit, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1910), 1, + STATE(1861), 1, sym_dotted_sym_lit, - ACTIONS(828), 2, + ACTIONS(558), 2, sym__ws, sym_comment, - ACTIONS(868), 2, + ACTIONS(598), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1052), 2, + ACTIONS(1084), 2, sym_num_lit, sym_char_lit, - ACTIONS(1054), 2, + ACTIONS(1086), 2, sym_nil_lit, sym_fancy_literal, - STATE(943), 2, + STATE(902), 2, sym__gap, sym_dis_expr, - STATE(1110), 3, + STATE(1067), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1184), 18, + STATE(1140), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -22684,90 +22626,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [22124] = 38, + [22138] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(832), 1, + ACTIONS(140), 1, + anon_sym_COLON, + ACTIONS(142), 1, + anon_sym_COLON_COLON, + ACTIONS(144), 1, aux_sym_str_lit_token1, - ACTIONS(836), 1, + ACTIONS(148), 1, aux_sym_sym_lit_token1, - ACTIONS(838), 1, - anon_sym_LPAREN, - ACTIONS(840), 1, + ACTIONS(150), 1, anon_sym_POUND0A, - ACTIONS(842), 1, + ACTIONS(152), 1, anon_sym_POUND, - ACTIONS(844), 1, + ACTIONS(154), 1, anon_sym_POUND_QMARK, - ACTIONS(846), 1, + ACTIONS(156), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(848), 1, - anon_sym_COLON_COLON, - ACTIONS(850), 1, + ACTIONS(158), 1, anon_sym_POUND_SQUOTE, - ACTIONS(852), 1, + ACTIONS(160), 1, anon_sym_POUND_POUND, - ACTIONS(854), 1, + ACTIONS(162), 1, anon_sym_POUND_EQ, - ACTIONS(856), 1, + ACTIONS(164), 1, anon_sym_AT, - ACTIONS(858), 1, + ACTIONS(166), 1, anon_sym_SQUOTE, - ACTIONS(860), 1, + ACTIONS(168), 1, anon_sym_BQUOTE, - ACTIONS(862), 1, + ACTIONS(170), 1, anon_sym_COMMA_AT, - ACTIONS(864), 1, + ACTIONS(172), 1, anon_sym_COMMA, - ACTIONS(866), 1, - anon_sym_COLON, - ACTIONS(870), 1, + ACTIONS(178), 1, anon_sym_POUNDC, - STATE(930), 1, + ACTIONS(413), 1, + anon_sym_LPAREN, + STATE(404), 1, + sym_sym_lit, + STATE(487), 1, + sym__bare_vec_lit, + STATE(488), 1, + sym__bare_set_lit, + STATE(892), 1, aux_sym_dis_expr_repeat1, - STATE(992), 1, + STATE(981), 1, aux_sym_sym_lit_repeat1, - STATE(1076), 1, - sym_sym_lit, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1108), 1, - sym__bare_set_lit, - STATE(1109), 1, - sym__bare_vec_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1910), 1, + STATE(1866), 1, sym_dotted_sym_lit, - ACTIONS(828), 2, - sym__ws, - sym_comment, - ACTIONS(868), 2, + ACTIONS(176), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1056), 2, + ACTIONS(411), 2, + sym__ws, + sym_comment, + ACTIONS(1088), 2, sym_num_lit, sym_char_lit, - ACTIONS(1058), 2, + ACTIONS(1090), 2, sym_nil_lit, sym_fancy_literal, - STATE(943), 2, + STATE(903), 2, sym__gap, sym_dis_expr, - STATE(1110), 3, + STATE(486), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1183), 18, + STATE(461), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -22785,90 +22728,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [22263] = 38, + [22278] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(61), 1, + ACTIONS(140), 1, + anon_sym_COLON, + ACTIONS(142), 1, + anon_sym_COLON_COLON, + ACTIONS(144), 1, aux_sym_str_lit_token1, - ACTIONS(65), 1, + ACTIONS(148), 1, aux_sym_sym_lit_token1, - ACTIONS(67), 1, + ACTIONS(150), 1, anon_sym_POUND0A, - ACTIONS(69), 1, + ACTIONS(152), 1, anon_sym_POUND, - ACTIONS(71), 1, + ACTIONS(154), 1, anon_sym_POUND_QMARK, - ACTIONS(73), 1, + ACTIONS(156), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(75), 1, - anon_sym_COLON_COLON, - ACTIONS(77), 1, + ACTIONS(158), 1, anon_sym_POUND_SQUOTE, - ACTIONS(79), 1, + ACTIONS(160), 1, anon_sym_POUND_POUND, - ACTIONS(81), 1, + ACTIONS(162), 1, anon_sym_POUND_EQ, - ACTIONS(83), 1, + ACTIONS(164), 1, anon_sym_AT, - ACTIONS(85), 1, + ACTIONS(166), 1, anon_sym_SQUOTE, - ACTIONS(87), 1, + ACTIONS(168), 1, anon_sym_BQUOTE, - ACTIONS(89), 1, + ACTIONS(170), 1, anon_sym_COMMA_AT, - ACTIONS(91), 1, + ACTIONS(172), 1, anon_sym_COMMA, - ACTIONS(95), 1, - anon_sym_COLON, - ACTIONS(99), 1, + ACTIONS(178), 1, anon_sym_POUNDC, - ACTIONS(381), 1, + ACTIONS(413), 1, anon_sym_LPAREN, - STATE(446), 1, + STATE(144), 1, + aux_sym_dis_expr_repeat1, + STATE(404), 1, sym_sym_lit, - STATE(513), 1, - sym__bare_set_lit, - STATE(514), 1, + STATE(487), 1, sym__bare_vec_lit, - STATE(930), 1, - aux_sym_dis_expr_repeat1, - STATE(1044), 1, + STATE(488), 1, + sym__bare_set_lit, + STATE(981), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1907), 1, + STATE(1866), 1, sym_dotted_sym_lit, - ACTIONS(97), 2, + ACTIONS(176), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(379), 2, + ACTIONS(411), 2, sym__ws, sym_comment, - ACTIONS(1060), 2, + ACTIONS(1092), 2, sym_num_lit, sym_char_lit, - ACTIONS(1062), 2, + ACTIONS(1094), 2, sym_nil_lit, sym_fancy_literal, - STATE(934), 2, + STATE(903), 2, sym__gap, sym_dis_expr, - STATE(515), 3, + STATE(486), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(525), 18, + STATE(496), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -22886,90 +22830,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [22402] = 38, + [22418] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(13), 1, - aux_sym_str_lit_token1, - ACTIONS(17), 1, - aux_sym_sym_lit_token1, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(23), 1, + ACTIONS(660), 1, + anon_sym_COLON, + ACTIONS(662), 1, + anon_sym_COLON_COLON, + ACTIONS(664), 1, + aux_sym_str_lit_token1, + ACTIONS(668), 1, + aux_sym_sym_lit_token1, + ACTIONS(670), 1, anon_sym_LPAREN, - ACTIONS(25), 1, + ACTIONS(672), 1, anon_sym_POUND0A, - ACTIONS(27), 1, + ACTIONS(674), 1, anon_sym_POUND, - ACTIONS(29), 1, + ACTIONS(676), 1, anon_sym_POUND_QMARK, - ACTIONS(31), 1, + ACTIONS(678), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(33), 1, - anon_sym_COLON_COLON, - ACTIONS(35), 1, + ACTIONS(680), 1, anon_sym_POUND_SQUOTE, - ACTIONS(37), 1, + ACTIONS(682), 1, anon_sym_POUND_POUND, - ACTIONS(39), 1, + ACTIONS(684), 1, anon_sym_POUND_EQ, - ACTIONS(41), 1, + ACTIONS(686), 1, anon_sym_AT, - ACTIONS(43), 1, + ACTIONS(688), 1, anon_sym_SQUOTE, - ACTIONS(45), 1, + ACTIONS(690), 1, anon_sym_BQUOTE, - ACTIONS(47), 1, + ACTIONS(692), 1, anon_sym_COMMA_AT, - ACTIONS(49), 1, + ACTIONS(694), 1, anon_sym_COMMA, - ACTIONS(51), 1, - anon_sym_COLON, - ACTIONS(55), 1, + ACTIONS(698), 1, anon_sym_POUNDC, - STATE(815), 1, + STATE(566), 1, sym_sym_lit, - STATE(838), 1, - sym__bare_vec_lit, - STATE(841), 1, + STATE(678), 1, sym__bare_set_lit, - STATE(930), 1, + STATE(679), 1, + sym__bare_vec_lit, + STATE(892), 1, aux_sym_dis_expr_repeat1, - STATE(1047), 1, + STATE(925), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1909), 1, + STATE(1868), 1, sym_dotted_sym_lit, - ACTIONS(53), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(646), 2, + ACTIONS(656), 2, sym__ws, sym_comment, - ACTIONS(1064), 2, + ACTIONS(696), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(1096), 2, sym_num_lit, sym_char_lit, - ACTIONS(1066), 2, + ACTIONS(1098), 2, sym_nil_lit, sym_fancy_literal, - STATE(942), 2, + STATE(906), 2, sym__gap, sym_dis_expr, - STATE(842), 3, + STATE(680), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(378), 18, + STATE(649), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -22987,90 +22932,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [22541] = 38, + [22558] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(606), 1, + ACTIONS(518), 1, + anon_sym_COLON, + ACTIONS(520), 1, + anon_sym_COLON_COLON, + ACTIONS(522), 1, aux_sym_str_lit_token1, - ACTIONS(610), 1, + ACTIONS(526), 1, aux_sym_sym_lit_token1, - ACTIONS(612), 1, + ACTIONS(528), 1, anon_sym_LPAREN, - ACTIONS(614), 1, + ACTIONS(530), 1, anon_sym_POUND0A, - ACTIONS(616), 1, + ACTIONS(532), 1, anon_sym_POUND, - ACTIONS(618), 1, + ACTIONS(534), 1, anon_sym_POUND_QMARK, - ACTIONS(620), 1, + ACTIONS(536), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(622), 1, - anon_sym_COLON_COLON, - ACTIONS(624), 1, + ACTIONS(538), 1, anon_sym_POUND_SQUOTE, - ACTIONS(626), 1, + ACTIONS(540), 1, anon_sym_POUND_POUND, - ACTIONS(628), 1, + ACTIONS(542), 1, anon_sym_POUND_EQ, - ACTIONS(630), 1, + ACTIONS(544), 1, anon_sym_AT, - ACTIONS(632), 1, + ACTIONS(546), 1, anon_sym_SQUOTE, - ACTIONS(634), 1, + ACTIONS(548), 1, anon_sym_BQUOTE, - ACTIONS(636), 1, + ACTIONS(550), 1, anon_sym_COMMA_AT, - ACTIONS(638), 1, + ACTIONS(552), 1, anon_sym_COMMA, - ACTIONS(640), 1, - anon_sym_COLON, - ACTIONS(644), 1, + ACTIONS(556), 1, anon_sym_POUNDC, - STATE(930), 1, + STATE(892), 1, aux_sym_dis_expr_repeat1, - STATE(949), 1, + STATE(909), 1, sym_sym_lit, - STATE(963), 1, + STATE(922), 1, sym__bare_set_lit, - STATE(964), 1, + STATE(931), 1, sym__bare_vec_lit, - STATE(967), 1, + STATE(936), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1911), 1, + STATE(1865), 1, sym_dotted_sym_lit, - ACTIONS(602), 2, + ACTIONS(514), 2, sym__ws, sym_comment, - ACTIONS(642), 2, + ACTIONS(554), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1068), 2, + ACTIONS(1100), 2, sym_num_lit, sym_char_lit, - ACTIONS(1070), 2, + ACTIONS(1102), 2, sym_nil_lit, sym_fancy_literal, - STATE(944), 2, + STATE(897), 2, sym__gap, sym_dis_expr, - STATE(965), 3, + STATE(930), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1020), 18, + STATE(966), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -23088,90 +23034,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [22680] = 38, + [22698] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(13), 1, - aux_sym_str_lit_token1, + anon_sym_COLON, + ACTIONS(15), 1, + anon_sym_COLON_COLON, ACTIONS(17), 1, - aux_sym_sym_lit_token1, - ACTIONS(19), 1, - anon_sym_CARET, + aux_sym_str_lit_token1, ACTIONS(21), 1, - anon_sym_POUND_CARET, + aux_sym_sym_lit_token1, ACTIONS(23), 1, - anon_sym_LPAREN, + anon_sym_CARET, ACTIONS(25), 1, - anon_sym_POUND0A, + anon_sym_POUND_CARET, ACTIONS(27), 1, - anon_sym_POUND, + anon_sym_LPAREN, ACTIONS(29), 1, - anon_sym_POUND_QMARK, + anon_sym_POUND0A, ACTIONS(31), 1, - anon_sym_POUND_QMARK_AT, + anon_sym_POUND, ACTIONS(33), 1, - anon_sym_COLON_COLON, + anon_sym_POUND_QMARK, ACTIONS(35), 1, - anon_sym_POUND_SQUOTE, + anon_sym_POUND_QMARK_AT, ACTIONS(37), 1, - anon_sym_POUND_POUND, + anon_sym_POUND_SQUOTE, ACTIONS(39), 1, - anon_sym_POUND_EQ, + anon_sym_POUND_POUND, ACTIONS(41), 1, - anon_sym_AT, + anon_sym_POUND_EQ, ACTIONS(43), 1, - anon_sym_SQUOTE, + anon_sym_AT, ACTIONS(45), 1, - anon_sym_BQUOTE, + anon_sym_SQUOTE, ACTIONS(47), 1, - anon_sym_COMMA_AT, + anon_sym_BQUOTE, ACTIONS(49), 1, - anon_sym_COMMA, + anon_sym_COMMA_AT, ACTIONS(51), 1, - anon_sym_COLON, + anon_sym_COMMA, ACTIONS(55), 1, anon_sym_POUNDC, - STATE(815), 1, + STATE(780), 1, sym_sym_lit, - STATE(838), 1, + STATE(786), 1, sym__bare_vec_lit, - STATE(841), 1, + STATE(884), 1, sym__bare_set_lit, - STATE(930), 1, + STATE(892), 1, aux_sym_dis_expr_repeat1, - STATE(1047), 1, + STATE(1033), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1909), 1, + STATE(1863), 1, sym_dotted_sym_lit, ACTIONS(53), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(646), 2, + ACTIONS(650), 2, sym__ws, sym_comment, - ACTIONS(776), 2, + ACTIONS(1104), 2, sym_num_lit, sym_char_lit, - ACTIONS(778), 2, + ACTIONS(1106), 2, sym_nil_lit, sym_fancy_literal, - STATE(942), 2, + STATE(898), 2, sym__gap, sym_dis_expr, - STATE(842), 3, + STATE(787), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(892), 18, + STATE(804), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -23189,90 +23136,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [22819] = 38, + [22838] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(606), 1, + ACTIONS(562), 1, + anon_sym_COLON, + ACTIONS(564), 1, + anon_sym_COLON_COLON, + ACTIONS(566), 1, aux_sym_str_lit_token1, - ACTIONS(610), 1, + ACTIONS(570), 1, aux_sym_sym_lit_token1, - ACTIONS(612), 1, + ACTIONS(572), 1, anon_sym_LPAREN, - ACTIONS(614), 1, + ACTIONS(574), 1, anon_sym_POUND0A, - ACTIONS(616), 1, + ACTIONS(576), 1, anon_sym_POUND, - ACTIONS(618), 1, + ACTIONS(578), 1, anon_sym_POUND_QMARK, - ACTIONS(620), 1, + ACTIONS(580), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(622), 1, - anon_sym_COLON_COLON, - ACTIONS(624), 1, + ACTIONS(582), 1, anon_sym_POUND_SQUOTE, - ACTIONS(626), 1, + ACTIONS(584), 1, anon_sym_POUND_POUND, - ACTIONS(628), 1, + ACTIONS(586), 1, anon_sym_POUND_EQ, - ACTIONS(630), 1, + ACTIONS(588), 1, anon_sym_AT, - ACTIONS(632), 1, + ACTIONS(590), 1, anon_sym_SQUOTE, - ACTIONS(634), 1, + ACTIONS(592), 1, anon_sym_BQUOTE, - ACTIONS(636), 1, + ACTIONS(594), 1, anon_sym_COMMA_AT, - ACTIONS(638), 1, + ACTIONS(596), 1, anon_sym_COMMA, - ACTIONS(640), 1, - anon_sym_COLON, - ACTIONS(644), 1, + ACTIONS(600), 1, anon_sym_POUNDC, - STATE(210), 1, + STATE(149), 1, aux_sym_dis_expr_repeat1, - STATE(949), 1, + STATE(924), 1, sym_sym_lit, - STATE(963), 1, - sym__bare_set_lit, - STATE(964), 1, - sym__bare_vec_lit, - STATE(967), 1, + STATE(926), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1068), 1, + sym__bare_vec_lit, + STATE(1069), 1, + sym__bare_set_lit, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1911), 1, + STATE(1861), 1, sym_dotted_sym_lit, - ACTIONS(602), 2, + ACTIONS(558), 2, sym__ws, sym_comment, - ACTIONS(642), 2, + ACTIONS(598), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1072), 2, + ACTIONS(1108), 2, sym_num_lit, sym_char_lit, - ACTIONS(1074), 2, + ACTIONS(1110), 2, sym_nil_lit, sym_fancy_literal, - STATE(944), 2, + STATE(902), 2, sym__gap, sym_dis_expr, - STATE(965), 3, + STATE(1067), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1019), 18, + STATE(1139), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -23290,90 +23238,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [22958] = 38, + [22978] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(13), 1, - aux_sym_str_lit_token1, + anon_sym_COLON, + ACTIONS(15), 1, + anon_sym_COLON_COLON, ACTIONS(17), 1, - aux_sym_sym_lit_token1, - ACTIONS(19), 1, - anon_sym_CARET, + aux_sym_str_lit_token1, ACTIONS(21), 1, - anon_sym_POUND_CARET, + aux_sym_sym_lit_token1, ACTIONS(23), 1, - anon_sym_LPAREN, + anon_sym_CARET, ACTIONS(25), 1, - anon_sym_POUND0A, + anon_sym_POUND_CARET, ACTIONS(27), 1, - anon_sym_POUND, + anon_sym_LPAREN, ACTIONS(29), 1, - anon_sym_POUND_QMARK, + anon_sym_POUND0A, ACTIONS(31), 1, - anon_sym_POUND_QMARK_AT, + anon_sym_POUND, ACTIONS(33), 1, - anon_sym_COLON_COLON, + anon_sym_POUND_QMARK, ACTIONS(35), 1, - anon_sym_POUND_SQUOTE, + anon_sym_POUND_QMARK_AT, ACTIONS(37), 1, - anon_sym_POUND_POUND, + anon_sym_POUND_SQUOTE, ACTIONS(39), 1, - anon_sym_POUND_EQ, + anon_sym_POUND_POUND, ACTIONS(41), 1, - anon_sym_AT, + anon_sym_POUND_EQ, ACTIONS(43), 1, - anon_sym_SQUOTE, + anon_sym_AT, ACTIONS(45), 1, - anon_sym_BQUOTE, + anon_sym_SQUOTE, ACTIONS(47), 1, - anon_sym_COMMA_AT, + anon_sym_BQUOTE, ACTIONS(49), 1, - anon_sym_COMMA, + anon_sym_COMMA_AT, ACTIONS(51), 1, - anon_sym_COLON, + anon_sym_COMMA, ACTIONS(55), 1, anon_sym_POUNDC, - STATE(815), 1, + STATE(780), 1, sym_sym_lit, - STATE(838), 1, + STATE(786), 1, sym__bare_vec_lit, - STATE(841), 1, + STATE(884), 1, sym__bare_set_lit, - STATE(930), 1, + STATE(892), 1, aux_sym_dis_expr_repeat1, - STATE(1047), 1, + STATE(1033), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1909), 1, + STATE(1863), 1, sym_dotted_sym_lit, ACTIONS(53), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(646), 2, + ACTIONS(650), 2, sym__ws, sym_comment, - ACTIONS(760), 2, + ACTIONS(1112), 2, sym_num_lit, sym_char_lit, - ACTIONS(762), 2, + ACTIONS(1114), 2, sym_nil_lit, sym_fancy_literal, - STATE(942), 2, + STATE(898), 2, sym__gap, sym_dis_expr, - STATE(842), 3, + STATE(787), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(893), 18, + STATE(805), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -23391,90 +23340,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [23097] = 38, + [23118] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(13), 1, - aux_sym_str_lit_token1, - ACTIONS(17), 1, - aux_sym_sym_lit_token1, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(23), 1, + ACTIONS(562), 1, + anon_sym_COLON, + ACTIONS(564), 1, + anon_sym_COLON_COLON, + ACTIONS(566), 1, + aux_sym_str_lit_token1, + ACTIONS(570), 1, + aux_sym_sym_lit_token1, + ACTIONS(572), 1, anon_sym_LPAREN, - ACTIONS(25), 1, + ACTIONS(574), 1, anon_sym_POUND0A, - ACTIONS(27), 1, + ACTIONS(576), 1, anon_sym_POUND, - ACTIONS(29), 1, + ACTIONS(578), 1, anon_sym_POUND_QMARK, - ACTIONS(31), 1, + ACTIONS(580), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(33), 1, - anon_sym_COLON_COLON, - ACTIONS(35), 1, + ACTIONS(582), 1, anon_sym_POUND_SQUOTE, - ACTIONS(37), 1, + ACTIONS(584), 1, anon_sym_POUND_POUND, - ACTIONS(39), 1, + ACTIONS(586), 1, anon_sym_POUND_EQ, - ACTIONS(41), 1, + ACTIONS(588), 1, anon_sym_AT, - ACTIONS(43), 1, + ACTIONS(590), 1, anon_sym_SQUOTE, - ACTIONS(45), 1, + ACTIONS(592), 1, anon_sym_BQUOTE, - ACTIONS(47), 1, + ACTIONS(594), 1, anon_sym_COMMA_AT, - ACTIONS(49), 1, + ACTIONS(596), 1, anon_sym_COMMA, - ACTIONS(51), 1, - anon_sym_COLON, - ACTIONS(55), 1, + ACTIONS(600), 1, anon_sym_POUNDC, - STATE(815), 1, + STATE(892), 1, + aux_sym_dis_expr_repeat1, + STATE(924), 1, sym_sym_lit, - STATE(838), 1, + STATE(926), 1, + aux_sym_sym_lit_repeat1, + STATE(1068), 1, sym__bare_vec_lit, - STATE(841), 1, + STATE(1069), 1, sym__bare_set_lit, - STATE(930), 1, - aux_sym_dis_expr_repeat1, - STATE(1047), 1, - aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1909), 1, + STATE(1861), 1, sym_dotted_sym_lit, - ACTIONS(53), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(646), 2, + ACTIONS(558), 2, sym__ws, sym_comment, - ACTIONS(1076), 2, + ACTIONS(598), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(1116), 2, sym_num_lit, sym_char_lit, - ACTIONS(1078), 2, + ACTIONS(1118), 2, sym_nil_lit, sym_fancy_literal, - STATE(942), 2, + STATE(902), 2, sym__gap, sym_dis_expr, - STATE(842), 3, + STATE(1067), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(381), 18, + STATE(1138), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -23492,90 +23442,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [23236] = 38, + [23258] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(13), 1, - aux_sym_str_lit_token1, + anon_sym_COLON, + ACTIONS(15), 1, + anon_sym_COLON_COLON, ACTIONS(17), 1, - aux_sym_sym_lit_token1, - ACTIONS(19), 1, - anon_sym_CARET, + aux_sym_str_lit_token1, ACTIONS(21), 1, - anon_sym_POUND_CARET, + aux_sym_sym_lit_token1, ACTIONS(23), 1, - anon_sym_LPAREN, + anon_sym_CARET, ACTIONS(25), 1, - anon_sym_POUND0A, + anon_sym_POUND_CARET, ACTIONS(27), 1, - anon_sym_POUND, + anon_sym_LPAREN, ACTIONS(29), 1, - anon_sym_POUND_QMARK, + anon_sym_POUND0A, ACTIONS(31), 1, - anon_sym_POUND_QMARK_AT, + anon_sym_POUND, ACTIONS(33), 1, - anon_sym_COLON_COLON, + anon_sym_POUND_QMARK, ACTIONS(35), 1, - anon_sym_POUND_SQUOTE, + anon_sym_POUND_QMARK_AT, ACTIONS(37), 1, - anon_sym_POUND_POUND, + anon_sym_POUND_SQUOTE, ACTIONS(39), 1, - anon_sym_POUND_EQ, + anon_sym_POUND_POUND, ACTIONS(41), 1, - anon_sym_AT, + anon_sym_POUND_EQ, ACTIONS(43), 1, - anon_sym_SQUOTE, + anon_sym_AT, ACTIONS(45), 1, - anon_sym_BQUOTE, + anon_sym_SQUOTE, ACTIONS(47), 1, - anon_sym_COMMA_AT, + anon_sym_BQUOTE, ACTIONS(49), 1, - anon_sym_COMMA, + anon_sym_COMMA_AT, ACTIONS(51), 1, - anon_sym_COLON, + anon_sym_COMMA, ACTIONS(55), 1, anon_sym_POUNDC, - STATE(815), 1, + STATE(780), 1, sym_sym_lit, - STATE(838), 1, + STATE(786), 1, sym__bare_vec_lit, - STATE(841), 1, + STATE(884), 1, sym__bare_set_lit, - STATE(930), 1, + STATE(892), 1, aux_sym_dis_expr_repeat1, - STATE(1047), 1, + STATE(1033), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1909), 1, + STATE(1863), 1, sym_dotted_sym_lit, ACTIONS(53), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(646), 2, + ACTIONS(650), 2, sym__ws, sym_comment, - ACTIONS(756), 2, + ACTIONS(1120), 2, sym_num_lit, sym_char_lit, - ACTIONS(758), 2, + ACTIONS(1122), 2, sym_nil_lit, sym_fancy_literal, - STATE(942), 2, + STATE(898), 2, sym__gap, sym_dis_expr, - STATE(842), 3, + STATE(787), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(894), 18, + STATE(806), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -23593,90 +23544,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [23375] = 38, + [23398] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(13), 1, - aux_sym_str_lit_token1, + anon_sym_COLON, + ACTIONS(15), 1, + anon_sym_COLON_COLON, ACTIONS(17), 1, - aux_sym_sym_lit_token1, - ACTIONS(19), 1, - anon_sym_CARET, + aux_sym_str_lit_token1, ACTIONS(21), 1, - anon_sym_POUND_CARET, + aux_sym_sym_lit_token1, ACTIONS(23), 1, - anon_sym_LPAREN, + anon_sym_CARET, ACTIONS(25), 1, - anon_sym_POUND0A, + anon_sym_POUND_CARET, ACTIONS(27), 1, - anon_sym_POUND, + anon_sym_LPAREN, ACTIONS(29), 1, - anon_sym_POUND_QMARK, + anon_sym_POUND0A, ACTIONS(31), 1, - anon_sym_POUND_QMARK_AT, + anon_sym_POUND, ACTIONS(33), 1, - anon_sym_COLON_COLON, + anon_sym_POUND_QMARK, ACTIONS(35), 1, - anon_sym_POUND_SQUOTE, + anon_sym_POUND_QMARK_AT, ACTIONS(37), 1, - anon_sym_POUND_POUND, + anon_sym_POUND_SQUOTE, ACTIONS(39), 1, - anon_sym_POUND_EQ, + anon_sym_POUND_POUND, ACTIONS(41), 1, - anon_sym_AT, + anon_sym_POUND_EQ, ACTIONS(43), 1, - anon_sym_SQUOTE, + anon_sym_AT, ACTIONS(45), 1, - anon_sym_BQUOTE, + anon_sym_SQUOTE, ACTIONS(47), 1, - anon_sym_COMMA_AT, + anon_sym_BQUOTE, ACTIONS(49), 1, - anon_sym_COMMA, + anon_sym_COMMA_AT, ACTIONS(51), 1, - anon_sym_COLON, + anon_sym_COMMA, ACTIONS(55), 1, anon_sym_POUNDC, STATE(228), 1, aux_sym_dis_expr_repeat1, - STATE(815), 1, + STATE(780), 1, sym_sym_lit, - STATE(838), 1, + STATE(786), 1, sym__bare_vec_lit, - STATE(841), 1, + STATE(884), 1, sym__bare_set_lit, - STATE(1047), 1, + STATE(1033), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1909), 1, + STATE(1863), 1, sym_dotted_sym_lit, ACTIONS(53), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(646), 2, + ACTIONS(650), 2, sym__ws, sym_comment, - ACTIONS(748), 2, + ACTIONS(1124), 2, sym_num_lit, sym_char_lit, - ACTIONS(750), 2, + ACTIONS(1126), 2, sym_nil_lit, sym_fancy_literal, - STATE(942), 2, + STATE(898), 2, sym__gap, sym_dis_expr, - STATE(842), 3, + STATE(787), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(895), 18, + STATE(807), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -23694,90 +23646,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [23514] = 38, + [23538] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(13), 1, - aux_sym_str_lit_token1, + anon_sym_COLON, + ACTIONS(15), 1, + anon_sym_COLON_COLON, ACTIONS(17), 1, - aux_sym_sym_lit_token1, - ACTIONS(19), 1, - anon_sym_CARET, + aux_sym_str_lit_token1, ACTIONS(21), 1, - anon_sym_POUND_CARET, + aux_sym_sym_lit_token1, ACTIONS(23), 1, - anon_sym_LPAREN, + anon_sym_CARET, ACTIONS(25), 1, - anon_sym_POUND0A, + anon_sym_POUND_CARET, ACTIONS(27), 1, - anon_sym_POUND, + anon_sym_LPAREN, ACTIONS(29), 1, - anon_sym_POUND_QMARK, + anon_sym_POUND0A, ACTIONS(31), 1, - anon_sym_POUND_QMARK_AT, + anon_sym_POUND, ACTIONS(33), 1, - anon_sym_COLON_COLON, + anon_sym_POUND_QMARK, ACTIONS(35), 1, - anon_sym_POUND_SQUOTE, + anon_sym_POUND_QMARK_AT, ACTIONS(37), 1, - anon_sym_POUND_POUND, + anon_sym_POUND_SQUOTE, ACTIONS(39), 1, - anon_sym_POUND_EQ, + anon_sym_POUND_POUND, ACTIONS(41), 1, - anon_sym_AT, + anon_sym_POUND_EQ, ACTIONS(43), 1, - anon_sym_SQUOTE, + anon_sym_AT, ACTIONS(45), 1, - anon_sym_BQUOTE, + anon_sym_SQUOTE, ACTIONS(47), 1, - anon_sym_COMMA_AT, + anon_sym_BQUOTE, ACTIONS(49), 1, - anon_sym_COMMA, + anon_sym_COMMA_AT, ACTIONS(51), 1, - anon_sym_COLON, + anon_sym_COMMA, ACTIONS(55), 1, anon_sym_POUNDC, - STATE(815), 1, + STATE(780), 1, sym_sym_lit, - STATE(838), 1, + STATE(786), 1, sym__bare_vec_lit, - STATE(841), 1, + STATE(884), 1, sym__bare_set_lit, - STATE(930), 1, + STATE(892), 1, aux_sym_dis_expr_repeat1, - STATE(1047), 1, + STATE(1033), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1909), 1, + STATE(1863), 1, sym_dotted_sym_lit, ACTIONS(53), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(646), 2, + ACTIONS(650), 2, sym__ws, sym_comment, - ACTIONS(1080), 2, + ACTIONS(1128), 2, sym_num_lit, sym_char_lit, - ACTIONS(1082), 2, + ACTIONS(1130), 2, sym_nil_lit, sym_fancy_literal, - STATE(942), 2, + STATE(898), 2, sym__gap, sym_dis_expr, - STATE(842), 3, + STATE(787), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(229), 18, + STATE(229), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -23795,90 +23748,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [23653] = 38, + [23678] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(13), 1, - aux_sym_str_lit_token1, + anon_sym_COLON, + ACTIONS(15), 1, + anon_sym_COLON_COLON, ACTIONS(17), 1, - aux_sym_sym_lit_token1, - ACTIONS(19), 1, - anon_sym_CARET, + aux_sym_str_lit_token1, ACTIONS(21), 1, - anon_sym_POUND_CARET, + aux_sym_sym_lit_token1, ACTIONS(23), 1, - anon_sym_LPAREN, + anon_sym_CARET, ACTIONS(25), 1, - anon_sym_POUND0A, + anon_sym_POUND_CARET, ACTIONS(27), 1, - anon_sym_POUND, + anon_sym_LPAREN, ACTIONS(29), 1, - anon_sym_POUND_QMARK, + anon_sym_POUND0A, ACTIONS(31), 1, - anon_sym_POUND_QMARK_AT, + anon_sym_POUND, ACTIONS(33), 1, - anon_sym_COLON_COLON, + anon_sym_POUND_QMARK, ACTIONS(35), 1, - anon_sym_POUND_SQUOTE, + anon_sym_POUND_QMARK_AT, ACTIONS(37), 1, - anon_sym_POUND_POUND, + anon_sym_POUND_SQUOTE, ACTIONS(39), 1, - anon_sym_POUND_EQ, + anon_sym_POUND_POUND, ACTIONS(41), 1, - anon_sym_AT, + anon_sym_POUND_EQ, ACTIONS(43), 1, - anon_sym_SQUOTE, + anon_sym_AT, ACTIONS(45), 1, - anon_sym_BQUOTE, + anon_sym_SQUOTE, ACTIONS(47), 1, - anon_sym_COMMA_AT, + anon_sym_BQUOTE, ACTIONS(49), 1, - anon_sym_COMMA, + anon_sym_COMMA_AT, ACTIONS(51), 1, - anon_sym_COLON, + anon_sym_COMMA, ACTIONS(55), 1, anon_sym_POUNDC, STATE(231), 1, aux_sym_dis_expr_repeat1, - STATE(815), 1, + STATE(780), 1, sym_sym_lit, - STATE(838), 1, + STATE(786), 1, sym__bare_vec_lit, - STATE(841), 1, + STATE(884), 1, sym__bare_set_lit, - STATE(1047), 1, + STATE(1033), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1909), 1, + STATE(1863), 1, sym_dotted_sym_lit, ACTIONS(53), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(646), 2, + ACTIONS(650), 2, sym__ws, sym_comment, - ACTIONS(744), 2, + ACTIONS(1132), 2, sym_num_lit, sym_char_lit, - ACTIONS(746), 2, + ACTIONS(1134), 2, sym_nil_lit, sym_fancy_literal, - STATE(942), 2, + STATE(898), 2, sym__gap, sym_dis_expr, - STATE(842), 3, + STATE(787), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(896), 18, + STATE(808), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -23896,90 +23850,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [23792] = 38, + [23818] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(13), 1, - aux_sym_str_lit_token1, + anon_sym_COLON, + ACTIONS(15), 1, + anon_sym_COLON_COLON, ACTIONS(17), 1, - aux_sym_sym_lit_token1, - ACTIONS(19), 1, - anon_sym_CARET, + aux_sym_str_lit_token1, ACTIONS(21), 1, - anon_sym_POUND_CARET, + aux_sym_sym_lit_token1, ACTIONS(23), 1, - anon_sym_LPAREN, + anon_sym_CARET, ACTIONS(25), 1, - anon_sym_POUND0A, + anon_sym_POUND_CARET, ACTIONS(27), 1, - anon_sym_POUND, + anon_sym_LPAREN, ACTIONS(29), 1, - anon_sym_POUND_QMARK, + anon_sym_POUND0A, ACTIONS(31), 1, - anon_sym_POUND_QMARK_AT, + anon_sym_POUND, ACTIONS(33), 1, - anon_sym_COLON_COLON, + anon_sym_POUND_QMARK, ACTIONS(35), 1, - anon_sym_POUND_SQUOTE, + anon_sym_POUND_QMARK_AT, ACTIONS(37), 1, - anon_sym_POUND_POUND, + anon_sym_POUND_SQUOTE, ACTIONS(39), 1, - anon_sym_POUND_EQ, + anon_sym_POUND_POUND, ACTIONS(41), 1, - anon_sym_AT, + anon_sym_POUND_EQ, ACTIONS(43), 1, - anon_sym_SQUOTE, + anon_sym_AT, ACTIONS(45), 1, - anon_sym_BQUOTE, + anon_sym_SQUOTE, ACTIONS(47), 1, - anon_sym_COMMA_AT, + anon_sym_BQUOTE, ACTIONS(49), 1, - anon_sym_COMMA, + anon_sym_COMMA_AT, ACTIONS(51), 1, - anon_sym_COLON, + anon_sym_COMMA, ACTIONS(55), 1, anon_sym_POUNDC, - STATE(815), 1, + STATE(780), 1, sym_sym_lit, - STATE(838), 1, + STATE(786), 1, sym__bare_vec_lit, - STATE(841), 1, + STATE(884), 1, sym__bare_set_lit, - STATE(930), 1, + STATE(892), 1, aux_sym_dis_expr_repeat1, - STATE(1047), 1, + STATE(1033), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1909), 1, + STATE(1863), 1, sym_dotted_sym_lit, ACTIONS(53), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(646), 2, + ACTIONS(650), 2, sym__ws, sym_comment, - ACTIONS(1084), 2, + ACTIONS(1136), 2, sym_num_lit, sym_char_lit, - ACTIONS(1086), 2, + ACTIONS(1138), 2, sym_nil_lit, sym_fancy_literal, - STATE(942), 2, + STATE(898), 2, sym__gap, sym_dis_expr, - STATE(842), 3, + STATE(787), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(232), 18, + STATE(232), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -23997,90 +23952,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [23931] = 38, + [23958] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(13), 1, - aux_sym_str_lit_token1, - ACTIONS(17), 1, - aux_sym_sym_lit_token1, - ACTIONS(19), 1, - anon_sym_CARET, - ACTIONS(21), 1, - anon_sym_POUND_CARET, ACTIONS(23), 1, - anon_sym_LPAREN, + anon_sym_CARET, ACTIONS(25), 1, + anon_sym_POUND_CARET, + ACTIONS(140), 1, + anon_sym_COLON, + ACTIONS(142), 1, + anon_sym_COLON_COLON, + ACTIONS(144), 1, + aux_sym_str_lit_token1, + ACTIONS(148), 1, + aux_sym_sym_lit_token1, + ACTIONS(150), 1, anon_sym_POUND0A, - ACTIONS(27), 1, + ACTIONS(152), 1, anon_sym_POUND, - ACTIONS(29), 1, + ACTIONS(154), 1, anon_sym_POUND_QMARK, - ACTIONS(31), 1, + ACTIONS(156), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(158), 1, + anon_sym_POUND_SQUOTE, + ACTIONS(160), 1, anon_sym_POUND_POUND, - ACTIONS(39), 1, + ACTIONS(162), 1, anon_sym_POUND_EQ, - ACTIONS(45), 1, - anon_sym_BQUOTE, - ACTIONS(55), 1, - anon_sym_POUNDC, - ACTIONS(652), 1, - anon_sym_COLON_COLON, - ACTIONS(654), 1, - anon_sym_POUND_SQUOTE, - ACTIONS(656), 1, + ACTIONS(164), 1, anon_sym_AT, - ACTIONS(658), 1, + ACTIONS(166), 1, anon_sym_SQUOTE, - ACTIONS(660), 1, + ACTIONS(168), 1, + anon_sym_BQUOTE, + ACTIONS(170), 1, anon_sym_COMMA_AT, - ACTIONS(662), 1, + ACTIONS(172), 1, anon_sym_COMMA, - ACTIONS(664), 1, - anon_sym_COLON, - STATE(817), 1, + ACTIONS(178), 1, + anon_sym_POUNDC, + ACTIONS(413), 1, + anon_sym_LPAREN, + STATE(152), 1, + aux_sym_dis_expr_repeat1, + STATE(404), 1, sym_sym_lit, - STATE(838), 1, + STATE(487), 1, sym__bare_vec_lit, - STATE(841), 1, + STATE(488), 1, sym__bare_set_lit, - STATE(930), 1, - aux_sym_dis_expr_repeat1, - STATE(999), 1, + STATE(981), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1908), 1, + STATE(1866), 1, sym_dotted_sym_lit, - ACTIONS(646), 2, - sym__ws, - sym_comment, - ACTIONS(666), 2, + ACTIONS(176), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(700), 2, + ACTIONS(411), 2, + sym__ws, + sym_comment, + ACTIONS(1140), 2, sym_num_lit, sym_char_lit, - ACTIONS(702), 2, + ACTIONS(1142), 2, sym_nil_lit, sym_fancy_literal, - STATE(942), 2, + STATE(903), 2, sym__gap, sym_dis_expr, - STATE(842), 3, + STATE(486), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(858), 18, + STATE(413), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -24098,90 +24054,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [24070] = 38, + [24098] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(13), 1, - aux_sym_str_lit_token1, + anon_sym_COLON, + ACTIONS(15), 1, + anon_sym_COLON_COLON, ACTIONS(17), 1, + aux_sym_str_lit_token1, + ACTIONS(21), 1, aux_sym_sym_lit_token1, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(23), 1, + ACTIONS(27), 1, anon_sym_LPAREN, - ACTIONS(25), 1, + ACTIONS(29), 1, anon_sym_POUND0A, - ACTIONS(27), 1, + ACTIONS(31), 1, anon_sym_POUND, - ACTIONS(29), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(31), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, ACTIONS(37), 1, - anon_sym_POUND_POUND, + anon_sym_POUND_SQUOTE, ACTIONS(39), 1, + anon_sym_POUND_POUND, + ACTIONS(41), 1, anon_sym_POUND_EQ, - ACTIONS(45), 1, - anon_sym_BQUOTE, - ACTIONS(55), 1, - anon_sym_POUNDC, - ACTIONS(652), 1, - anon_sym_COLON_COLON, - ACTIONS(654), 1, - anon_sym_POUND_SQUOTE, - ACTIONS(656), 1, + ACTIONS(43), 1, anon_sym_AT, - ACTIONS(658), 1, + ACTIONS(45), 1, anon_sym_SQUOTE, - ACTIONS(660), 1, + ACTIONS(47), 1, + anon_sym_BQUOTE, + ACTIONS(49), 1, anon_sym_COMMA_AT, - ACTIONS(662), 1, + ACTIONS(51), 1, anon_sym_COMMA, - ACTIONS(664), 1, - anon_sym_COLON, - STATE(817), 1, + ACTIONS(55), 1, + anon_sym_POUNDC, + STATE(308), 1, + aux_sym_dis_expr_repeat1, + STATE(780), 1, sym_sym_lit, - STATE(838), 1, + STATE(786), 1, sym__bare_vec_lit, - STATE(841), 1, + STATE(884), 1, sym__bare_set_lit, - STATE(930), 1, - aux_sym_dis_expr_repeat1, - STATE(999), 1, + STATE(1033), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1908), 1, + STATE(1863), 1, sym_dotted_sym_lit, - ACTIONS(646), 2, - sym__ws, - sym_comment, - ACTIONS(666), 2, + ACTIONS(53), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(672), 2, + ACTIONS(650), 2, + sym__ws, + sym_comment, + ACTIONS(1144), 2, sym_num_lit, sym_char_lit, - ACTIONS(674), 2, + ACTIONS(1146), 2, sym_nil_lit, sym_fancy_literal, - STATE(942), 2, + STATE(898), 2, sym__gap, sym_dis_expr, - STATE(842), 3, + STATE(787), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(855), 18, + STATE(882), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -24199,90 +24156,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [24209] = 38, + [24238] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(832), 1, + ACTIONS(610), 1, + anon_sym_COLON, + ACTIONS(612), 1, + anon_sym_COLON_COLON, + ACTIONS(614), 1, aux_sym_str_lit_token1, - ACTIONS(836), 1, + ACTIONS(618), 1, aux_sym_sym_lit_token1, - ACTIONS(838), 1, + ACTIONS(620), 1, anon_sym_LPAREN, - ACTIONS(840), 1, + ACTIONS(622), 1, anon_sym_POUND0A, - ACTIONS(842), 1, + ACTIONS(624), 1, anon_sym_POUND, - ACTIONS(844), 1, + ACTIONS(626), 1, anon_sym_POUND_QMARK, - ACTIONS(846), 1, + ACTIONS(628), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(848), 1, - anon_sym_COLON_COLON, - ACTIONS(850), 1, + ACTIONS(630), 1, anon_sym_POUND_SQUOTE, - ACTIONS(852), 1, + ACTIONS(632), 1, anon_sym_POUND_POUND, - ACTIONS(854), 1, + ACTIONS(634), 1, anon_sym_POUND_EQ, - ACTIONS(856), 1, + ACTIONS(636), 1, anon_sym_AT, - ACTIONS(858), 1, + ACTIONS(638), 1, anon_sym_SQUOTE, - ACTIONS(860), 1, + ACTIONS(640), 1, anon_sym_BQUOTE, - ACTIONS(862), 1, + ACTIONS(642), 1, anon_sym_COMMA_AT, - ACTIONS(864), 1, + ACTIONS(644), 1, anon_sym_COMMA, - ACTIONS(866), 1, - anon_sym_COLON, - ACTIONS(870), 1, + ACTIONS(648), 1, anon_sym_POUNDC, - STATE(930), 1, + STATE(545), 1, + sym_sym_lit, + STATE(688), 1, + sym__bare_vec_lit, + STATE(691), 1, + sym__bare_set_lit, + STATE(892), 1, aux_sym_dis_expr_repeat1, - STATE(992), 1, + STATE(1013), 1, aux_sym_sym_lit_repeat1, - STATE(1076), 1, - sym_sym_lit, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1108), 1, - sym__bare_set_lit, - STATE(1109), 1, - sym__bare_vec_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1910), 1, + STATE(1862), 1, sym_dotted_sym_lit, - ACTIONS(828), 2, + ACTIONS(606), 2, sym__ws, sym_comment, - ACTIONS(868), 2, + ACTIONS(646), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1088), 2, + ACTIONS(1148), 2, sym_num_lit, sym_char_lit, - ACTIONS(1090), 2, + ACTIONS(1150), 2, sym_nil_lit, sym_fancy_literal, - STATE(943), 2, + STATE(896), 2, sym__gap, sym_dis_expr, - STATE(1110), 3, + STATE(687), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1179), 18, + STATE(568), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -24300,90 +24258,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [24348] = 38, + [24378] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(606), 1, + ACTIONS(518), 1, + anon_sym_COLON, + ACTIONS(520), 1, + anon_sym_COLON_COLON, + ACTIONS(522), 1, aux_sym_str_lit_token1, - ACTIONS(610), 1, + ACTIONS(526), 1, aux_sym_sym_lit_token1, - ACTIONS(612), 1, + ACTIONS(528), 1, anon_sym_LPAREN, - ACTIONS(614), 1, + ACTIONS(530), 1, anon_sym_POUND0A, - ACTIONS(616), 1, + ACTIONS(532), 1, anon_sym_POUND, - ACTIONS(618), 1, + ACTIONS(534), 1, anon_sym_POUND_QMARK, - ACTIONS(620), 1, + ACTIONS(536), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(622), 1, - anon_sym_COLON_COLON, - ACTIONS(624), 1, + ACTIONS(538), 1, anon_sym_POUND_SQUOTE, - ACTIONS(626), 1, + ACTIONS(540), 1, anon_sym_POUND_POUND, - ACTIONS(628), 1, + ACTIONS(542), 1, anon_sym_POUND_EQ, - ACTIONS(630), 1, + ACTIONS(544), 1, anon_sym_AT, - ACTIONS(632), 1, + ACTIONS(546), 1, anon_sym_SQUOTE, - ACTIONS(634), 1, + ACTIONS(548), 1, anon_sym_BQUOTE, - ACTIONS(636), 1, + ACTIONS(550), 1, anon_sym_COMMA_AT, - ACTIONS(638), 1, + ACTIONS(552), 1, anon_sym_COMMA, - ACTIONS(640), 1, - anon_sym_COLON, - ACTIONS(644), 1, + ACTIONS(556), 1, anon_sym_POUNDC, - ACTIONS(1094), 1, + ACTIONS(1154), 1, anon_sym_DOT, - STATE(949), 1, + STATE(909), 1, sym_sym_lit, - STATE(963), 1, + STATE(922), 1, sym__bare_set_lit, - STATE(964), 1, + STATE(931), 1, sym__bare_vec_lit, - STATE(967), 1, + STATE(936), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1911), 1, + STATE(1865), 1, sym_dotted_sym_lit, - ACTIONS(642), 2, + ACTIONS(554), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1092), 2, + ACTIONS(1152), 2, sym__ws, sym_comment, - ACTIONS(1096), 2, + ACTIONS(1156), 2, sym_num_lit, sym_char_lit, - ACTIONS(1098), 2, + ACTIONS(1158), 2, sym_nil_lit, sym_fancy_literal, - STATE(1917), 2, + STATE(1872), 2, sym__gap, sym_dis_expr, - STATE(965), 3, + STATE(930), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(958), 18, + STATE(919), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -24401,90 +24360,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [24487] = 38, + [24518] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(13), 1, - aux_sym_str_lit_token1, - ACTIONS(17), 1, - aux_sym_sym_lit_token1, - ACTIONS(19), 1, - anon_sym_CARET, - ACTIONS(21), 1, - anon_sym_POUND_CARET, ACTIONS(23), 1, - anon_sym_LPAREN, + anon_sym_CARET, ACTIONS(25), 1, + anon_sym_POUND_CARET, + ACTIONS(140), 1, + anon_sym_COLON, + ACTIONS(142), 1, + anon_sym_COLON_COLON, + ACTIONS(144), 1, + aux_sym_str_lit_token1, + ACTIONS(148), 1, + aux_sym_sym_lit_token1, + ACTIONS(150), 1, anon_sym_POUND0A, - ACTIONS(27), 1, + ACTIONS(152), 1, anon_sym_POUND, - ACTIONS(29), 1, + ACTIONS(154), 1, anon_sym_POUND_QMARK, - ACTIONS(31), 1, + ACTIONS(156), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(33), 1, - anon_sym_COLON_COLON, - ACTIONS(35), 1, + ACTIONS(158), 1, anon_sym_POUND_SQUOTE, - ACTIONS(37), 1, + ACTIONS(160), 1, anon_sym_POUND_POUND, - ACTIONS(39), 1, + ACTIONS(162), 1, anon_sym_POUND_EQ, - ACTIONS(41), 1, + ACTIONS(164), 1, anon_sym_AT, - ACTIONS(43), 1, + ACTIONS(166), 1, anon_sym_SQUOTE, - ACTIONS(45), 1, + ACTIONS(168), 1, anon_sym_BQUOTE, - ACTIONS(47), 1, + ACTIONS(170), 1, anon_sym_COMMA_AT, - ACTIONS(49), 1, + ACTIONS(172), 1, anon_sym_COMMA, - ACTIONS(51), 1, - anon_sym_COLON, - ACTIONS(55), 1, + ACTIONS(178), 1, anon_sym_POUNDC, - STATE(815), 1, + ACTIONS(413), 1, + anon_sym_LPAREN, + STATE(404), 1, sym_sym_lit, - STATE(838), 1, + STATE(487), 1, sym__bare_vec_lit, - STATE(841), 1, + STATE(488), 1, sym__bare_set_lit, - STATE(930), 1, + STATE(892), 1, aux_sym_dis_expr_repeat1, - STATE(1047), 1, + STATE(981), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1909), 1, + STATE(1866), 1, sym_dotted_sym_lit, - ACTIONS(53), 2, + ACTIONS(176), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(646), 2, + ACTIONS(411), 2, sym__ws, sym_comment, - ACTIONS(1100), 2, + ACTIONS(1160), 2, sym_num_lit, sym_char_lit, - ACTIONS(1102), 2, + ACTIONS(1162), 2, sym_nil_lit, sym_fancy_literal, - STATE(942), 2, + STATE(903), 2, sym__gap, sym_dis_expr, - STATE(842), 3, + STATE(486), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(73), 18, + STATE(460), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -24502,90 +24462,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [24626] = 38, + [24658] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(1106), 1, + ACTIONS(1166), 1, anon_sym_DOT, - ACTIONS(1110), 1, + ACTIONS(1170), 1, + anon_sym_COLON, + ACTIONS(1172), 1, + anon_sym_COLON_COLON, + ACTIONS(1174), 1, aux_sym_str_lit_token1, - ACTIONS(1114), 1, + ACTIONS(1178), 1, aux_sym_sym_lit_token1, - ACTIONS(1116), 1, + ACTIONS(1180), 1, anon_sym_LPAREN, - ACTIONS(1118), 1, + ACTIONS(1182), 1, anon_sym_POUND0A, - ACTIONS(1120), 1, + ACTIONS(1184), 1, anon_sym_POUND, - ACTIONS(1122), 1, + ACTIONS(1186), 1, anon_sym_POUND_QMARK, - ACTIONS(1124), 1, + ACTIONS(1188), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(1126), 1, - anon_sym_COLON_COLON, - ACTIONS(1128), 1, + ACTIONS(1190), 1, anon_sym_POUND_SQUOTE, - ACTIONS(1130), 1, + ACTIONS(1192), 1, anon_sym_POUND_POUND, - ACTIONS(1132), 1, + ACTIONS(1194), 1, anon_sym_POUND_EQ, - ACTIONS(1134), 1, + ACTIONS(1196), 1, anon_sym_AT, - ACTIONS(1136), 1, + ACTIONS(1198), 1, anon_sym_SQUOTE, - ACTIONS(1138), 1, + ACTIONS(1200), 1, anon_sym_BQUOTE, - ACTIONS(1140), 1, + ACTIONS(1202), 1, anon_sym_COMMA_AT, - ACTIONS(1142), 1, + ACTIONS(1204), 1, anon_sym_COMMA, - ACTIONS(1144), 1, - anon_sym_COLON, - ACTIONS(1148), 1, + ACTIONS(1208), 1, anon_sym_POUNDC, - STATE(1067), 1, + STATE(950), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1165), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1173), 1, sym_sym_lit, - STATE(1318), 1, + STATE(1226), 1, sym__bare_set_lit, - STATE(1320), 1, + STATE(1230), 1, sym__bare_vec_lit, - STATE(1369), 1, + STATE(1337), 1, sym__metadata_lit, - STATE(1904), 1, + STATE(1864), 1, sym_dotted_sym_lit, - ACTIONS(1104), 2, + ACTIONS(1164), 2, sym__ws, sym_comment, - ACTIONS(1108), 2, + ACTIONS(1168), 2, sym_num_lit, sym_char_lit, - ACTIONS(1112), 2, + ACTIONS(1176), 2, sym_nil_lit, sym_fancy_literal, - ACTIONS(1146), 2, + ACTIONS(1206), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - STATE(1922), 2, + STATE(1882), 2, sym__gap, sym_dis_expr, - STATE(1323), 3, + STATE(1231), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1089), 18, + STATE(1059), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -24603,90 +24564,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [24765] = 38, + [24798] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(19), 1, - anon_sym_CARET, - ACTIONS(21), 1, - anon_sym_POUND_CARET, - ACTIONS(606), 1, + ACTIONS(13), 1, + anon_sym_COLON, + ACTIONS(15), 1, + anon_sym_COLON_COLON, + ACTIONS(17), 1, aux_sym_str_lit_token1, - ACTIONS(610), 1, + ACTIONS(21), 1, aux_sym_sym_lit_token1, - ACTIONS(612), 1, + ACTIONS(23), 1, + anon_sym_CARET, + ACTIONS(25), 1, + anon_sym_POUND_CARET, + ACTIONS(27), 1, anon_sym_LPAREN, - ACTIONS(614), 1, + ACTIONS(29), 1, anon_sym_POUND0A, - ACTIONS(616), 1, + ACTIONS(31), 1, anon_sym_POUND, - ACTIONS(618), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(620), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(622), 1, - anon_sym_COLON_COLON, - ACTIONS(624), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(626), 1, + ACTIONS(39), 1, anon_sym_POUND_POUND, - ACTIONS(628), 1, + ACTIONS(41), 1, anon_sym_POUND_EQ, - ACTIONS(630), 1, + ACTIONS(43), 1, anon_sym_AT, - ACTIONS(632), 1, + ACTIONS(45), 1, anon_sym_SQUOTE, - ACTIONS(634), 1, + ACTIONS(47), 1, anon_sym_BQUOTE, - ACTIONS(636), 1, + ACTIONS(49), 1, anon_sym_COMMA_AT, - ACTIONS(638), 1, + ACTIONS(51), 1, anon_sym_COMMA, - ACTIONS(640), 1, - anon_sym_COLON, - ACTIONS(644), 1, + ACTIONS(55), 1, anon_sym_POUNDC, - STATE(930), 1, - aux_sym_dis_expr_repeat1, - STATE(949), 1, + STATE(780), 1, sym_sym_lit, - STATE(963), 1, - sym__bare_set_lit, - STATE(964), 1, + STATE(786), 1, sym__bare_vec_lit, - STATE(967), 1, + STATE(884), 1, + sym__bare_set_lit, + STATE(892), 1, + aux_sym_dis_expr_repeat1, + STATE(1033), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1911), 1, + STATE(1863), 1, sym_dotted_sym_lit, - ACTIONS(602), 2, - sym__ws, - sym_comment, - ACTIONS(642), 2, + ACTIONS(53), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1150), 2, + ACTIONS(650), 2, + sym__ws, + sym_comment, + ACTIONS(1210), 2, sym_num_lit, sym_char_lit, - ACTIONS(1152), 2, + ACTIONS(1212), 2, sym_nil_lit, sym_fancy_literal, - STATE(944), 2, + STATE(898), 2, sym__gap, sym_dis_expr, - STATE(965), 3, + STATE(787), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1016), 18, + STATE(292), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -24704,90 +24666,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [24904] = 38, + [24938] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(606), 1, + ACTIONS(518), 1, + anon_sym_COLON, + ACTIONS(520), 1, + anon_sym_COLON_COLON, + ACTIONS(522), 1, aux_sym_str_lit_token1, - ACTIONS(610), 1, + ACTIONS(526), 1, aux_sym_sym_lit_token1, - ACTIONS(612), 1, + ACTIONS(528), 1, anon_sym_LPAREN, - ACTIONS(614), 1, + ACTIONS(530), 1, anon_sym_POUND0A, - ACTIONS(616), 1, + ACTIONS(532), 1, anon_sym_POUND, - ACTIONS(618), 1, + ACTIONS(534), 1, anon_sym_POUND_QMARK, - ACTIONS(620), 1, + ACTIONS(536), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(622), 1, - anon_sym_COLON_COLON, - ACTIONS(624), 1, + ACTIONS(538), 1, anon_sym_POUND_SQUOTE, - ACTIONS(626), 1, + ACTIONS(540), 1, anon_sym_POUND_POUND, - ACTIONS(628), 1, + ACTIONS(542), 1, anon_sym_POUND_EQ, - ACTIONS(630), 1, + ACTIONS(544), 1, anon_sym_AT, - ACTIONS(632), 1, + ACTIONS(546), 1, anon_sym_SQUOTE, - ACTIONS(634), 1, + ACTIONS(548), 1, anon_sym_BQUOTE, - ACTIONS(636), 1, + ACTIONS(550), 1, anon_sym_COMMA_AT, - ACTIONS(638), 1, + ACTIONS(552), 1, anon_sym_COMMA, - ACTIONS(640), 1, - anon_sym_COLON, - ACTIONS(644), 1, + ACTIONS(556), 1, anon_sym_POUNDC, - ACTIONS(1094), 1, + ACTIONS(1154), 1, anon_sym_DOT, - STATE(949), 1, + STATE(909), 1, sym_sym_lit, - STATE(963), 1, + STATE(922), 1, sym__bare_set_lit, - STATE(964), 1, + STATE(931), 1, sym__bare_vec_lit, - STATE(967), 1, + STATE(936), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1911), 1, + STATE(1865), 1, sym_dotted_sym_lit, - ACTIONS(642), 2, + ACTIONS(554), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1092), 2, + ACTIONS(1152), 2, sym__ws, sym_comment, - ACTIONS(1154), 2, + ACTIONS(1214), 2, sym_num_lit, sym_char_lit, - ACTIONS(1156), 2, + ACTIONS(1216), 2, sym_nil_lit, sym_fancy_literal, - STATE(1917), 2, + STATE(1872), 2, sym__gap, sym_dis_expr, - STATE(965), 3, + STATE(930), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1884), 18, + STATE(1834), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -24805,90 +24768,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [25043] = 38, + [25078] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(13), 1, - aux_sym_str_lit_token1, + anon_sym_COLON, + ACTIONS(15), 1, + anon_sym_COLON_COLON, ACTIONS(17), 1, - aux_sym_sym_lit_token1, - ACTIONS(19), 1, - anon_sym_CARET, + aux_sym_str_lit_token1, ACTIONS(21), 1, - anon_sym_POUND_CARET, + aux_sym_sym_lit_token1, ACTIONS(23), 1, - anon_sym_LPAREN, + anon_sym_CARET, ACTIONS(25), 1, - anon_sym_POUND0A, + anon_sym_POUND_CARET, ACTIONS(27), 1, - anon_sym_POUND, + anon_sym_LPAREN, ACTIONS(29), 1, - anon_sym_POUND_QMARK, + anon_sym_POUND0A, ACTIONS(31), 1, - anon_sym_POUND_QMARK_AT, + anon_sym_POUND, ACTIONS(33), 1, - anon_sym_COLON_COLON, + anon_sym_POUND_QMARK, ACTIONS(35), 1, - anon_sym_POUND_SQUOTE, + anon_sym_POUND_QMARK_AT, ACTIONS(37), 1, - anon_sym_POUND_POUND, + anon_sym_POUND_SQUOTE, ACTIONS(39), 1, - anon_sym_POUND_EQ, + anon_sym_POUND_POUND, ACTIONS(41), 1, - anon_sym_AT, + anon_sym_POUND_EQ, ACTIONS(43), 1, - anon_sym_SQUOTE, + anon_sym_AT, ACTIONS(45), 1, - anon_sym_BQUOTE, + anon_sym_SQUOTE, ACTIONS(47), 1, - anon_sym_COMMA_AT, + anon_sym_BQUOTE, ACTIONS(49), 1, - anon_sym_COMMA, + anon_sym_COMMA_AT, ACTIONS(51), 1, - anon_sym_COLON, + anon_sym_COMMA, ACTIONS(55), 1, anon_sym_POUNDC, - STATE(815), 1, + STATE(780), 1, sym_sym_lit, - STATE(838), 1, + STATE(786), 1, sym__bare_vec_lit, - STATE(841), 1, + STATE(884), 1, sym__bare_set_lit, - STATE(930), 1, + STATE(892), 1, aux_sym_dis_expr_repeat1, - STATE(1047), 1, + STATE(1033), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1909), 1, + STATE(1863), 1, sym_dotted_sym_lit, ACTIONS(53), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(646), 2, + ACTIONS(650), 2, sym__ws, sym_comment, - ACTIONS(1158), 2, + ACTIONS(1218), 2, sym_num_lit, sym_char_lit, - ACTIONS(1160), 2, + ACTIONS(1220), 2, sym_nil_lit, sym_fancy_literal, - STATE(942), 2, + STATE(898), 2, sym__gap, sym_dis_expr, - STATE(842), 3, + STATE(787), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(136), 18, + STATE(300), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -24906,90 +24870,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [25182] = 38, + [25218] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(13), 1, - aux_sym_str_lit_token1, - ACTIONS(17), 1, - aux_sym_sym_lit_token1, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(23), 1, + ACTIONS(610), 1, + anon_sym_COLON, + ACTIONS(612), 1, + anon_sym_COLON_COLON, + ACTIONS(614), 1, + aux_sym_str_lit_token1, + ACTIONS(618), 1, + aux_sym_sym_lit_token1, + ACTIONS(620), 1, anon_sym_LPAREN, - ACTIONS(25), 1, + ACTIONS(622), 1, anon_sym_POUND0A, - ACTIONS(27), 1, + ACTIONS(624), 1, anon_sym_POUND, - ACTIONS(29), 1, + ACTIONS(626), 1, anon_sym_POUND_QMARK, - ACTIONS(31), 1, + ACTIONS(628), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(33), 1, - anon_sym_COLON_COLON, - ACTIONS(35), 1, + ACTIONS(630), 1, anon_sym_POUND_SQUOTE, - ACTIONS(37), 1, + ACTIONS(632), 1, anon_sym_POUND_POUND, - ACTIONS(39), 1, + ACTIONS(634), 1, anon_sym_POUND_EQ, - ACTIONS(41), 1, + ACTIONS(636), 1, anon_sym_AT, - ACTIONS(43), 1, + ACTIONS(638), 1, anon_sym_SQUOTE, - ACTIONS(45), 1, + ACTIONS(640), 1, anon_sym_BQUOTE, - ACTIONS(47), 1, + ACTIONS(642), 1, anon_sym_COMMA_AT, - ACTIONS(49), 1, + ACTIONS(644), 1, anon_sym_COMMA, - ACTIONS(51), 1, - anon_sym_COLON, - ACTIONS(55), 1, + ACTIONS(648), 1, anon_sym_POUNDC, - STATE(171), 1, + STATE(278), 1, aux_sym_dis_expr_repeat1, - STATE(815), 1, + STATE(545), 1, sym_sym_lit, - STATE(838), 1, + STATE(688), 1, sym__bare_vec_lit, - STATE(841), 1, + STATE(691), 1, sym__bare_set_lit, - STATE(1047), 1, + STATE(1013), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1909), 1, + STATE(1862), 1, sym_dotted_sym_lit, - ACTIONS(53), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(646), 2, + ACTIONS(606), 2, sym__ws, sym_comment, - ACTIONS(1162), 2, + ACTIONS(646), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(1222), 2, sym_num_lit, sym_char_lit, - ACTIONS(1164), 2, + ACTIONS(1224), 2, sym_nil_lit, sym_fancy_literal, - STATE(942), 2, + STATE(896), 2, sym__gap, sym_dis_expr, - STATE(842), 3, + STATE(687), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(394), 18, + STATE(700), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -25007,90 +24972,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [25321] = 38, + [25358] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(61), 1, + ACTIONS(140), 1, + anon_sym_COLON, + ACTIONS(142), 1, + anon_sym_COLON_COLON, + ACTIONS(144), 1, aux_sym_str_lit_token1, - ACTIONS(65), 1, + ACTIONS(148), 1, aux_sym_sym_lit_token1, - ACTIONS(67), 1, + ACTIONS(150), 1, anon_sym_POUND0A, - ACTIONS(69), 1, + ACTIONS(152), 1, anon_sym_POUND, - ACTIONS(71), 1, + ACTIONS(154), 1, anon_sym_POUND_QMARK, - ACTIONS(73), 1, + ACTIONS(156), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(75), 1, - anon_sym_COLON_COLON, - ACTIONS(77), 1, + ACTIONS(158), 1, anon_sym_POUND_SQUOTE, - ACTIONS(79), 1, + ACTIONS(160), 1, anon_sym_POUND_POUND, - ACTIONS(81), 1, + ACTIONS(162), 1, anon_sym_POUND_EQ, - ACTIONS(83), 1, + ACTIONS(164), 1, anon_sym_AT, - ACTIONS(85), 1, + ACTIONS(166), 1, anon_sym_SQUOTE, - ACTIONS(87), 1, + ACTIONS(168), 1, anon_sym_BQUOTE, - ACTIONS(89), 1, + ACTIONS(170), 1, anon_sym_COMMA_AT, - ACTIONS(91), 1, + ACTIONS(172), 1, anon_sym_COMMA, - ACTIONS(95), 1, - anon_sym_COLON, - ACTIONS(99), 1, + ACTIONS(178), 1, anon_sym_POUNDC, - ACTIONS(381), 1, + ACTIONS(413), 1, anon_sym_LPAREN, - STATE(446), 1, + STATE(404), 1, sym_sym_lit, - STATE(513), 1, - sym__bare_set_lit, - STATE(514), 1, + STATE(487), 1, sym__bare_vec_lit, - STATE(930), 1, + STATE(488), 1, + sym__bare_set_lit, + STATE(892), 1, aux_sym_dis_expr_repeat1, - STATE(1044), 1, + STATE(981), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1907), 1, + STATE(1866), 1, sym_dotted_sym_lit, - ACTIONS(97), 2, + ACTIONS(176), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(379), 2, + ACTIONS(411), 2, sym__ws, sym_comment, - ACTIONS(1166), 2, + ACTIONS(1226), 2, sym_num_lit, sym_char_lit, - ACTIONS(1168), 2, + ACTIONS(1228), 2, sym_nil_lit, sym_fancy_literal, - STATE(934), 2, + STATE(903), 2, sym__gap, sym_dis_expr, - STATE(515), 3, + STATE(486), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(439), 18, + STATE(402), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -25108,90 +25074,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [25460] = 38, + [25498] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(13), 1, - aux_sym_str_lit_token1, - ACTIONS(17), 1, - aux_sym_sym_lit_token1, - ACTIONS(19), 1, - anon_sym_CARET, - ACTIONS(21), 1, - anon_sym_POUND_CARET, ACTIONS(23), 1, - anon_sym_LPAREN, + anon_sym_CARET, ACTIONS(25), 1, - anon_sym_POUND0A, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(29), 1, + anon_sym_POUND_CARET, + ACTIONS(660), 1, + anon_sym_COLON, + ACTIONS(662), 1, + anon_sym_COLON_COLON, + ACTIONS(664), 1, + aux_sym_str_lit_token1, + ACTIONS(668), 1, + aux_sym_sym_lit_token1, + ACTIONS(670), 1, + anon_sym_LPAREN, + ACTIONS(672), 1, + anon_sym_POUND0A, + ACTIONS(674), 1, + anon_sym_POUND, + ACTIONS(676), 1, anon_sym_POUND_QMARK, - ACTIONS(31), 1, + ACTIONS(678), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(680), 1, + anon_sym_POUND_SQUOTE, + ACTIONS(682), 1, anon_sym_POUND_POUND, - ACTIONS(39), 1, + ACTIONS(684), 1, anon_sym_POUND_EQ, - ACTIONS(45), 1, - anon_sym_BQUOTE, - ACTIONS(55), 1, - anon_sym_POUNDC, - ACTIONS(652), 1, - anon_sym_COLON_COLON, - ACTIONS(654), 1, - anon_sym_POUND_SQUOTE, - ACTIONS(656), 1, + ACTIONS(686), 1, anon_sym_AT, - ACTIONS(658), 1, + ACTIONS(688), 1, anon_sym_SQUOTE, - ACTIONS(660), 1, + ACTIONS(690), 1, + anon_sym_BQUOTE, + ACTIONS(692), 1, anon_sym_COMMA_AT, - ACTIONS(662), 1, + ACTIONS(694), 1, anon_sym_COMMA, - ACTIONS(664), 1, - anon_sym_COLON, - STATE(817), 1, + ACTIONS(698), 1, + anon_sym_POUNDC, + STATE(566), 1, sym_sym_lit, - STATE(838), 1, - sym__bare_vec_lit, - STATE(841), 1, + STATE(678), 1, sym__bare_set_lit, - STATE(930), 1, + STATE(679), 1, + sym__bare_vec_lit, + STATE(892), 1, aux_sym_dis_expr_repeat1, - STATE(999), 1, + STATE(925), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1908), 1, + STATE(1868), 1, sym_dotted_sym_lit, - ACTIONS(646), 2, + ACTIONS(656), 2, sym__ws, sym_comment, - ACTIONS(666), 2, + ACTIONS(696), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1170), 2, + ACTIONS(1230), 2, sym_num_lit, sym_char_lit, - ACTIONS(1172), 2, + ACTIONS(1232), 2, sym_nil_lit, sym_fancy_literal, - STATE(942), 2, + STATE(906), 2, sym__gap, sym_dis_expr, - STATE(842), 3, + STATE(680), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(919), 18, + STATE(632), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -25209,90 +25176,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [25599] = 38, + [25638] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(606), 1, + ACTIONS(518), 1, + anon_sym_COLON, + ACTIONS(520), 1, + anon_sym_COLON_COLON, + ACTIONS(522), 1, aux_sym_str_lit_token1, - ACTIONS(610), 1, + ACTIONS(526), 1, aux_sym_sym_lit_token1, - ACTIONS(612), 1, + ACTIONS(528), 1, anon_sym_LPAREN, - ACTIONS(614), 1, + ACTIONS(530), 1, anon_sym_POUND0A, - ACTIONS(616), 1, + ACTIONS(532), 1, anon_sym_POUND, - ACTIONS(618), 1, + ACTIONS(534), 1, anon_sym_POUND_QMARK, - ACTIONS(620), 1, + ACTIONS(536), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(622), 1, - anon_sym_COLON_COLON, - ACTIONS(624), 1, + ACTIONS(538), 1, anon_sym_POUND_SQUOTE, - ACTIONS(626), 1, + ACTIONS(540), 1, anon_sym_POUND_POUND, - ACTIONS(628), 1, + ACTIONS(542), 1, anon_sym_POUND_EQ, - ACTIONS(630), 1, + ACTIONS(544), 1, anon_sym_AT, - ACTIONS(632), 1, + ACTIONS(546), 1, anon_sym_SQUOTE, - ACTIONS(634), 1, + ACTIONS(548), 1, anon_sym_BQUOTE, - ACTIONS(636), 1, + ACTIONS(550), 1, anon_sym_COMMA_AT, - ACTIONS(638), 1, + ACTIONS(552), 1, anon_sym_COMMA, - ACTIONS(640), 1, - anon_sym_COLON, - ACTIONS(644), 1, + ACTIONS(556), 1, anon_sym_POUNDC, - ACTIONS(1094), 1, + ACTIONS(1154), 1, anon_sym_DOT, - STATE(949), 1, + STATE(909), 1, sym_sym_lit, - STATE(963), 1, + STATE(922), 1, sym__bare_set_lit, - STATE(964), 1, + STATE(931), 1, sym__bare_vec_lit, - STATE(967), 1, + STATE(936), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1911), 1, + STATE(1865), 1, sym_dotted_sym_lit, - ACTIONS(642), 2, + ACTIONS(554), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1092), 2, + ACTIONS(1152), 2, sym__ws, sym_comment, - ACTIONS(1174), 2, + ACTIONS(1234), 2, sym_num_lit, sym_char_lit, - ACTIONS(1176), 2, + ACTIONS(1236), 2, sym_nil_lit, sym_fancy_literal, - STATE(1917), 2, + STATE(1872), 2, sym__gap, sym_dis_expr, - STATE(965), 3, + STATE(930), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1091), 18, + STATE(1058), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -25310,90 +25278,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [25738] = 38, + [25778] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(61), 1, + ACTIONS(660), 1, + anon_sym_COLON, + ACTIONS(662), 1, + anon_sym_COLON_COLON, + ACTIONS(664), 1, aux_sym_str_lit_token1, - ACTIONS(65), 1, + ACTIONS(668), 1, aux_sym_sym_lit_token1, - ACTIONS(67), 1, + ACTIONS(670), 1, + anon_sym_LPAREN, + ACTIONS(672), 1, anon_sym_POUND0A, - ACTIONS(69), 1, + ACTIONS(674), 1, anon_sym_POUND, - ACTIONS(71), 1, + ACTIONS(676), 1, anon_sym_POUND_QMARK, - ACTIONS(73), 1, + ACTIONS(678), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(75), 1, - anon_sym_COLON_COLON, - ACTIONS(77), 1, + ACTIONS(680), 1, anon_sym_POUND_SQUOTE, - ACTIONS(79), 1, + ACTIONS(682), 1, anon_sym_POUND_POUND, - ACTIONS(81), 1, + ACTIONS(684), 1, anon_sym_POUND_EQ, - ACTIONS(83), 1, + ACTIONS(686), 1, anon_sym_AT, - ACTIONS(85), 1, + ACTIONS(688), 1, anon_sym_SQUOTE, - ACTIONS(87), 1, + ACTIONS(690), 1, anon_sym_BQUOTE, - ACTIONS(89), 1, + ACTIONS(692), 1, anon_sym_COMMA_AT, - ACTIONS(91), 1, + ACTIONS(694), 1, anon_sym_COMMA, - ACTIONS(95), 1, - anon_sym_COLON, - ACTIONS(99), 1, + ACTIONS(698), 1, anon_sym_POUNDC, - ACTIONS(381), 1, - anon_sym_LPAREN, - STATE(140), 1, - aux_sym_dis_expr_repeat1, - STATE(446), 1, + STATE(566), 1, sym_sym_lit, - STATE(513), 1, + STATE(678), 1, sym__bare_set_lit, - STATE(514), 1, + STATE(679), 1, sym__bare_vec_lit, - STATE(1044), 1, + STATE(892), 1, + aux_sym_dis_expr_repeat1, + STATE(925), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1907), 1, + STATE(1868), 1, sym_dotted_sym_lit, - ACTIONS(97), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(379), 2, + ACTIONS(656), 2, sym__ws, sym_comment, - ACTIONS(1178), 2, + ACTIONS(696), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(1238), 2, sym_num_lit, sym_char_lit, - ACTIONS(1180), 2, + ACTIONS(1240), 2, sym_nil_lit, sym_fancy_literal, - STATE(934), 2, + STATE(906), 2, sym__gap, sym_dis_expr, - STATE(515), 3, + STATE(680), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(522), 18, + STATE(643), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -25411,90 +25380,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [25877] = 38, + [25918] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(606), 1, + ACTIONS(518), 1, + anon_sym_COLON, + ACTIONS(520), 1, + anon_sym_COLON_COLON, + ACTIONS(522), 1, aux_sym_str_lit_token1, - ACTIONS(610), 1, + ACTIONS(526), 1, aux_sym_sym_lit_token1, - ACTIONS(612), 1, + ACTIONS(528), 1, anon_sym_LPAREN, - ACTIONS(614), 1, + ACTIONS(530), 1, anon_sym_POUND0A, - ACTIONS(616), 1, + ACTIONS(532), 1, anon_sym_POUND, - ACTIONS(618), 1, + ACTIONS(534), 1, anon_sym_POUND_QMARK, - ACTIONS(620), 1, + ACTIONS(536), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(622), 1, - anon_sym_COLON_COLON, - ACTIONS(624), 1, + ACTIONS(538), 1, anon_sym_POUND_SQUOTE, - ACTIONS(626), 1, + ACTIONS(540), 1, anon_sym_POUND_POUND, - ACTIONS(628), 1, + ACTIONS(542), 1, anon_sym_POUND_EQ, - ACTIONS(630), 1, + ACTIONS(544), 1, anon_sym_AT, - ACTIONS(632), 1, + ACTIONS(546), 1, anon_sym_SQUOTE, - ACTIONS(634), 1, + ACTIONS(548), 1, anon_sym_BQUOTE, - ACTIONS(636), 1, + ACTIONS(550), 1, anon_sym_COMMA_AT, - ACTIONS(638), 1, + ACTIONS(552), 1, anon_sym_COMMA, - ACTIONS(640), 1, - anon_sym_COLON, - ACTIONS(644), 1, + ACTIONS(556), 1, anon_sym_POUNDC, - ACTIONS(1094), 1, + ACTIONS(1154), 1, anon_sym_DOT, - STATE(949), 1, + STATE(909), 1, sym_sym_lit, - STATE(963), 1, + STATE(922), 1, sym__bare_set_lit, - STATE(964), 1, + STATE(931), 1, sym__bare_vec_lit, - STATE(967), 1, + STATE(936), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1911), 1, + STATE(1865), 1, sym_dotted_sym_lit, - ACTIONS(642), 2, + ACTIONS(554), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1092), 2, + ACTIONS(1152), 2, sym__ws, sym_comment, - ACTIONS(1182), 2, + ACTIONS(1242), 2, sym_num_lit, sym_char_lit, - ACTIONS(1184), 2, + ACTIONS(1244), 2, sym_nil_lit, sym_fancy_literal, - STATE(1917), 2, + STATE(1872), 2, sym__gap, sym_dis_expr, - STATE(965), 3, + STATE(930), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1081), 18, + STATE(1057), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -25512,90 +25482,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [26016] = 38, + [26058] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(19), 1, - anon_sym_CARET, - ACTIONS(21), 1, - anon_sym_POUND_CARET, - ACTIONS(61), 1, + ACTIONS(17), 1, aux_sym_str_lit_token1, - ACTIONS(65), 1, + ACTIONS(21), 1, aux_sym_sym_lit_token1, - ACTIONS(67), 1, + ACTIONS(23), 1, + anon_sym_CARET, + ACTIONS(25), 1, + anon_sym_POUND_CARET, + ACTIONS(27), 1, + anon_sym_LPAREN, + ACTIONS(29), 1, anon_sym_POUND0A, - ACTIONS(69), 1, + ACTIONS(31), 1, anon_sym_POUND, - ACTIONS(71), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(73), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(75), 1, - anon_sym_COLON_COLON, - ACTIONS(77), 1, - anon_sym_POUND_SQUOTE, - ACTIONS(79), 1, + ACTIONS(39), 1, anon_sym_POUND_POUND, - ACTIONS(81), 1, + ACTIONS(41), 1, anon_sym_POUND_EQ, - ACTIONS(83), 1, + ACTIONS(47), 1, + anon_sym_BQUOTE, + ACTIONS(55), 1, + anon_sym_POUNDC, + ACTIONS(1248), 1, + anon_sym_COLON, + ACTIONS(1250), 1, + anon_sym_COLON_COLON, + ACTIONS(1254), 1, + anon_sym_POUND_SQUOTE, + ACTIONS(1256), 1, anon_sym_AT, - ACTIONS(85), 1, + ACTIONS(1258), 1, anon_sym_SQUOTE, - ACTIONS(87), 1, - anon_sym_BQUOTE, - ACTIONS(89), 1, + ACTIONS(1260), 1, anon_sym_COMMA_AT, - ACTIONS(91), 1, + ACTIONS(1262), 1, anon_sym_COMMA, - ACTIONS(95), 1, - anon_sym_COLON, - ACTIONS(99), 1, - anon_sym_POUNDC, - ACTIONS(381), 1, - anon_sym_LPAREN, - STATE(446), 1, + STATE(783), 1, sym_sym_lit, - STATE(513), 1, - sym__bare_set_lit, - STATE(514), 1, + STATE(786), 1, sym__bare_vec_lit, - STATE(930), 1, + STATE(884), 1, + sym__bare_set_lit, + STATE(892), 1, aux_sym_dis_expr_repeat1, - STATE(1044), 1, + STATE(933), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1907), 1, + STATE(1867), 1, sym_dotted_sym_lit, - ACTIONS(97), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(379), 2, + ACTIONS(650), 2, sym__ws, sym_comment, - ACTIONS(1186), 2, + ACTIONS(1246), 2, sym_num_lit, sym_char_lit, - ACTIONS(1188), 2, + ACTIONS(1252), 2, sym_nil_lit, sym_fancy_literal, - STATE(934), 2, + ACTIONS(1264), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + STATE(898), 2, sym__gap, sym_dis_expr, - STATE(515), 3, + STATE(787), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(503), 18, + STATE(867), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -25613,90 +25584,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [26155] = 38, + [26198] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(606), 1, + ACTIONS(518), 1, + anon_sym_COLON, + ACTIONS(520), 1, + anon_sym_COLON_COLON, + ACTIONS(522), 1, aux_sym_str_lit_token1, - ACTIONS(610), 1, + ACTIONS(526), 1, aux_sym_sym_lit_token1, - ACTIONS(612), 1, + ACTIONS(528), 1, anon_sym_LPAREN, - ACTIONS(614), 1, + ACTIONS(530), 1, anon_sym_POUND0A, - ACTIONS(616), 1, + ACTIONS(532), 1, anon_sym_POUND, - ACTIONS(618), 1, + ACTIONS(534), 1, anon_sym_POUND_QMARK, - ACTIONS(620), 1, + ACTIONS(536), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(622), 1, - anon_sym_COLON_COLON, - ACTIONS(624), 1, + ACTIONS(538), 1, anon_sym_POUND_SQUOTE, - ACTIONS(626), 1, + ACTIONS(540), 1, anon_sym_POUND_POUND, - ACTIONS(628), 1, + ACTIONS(542), 1, anon_sym_POUND_EQ, - ACTIONS(630), 1, + ACTIONS(544), 1, anon_sym_AT, - ACTIONS(632), 1, + ACTIONS(546), 1, anon_sym_SQUOTE, - ACTIONS(634), 1, + ACTIONS(548), 1, anon_sym_BQUOTE, - ACTIONS(636), 1, + ACTIONS(550), 1, anon_sym_COMMA_AT, - ACTIONS(638), 1, + ACTIONS(552), 1, anon_sym_COMMA, - ACTIONS(640), 1, - anon_sym_COLON, - ACTIONS(644), 1, + ACTIONS(556), 1, anon_sym_POUNDC, - ACTIONS(1094), 1, + ACTIONS(1154), 1, anon_sym_DOT, - STATE(949), 1, + STATE(909), 1, sym_sym_lit, - STATE(963), 1, + STATE(922), 1, sym__bare_set_lit, - STATE(964), 1, + STATE(931), 1, sym__bare_vec_lit, - STATE(967), 1, + STATE(936), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1911), 1, + STATE(1865), 1, sym_dotted_sym_lit, - ACTIONS(642), 2, + ACTIONS(554), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1092), 2, + ACTIONS(1152), 2, sym__ws, sym_comment, - ACTIONS(1190), 2, + ACTIONS(1266), 2, sym_num_lit, sym_char_lit, - ACTIONS(1192), 2, + ACTIONS(1268), 2, sym_nil_lit, sym_fancy_literal, - STATE(1917), 2, + STATE(1872), 2, sym__gap, sym_dis_expr, - STATE(965), 3, + STATE(930), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1092), 18, + STATE(1054), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -25714,90 +25686,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [26294] = 38, + [26338] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(606), 1, + ACTIONS(660), 1, + anon_sym_COLON, + ACTIONS(662), 1, + anon_sym_COLON_COLON, + ACTIONS(664), 1, aux_sym_str_lit_token1, - ACTIONS(610), 1, + ACTIONS(668), 1, aux_sym_sym_lit_token1, - ACTIONS(612), 1, + ACTIONS(670), 1, anon_sym_LPAREN, - ACTIONS(614), 1, + ACTIONS(672), 1, anon_sym_POUND0A, - ACTIONS(616), 1, + ACTIONS(674), 1, anon_sym_POUND, - ACTIONS(618), 1, + ACTIONS(676), 1, anon_sym_POUND_QMARK, - ACTIONS(620), 1, + ACTIONS(678), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(622), 1, - anon_sym_COLON_COLON, - ACTIONS(624), 1, + ACTIONS(680), 1, anon_sym_POUND_SQUOTE, - ACTIONS(626), 1, + ACTIONS(682), 1, anon_sym_POUND_POUND, - ACTIONS(628), 1, + ACTIONS(684), 1, anon_sym_POUND_EQ, - ACTIONS(630), 1, + ACTIONS(686), 1, anon_sym_AT, - ACTIONS(632), 1, + ACTIONS(688), 1, anon_sym_SQUOTE, - ACTIONS(634), 1, + ACTIONS(690), 1, anon_sym_BQUOTE, - ACTIONS(636), 1, + ACTIONS(692), 1, anon_sym_COMMA_AT, - ACTIONS(638), 1, + ACTIONS(694), 1, anon_sym_COMMA, - ACTIONS(640), 1, - anon_sym_COLON, - ACTIONS(644), 1, + ACTIONS(698), 1, anon_sym_POUNDC, - STATE(930), 1, - aux_sym_dis_expr_repeat1, - STATE(949), 1, + STATE(566), 1, sym_sym_lit, - STATE(963), 1, + STATE(678), 1, sym__bare_set_lit, - STATE(964), 1, + STATE(679), 1, sym__bare_vec_lit, - STATE(967), 1, + STATE(892), 1, + aux_sym_dis_expr_repeat1, + STATE(925), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1911), 1, + STATE(1868), 1, sym_dotted_sym_lit, - ACTIONS(602), 2, + ACTIONS(656), 2, sym__ws, sym_comment, - ACTIONS(642), 2, + ACTIONS(696), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1194), 2, + ACTIONS(1270), 2, sym_num_lit, sym_char_lit, - ACTIONS(1196), 2, + ACTIONS(1272), 2, sym_nil_lit, sym_fancy_literal, - STATE(944), 2, + STATE(906), 2, sym__gap, sym_dis_expr, - STATE(965), 3, + STATE(680), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1012), 18, + STATE(624), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -25815,90 +25788,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [26433] = 38, + [26478] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(832), 1, + ACTIONS(140), 1, + anon_sym_COLON, + ACTIONS(142), 1, + anon_sym_COLON_COLON, + ACTIONS(144), 1, aux_sym_str_lit_token1, - ACTIONS(836), 1, + ACTIONS(148), 1, aux_sym_sym_lit_token1, - ACTIONS(838), 1, - anon_sym_LPAREN, - ACTIONS(840), 1, + ACTIONS(150), 1, anon_sym_POUND0A, - ACTIONS(842), 1, + ACTIONS(152), 1, anon_sym_POUND, - ACTIONS(844), 1, + ACTIONS(154), 1, anon_sym_POUND_QMARK, - ACTIONS(846), 1, + ACTIONS(156), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(848), 1, - anon_sym_COLON_COLON, - ACTIONS(850), 1, + ACTIONS(158), 1, anon_sym_POUND_SQUOTE, - ACTIONS(852), 1, + ACTIONS(160), 1, anon_sym_POUND_POUND, - ACTIONS(854), 1, + ACTIONS(162), 1, anon_sym_POUND_EQ, - ACTIONS(856), 1, + ACTIONS(164), 1, anon_sym_AT, - ACTIONS(858), 1, + ACTIONS(166), 1, anon_sym_SQUOTE, - ACTIONS(860), 1, + ACTIONS(168), 1, anon_sym_BQUOTE, - ACTIONS(862), 1, + ACTIONS(170), 1, anon_sym_COMMA_AT, - ACTIONS(864), 1, + ACTIONS(172), 1, anon_sym_COMMA, - ACTIONS(866), 1, - anon_sym_COLON, - ACTIONS(870), 1, + ACTIONS(178), 1, anon_sym_POUNDC, - STATE(145), 1, + ACTIONS(413), 1, + anon_sym_LPAREN, + STATE(236), 1, aux_sym_dis_expr_repeat1, - STATE(992), 1, - aux_sym_sym_lit_repeat1, - STATE(1076), 1, + STATE(404), 1, sym_sym_lit, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, - sym_meta_lit, - STATE(1108), 1, - sym__bare_set_lit, - STATE(1109), 1, + STATE(487), 1, sym__bare_vec_lit, - STATE(1369), 1, + STATE(488), 1, + sym__bare_set_lit, + STATE(981), 1, + aux_sym_sym_lit_repeat1, + STATE(1162), 1, + sym_meta_lit, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1910), 1, + STATE(1866), 1, sym_dotted_sym_lit, - ACTIONS(828), 2, - sym__ws, - sym_comment, - ACTIONS(868), 2, + ACTIONS(176), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1198), 2, + ACTIONS(411), 2, + sym__ws, + sym_comment, + ACTIONS(1274), 2, sym_num_lit, sym_char_lit, - ACTIONS(1200), 2, + ACTIONS(1276), 2, sym_nil_lit, sym_fancy_literal, - STATE(943), 2, + STATE(903), 2, sym__gap, sym_dis_expr, - STATE(1110), 3, + STATE(486), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1168), 18, + STATE(459), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -25916,90 +25890,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [26572] = 38, + [26618] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(832), 1, + ACTIONS(518), 1, + anon_sym_COLON, + ACTIONS(520), 1, + anon_sym_COLON_COLON, + ACTIONS(522), 1, aux_sym_str_lit_token1, - ACTIONS(836), 1, + ACTIONS(526), 1, aux_sym_sym_lit_token1, - ACTIONS(838), 1, + ACTIONS(528), 1, anon_sym_LPAREN, - ACTIONS(840), 1, + ACTIONS(530), 1, anon_sym_POUND0A, - ACTIONS(842), 1, + ACTIONS(532), 1, anon_sym_POUND, - ACTIONS(844), 1, + ACTIONS(534), 1, anon_sym_POUND_QMARK, - ACTIONS(846), 1, + ACTIONS(536), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(848), 1, - anon_sym_COLON_COLON, - ACTIONS(850), 1, + ACTIONS(538), 1, anon_sym_POUND_SQUOTE, - ACTIONS(852), 1, + ACTIONS(540), 1, anon_sym_POUND_POUND, - ACTIONS(854), 1, + ACTIONS(542), 1, anon_sym_POUND_EQ, - ACTIONS(856), 1, + ACTIONS(544), 1, anon_sym_AT, - ACTIONS(858), 1, + ACTIONS(546), 1, anon_sym_SQUOTE, - ACTIONS(860), 1, + ACTIONS(548), 1, anon_sym_BQUOTE, - ACTIONS(862), 1, + ACTIONS(550), 1, anon_sym_COMMA_AT, - ACTIONS(864), 1, + ACTIONS(552), 1, anon_sym_COMMA, - ACTIONS(866), 1, - anon_sym_COLON, - ACTIONS(870), 1, + ACTIONS(556), 1, anon_sym_POUNDC, - STATE(930), 1, + STATE(892), 1, aux_sym_dis_expr_repeat1, - STATE(992), 1, - aux_sym_sym_lit_repeat1, - STATE(1076), 1, + STATE(909), 1, sym_sym_lit, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, - sym_meta_lit, - STATE(1108), 1, + STATE(922), 1, sym__bare_set_lit, - STATE(1109), 1, + STATE(931), 1, sym__bare_vec_lit, - STATE(1369), 1, + STATE(936), 1, + aux_sym_sym_lit_repeat1, + STATE(1162), 1, + sym_meta_lit, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1910), 1, + STATE(1865), 1, sym_dotted_sym_lit, - ACTIONS(828), 2, + ACTIONS(514), 2, sym__ws, sym_comment, - ACTIONS(868), 2, + ACTIONS(554), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1202), 2, + ACTIONS(1278), 2, sym_num_lit, sym_char_lit, - ACTIONS(1204), 2, + ACTIONS(1280), 2, sym_nil_lit, sym_fancy_literal, - STATE(943), 2, + STATE(897), 2, sym__gap, sym_dis_expr, - STATE(1110), 3, + STATE(930), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1166), 18, + STATE(961), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -26017,90 +25992,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [26711] = 38, + [26758] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(13), 1, - aux_sym_str_lit_token1, - ACTIONS(17), 1, - aux_sym_sym_lit_token1, - ACTIONS(19), 1, - anon_sym_CARET, - ACTIONS(21), 1, - anon_sym_POUND_CARET, ACTIONS(23), 1, - anon_sym_LPAREN, + anon_sym_CARET, ACTIONS(25), 1, + anon_sym_POUND_CARET, + ACTIONS(140), 1, + anon_sym_COLON, + ACTIONS(142), 1, + anon_sym_COLON_COLON, + ACTIONS(144), 1, + aux_sym_str_lit_token1, + ACTIONS(148), 1, + aux_sym_sym_lit_token1, + ACTIONS(150), 1, anon_sym_POUND0A, - ACTIONS(27), 1, + ACTIONS(152), 1, anon_sym_POUND, - ACTIONS(29), 1, + ACTIONS(154), 1, anon_sym_POUND_QMARK, - ACTIONS(31), 1, + ACTIONS(156), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(33), 1, - anon_sym_COLON_COLON, - ACTIONS(35), 1, + ACTIONS(158), 1, anon_sym_POUND_SQUOTE, - ACTIONS(37), 1, + ACTIONS(160), 1, anon_sym_POUND_POUND, - ACTIONS(39), 1, + ACTIONS(162), 1, anon_sym_POUND_EQ, - ACTIONS(41), 1, + ACTIONS(164), 1, anon_sym_AT, - ACTIONS(43), 1, + ACTIONS(166), 1, anon_sym_SQUOTE, - ACTIONS(45), 1, + ACTIONS(168), 1, anon_sym_BQUOTE, - ACTIONS(47), 1, + ACTIONS(170), 1, anon_sym_COMMA_AT, - ACTIONS(49), 1, + ACTIONS(172), 1, anon_sym_COMMA, - ACTIONS(51), 1, - anon_sym_COLON, - ACTIONS(55), 1, + ACTIONS(178), 1, anon_sym_POUNDC, - STATE(176), 1, + ACTIONS(413), 1, + anon_sym_LPAREN, + STATE(241), 1, aux_sym_dis_expr_repeat1, - STATE(815), 1, + STATE(404), 1, sym_sym_lit, - STATE(838), 1, + STATE(487), 1, sym__bare_vec_lit, - STATE(841), 1, + STATE(488), 1, sym__bare_set_lit, - STATE(1047), 1, + STATE(981), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1909), 1, + STATE(1866), 1, sym_dotted_sym_lit, - ACTIONS(53), 2, + ACTIONS(176), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(646), 2, + ACTIONS(411), 2, sym__ws, sym_comment, - ACTIONS(1206), 2, + ACTIONS(1282), 2, sym_num_lit, sym_char_lit, - ACTIONS(1208), 2, + ACTIONS(1284), 2, sym_nil_lit, sym_fancy_literal, - STATE(942), 2, + STATE(903), 2, sym__gap, sym_dis_expr, - STATE(842), 3, + STATE(486), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(395), 18, + STATE(456), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -26118,90 +26094,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [26850] = 38, + [26898] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(606), 1, - aux_sym_str_lit_token1, ACTIONS(610), 1, - aux_sym_sym_lit_token1, + anon_sym_COLON, ACTIONS(612), 1, - anon_sym_LPAREN, + anon_sym_COLON_COLON, ACTIONS(614), 1, - anon_sym_POUND0A, - ACTIONS(616), 1, - anon_sym_POUND, + aux_sym_str_lit_token1, ACTIONS(618), 1, - anon_sym_POUND_QMARK, + aux_sym_sym_lit_token1, ACTIONS(620), 1, - anon_sym_POUND_QMARK_AT, + anon_sym_LPAREN, ACTIONS(622), 1, - anon_sym_COLON_COLON, + anon_sym_POUND0A, ACTIONS(624), 1, - anon_sym_POUND_SQUOTE, + anon_sym_POUND, ACTIONS(626), 1, - anon_sym_POUND_POUND, + anon_sym_POUND_QMARK, ACTIONS(628), 1, - anon_sym_POUND_EQ, + anon_sym_POUND_QMARK_AT, ACTIONS(630), 1, - anon_sym_AT, + anon_sym_POUND_SQUOTE, ACTIONS(632), 1, - anon_sym_SQUOTE, + anon_sym_POUND_POUND, ACTIONS(634), 1, - anon_sym_BQUOTE, + anon_sym_POUND_EQ, ACTIONS(636), 1, - anon_sym_COMMA_AT, + anon_sym_AT, ACTIONS(638), 1, - anon_sym_COMMA, + anon_sym_SQUOTE, ACTIONS(640), 1, - anon_sym_COLON, + anon_sym_BQUOTE, + ACTIONS(642), 1, + anon_sym_COMMA_AT, ACTIONS(644), 1, + anon_sym_COMMA, + ACTIONS(648), 1, anon_sym_POUNDC, - STATE(930), 1, - aux_sym_dis_expr_repeat1, - STATE(949), 1, + STATE(545), 1, sym_sym_lit, - STATE(963), 1, - sym__bare_set_lit, - STATE(964), 1, + STATE(688), 1, sym__bare_vec_lit, - STATE(967), 1, + STATE(691), 1, + sym__bare_set_lit, + STATE(892), 1, + aux_sym_dis_expr_repeat1, + STATE(1013), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1911), 1, + STATE(1862), 1, sym_dotted_sym_lit, - ACTIONS(602), 2, + ACTIONS(606), 2, sym__ws, sym_comment, - ACTIONS(642), 2, + ACTIONS(646), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1210), 2, + ACTIONS(1286), 2, sym_num_lit, sym_char_lit, - ACTIONS(1212), 2, + ACTIONS(1288), 2, sym_nil_lit, sym_fancy_literal, - STATE(944), 2, + STATE(896), 2, sym__gap, sym_dis_expr, - STATE(965), 3, + STATE(687), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1011), 18, + STATE(758), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -26219,90 +26196,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [26989] = 38, + [27038] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(13), 1, - aux_sym_str_lit_token1, - ACTIONS(17), 1, - aux_sym_sym_lit_token1, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(23), 1, + ACTIONS(518), 1, + anon_sym_COLON, + ACTIONS(520), 1, + anon_sym_COLON_COLON, + ACTIONS(522), 1, + aux_sym_str_lit_token1, + ACTIONS(526), 1, + aux_sym_sym_lit_token1, + ACTIONS(528), 1, anon_sym_LPAREN, - ACTIONS(25), 1, + ACTIONS(530), 1, anon_sym_POUND0A, - ACTIONS(27), 1, + ACTIONS(532), 1, anon_sym_POUND, - ACTIONS(29), 1, + ACTIONS(534), 1, anon_sym_POUND_QMARK, - ACTIONS(31), 1, + ACTIONS(536), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(33), 1, - anon_sym_COLON_COLON, - ACTIONS(35), 1, + ACTIONS(538), 1, anon_sym_POUND_SQUOTE, - ACTIONS(37), 1, + ACTIONS(540), 1, anon_sym_POUND_POUND, - ACTIONS(39), 1, + ACTIONS(542), 1, anon_sym_POUND_EQ, - ACTIONS(41), 1, + ACTIONS(544), 1, anon_sym_AT, - ACTIONS(43), 1, + ACTIONS(546), 1, anon_sym_SQUOTE, - ACTIONS(45), 1, + ACTIONS(548), 1, anon_sym_BQUOTE, - ACTIONS(47), 1, + ACTIONS(550), 1, anon_sym_COMMA_AT, - ACTIONS(49), 1, + ACTIONS(552), 1, anon_sym_COMMA, - ACTIONS(51), 1, - anon_sym_COLON, - ACTIONS(55), 1, + ACTIONS(556), 1, anon_sym_POUNDC, - STATE(815), 1, + STATE(892), 1, + aux_sym_dis_expr_repeat1, + STATE(909), 1, sym_sym_lit, - STATE(838), 1, - sym__bare_vec_lit, - STATE(841), 1, + STATE(922), 1, sym__bare_set_lit, - STATE(930), 1, - aux_sym_dis_expr_repeat1, - STATE(1047), 1, + STATE(931), 1, + sym__bare_vec_lit, + STATE(936), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1909), 1, + STATE(1865), 1, sym_dotted_sym_lit, - ACTIONS(53), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(646), 2, + ACTIONS(514), 2, sym__ws, sym_comment, - ACTIONS(1214), 2, + ACTIONS(554), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(1290), 2, sym_num_lit, sym_char_lit, - ACTIONS(1216), 2, + ACTIONS(1292), 2, sym_nil_lit, sym_fancy_literal, - STATE(942), 2, + STATE(897), 2, sym__gap, sym_dis_expr, - STATE(842), 3, + STATE(930), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(405), 18, + STATE(960), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -26320,90 +26298,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [27128] = 38, + [27178] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(606), 1, + ACTIONS(660), 1, + anon_sym_COLON, + ACTIONS(662), 1, + anon_sym_COLON_COLON, + ACTIONS(664), 1, aux_sym_str_lit_token1, - ACTIONS(610), 1, + ACTIONS(668), 1, aux_sym_sym_lit_token1, - ACTIONS(612), 1, + ACTIONS(670), 1, anon_sym_LPAREN, - ACTIONS(614), 1, + ACTIONS(672), 1, anon_sym_POUND0A, - ACTIONS(616), 1, + ACTIONS(674), 1, anon_sym_POUND, - ACTIONS(618), 1, + ACTIONS(676), 1, anon_sym_POUND_QMARK, - ACTIONS(620), 1, + ACTIONS(678), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(622), 1, - anon_sym_COLON_COLON, - ACTIONS(624), 1, + ACTIONS(680), 1, anon_sym_POUND_SQUOTE, - ACTIONS(626), 1, + ACTIONS(682), 1, anon_sym_POUND_POUND, - ACTIONS(628), 1, + ACTIONS(684), 1, anon_sym_POUND_EQ, - ACTIONS(630), 1, + ACTIONS(686), 1, anon_sym_AT, - ACTIONS(632), 1, + ACTIONS(688), 1, anon_sym_SQUOTE, - ACTIONS(634), 1, + ACTIONS(690), 1, anon_sym_BQUOTE, - ACTIONS(636), 1, + ACTIONS(692), 1, anon_sym_COMMA_AT, - ACTIONS(638), 1, + ACTIONS(694), 1, anon_sym_COMMA, - ACTIONS(640), 1, - anon_sym_COLON, - ACTIONS(644), 1, + ACTIONS(698), 1, anon_sym_POUNDC, - STATE(930), 1, - aux_sym_dis_expr_repeat1, - STATE(949), 1, + STATE(566), 1, sym_sym_lit, - STATE(963), 1, + STATE(678), 1, sym__bare_set_lit, - STATE(964), 1, + STATE(679), 1, sym__bare_vec_lit, - STATE(967), 1, + STATE(892), 1, + aux_sym_dis_expr_repeat1, + STATE(925), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1911), 1, + STATE(1868), 1, sym_dotted_sym_lit, - ACTIONS(602), 2, + ACTIONS(656), 2, sym__ws, sym_comment, - ACTIONS(642), 2, + ACTIONS(696), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1218), 2, + ACTIONS(1294), 2, sym_num_lit, sym_char_lit, - ACTIONS(1220), 2, + ACTIONS(1296), 2, sym_nil_lit, sym_fancy_literal, - STATE(944), 2, + STATE(906), 2, sym__gap, sym_dis_expr, - STATE(965), 3, + STATE(680), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1010), 18, + STATE(600), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -26421,90 +26400,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [27267] = 38, + [27318] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(606), 1, + ACTIONS(1170), 1, + anon_sym_COLON, + ACTIONS(1172), 1, + anon_sym_COLON_COLON, + ACTIONS(1174), 1, aux_sym_str_lit_token1, - ACTIONS(610), 1, + ACTIONS(1178), 1, aux_sym_sym_lit_token1, - ACTIONS(612), 1, + ACTIONS(1180), 1, anon_sym_LPAREN, - ACTIONS(614), 1, + ACTIONS(1182), 1, anon_sym_POUND0A, - ACTIONS(616), 1, + ACTIONS(1184), 1, anon_sym_POUND, - ACTIONS(618), 1, + ACTIONS(1186), 1, anon_sym_POUND_QMARK, - ACTIONS(620), 1, + ACTIONS(1188), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(622), 1, - anon_sym_COLON_COLON, - ACTIONS(624), 1, + ACTIONS(1190), 1, anon_sym_POUND_SQUOTE, - ACTIONS(626), 1, + ACTIONS(1192), 1, anon_sym_POUND_POUND, - ACTIONS(628), 1, + ACTIONS(1194), 1, anon_sym_POUND_EQ, - ACTIONS(630), 1, + ACTIONS(1196), 1, anon_sym_AT, - ACTIONS(632), 1, + ACTIONS(1198), 1, anon_sym_SQUOTE, - ACTIONS(634), 1, + ACTIONS(1200), 1, anon_sym_BQUOTE, - ACTIONS(636), 1, + ACTIONS(1202), 1, anon_sym_COMMA_AT, - ACTIONS(638), 1, + ACTIONS(1204), 1, anon_sym_COMMA, - ACTIONS(640), 1, - anon_sym_COLON, - ACTIONS(644), 1, + ACTIONS(1208), 1, anon_sym_POUNDC, - STATE(224), 1, + STATE(221), 1, aux_sym_dis_expr_repeat1, - STATE(949), 1, + STATE(950), 1, + aux_sym_sym_lit_repeat1, + STATE(1162), 1, + sym_meta_lit, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1173), 1, sym_sym_lit, - STATE(963), 1, + STATE(1226), 1, sym__bare_set_lit, - STATE(964), 1, + STATE(1230), 1, sym__bare_vec_lit, - STATE(967), 1, - aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, - sym_meta_lit, - STATE(1369), 1, + STATE(1337), 1, sym__metadata_lit, - STATE(1911), 1, + STATE(1864), 1, sym_dotted_sym_lit, - ACTIONS(602), 2, - sym__ws, - sym_comment, - ACTIONS(642), 2, + ACTIONS(1206), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1222), 2, + ACTIONS(1298), 2, + sym__ws, + sym_comment, + ACTIONS(1300), 2, sym_num_lit, sym_char_lit, - ACTIONS(1224), 2, + ACTIONS(1302), 2, sym_nil_lit, sym_fancy_literal, - STATE(944), 2, + STATE(907), 2, sym__gap, sym_dis_expr, - STATE(965), 3, + STATE(1231), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1009), 18, + STATE(1299), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -26522,90 +26502,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [27406] = 38, + [27458] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(13), 1, - aux_sym_str_lit_token1, - ACTIONS(17), 1, - aux_sym_sym_lit_token1, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(23), 1, + ACTIONS(1170), 1, + anon_sym_COLON, + ACTIONS(1172), 1, + anon_sym_COLON_COLON, + ACTIONS(1174), 1, + aux_sym_str_lit_token1, + ACTIONS(1178), 1, + aux_sym_sym_lit_token1, + ACTIONS(1180), 1, anon_sym_LPAREN, - ACTIONS(25), 1, + ACTIONS(1182), 1, anon_sym_POUND0A, - ACTIONS(27), 1, + ACTIONS(1184), 1, anon_sym_POUND, - ACTIONS(29), 1, + ACTIONS(1186), 1, anon_sym_POUND_QMARK, - ACTIONS(31), 1, + ACTIONS(1188), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(33), 1, - anon_sym_COLON_COLON, - ACTIONS(35), 1, + ACTIONS(1190), 1, anon_sym_POUND_SQUOTE, - ACTIONS(37), 1, + ACTIONS(1192), 1, anon_sym_POUND_POUND, - ACTIONS(39), 1, + ACTIONS(1194), 1, anon_sym_POUND_EQ, - ACTIONS(41), 1, + ACTIONS(1196), 1, anon_sym_AT, - ACTIONS(43), 1, + ACTIONS(1198), 1, anon_sym_SQUOTE, - ACTIONS(45), 1, + ACTIONS(1200), 1, anon_sym_BQUOTE, - ACTIONS(47), 1, + ACTIONS(1202), 1, anon_sym_COMMA_AT, - ACTIONS(49), 1, + ACTIONS(1204), 1, anon_sym_COMMA, - ACTIONS(51), 1, - anon_sym_COLON, - ACTIONS(55), 1, + ACTIONS(1208), 1, anon_sym_POUNDC, - STATE(815), 1, - sym_sym_lit, - STATE(838), 1, - sym__bare_vec_lit, - STATE(841), 1, - sym__bare_set_lit, - STATE(930), 1, + STATE(238), 1, aux_sym_dis_expr_repeat1, - STATE(1047), 1, + STATE(950), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1173), 1, + sym_sym_lit, + STATE(1226), 1, + sym__bare_set_lit, + STATE(1230), 1, + sym__bare_vec_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1909), 1, + STATE(1864), 1, sym_dotted_sym_lit, - ACTIONS(53), 2, + ACTIONS(1206), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(646), 2, + ACTIONS(1298), 2, sym__ws, sym_comment, - ACTIONS(1226), 2, + ACTIONS(1304), 2, sym_num_lit, sym_char_lit, - ACTIONS(1228), 2, + ACTIONS(1306), 2, sym_nil_lit, sym_fancy_literal, - STATE(942), 2, + STATE(907), 2, sym__gap, sym_dis_expr, - STATE(842), 3, + STATE(1231), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(840), 18, + STATE(1293), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -26623,90 +26604,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [27545] = 38, + [27598] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(13), 1, - aux_sym_str_lit_token1, - ACTIONS(17), 1, - aux_sym_sym_lit_token1, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(23), 1, + ACTIONS(1170), 1, + anon_sym_COLON, + ACTIONS(1172), 1, + anon_sym_COLON_COLON, + ACTIONS(1174), 1, + aux_sym_str_lit_token1, + ACTIONS(1178), 1, + aux_sym_sym_lit_token1, + ACTIONS(1180), 1, anon_sym_LPAREN, - ACTIONS(25), 1, + ACTIONS(1182), 1, anon_sym_POUND0A, - ACTIONS(27), 1, + ACTIONS(1184), 1, anon_sym_POUND, - ACTIONS(29), 1, + ACTIONS(1186), 1, anon_sym_POUND_QMARK, - ACTIONS(31), 1, + ACTIONS(1188), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(1190), 1, + anon_sym_POUND_SQUOTE, + ACTIONS(1192), 1, anon_sym_POUND_POUND, - ACTIONS(39), 1, + ACTIONS(1194), 1, anon_sym_POUND_EQ, - ACTIONS(45), 1, - anon_sym_BQUOTE, - ACTIONS(55), 1, - anon_sym_POUNDC, - ACTIONS(652), 1, - anon_sym_COLON_COLON, - ACTIONS(654), 1, - anon_sym_POUND_SQUOTE, - ACTIONS(656), 1, + ACTIONS(1196), 1, anon_sym_AT, - ACTIONS(658), 1, + ACTIONS(1198), 1, anon_sym_SQUOTE, - ACTIONS(660), 1, + ACTIONS(1200), 1, + anon_sym_BQUOTE, + ACTIONS(1202), 1, anon_sym_COMMA_AT, - ACTIONS(662), 1, + ACTIONS(1204), 1, anon_sym_COMMA, - ACTIONS(664), 1, - anon_sym_COLON, - STATE(157), 1, + ACTIONS(1208), 1, + anon_sym_POUNDC, + STATE(239), 1, aux_sym_dis_expr_repeat1, - STATE(817), 1, - sym_sym_lit, - STATE(838), 1, - sym__bare_vec_lit, - STATE(841), 1, - sym__bare_set_lit, - STATE(999), 1, + STATE(950), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1173), 1, + sym_sym_lit, + STATE(1226), 1, + sym__bare_set_lit, + STATE(1230), 1, + sym__bare_vec_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1908), 1, + STATE(1864), 1, sym_dotted_sym_lit, - ACTIONS(646), 2, - sym__ws, - sym_comment, - ACTIONS(666), 2, + ACTIONS(1206), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(988), 2, + ACTIONS(1298), 2, + sym__ws, + sym_comment, + ACTIONS(1308), 2, sym_num_lit, sym_char_lit, - ACTIONS(990), 2, + ACTIONS(1310), 2, sym_nil_lit, sym_fancy_literal, - STATE(942), 2, + STATE(907), 2, sym__gap, sym_dis_expr, - STATE(842), 3, + STATE(1231), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(833), 18, + STATE(1301), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -26724,90 +26706,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [27684] = 38, + [27738] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(606), 1, + ACTIONS(660), 1, + anon_sym_COLON, + ACTIONS(662), 1, + anon_sym_COLON_COLON, + ACTIONS(664), 1, aux_sym_str_lit_token1, - ACTIONS(610), 1, + ACTIONS(668), 1, aux_sym_sym_lit_token1, - ACTIONS(612), 1, + ACTIONS(670), 1, anon_sym_LPAREN, - ACTIONS(614), 1, + ACTIONS(672), 1, anon_sym_POUND0A, - ACTIONS(616), 1, + ACTIONS(674), 1, anon_sym_POUND, - ACTIONS(618), 1, + ACTIONS(676), 1, anon_sym_POUND_QMARK, - ACTIONS(620), 1, + ACTIONS(678), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(622), 1, - anon_sym_COLON_COLON, - ACTIONS(624), 1, + ACTIONS(680), 1, anon_sym_POUND_SQUOTE, - ACTIONS(626), 1, + ACTIONS(682), 1, anon_sym_POUND_POUND, - ACTIONS(628), 1, + ACTIONS(684), 1, anon_sym_POUND_EQ, - ACTIONS(630), 1, + ACTIONS(686), 1, anon_sym_AT, - ACTIONS(632), 1, + ACTIONS(688), 1, anon_sym_SQUOTE, - ACTIONS(634), 1, + ACTIONS(690), 1, anon_sym_BQUOTE, - ACTIONS(636), 1, + ACTIONS(692), 1, anon_sym_COMMA_AT, - ACTIONS(638), 1, + ACTIONS(694), 1, anon_sym_COMMA, - ACTIONS(640), 1, - anon_sym_COLON, - ACTIONS(644), 1, + ACTIONS(698), 1, anon_sym_POUNDC, - STATE(243), 1, + STATE(354), 1, aux_sym_dis_expr_repeat1, - STATE(949), 1, + STATE(566), 1, sym_sym_lit, - STATE(963), 1, + STATE(678), 1, sym__bare_set_lit, - STATE(964), 1, + STATE(679), 1, sym__bare_vec_lit, - STATE(967), 1, + STATE(925), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1911), 1, + STATE(1868), 1, sym_dotted_sym_lit, - ACTIONS(602), 2, + ACTIONS(656), 2, sym__ws, sym_comment, - ACTIONS(642), 2, + ACTIONS(696), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1230), 2, + ACTIONS(1312), 2, sym_num_lit, sym_char_lit, - ACTIONS(1232), 2, + ACTIONS(1314), 2, sym_nil_lit, sym_fancy_literal, - STATE(944), 2, + STATE(906), 2, sym__gap, sym_dis_expr, - STATE(965), 3, + STATE(680), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(976), 18, + STATE(625), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -26825,90 +26808,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [27823] = 38, + [27878] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(606), 1, + ACTIONS(1170), 1, + anon_sym_COLON, + ACTIONS(1172), 1, + anon_sym_COLON_COLON, + ACTIONS(1174), 1, aux_sym_str_lit_token1, - ACTIONS(610), 1, + ACTIONS(1178), 1, aux_sym_sym_lit_token1, - ACTIONS(612), 1, + ACTIONS(1180), 1, anon_sym_LPAREN, - ACTIONS(614), 1, + ACTIONS(1182), 1, anon_sym_POUND0A, - ACTIONS(616), 1, + ACTIONS(1184), 1, anon_sym_POUND, - ACTIONS(618), 1, + ACTIONS(1186), 1, anon_sym_POUND_QMARK, - ACTIONS(620), 1, + ACTIONS(1188), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(622), 1, - anon_sym_COLON_COLON, - ACTIONS(624), 1, + ACTIONS(1190), 1, anon_sym_POUND_SQUOTE, - ACTIONS(626), 1, + ACTIONS(1192), 1, anon_sym_POUND_POUND, - ACTIONS(628), 1, + ACTIONS(1194), 1, anon_sym_POUND_EQ, - ACTIONS(630), 1, + ACTIONS(1196), 1, anon_sym_AT, - ACTIONS(632), 1, + ACTIONS(1198), 1, anon_sym_SQUOTE, - ACTIONS(634), 1, + ACTIONS(1200), 1, anon_sym_BQUOTE, - ACTIONS(636), 1, + ACTIONS(1202), 1, anon_sym_COMMA_AT, - ACTIONS(638), 1, + ACTIONS(1204), 1, anon_sym_COMMA, - ACTIONS(640), 1, - anon_sym_COLON, - ACTIONS(644), 1, + ACTIONS(1208), 1, anon_sym_POUNDC, - STATE(930), 1, + STATE(248), 1, aux_sym_dis_expr_repeat1, - STATE(949), 1, + STATE(950), 1, + aux_sym_sym_lit_repeat1, + STATE(1162), 1, + sym_meta_lit, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1173), 1, sym_sym_lit, - STATE(963), 1, + STATE(1226), 1, sym__bare_set_lit, - STATE(964), 1, + STATE(1230), 1, sym__bare_vec_lit, - STATE(967), 1, - aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, - sym_meta_lit, - STATE(1369), 1, + STATE(1337), 1, sym__metadata_lit, - STATE(1911), 1, + STATE(1864), 1, sym_dotted_sym_lit, - ACTIONS(602), 2, - sym__ws, - sym_comment, - ACTIONS(642), 2, + ACTIONS(1206), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1234), 2, + ACTIONS(1298), 2, + sym__ws, + sym_comment, + ACTIONS(1316), 2, sym_num_lit, sym_char_lit, - ACTIONS(1236), 2, + ACTIONS(1318), 2, sym_nil_lit, sym_fancy_literal, - STATE(944), 2, + STATE(907), 2, sym__gap, sym_dis_expr, - STATE(965), 3, + STATE(1231), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1005), 18, + STATE(1223), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -26926,90 +26910,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [27962] = 38, + [28018] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(13), 1, - aux_sym_str_lit_token1, - ACTIONS(17), 1, - aux_sym_sym_lit_token1, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(23), 1, + ACTIONS(562), 1, + anon_sym_COLON, + ACTIONS(564), 1, + anon_sym_COLON_COLON, + ACTIONS(566), 1, + aux_sym_str_lit_token1, + ACTIONS(570), 1, + aux_sym_sym_lit_token1, + ACTIONS(572), 1, anon_sym_LPAREN, - ACTIONS(25), 1, + ACTIONS(574), 1, anon_sym_POUND0A, - ACTIONS(27), 1, + ACTIONS(576), 1, anon_sym_POUND, - ACTIONS(29), 1, + ACTIONS(578), 1, anon_sym_POUND_QMARK, - ACTIONS(31), 1, + ACTIONS(580), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(33), 1, - anon_sym_COLON_COLON, - ACTIONS(35), 1, + ACTIONS(582), 1, anon_sym_POUND_SQUOTE, - ACTIONS(37), 1, + ACTIONS(584), 1, anon_sym_POUND_POUND, - ACTIONS(39), 1, + ACTIONS(586), 1, anon_sym_POUND_EQ, - ACTIONS(41), 1, + ACTIONS(588), 1, anon_sym_AT, - ACTIONS(43), 1, + ACTIONS(590), 1, anon_sym_SQUOTE, - ACTIONS(45), 1, + ACTIONS(592), 1, anon_sym_BQUOTE, - ACTIONS(47), 1, + ACTIONS(594), 1, anon_sym_COMMA_AT, - ACTIONS(49), 1, + ACTIONS(596), 1, anon_sym_COMMA, - ACTIONS(51), 1, - anon_sym_COLON, - ACTIONS(55), 1, + ACTIONS(600), 1, anon_sym_POUNDC, - STATE(204), 1, + STATE(892), 1, aux_sym_dis_expr_repeat1, - STATE(815), 1, + STATE(924), 1, sym_sym_lit, - STATE(838), 1, + STATE(926), 1, + aux_sym_sym_lit_repeat1, + STATE(1068), 1, sym__bare_vec_lit, - STATE(841), 1, + STATE(1069), 1, sym__bare_set_lit, - STATE(1047), 1, - aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1909), 1, + STATE(1861), 1, sym_dotted_sym_lit, - ACTIONS(53), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(646), 2, + ACTIONS(558), 2, sym__ws, sym_comment, - ACTIONS(1238), 2, + ACTIONS(598), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(1320), 2, sym_num_lit, sym_char_lit, - ACTIONS(1240), 2, + ACTIONS(1322), 2, sym_nil_lit, sym_fancy_literal, - STATE(942), 2, + STATE(902), 2, sym__gap, sym_dis_expr, - STATE(842), 3, + STATE(1067), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(407), 18, + STATE(1136), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -27027,90 +27012,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [28101] = 38, + [28158] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(832), 1, + ACTIONS(1170), 1, + anon_sym_COLON, + ACTIONS(1172), 1, + anon_sym_COLON_COLON, + ACTIONS(1174), 1, aux_sym_str_lit_token1, - ACTIONS(838), 1, + ACTIONS(1178), 1, + aux_sym_sym_lit_token1, + ACTIONS(1180), 1, anon_sym_LPAREN, - ACTIONS(840), 1, + ACTIONS(1182), 1, anon_sym_POUND0A, - ACTIONS(842), 1, + ACTIONS(1184), 1, anon_sym_POUND, - ACTIONS(844), 1, + ACTIONS(1186), 1, anon_sym_POUND_QMARK, - ACTIONS(846), 1, + ACTIONS(1188), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(848), 1, - anon_sym_COLON_COLON, - ACTIONS(852), 1, + ACTIONS(1190), 1, + anon_sym_POUND_SQUOTE, + ACTIONS(1192), 1, anon_sym_POUND_POUND, - ACTIONS(854), 1, + ACTIONS(1194), 1, anon_sym_POUND_EQ, - ACTIONS(860), 1, - anon_sym_BQUOTE, - ACTIONS(866), 1, - anon_sym_COLON, - ACTIONS(870), 1, - anon_sym_POUNDC, - ACTIONS(1242), 1, - aux_sym_sym_lit_token1, - ACTIONS(1244), 1, - anon_sym_POUND_SQUOTE, - ACTIONS(1246), 1, + ACTIONS(1196), 1, anon_sym_AT, - ACTIONS(1248), 1, + ACTIONS(1198), 1, anon_sym_SQUOTE, - ACTIONS(1250), 1, + ACTIONS(1200), 1, + anon_sym_BQUOTE, + ACTIONS(1202), 1, anon_sym_COMMA_AT, - ACTIONS(1252), 1, + ACTIONS(1204), 1, anon_sym_COMMA, - STATE(383), 1, + ACTIONS(1208), 1, + anon_sym_POUNDC, + STATE(249), 1, aux_sym_dis_expr_repeat1, - STATE(1050), 1, + STATE(950), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1108), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1173), 1, + sym_sym_lit, + STATE(1226), 1, sym__bare_set_lit, - STATE(1109), 1, + STATE(1230), 1, sym__bare_vec_lit, - STATE(1369), 1, + STATE(1337), 1, sym__metadata_lit, - STATE(1386), 1, - sym_sym_lit, - STATE(1910), 1, + STATE(1864), 1, sym_dotted_sym_lit, - ACTIONS(828), 2, + ACTIONS(1206), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(1298), 2, sym__ws, sym_comment, - ACTIONS(830), 2, + ACTIONS(1324), 2, sym_num_lit, sym_char_lit, - ACTIONS(834), 2, + ACTIONS(1326), 2, sym_nil_lit, sym_fancy_literal, - ACTIONS(1254), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - STATE(943), 2, + STATE(907), 2, sym__gap, sym_dis_expr, - STATE(1110), 3, + STATE(1231), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1107), 18, + STATE(1224), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -27128,90 +27114,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [28240] = 38, + [28298] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(13), 1, - aux_sym_str_lit_token1, + anon_sym_COLON, + ACTIONS(15), 1, + anon_sym_COLON_COLON, ACTIONS(17), 1, - aux_sym_sym_lit_token1, - ACTIONS(19), 1, - anon_sym_CARET, + aux_sym_str_lit_token1, ACTIONS(21), 1, - anon_sym_POUND_CARET, + aux_sym_sym_lit_token1, ACTIONS(23), 1, - anon_sym_LPAREN, + anon_sym_CARET, ACTIONS(25), 1, - anon_sym_POUND0A, + anon_sym_POUND_CARET, ACTIONS(27), 1, - anon_sym_POUND, + anon_sym_LPAREN, ACTIONS(29), 1, - anon_sym_POUND_QMARK, + anon_sym_POUND0A, ACTIONS(31), 1, - anon_sym_POUND_QMARK_AT, + anon_sym_POUND, ACTIONS(33), 1, - anon_sym_COLON_COLON, + anon_sym_POUND_QMARK, ACTIONS(35), 1, - anon_sym_POUND_SQUOTE, + anon_sym_POUND_QMARK_AT, ACTIONS(37), 1, - anon_sym_POUND_POUND, + anon_sym_POUND_SQUOTE, ACTIONS(39), 1, - anon_sym_POUND_EQ, + anon_sym_POUND_POUND, ACTIONS(41), 1, - anon_sym_AT, + anon_sym_POUND_EQ, ACTIONS(43), 1, - anon_sym_SQUOTE, + anon_sym_AT, ACTIONS(45), 1, - anon_sym_BQUOTE, + anon_sym_SQUOTE, ACTIONS(47), 1, - anon_sym_COMMA_AT, + anon_sym_BQUOTE, ACTIONS(49), 1, - anon_sym_COMMA, + anon_sym_COMMA_AT, ACTIONS(51), 1, - anon_sym_COLON, + anon_sym_COMMA, ACTIONS(55), 1, anon_sym_POUNDC, - STATE(815), 1, + STATE(780), 1, sym_sym_lit, - STATE(838), 1, + STATE(786), 1, sym__bare_vec_lit, - STATE(841), 1, + STATE(884), 1, sym__bare_set_lit, - STATE(930), 1, + STATE(892), 1, aux_sym_dis_expr_repeat1, - STATE(1047), 1, + STATE(1033), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1909), 1, + STATE(1863), 1, sym_dotted_sym_lit, ACTIONS(53), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(646), 2, + ACTIONS(650), 2, sym__ws, sym_comment, - ACTIONS(716), 2, + ACTIONS(1328), 2, sym_num_lit, sym_char_lit, - ACTIONS(718), 2, + ACTIONS(1330), 2, sym_nil_lit, sym_fancy_literal, - STATE(942), 2, + STATE(898), 2, sym__gap, sym_dis_expr, - STATE(842), 3, + STATE(787), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(903), 18, + STATE(790), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -27229,90 +27216,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [28379] = 38, + [28438] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(13), 1, - aux_sym_str_lit_token1, + anon_sym_COLON, + ACTIONS(15), 1, + anon_sym_COLON_COLON, ACTIONS(17), 1, + aux_sym_str_lit_token1, + ACTIONS(21), 1, aux_sym_sym_lit_token1, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(23), 1, + ACTIONS(27), 1, anon_sym_LPAREN, - ACTIONS(25), 1, + ACTIONS(29), 1, anon_sym_POUND0A, - ACTIONS(27), 1, + ACTIONS(31), 1, anon_sym_POUND, - ACTIONS(29), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(31), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, ACTIONS(37), 1, - anon_sym_POUND_POUND, + anon_sym_POUND_SQUOTE, ACTIONS(39), 1, + anon_sym_POUND_POUND, + ACTIONS(41), 1, anon_sym_POUND_EQ, - ACTIONS(45), 1, - anon_sym_BQUOTE, - ACTIONS(55), 1, - anon_sym_POUNDC, - ACTIONS(652), 1, - anon_sym_COLON_COLON, - ACTIONS(654), 1, - anon_sym_POUND_SQUOTE, - ACTIONS(656), 1, + ACTIONS(43), 1, anon_sym_AT, - ACTIONS(658), 1, + ACTIONS(45), 1, anon_sym_SQUOTE, - ACTIONS(660), 1, + ACTIONS(47), 1, + anon_sym_BQUOTE, + ACTIONS(49), 1, anon_sym_COMMA_AT, - ACTIONS(662), 1, + ACTIONS(51), 1, anon_sym_COMMA, - ACTIONS(664), 1, - anon_sym_COLON, - STATE(163), 1, + ACTIONS(55), 1, + anon_sym_POUNDC, + STATE(188), 1, aux_sym_dis_expr_repeat1, - STATE(817), 1, + STATE(780), 1, sym_sym_lit, - STATE(838), 1, + STATE(786), 1, sym__bare_vec_lit, - STATE(841), 1, + STATE(884), 1, sym__bare_set_lit, - STATE(999), 1, + STATE(1033), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1908), 1, + STATE(1863), 1, sym_dotted_sym_lit, - ACTIONS(646), 2, - sym__ws, - sym_comment, - ACTIONS(666), 2, + ACTIONS(53), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(996), 2, + ACTIONS(650), 2, + sym__ws, + sym_comment, + ACTIONS(1332), 2, sym_num_lit, sym_char_lit, - ACTIONS(998), 2, + ACTIONS(1334), 2, sym_nil_lit, sym_fancy_literal, - STATE(942), 2, + STATE(898), 2, sym__gap, sym_dis_expr, - STATE(842), 3, + STATE(787), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(832), 18, + STATE(346), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -27330,90 +27318,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [28518] = 38, + [28578] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(13), 1, - aux_sym_str_lit_token1, + anon_sym_COLON, + ACTIONS(15), 1, + anon_sym_COLON_COLON, ACTIONS(17), 1, + aux_sym_str_lit_token1, + ACTIONS(21), 1, aux_sym_sym_lit_token1, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(23), 1, + ACTIONS(27), 1, anon_sym_LPAREN, - ACTIONS(25), 1, + ACTIONS(29), 1, anon_sym_POUND0A, - ACTIONS(27), 1, + ACTIONS(31), 1, anon_sym_POUND, - ACTIONS(29), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(31), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, ACTIONS(37), 1, - anon_sym_POUND_POUND, + anon_sym_POUND_SQUOTE, ACTIONS(39), 1, + anon_sym_POUND_POUND, + ACTIONS(41), 1, anon_sym_POUND_EQ, - ACTIONS(45), 1, - anon_sym_BQUOTE, - ACTIONS(55), 1, - anon_sym_POUNDC, - ACTIONS(652), 1, - anon_sym_COLON_COLON, - ACTIONS(654), 1, - anon_sym_POUND_SQUOTE, - ACTIONS(656), 1, + ACTIONS(43), 1, anon_sym_AT, - ACTIONS(658), 1, + ACTIONS(45), 1, anon_sym_SQUOTE, - ACTIONS(660), 1, + ACTIONS(47), 1, + anon_sym_BQUOTE, + ACTIONS(49), 1, anon_sym_COMMA_AT, - ACTIONS(662), 1, + ACTIONS(51), 1, anon_sym_COMMA, - ACTIONS(664), 1, - anon_sym_COLON, - STATE(165), 1, + ACTIONS(55), 1, + anon_sym_POUNDC, + STATE(190), 1, aux_sym_dis_expr_repeat1, - STATE(817), 1, + STATE(780), 1, sym_sym_lit, - STATE(838), 1, + STATE(786), 1, sym__bare_vec_lit, - STATE(841), 1, + STATE(884), 1, sym__bare_set_lit, - STATE(999), 1, + STATE(1033), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1908), 1, + STATE(1863), 1, sym_dotted_sym_lit, - ACTIONS(646), 2, - sym__ws, - sym_comment, - ACTIONS(666), 2, + ACTIONS(53), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1024), 2, + ACTIONS(650), 2, + sym__ws, + sym_comment, + ACTIONS(1336), 2, sym_num_lit, sym_char_lit, - ACTIONS(1026), 2, + ACTIONS(1338), 2, sym_nil_lit, sym_fancy_literal, - STATE(942), 2, + STATE(898), 2, sym__gap, sym_dis_expr, - STATE(842), 3, + STATE(787), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(830), 18, + STATE(347), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -27431,90 +27420,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [28657] = 38, + [28718] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(13), 1, - aux_sym_str_lit_token1, + anon_sym_COLON, + ACTIONS(15), 1, + anon_sym_COLON_COLON, ACTIONS(17), 1, + aux_sym_str_lit_token1, + ACTIONS(21), 1, aux_sym_sym_lit_token1, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(23), 1, + ACTIONS(27), 1, anon_sym_LPAREN, - ACTIONS(25), 1, + ACTIONS(29), 1, anon_sym_POUND0A, - ACTIONS(27), 1, + ACTIONS(31), 1, anon_sym_POUND, - ACTIONS(29), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(31), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, ACTIONS(37), 1, - anon_sym_POUND_POUND, + anon_sym_POUND_SQUOTE, ACTIONS(39), 1, + anon_sym_POUND_POUND, + ACTIONS(41), 1, anon_sym_POUND_EQ, - ACTIONS(45), 1, - anon_sym_BQUOTE, - ACTIONS(55), 1, - anon_sym_POUNDC, - ACTIONS(652), 1, - anon_sym_COLON_COLON, - ACTIONS(654), 1, - anon_sym_POUND_SQUOTE, - ACTIONS(656), 1, + ACTIONS(43), 1, anon_sym_AT, - ACTIONS(658), 1, + ACTIONS(45), 1, anon_sym_SQUOTE, - ACTIONS(660), 1, + ACTIONS(47), 1, + anon_sym_BQUOTE, + ACTIONS(49), 1, anon_sym_COMMA_AT, - ACTIONS(662), 1, + ACTIONS(51), 1, anon_sym_COMMA, - ACTIONS(664), 1, - anon_sym_COLON, - STATE(182), 1, - aux_sym_dis_expr_repeat1, - STATE(817), 1, + ACTIONS(55), 1, + anon_sym_POUNDC, + STATE(780), 1, sym_sym_lit, - STATE(838), 1, + STATE(786), 1, sym__bare_vec_lit, - STATE(841), 1, + STATE(884), 1, sym__bare_set_lit, - STATE(999), 1, + STATE(892), 1, + aux_sym_dis_expr_repeat1, + STATE(1033), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1908), 1, + STATE(1863), 1, sym_dotted_sym_lit, - ACTIONS(646), 2, - sym__ws, - sym_comment, - ACTIONS(666), 2, + ACTIONS(53), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1048), 2, + ACTIONS(650), 2, + sym__ws, + sym_comment, + ACTIONS(1340), 2, sym_num_lit, sym_char_lit, - ACTIONS(1050), 2, + ACTIONS(1342), 2, sym_nil_lit, sym_fancy_literal, - STATE(942), 2, + STATE(898), 2, sym__gap, sym_dis_expr, - STATE(842), 3, + STATE(787), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(829), 18, + STATE(326), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -27532,90 +27522,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [28796] = 38, + [28858] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(13), 1, - aux_sym_str_lit_token1, + anon_sym_COLON, + ACTIONS(15), 1, + anon_sym_COLON_COLON, ACTIONS(17), 1, + aux_sym_str_lit_token1, + ACTIONS(21), 1, aux_sym_sym_lit_token1, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(23), 1, + ACTIONS(27), 1, anon_sym_LPAREN, - ACTIONS(25), 1, + ACTIONS(29), 1, anon_sym_POUND0A, - ACTIONS(27), 1, + ACTIONS(31), 1, anon_sym_POUND, - ACTIONS(29), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(31), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, ACTIONS(37), 1, - anon_sym_POUND_POUND, + anon_sym_POUND_SQUOTE, ACTIONS(39), 1, + anon_sym_POUND_POUND, + ACTIONS(41), 1, anon_sym_POUND_EQ, - ACTIONS(45), 1, - anon_sym_BQUOTE, - ACTIONS(55), 1, - anon_sym_POUNDC, - ACTIONS(652), 1, - anon_sym_COLON_COLON, - ACTIONS(654), 1, - anon_sym_POUND_SQUOTE, - ACTIONS(656), 1, + ACTIONS(43), 1, anon_sym_AT, - ACTIONS(658), 1, + ACTIONS(45), 1, anon_sym_SQUOTE, - ACTIONS(660), 1, + ACTIONS(47), 1, + anon_sym_BQUOTE, + ACTIONS(49), 1, anon_sym_COMMA_AT, - ACTIONS(662), 1, + ACTIONS(51), 1, anon_sym_COMMA, - ACTIONS(664), 1, - anon_sym_COLON, - STATE(183), 1, + ACTIONS(55), 1, + anon_sym_POUNDC, + STATE(130), 1, aux_sym_dis_expr_repeat1, - STATE(817), 1, + STATE(780), 1, sym_sym_lit, - STATE(838), 1, + STATE(786), 1, sym__bare_vec_lit, - STATE(841), 1, + STATE(884), 1, sym__bare_set_lit, - STATE(999), 1, + STATE(1033), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1908), 1, + STATE(1863), 1, sym_dotted_sym_lit, - ACTIONS(646), 2, - sym__ws, - sym_comment, - ACTIONS(666), 2, + ACTIONS(53), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1256), 2, + ACTIONS(650), 2, + sym__ws, + sym_comment, + ACTIONS(1344), 2, sym_num_lit, sym_char_lit, - ACTIONS(1258), 2, + ACTIONS(1346), 2, sym_nil_lit, sym_fancy_literal, - STATE(942), 2, + STATE(898), 2, sym__gap, sym_dis_expr, - STATE(842), 3, + STATE(787), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(826), 18, + STATE(345), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -27633,90 +27624,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [28935] = 38, + [28998] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(518), 1, + ACTIONS(140), 1, + anon_sym_COLON, + ACTIONS(142), 1, + anon_sym_COLON_COLON, + ACTIONS(144), 1, aux_sym_str_lit_token1, - ACTIONS(522), 1, + ACTIONS(148), 1, aux_sym_sym_lit_token1, - ACTIONS(524), 1, - anon_sym_LPAREN, - ACTIONS(526), 1, + ACTIONS(150), 1, anon_sym_POUND0A, - ACTIONS(528), 1, + ACTIONS(152), 1, anon_sym_POUND, - ACTIONS(530), 1, + ACTIONS(154), 1, anon_sym_POUND_QMARK, - ACTIONS(532), 1, + ACTIONS(156), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(534), 1, - anon_sym_COLON_COLON, - ACTIONS(536), 1, + ACTIONS(158), 1, anon_sym_POUND_SQUOTE, - ACTIONS(538), 1, + ACTIONS(160), 1, anon_sym_POUND_POUND, - ACTIONS(540), 1, + ACTIONS(162), 1, anon_sym_POUND_EQ, - ACTIONS(542), 1, + ACTIONS(164), 1, anon_sym_AT, - ACTIONS(544), 1, + ACTIONS(166), 1, anon_sym_SQUOTE, - ACTIONS(546), 1, + ACTIONS(168), 1, anon_sym_BQUOTE, - ACTIONS(548), 1, + ACTIONS(170), 1, anon_sym_COMMA_AT, - ACTIONS(550), 1, + ACTIONS(172), 1, anon_sym_COMMA, - ACTIONS(552), 1, - anon_sym_COLON, - ACTIONS(556), 1, + ACTIONS(178), 1, anon_sym_POUNDC, - STATE(575), 1, + ACTIONS(413), 1, + anon_sym_LPAREN, + STATE(404), 1, sym_sym_lit, - STATE(654), 1, + STATE(487), 1, sym__bare_vec_lit, - STATE(683), 1, + STATE(488), 1, sym__bare_set_lit, - STATE(930), 1, + STATE(892), 1, aux_sym_dis_expr_repeat1, - STATE(1029), 1, + STATE(981), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1906), 1, + STATE(1866), 1, sym_dotted_sym_lit, - ACTIONS(514), 2, - sym__ws, - sym_comment, - ACTIONS(554), 2, + ACTIONS(176), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1260), 2, + ACTIONS(411), 2, + sym__ws, + sym_comment, + ACTIONS(1348), 2, sym_num_lit, sym_char_lit, - ACTIONS(1262), 2, + ACTIONS(1350), 2, sym_nil_lit, sym_fancy_literal, - STATE(936), 2, + STATE(903), 2, sym__gap, sym_dis_expr, - STATE(651), 3, + STATE(486), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(767), 18, + STATE(451), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -27734,90 +27726,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [29074] = 38, + [29138] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(518), 1, + ACTIONS(1170), 1, + anon_sym_COLON, + ACTIONS(1172), 1, + anon_sym_COLON_COLON, + ACTIONS(1174), 1, aux_sym_str_lit_token1, - ACTIONS(522), 1, + ACTIONS(1178), 1, aux_sym_sym_lit_token1, - ACTIONS(524), 1, + ACTIONS(1180), 1, anon_sym_LPAREN, - ACTIONS(526), 1, + ACTIONS(1182), 1, anon_sym_POUND0A, - ACTIONS(528), 1, + ACTIONS(1184), 1, anon_sym_POUND, - ACTIONS(530), 1, + ACTIONS(1186), 1, anon_sym_POUND_QMARK, - ACTIONS(532), 1, + ACTIONS(1188), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(534), 1, - anon_sym_COLON_COLON, - ACTIONS(536), 1, + ACTIONS(1190), 1, anon_sym_POUND_SQUOTE, - ACTIONS(538), 1, + ACTIONS(1192), 1, anon_sym_POUND_POUND, - ACTIONS(540), 1, + ACTIONS(1194), 1, anon_sym_POUND_EQ, - ACTIONS(542), 1, + ACTIONS(1196), 1, anon_sym_AT, - ACTIONS(544), 1, + ACTIONS(1198), 1, anon_sym_SQUOTE, - ACTIONS(546), 1, + ACTIONS(1200), 1, anon_sym_BQUOTE, - ACTIONS(548), 1, + ACTIONS(1202), 1, anon_sym_COMMA_AT, - ACTIONS(550), 1, + ACTIONS(1204), 1, anon_sym_COMMA, - ACTIONS(552), 1, - anon_sym_COLON, - ACTIONS(556), 1, + ACTIONS(1208), 1, anon_sym_POUNDC, - STATE(575), 1, - sym_sym_lit, - STATE(654), 1, - sym__bare_vec_lit, - STATE(683), 1, - sym__bare_set_lit, - STATE(930), 1, + STATE(892), 1, aux_sym_dis_expr_repeat1, - STATE(1029), 1, + STATE(950), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1173), 1, + sym_sym_lit, + STATE(1226), 1, + sym__bare_set_lit, + STATE(1230), 1, + sym__bare_vec_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1906), 1, + STATE(1864), 1, sym_dotted_sym_lit, - ACTIONS(514), 2, - sym__ws, - sym_comment, - ACTIONS(554), 2, + ACTIONS(1206), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1264), 2, + ACTIONS(1298), 2, + sym__ws, + sym_comment, + ACTIONS(1352), 2, sym_num_lit, sym_char_lit, - ACTIONS(1266), 2, + ACTIONS(1354), 2, sym_nil_lit, sym_fancy_literal, - STATE(936), 2, + STATE(907), 2, sym__gap, sym_dis_expr, - STATE(651), 3, + STATE(1231), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(800), 18, + STATE(1341), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -27835,90 +27828,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [29213] = 38, + [29278] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(518), 1, + ACTIONS(610), 1, + anon_sym_COLON, + ACTIONS(612), 1, + anon_sym_COLON_COLON, + ACTIONS(614), 1, aux_sym_str_lit_token1, - ACTIONS(522), 1, + ACTIONS(618), 1, aux_sym_sym_lit_token1, - ACTIONS(524), 1, + ACTIONS(620), 1, anon_sym_LPAREN, - ACTIONS(526), 1, + ACTIONS(622), 1, anon_sym_POUND0A, - ACTIONS(528), 1, + ACTIONS(624), 1, anon_sym_POUND, - ACTIONS(530), 1, + ACTIONS(626), 1, anon_sym_POUND_QMARK, - ACTIONS(532), 1, + ACTIONS(628), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(534), 1, - anon_sym_COLON_COLON, - ACTIONS(536), 1, + ACTIONS(630), 1, anon_sym_POUND_SQUOTE, - ACTIONS(538), 1, + ACTIONS(632), 1, anon_sym_POUND_POUND, - ACTIONS(540), 1, + ACTIONS(634), 1, anon_sym_POUND_EQ, - ACTIONS(542), 1, + ACTIONS(636), 1, anon_sym_AT, - ACTIONS(544), 1, + ACTIONS(638), 1, anon_sym_SQUOTE, - ACTIONS(546), 1, + ACTIONS(640), 1, anon_sym_BQUOTE, - ACTIONS(548), 1, + ACTIONS(642), 1, anon_sym_COMMA_AT, - ACTIONS(550), 1, + ACTIONS(644), 1, anon_sym_COMMA, - ACTIONS(552), 1, - anon_sym_COLON, - ACTIONS(556), 1, + ACTIONS(648), 1, anon_sym_POUNDC, - STATE(218), 1, + STATE(101), 1, aux_sym_dis_expr_repeat1, - STATE(575), 1, + STATE(545), 1, sym_sym_lit, - STATE(654), 1, + STATE(688), 1, sym__bare_vec_lit, - STATE(683), 1, + STATE(691), 1, sym__bare_set_lit, - STATE(1029), 1, + STATE(1013), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1906), 1, + STATE(1862), 1, sym_dotted_sym_lit, - ACTIONS(514), 2, + ACTIONS(606), 2, sym__ws, sym_comment, - ACTIONS(554), 2, + ACTIONS(646), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1268), 2, + ACTIONS(1356), 2, sym_num_lit, sym_char_lit, - ACTIONS(1270), 2, + ACTIONS(1358), 2, sym_nil_lit, sym_fancy_literal, - STATE(936), 2, + STATE(896), 2, sym__gap, sym_dis_expr, - STATE(651), 3, + STATE(687), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(809), 18, + STATE(677), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -27936,90 +27930,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [29352] = 38, + [29418] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(518), 1, + ACTIONS(1170), 1, + anon_sym_COLON, + ACTIONS(1172), 1, + anon_sym_COLON_COLON, + ACTIONS(1174), 1, aux_sym_str_lit_token1, - ACTIONS(522), 1, + ACTIONS(1178), 1, aux_sym_sym_lit_token1, - ACTIONS(524), 1, + ACTIONS(1180), 1, anon_sym_LPAREN, - ACTIONS(526), 1, + ACTIONS(1182), 1, anon_sym_POUND0A, - ACTIONS(528), 1, + ACTIONS(1184), 1, anon_sym_POUND, - ACTIONS(530), 1, + ACTIONS(1186), 1, anon_sym_POUND_QMARK, - ACTIONS(532), 1, + ACTIONS(1188), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(534), 1, - anon_sym_COLON_COLON, - ACTIONS(536), 1, + ACTIONS(1190), 1, anon_sym_POUND_SQUOTE, - ACTIONS(538), 1, + ACTIONS(1192), 1, anon_sym_POUND_POUND, - ACTIONS(540), 1, + ACTIONS(1194), 1, anon_sym_POUND_EQ, - ACTIONS(542), 1, + ACTIONS(1196), 1, anon_sym_AT, - ACTIONS(544), 1, + ACTIONS(1198), 1, anon_sym_SQUOTE, - ACTIONS(546), 1, + ACTIONS(1200), 1, anon_sym_BQUOTE, - ACTIONS(548), 1, + ACTIONS(1202), 1, anon_sym_COMMA_AT, - ACTIONS(550), 1, + ACTIONS(1204), 1, anon_sym_COMMA, - ACTIONS(552), 1, - anon_sym_COLON, - ACTIONS(556), 1, + ACTIONS(1208), 1, anon_sym_POUNDC, - STATE(575), 1, - sym_sym_lit, - STATE(654), 1, - sym__bare_vec_lit, - STATE(683), 1, - sym__bare_set_lit, - STATE(930), 1, + STATE(892), 1, aux_sym_dis_expr_repeat1, - STATE(1029), 1, + STATE(950), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1173), 1, + sym_sym_lit, + STATE(1226), 1, + sym__bare_set_lit, + STATE(1230), 1, + sym__bare_vec_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1906), 1, + STATE(1864), 1, sym_dotted_sym_lit, - ACTIONS(514), 2, - sym__ws, - sym_comment, - ACTIONS(554), 2, + ACTIONS(1206), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1272), 2, + ACTIONS(1298), 2, + sym__ws, + sym_comment, + ACTIONS(1360), 2, sym_num_lit, sym_char_lit, - ACTIONS(1274), 2, + ACTIONS(1362), 2, sym_nil_lit, sym_fancy_literal, - STATE(936), 2, + STATE(907), 2, sym__gap, sym_dis_expr, - STATE(651), 3, + STATE(1231), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(807), 18, + STATE(1239), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -28037,90 +28032,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [29491] = 38, + [29558] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(518), 1, + ACTIONS(610), 1, + anon_sym_COLON, + ACTIONS(612), 1, + anon_sym_COLON_COLON, + ACTIONS(614), 1, aux_sym_str_lit_token1, - ACTIONS(522), 1, + ACTIONS(618), 1, aux_sym_sym_lit_token1, - ACTIONS(524), 1, + ACTIONS(620), 1, anon_sym_LPAREN, - ACTIONS(526), 1, + ACTIONS(622), 1, anon_sym_POUND0A, - ACTIONS(528), 1, + ACTIONS(624), 1, anon_sym_POUND, - ACTIONS(530), 1, + ACTIONS(626), 1, anon_sym_POUND_QMARK, - ACTIONS(532), 1, + ACTIONS(628), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(534), 1, - anon_sym_COLON_COLON, - ACTIONS(536), 1, + ACTIONS(630), 1, anon_sym_POUND_SQUOTE, - ACTIONS(538), 1, + ACTIONS(632), 1, anon_sym_POUND_POUND, - ACTIONS(540), 1, + ACTIONS(634), 1, anon_sym_POUND_EQ, - ACTIONS(542), 1, + ACTIONS(636), 1, anon_sym_AT, - ACTIONS(544), 1, + ACTIONS(638), 1, anon_sym_SQUOTE, - ACTIONS(546), 1, + ACTIONS(640), 1, anon_sym_BQUOTE, - ACTIONS(548), 1, + ACTIONS(642), 1, anon_sym_COMMA_AT, - ACTIONS(550), 1, + ACTIONS(644), 1, anon_sym_COMMA, - ACTIONS(552), 1, - anon_sym_COLON, - ACTIONS(556), 1, + ACTIONS(648), 1, anon_sym_POUNDC, - STATE(219), 1, + STATE(98), 1, aux_sym_dis_expr_repeat1, - STATE(575), 1, + STATE(545), 1, sym_sym_lit, - STATE(654), 1, + STATE(688), 1, sym__bare_vec_lit, - STATE(683), 1, + STATE(691), 1, sym__bare_set_lit, - STATE(1029), 1, + STATE(1013), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1906), 1, + STATE(1862), 1, sym_dotted_sym_lit, - ACTIONS(514), 2, + ACTIONS(606), 2, sym__ws, sym_comment, - ACTIONS(554), 2, + ACTIONS(646), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1276), 2, + ACTIONS(1364), 2, sym_num_lit, sym_char_lit, - ACTIONS(1278), 2, + ACTIONS(1366), 2, sym_nil_lit, sym_fancy_literal, - STATE(936), 2, + STATE(896), 2, sym__gap, sym_dis_expr, - STATE(651), 3, + STATE(687), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(806), 18, + STATE(697), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -28138,90 +28134,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [29630] = 38, + [29698] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(518), 1, + ACTIONS(610), 1, + anon_sym_COLON, + ACTIONS(612), 1, + anon_sym_COLON_COLON, + ACTIONS(614), 1, aux_sym_str_lit_token1, - ACTIONS(522), 1, + ACTIONS(618), 1, aux_sym_sym_lit_token1, - ACTIONS(524), 1, + ACTIONS(620), 1, anon_sym_LPAREN, - ACTIONS(526), 1, + ACTIONS(622), 1, anon_sym_POUND0A, - ACTIONS(528), 1, + ACTIONS(624), 1, anon_sym_POUND, - ACTIONS(530), 1, + ACTIONS(626), 1, anon_sym_POUND_QMARK, - ACTIONS(532), 1, + ACTIONS(628), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(534), 1, - anon_sym_COLON_COLON, - ACTIONS(536), 1, + ACTIONS(630), 1, anon_sym_POUND_SQUOTE, - ACTIONS(538), 1, + ACTIONS(632), 1, anon_sym_POUND_POUND, - ACTIONS(540), 1, + ACTIONS(634), 1, anon_sym_POUND_EQ, - ACTIONS(542), 1, + ACTIONS(636), 1, anon_sym_AT, - ACTIONS(544), 1, + ACTIONS(638), 1, anon_sym_SQUOTE, - ACTIONS(546), 1, + ACTIONS(640), 1, anon_sym_BQUOTE, - ACTIONS(548), 1, + ACTIONS(642), 1, anon_sym_COMMA_AT, - ACTIONS(550), 1, + ACTIONS(644), 1, anon_sym_COMMA, - ACTIONS(552), 1, - anon_sym_COLON, - ACTIONS(556), 1, + ACTIONS(648), 1, anon_sym_POUNDC, - STATE(575), 1, + STATE(97), 1, + aux_sym_dis_expr_repeat1, + STATE(545), 1, sym_sym_lit, - STATE(654), 1, + STATE(688), 1, sym__bare_vec_lit, - STATE(683), 1, + STATE(691), 1, sym__bare_set_lit, - STATE(930), 1, - aux_sym_dis_expr_repeat1, - STATE(1029), 1, + STATE(1013), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1906), 1, + STATE(1862), 1, sym_dotted_sym_lit, - ACTIONS(514), 2, + ACTIONS(606), 2, sym__ws, sym_comment, - ACTIONS(554), 2, + ACTIONS(646), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1280), 2, + ACTIONS(1368), 2, sym_num_lit, sym_char_lit, - ACTIONS(1282), 2, + ACTIONS(1370), 2, sym_nil_lit, sym_fancy_literal, - STATE(936), 2, + STATE(896), 2, sym__gap, sym_dis_expr, - STATE(651), 3, + STATE(687), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(805), 18, + STATE(690), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -28239,90 +28236,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [29769] = 38, + [29838] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(606), 1, + ACTIONS(562), 1, + anon_sym_COLON, + ACTIONS(564), 1, + anon_sym_COLON_COLON, + ACTIONS(566), 1, aux_sym_str_lit_token1, - ACTIONS(610), 1, + ACTIONS(570), 1, aux_sym_sym_lit_token1, - ACTIONS(612), 1, + ACTIONS(572), 1, anon_sym_LPAREN, - ACTIONS(614), 1, + ACTIONS(574), 1, anon_sym_POUND0A, - ACTIONS(616), 1, + ACTIONS(576), 1, anon_sym_POUND, - ACTIONS(618), 1, + ACTIONS(578), 1, anon_sym_POUND_QMARK, - ACTIONS(620), 1, + ACTIONS(580), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(622), 1, - anon_sym_COLON_COLON, - ACTIONS(624), 1, + ACTIONS(582), 1, anon_sym_POUND_SQUOTE, - ACTIONS(626), 1, + ACTIONS(584), 1, anon_sym_POUND_POUND, - ACTIONS(628), 1, + ACTIONS(586), 1, anon_sym_POUND_EQ, - ACTIONS(630), 1, + ACTIONS(588), 1, anon_sym_AT, - ACTIONS(632), 1, + ACTIONS(590), 1, anon_sym_SQUOTE, - ACTIONS(634), 1, + ACTIONS(592), 1, anon_sym_BQUOTE, - ACTIONS(636), 1, + ACTIONS(594), 1, anon_sym_COMMA_AT, - ACTIONS(638), 1, + ACTIONS(596), 1, anon_sym_COMMA, - ACTIONS(640), 1, - anon_sym_COLON, - ACTIONS(644), 1, + ACTIONS(600), 1, anon_sym_POUNDC, - STATE(930), 1, + STATE(168), 1, aux_sym_dis_expr_repeat1, - STATE(949), 1, + STATE(924), 1, sym_sym_lit, - STATE(963), 1, - sym__bare_set_lit, - STATE(964), 1, - sym__bare_vec_lit, - STATE(967), 1, + STATE(926), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1068), 1, + sym__bare_vec_lit, + STATE(1069), 1, + sym__bare_set_lit, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1911), 1, + STATE(1861), 1, sym_dotted_sym_lit, - ACTIONS(602), 2, + ACTIONS(558), 2, sym__ws, sym_comment, - ACTIONS(642), 2, + ACTIONS(598), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1284), 2, + ACTIONS(1372), 2, sym_num_lit, sym_char_lit, - ACTIONS(1286), 2, + ACTIONS(1374), 2, sym_nil_lit, sym_fancy_literal, - STATE(944), 2, + STATE(902), 2, sym__gap, sym_dis_expr, - STATE(965), 3, + STATE(1067), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1003), 18, + STATE(1133), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -28340,90 +28338,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [29908] = 38, + [29978] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(606), 1, + ACTIONS(660), 1, + anon_sym_COLON, + ACTIONS(662), 1, + anon_sym_COLON_COLON, + ACTIONS(664), 1, aux_sym_str_lit_token1, - ACTIONS(610), 1, + ACTIONS(668), 1, aux_sym_sym_lit_token1, - ACTIONS(612), 1, + ACTIONS(670), 1, anon_sym_LPAREN, - ACTIONS(614), 1, + ACTIONS(672), 1, anon_sym_POUND0A, - ACTIONS(616), 1, + ACTIONS(674), 1, anon_sym_POUND, - ACTIONS(618), 1, + ACTIONS(676), 1, anon_sym_POUND_QMARK, - ACTIONS(620), 1, + ACTIONS(678), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(622), 1, - anon_sym_COLON_COLON, - ACTIONS(624), 1, + ACTIONS(680), 1, anon_sym_POUND_SQUOTE, - ACTIONS(626), 1, + ACTIONS(682), 1, anon_sym_POUND_POUND, - ACTIONS(628), 1, + ACTIONS(684), 1, anon_sym_POUND_EQ, - ACTIONS(630), 1, + ACTIONS(686), 1, anon_sym_AT, - ACTIONS(632), 1, + ACTIONS(688), 1, anon_sym_SQUOTE, - ACTIONS(634), 1, + ACTIONS(690), 1, anon_sym_BQUOTE, - ACTIONS(636), 1, + ACTIONS(692), 1, anon_sym_COMMA_AT, - ACTIONS(638), 1, + ACTIONS(694), 1, anon_sym_COMMA, - ACTIONS(640), 1, - anon_sym_COLON, - ACTIONS(644), 1, + ACTIONS(698), 1, anon_sym_POUNDC, - STATE(264), 1, - aux_sym_dis_expr_repeat1, - STATE(949), 1, + STATE(566), 1, sym_sym_lit, - STATE(963), 1, + STATE(678), 1, sym__bare_set_lit, - STATE(964), 1, + STATE(679), 1, sym__bare_vec_lit, - STATE(967), 1, + STATE(892), 1, + aux_sym_dis_expr_repeat1, + STATE(925), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1911), 1, + STATE(1868), 1, sym_dotted_sym_lit, - ACTIONS(602), 2, + ACTIONS(656), 2, sym__ws, sym_comment, - ACTIONS(642), 2, + ACTIONS(696), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1288), 2, + ACTIONS(1376), 2, sym_num_lit, sym_char_lit, - ACTIONS(1290), 2, + ACTIONS(1378), 2, sym_nil_lit, sym_fancy_literal, - STATE(944), 2, + STATE(906), 2, sym__gap, sym_dis_expr, - STATE(965), 3, + STATE(680), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1002), 18, + STATE(650), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -28441,90 +28440,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [30047] = 38, + [30118] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(518), 1, + ACTIONS(562), 1, + anon_sym_COLON, + ACTIONS(564), 1, + anon_sym_COLON_COLON, + ACTIONS(566), 1, aux_sym_str_lit_token1, - ACTIONS(522), 1, + ACTIONS(570), 1, aux_sym_sym_lit_token1, - ACTIONS(524), 1, + ACTIONS(572), 1, anon_sym_LPAREN, - ACTIONS(526), 1, + ACTIONS(574), 1, anon_sym_POUND0A, - ACTIONS(528), 1, + ACTIONS(576), 1, anon_sym_POUND, - ACTIONS(530), 1, + ACTIONS(578), 1, anon_sym_POUND_QMARK, - ACTIONS(532), 1, + ACTIONS(580), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(534), 1, - anon_sym_COLON_COLON, - ACTIONS(536), 1, + ACTIONS(582), 1, anon_sym_POUND_SQUOTE, - ACTIONS(538), 1, + ACTIONS(584), 1, anon_sym_POUND_POUND, - ACTIONS(540), 1, + ACTIONS(586), 1, anon_sym_POUND_EQ, - ACTIONS(542), 1, + ACTIONS(588), 1, anon_sym_AT, - ACTIONS(544), 1, + ACTIONS(590), 1, anon_sym_SQUOTE, - ACTIONS(546), 1, + ACTIONS(592), 1, anon_sym_BQUOTE, - ACTIONS(548), 1, + ACTIONS(594), 1, anon_sym_COMMA_AT, - ACTIONS(550), 1, + ACTIONS(596), 1, anon_sym_COMMA, - ACTIONS(552), 1, - anon_sym_COLON, - ACTIONS(556), 1, + ACTIONS(600), 1, anon_sym_POUNDC, - STATE(575), 1, + STATE(892), 1, + aux_sym_dis_expr_repeat1, + STATE(924), 1, sym_sym_lit, - STATE(654), 1, + STATE(926), 1, + aux_sym_sym_lit_repeat1, + STATE(1068), 1, sym__bare_vec_lit, - STATE(683), 1, + STATE(1069), 1, sym__bare_set_lit, - STATE(930), 1, - aux_sym_dis_expr_repeat1, - STATE(1029), 1, - aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1906), 1, + STATE(1861), 1, sym_dotted_sym_lit, - ACTIONS(514), 2, + ACTIONS(558), 2, sym__ws, sym_comment, - ACTIONS(554), 2, + ACTIONS(598), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1292), 2, + ACTIONS(1380), 2, sym_num_lit, sym_char_lit, - ACTIONS(1294), 2, + ACTIONS(1382), 2, sym_nil_lit, sym_fancy_literal, - STATE(936), 2, + STATE(902), 2, sym__gap, sym_dis_expr, - STATE(651), 3, + STATE(1067), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(802), 18, + STATE(1131), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -28542,90 +28542,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [30186] = 38, + [30258] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(832), 1, + ACTIONS(610), 1, + anon_sym_COLON, + ACTIONS(612), 1, + anon_sym_COLON_COLON, + ACTIONS(614), 1, aux_sym_str_lit_token1, - ACTIONS(836), 1, + ACTIONS(618), 1, aux_sym_sym_lit_token1, - ACTIONS(838), 1, + ACTIONS(620), 1, anon_sym_LPAREN, - ACTIONS(840), 1, + ACTIONS(622), 1, anon_sym_POUND0A, - ACTIONS(842), 1, + ACTIONS(624), 1, anon_sym_POUND, - ACTIONS(844), 1, + ACTIONS(626), 1, anon_sym_POUND_QMARK, - ACTIONS(846), 1, + ACTIONS(628), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(848), 1, - anon_sym_COLON_COLON, - ACTIONS(850), 1, + ACTIONS(630), 1, anon_sym_POUND_SQUOTE, - ACTIONS(852), 1, + ACTIONS(632), 1, anon_sym_POUND_POUND, - ACTIONS(854), 1, + ACTIONS(634), 1, anon_sym_POUND_EQ, - ACTIONS(856), 1, + ACTIONS(636), 1, anon_sym_AT, - ACTIONS(858), 1, + ACTIONS(638), 1, anon_sym_SQUOTE, - ACTIONS(860), 1, + ACTIONS(640), 1, anon_sym_BQUOTE, - ACTIONS(862), 1, + ACTIONS(642), 1, anon_sym_COMMA_AT, - ACTIONS(864), 1, + ACTIONS(644), 1, anon_sym_COMMA, - ACTIONS(866), 1, - anon_sym_COLON, - ACTIONS(870), 1, + ACTIONS(648), 1, anon_sym_POUNDC, - STATE(164), 1, + STATE(75), 1, aux_sym_dis_expr_repeat1, - STATE(992), 1, - aux_sym_sym_lit_repeat1, - STATE(1076), 1, + STATE(545), 1, sym_sym_lit, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, - sym_meta_lit, - STATE(1108), 1, - sym__bare_set_lit, - STATE(1109), 1, + STATE(688), 1, sym__bare_vec_lit, - STATE(1369), 1, + STATE(691), 1, + sym__bare_set_lit, + STATE(1013), 1, + aux_sym_sym_lit_repeat1, + STATE(1162), 1, + sym_meta_lit, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1910), 1, + STATE(1862), 1, sym_dotted_sym_lit, - ACTIONS(828), 2, + ACTIONS(606), 2, sym__ws, sym_comment, - ACTIONS(868), 2, + ACTIONS(646), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1296), 2, + ACTIONS(1384), 2, sym_num_lit, sym_char_lit, - ACTIONS(1298), 2, + ACTIONS(1386), 2, sym_nil_lit, sym_fancy_literal, - STATE(943), 2, + STATE(896), 2, sym__gap, sym_dis_expr, - STATE(1110), 3, + STATE(687), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1159), 18, + STATE(576), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -28643,90 +28644,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [30325] = 38, + [30398] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(13), 1, - aux_sym_str_lit_token1, + anon_sym_COLON, + ACTIONS(15), 1, + anon_sym_COLON_COLON, ACTIONS(17), 1, - aux_sym_sym_lit_token1, - ACTIONS(19), 1, - anon_sym_CARET, + aux_sym_str_lit_token1, ACTIONS(21), 1, - anon_sym_POUND_CARET, + aux_sym_sym_lit_token1, ACTIONS(23), 1, - anon_sym_LPAREN, + anon_sym_CARET, ACTIONS(25), 1, - anon_sym_POUND0A, + anon_sym_POUND_CARET, ACTIONS(27), 1, - anon_sym_POUND, + anon_sym_LPAREN, ACTIONS(29), 1, - anon_sym_POUND_QMARK, + anon_sym_POUND0A, ACTIONS(31), 1, - anon_sym_POUND_QMARK_AT, + anon_sym_POUND, ACTIONS(33), 1, - anon_sym_COLON_COLON, + anon_sym_POUND_QMARK, ACTIONS(35), 1, - anon_sym_POUND_SQUOTE, + anon_sym_POUND_QMARK_AT, ACTIONS(37), 1, - anon_sym_POUND_POUND, + anon_sym_POUND_SQUOTE, ACTIONS(39), 1, - anon_sym_POUND_EQ, + anon_sym_POUND_POUND, ACTIONS(41), 1, - anon_sym_AT, + anon_sym_POUND_EQ, ACTIONS(43), 1, - anon_sym_SQUOTE, + anon_sym_AT, ACTIONS(45), 1, - anon_sym_BQUOTE, + anon_sym_SQUOTE, ACTIONS(47), 1, - anon_sym_COMMA_AT, + anon_sym_BQUOTE, ACTIONS(49), 1, - anon_sym_COMMA, + anon_sym_COMMA_AT, ACTIONS(51), 1, - anon_sym_COLON, + anon_sym_COMMA, ACTIONS(55), 1, anon_sym_POUNDC, - STATE(815), 1, + STATE(780), 1, sym_sym_lit, - STATE(838), 1, + STATE(786), 1, sym__bare_vec_lit, - STATE(841), 1, + STATE(884), 1, sym__bare_set_lit, - STATE(930), 1, + STATE(892), 1, aux_sym_dis_expr_repeat1, - STATE(1047), 1, + STATE(1033), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1909), 1, + STATE(1863), 1, sym_dotted_sym_lit, ACTIONS(53), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(646), 2, + ACTIONS(650), 2, sym__ws, sym_comment, - ACTIONS(692), 2, + ACTIONS(1388), 2, sym_num_lit, sym_char_lit, - ACTIONS(694), 2, + ACTIONS(1390), 2, sym_nil_lit, sym_fancy_literal, - STATE(942), 2, + STATE(898), 2, sym__gap, sym_dis_expr, - STATE(842), 3, + STATE(787), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(906), 18, + STATE(818), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -28744,90 +28746,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [30464] = 38, + [30538] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(13), 1, - aux_sym_str_lit_token1, + anon_sym_COLON, + ACTIONS(15), 1, + anon_sym_COLON_COLON, ACTIONS(17), 1, - aux_sym_sym_lit_token1, - ACTIONS(19), 1, - anon_sym_CARET, + aux_sym_str_lit_token1, ACTIONS(21), 1, - anon_sym_POUND_CARET, + aux_sym_sym_lit_token1, ACTIONS(23), 1, - anon_sym_LPAREN, + anon_sym_CARET, ACTIONS(25), 1, - anon_sym_POUND0A, + anon_sym_POUND_CARET, ACTIONS(27), 1, - anon_sym_POUND, + anon_sym_LPAREN, ACTIONS(29), 1, - anon_sym_POUND_QMARK, + anon_sym_POUND0A, ACTIONS(31), 1, - anon_sym_POUND_QMARK_AT, + anon_sym_POUND, ACTIONS(33), 1, - anon_sym_COLON_COLON, + anon_sym_POUND_QMARK, ACTIONS(35), 1, - anon_sym_POUND_SQUOTE, + anon_sym_POUND_QMARK_AT, ACTIONS(37), 1, - anon_sym_POUND_POUND, + anon_sym_POUND_SQUOTE, ACTIONS(39), 1, - anon_sym_POUND_EQ, + anon_sym_POUND_POUND, ACTIONS(41), 1, - anon_sym_AT, + anon_sym_POUND_EQ, ACTIONS(43), 1, - anon_sym_SQUOTE, + anon_sym_AT, ACTIONS(45), 1, - anon_sym_BQUOTE, + anon_sym_SQUOTE, ACTIONS(47), 1, - anon_sym_COMMA_AT, + anon_sym_BQUOTE, ACTIONS(49), 1, - anon_sym_COMMA, + anon_sym_COMMA_AT, ACTIONS(51), 1, - anon_sym_COLON, + anon_sym_COMMA, ACTIONS(55), 1, anon_sym_POUNDC, STATE(268), 1, aux_sym_dis_expr_repeat1, - STATE(815), 1, + STATE(780), 1, sym_sym_lit, - STATE(838), 1, + STATE(786), 1, sym__bare_vec_lit, - STATE(841), 1, + STATE(884), 1, sym__bare_set_lit, - STATE(1047), 1, + STATE(1033), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1909), 1, + STATE(1863), 1, sym_dotted_sym_lit, ACTIONS(53), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(646), 2, + ACTIONS(650), 2, sym__ws, sym_comment, - ACTIONS(680), 2, + ACTIONS(1392), 2, sym_num_lit, sym_char_lit, - ACTIONS(682), 2, + ACTIONS(1394), 2, sym_nil_lit, sym_fancy_literal, - STATE(942), 2, + STATE(898), 2, sym__gap, sym_dis_expr, - STATE(842), 3, + STATE(787), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(907), 18, + STATE(819), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -28845,90 +28848,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [30603] = 38, + [30678] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(61), 1, + ACTIONS(562), 1, + anon_sym_COLON, + ACTIONS(564), 1, + anon_sym_COLON_COLON, + ACTIONS(566), 1, aux_sym_str_lit_token1, - ACTIONS(65), 1, + ACTIONS(570), 1, aux_sym_sym_lit_token1, - ACTIONS(67), 1, + ACTIONS(572), 1, + anon_sym_LPAREN, + ACTIONS(574), 1, anon_sym_POUND0A, - ACTIONS(69), 1, + ACTIONS(576), 1, anon_sym_POUND, - ACTIONS(71), 1, + ACTIONS(578), 1, anon_sym_POUND_QMARK, - ACTIONS(73), 1, + ACTIONS(580), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(75), 1, - anon_sym_COLON_COLON, - ACTIONS(77), 1, + ACTIONS(582), 1, anon_sym_POUND_SQUOTE, - ACTIONS(79), 1, + ACTIONS(584), 1, anon_sym_POUND_POUND, - ACTIONS(81), 1, + ACTIONS(586), 1, anon_sym_POUND_EQ, - ACTIONS(83), 1, + ACTIONS(588), 1, anon_sym_AT, - ACTIONS(85), 1, + ACTIONS(590), 1, anon_sym_SQUOTE, - ACTIONS(87), 1, + ACTIONS(592), 1, anon_sym_BQUOTE, - ACTIONS(89), 1, + ACTIONS(594), 1, anon_sym_COMMA_AT, - ACTIONS(91), 1, + ACTIONS(596), 1, anon_sym_COMMA, - ACTIONS(95), 1, - anon_sym_COLON, - ACTIONS(99), 1, + ACTIONS(600), 1, anon_sym_POUNDC, - ACTIONS(381), 1, - anon_sym_LPAREN, - STATE(150), 1, + STATE(892), 1, aux_sym_dis_expr_repeat1, - STATE(446), 1, + STATE(924), 1, sym_sym_lit, - STATE(513), 1, - sym__bare_set_lit, - STATE(514), 1, - sym__bare_vec_lit, - STATE(1044), 1, + STATE(926), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1068), 1, + sym__bare_vec_lit, + STATE(1069), 1, + sym__bare_set_lit, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1907), 1, + STATE(1861), 1, sym_dotted_sym_lit, - ACTIONS(97), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(379), 2, + ACTIONS(558), 2, sym__ws, sym_comment, - ACTIONS(1300), 2, + ACTIONS(598), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(1396), 2, sym_num_lit, sym_char_lit, - ACTIONS(1302), 2, + ACTIONS(1398), 2, sym_nil_lit, sym_fancy_literal, - STATE(934), 2, + STATE(902), 2, sym__gap, sym_dis_expr, - STATE(515), 3, + STATE(1067), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(535), 18, + STATE(1130), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -28946,90 +28950,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [30742] = 38, + [30818] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(13), 1, - aux_sym_str_lit_token1, + anon_sym_COLON, + ACTIONS(15), 1, + anon_sym_COLON_COLON, ACTIONS(17), 1, - aux_sym_sym_lit_token1, - ACTIONS(19), 1, - anon_sym_CARET, + aux_sym_str_lit_token1, ACTIONS(21), 1, - anon_sym_POUND_CARET, + aux_sym_sym_lit_token1, ACTIONS(23), 1, - anon_sym_LPAREN, + anon_sym_CARET, ACTIONS(25), 1, - anon_sym_POUND0A, + anon_sym_POUND_CARET, ACTIONS(27), 1, - anon_sym_POUND, + anon_sym_LPAREN, ACTIONS(29), 1, - anon_sym_POUND_QMARK, + anon_sym_POUND0A, ACTIONS(31), 1, - anon_sym_POUND_QMARK_AT, + anon_sym_POUND, ACTIONS(33), 1, - anon_sym_COLON_COLON, + anon_sym_POUND_QMARK, ACTIONS(35), 1, - anon_sym_POUND_SQUOTE, + anon_sym_POUND_QMARK_AT, ACTIONS(37), 1, - anon_sym_POUND_POUND, + anon_sym_POUND_SQUOTE, ACTIONS(39), 1, - anon_sym_POUND_EQ, + anon_sym_POUND_POUND, ACTIONS(41), 1, - anon_sym_AT, + anon_sym_POUND_EQ, ACTIONS(43), 1, - anon_sym_SQUOTE, + anon_sym_AT, ACTIONS(45), 1, - anon_sym_BQUOTE, + anon_sym_SQUOTE, ACTIONS(47), 1, - anon_sym_COMMA_AT, + anon_sym_BQUOTE, ACTIONS(49), 1, - anon_sym_COMMA, + anon_sym_COMMA_AT, ACTIONS(51), 1, - anon_sym_COLON, + anon_sym_COMMA, ACTIONS(55), 1, anon_sym_POUNDC, - STATE(815), 1, + STATE(780), 1, sym_sym_lit, - STATE(838), 1, + STATE(786), 1, sym__bare_vec_lit, - STATE(841), 1, + STATE(884), 1, sym__bare_set_lit, - STATE(930), 1, + STATE(892), 1, aux_sym_dis_expr_repeat1, - STATE(1047), 1, + STATE(1033), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1909), 1, + STATE(1863), 1, sym_dotted_sym_lit, ACTIONS(53), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(646), 2, + ACTIONS(650), 2, sym__ws, sym_comment, - ACTIONS(648), 2, + ACTIONS(1400), 2, sym_num_lit, sym_char_lit, - ACTIONS(650), 2, + ACTIONS(1402), 2, sym_nil_lit, sym_fancy_literal, - STATE(942), 2, + STATE(898), 2, sym__gap, sym_dis_expr, - STATE(842), 3, + STATE(787), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(909), 18, + STATE(820), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -29047,90 +29052,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [30881] = 38, + [30958] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(13), 1, - aux_sym_str_lit_token1, + anon_sym_COLON, + ACTIONS(15), 1, + anon_sym_COLON_COLON, ACTIONS(17), 1, - aux_sym_sym_lit_token1, - ACTIONS(19), 1, - anon_sym_CARET, + aux_sym_str_lit_token1, ACTIONS(21), 1, - anon_sym_POUND_CARET, + aux_sym_sym_lit_token1, ACTIONS(23), 1, - anon_sym_LPAREN, + anon_sym_CARET, ACTIONS(25), 1, - anon_sym_POUND0A, + anon_sym_POUND_CARET, ACTIONS(27), 1, - anon_sym_POUND, + anon_sym_LPAREN, ACTIONS(29), 1, - anon_sym_POUND_QMARK, + anon_sym_POUND0A, ACTIONS(31), 1, - anon_sym_POUND_QMARK_AT, + anon_sym_POUND, ACTIONS(33), 1, - anon_sym_COLON_COLON, + anon_sym_POUND_QMARK, ACTIONS(35), 1, - anon_sym_POUND_SQUOTE, + anon_sym_POUND_QMARK_AT, ACTIONS(37), 1, - anon_sym_POUND_POUND, + anon_sym_POUND_SQUOTE, ACTIONS(39), 1, - anon_sym_POUND_EQ, + anon_sym_POUND_POUND, ACTIONS(41), 1, - anon_sym_AT, + anon_sym_POUND_EQ, ACTIONS(43), 1, - anon_sym_SQUOTE, + anon_sym_AT, ACTIONS(45), 1, - anon_sym_BQUOTE, + anon_sym_SQUOTE, ACTIONS(47), 1, - anon_sym_COMMA_AT, + anon_sym_BQUOTE, ACTIONS(49), 1, - anon_sym_COMMA, + anon_sym_COMMA_AT, ACTIONS(51), 1, - anon_sym_COLON, + anon_sym_COMMA, ACTIONS(55), 1, anon_sym_POUNDC, STATE(271), 1, aux_sym_dis_expr_repeat1, - STATE(815), 1, + STATE(780), 1, sym_sym_lit, - STATE(838), 1, + STATE(786), 1, sym__bare_vec_lit, - STATE(841), 1, + STATE(884), 1, sym__bare_set_lit, - STATE(1047), 1, + STATE(1033), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1909), 1, + STATE(1863), 1, sym_dotted_sym_lit, ACTIONS(53), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(646), 2, + ACTIONS(650), 2, sym__ws, sym_comment, - ACTIONS(964), 2, + ACTIONS(1404), 2, sym_num_lit, sym_char_lit, - ACTIONS(966), 2, + ACTIONS(1406), 2, sym_nil_lit, sym_fancy_literal, - STATE(942), 2, + STATE(898), 2, sym__gap, sym_dis_expr, - STATE(842), 3, + STATE(787), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(910), 18, + STATE(821), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -29148,90 +29154,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [31020] = 38, + [31098] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(13), 1, - aux_sym_str_lit_token1, - ACTIONS(17), 1, - aux_sym_sym_lit_token1, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(23), 1, + ACTIONS(660), 1, + anon_sym_COLON, + ACTIONS(662), 1, + anon_sym_COLON_COLON, + ACTIONS(664), 1, + aux_sym_str_lit_token1, + ACTIONS(668), 1, + aux_sym_sym_lit_token1, + ACTIONS(670), 1, anon_sym_LPAREN, - ACTIONS(25), 1, + ACTIONS(672), 1, anon_sym_POUND0A, - ACTIONS(27), 1, + ACTIONS(674), 1, anon_sym_POUND, - ACTIONS(29), 1, + ACTIONS(676), 1, anon_sym_POUND_QMARK, - ACTIONS(31), 1, + ACTIONS(678), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(33), 1, - anon_sym_COLON_COLON, - ACTIONS(35), 1, + ACTIONS(680), 1, anon_sym_POUND_SQUOTE, - ACTIONS(37), 1, + ACTIONS(682), 1, anon_sym_POUND_POUND, - ACTIONS(39), 1, + ACTIONS(684), 1, anon_sym_POUND_EQ, - ACTIONS(41), 1, + ACTIONS(686), 1, anon_sym_AT, - ACTIONS(43), 1, + ACTIONS(688), 1, anon_sym_SQUOTE, - ACTIONS(45), 1, + ACTIONS(690), 1, anon_sym_BQUOTE, - ACTIONS(47), 1, + ACTIONS(692), 1, anon_sym_COMMA_AT, - ACTIONS(49), 1, + ACTIONS(694), 1, anon_sym_COMMA, - ACTIONS(51), 1, - anon_sym_COLON, - ACTIONS(55), 1, + ACTIONS(698), 1, anon_sym_POUNDC, - STATE(815), 1, + STATE(566), 1, sym_sym_lit, - STATE(838), 1, - sym__bare_vec_lit, - STATE(841), 1, + STATE(678), 1, sym__bare_set_lit, - STATE(930), 1, + STATE(679), 1, + sym__bare_vec_lit, + STATE(892), 1, aux_sym_dis_expr_repeat1, - STATE(1047), 1, + STATE(925), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1909), 1, + STATE(1868), 1, sym_dotted_sym_lit, - ACTIONS(53), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(646), 2, + ACTIONS(656), 2, sym__ws, sym_comment, - ACTIONS(1304), 2, + ACTIONS(696), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(1408), 2, sym_num_lit, sym_char_lit, - ACTIONS(1306), 2, + ACTIONS(1410), 2, sym_nil_lit, sym_fancy_literal, - STATE(942), 2, + STATE(906), 2, sym__gap, sym_dis_expr, - STATE(842), 3, + STATE(680), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(220), 18, + STATE(633), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -29249,90 +29256,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [31159] = 38, + [31238] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(13), 1, - aux_sym_str_lit_token1, - ACTIONS(17), 1, - aux_sym_sym_lit_token1, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(23), 1, + ACTIONS(660), 1, + anon_sym_COLON, + ACTIONS(662), 1, + anon_sym_COLON_COLON, + ACTIONS(664), 1, + aux_sym_str_lit_token1, + ACTIONS(668), 1, + aux_sym_sym_lit_token1, + ACTIONS(670), 1, anon_sym_LPAREN, - ACTIONS(25), 1, + ACTIONS(672), 1, anon_sym_POUND0A, - ACTIONS(27), 1, + ACTIONS(674), 1, anon_sym_POUND, - ACTIONS(29), 1, + ACTIONS(676), 1, anon_sym_POUND_QMARK, - ACTIONS(31), 1, + ACTIONS(678), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(33), 1, - anon_sym_COLON_COLON, - ACTIONS(35), 1, + ACTIONS(680), 1, anon_sym_POUND_SQUOTE, - ACTIONS(37), 1, + ACTIONS(682), 1, anon_sym_POUND_POUND, - ACTIONS(39), 1, + ACTIONS(684), 1, anon_sym_POUND_EQ, - ACTIONS(41), 1, + ACTIONS(686), 1, anon_sym_AT, - ACTIONS(43), 1, + ACTIONS(688), 1, anon_sym_SQUOTE, - ACTIONS(45), 1, + ACTIONS(690), 1, anon_sym_BQUOTE, - ACTIONS(47), 1, + ACTIONS(692), 1, anon_sym_COMMA_AT, - ACTIONS(49), 1, + ACTIONS(694), 1, anon_sym_COMMA, - ACTIONS(51), 1, - anon_sym_COLON, - ACTIONS(55), 1, + ACTIONS(698), 1, anon_sym_POUNDC, - STATE(815), 1, + STATE(225), 1, + aux_sym_dis_expr_repeat1, + STATE(566), 1, sym_sym_lit, - STATE(838), 1, - sym__bare_vec_lit, - STATE(841), 1, + STATE(678), 1, sym__bare_set_lit, - STATE(930), 1, - aux_sym_dis_expr_repeat1, - STATE(1047), 1, + STATE(679), 1, + sym__bare_vec_lit, + STATE(925), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1909), 1, + STATE(1868), 1, sym_dotted_sym_lit, - ACTIONS(53), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(646), 2, + ACTIONS(656), 2, sym__ws, sym_comment, - ACTIONS(1308), 2, + ACTIONS(696), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(1412), 2, sym_num_lit, sym_char_lit, - ACTIONS(1310), 2, + ACTIONS(1414), 2, sym_nil_lit, sym_fancy_literal, - STATE(942), 2, + STATE(906), 2, sym__gap, sym_dis_expr, - STATE(842), 3, + STATE(680), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(222), 18, + STATE(644), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -29350,90 +29358,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [31298] = 38, + [31378] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(13), 1, - aux_sym_str_lit_token1, - ACTIONS(17), 1, - aux_sym_sym_lit_token1, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(23), 1, + ACTIONS(562), 1, + anon_sym_COLON, + ACTIONS(564), 1, + anon_sym_COLON_COLON, + ACTIONS(566), 1, + aux_sym_str_lit_token1, + ACTIONS(570), 1, + aux_sym_sym_lit_token1, + ACTIONS(572), 1, anon_sym_LPAREN, - ACTIONS(25), 1, + ACTIONS(574), 1, anon_sym_POUND0A, - ACTIONS(27), 1, + ACTIONS(576), 1, anon_sym_POUND, - ACTIONS(29), 1, + ACTIONS(578), 1, anon_sym_POUND_QMARK, - ACTIONS(31), 1, + ACTIONS(580), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(33), 1, - anon_sym_COLON_COLON, - ACTIONS(35), 1, + ACTIONS(582), 1, anon_sym_POUND_SQUOTE, - ACTIONS(37), 1, + ACTIONS(584), 1, anon_sym_POUND_POUND, - ACTIONS(39), 1, + ACTIONS(586), 1, anon_sym_POUND_EQ, - ACTIONS(41), 1, + ACTIONS(588), 1, anon_sym_AT, - ACTIONS(43), 1, + ACTIONS(590), 1, anon_sym_SQUOTE, - ACTIONS(45), 1, + ACTIONS(592), 1, anon_sym_BQUOTE, - ACTIONS(47), 1, + ACTIONS(594), 1, anon_sym_COMMA_AT, - ACTIONS(49), 1, + ACTIONS(596), 1, anon_sym_COMMA, - ACTIONS(51), 1, - anon_sym_COLON, - ACTIONS(55), 1, + ACTIONS(600), 1, anon_sym_POUNDC, - STATE(233), 1, + STATE(892), 1, aux_sym_dis_expr_repeat1, - STATE(815), 1, + STATE(924), 1, sym_sym_lit, - STATE(838), 1, + STATE(926), 1, + aux_sym_sym_lit_repeat1, + STATE(1068), 1, sym__bare_vec_lit, - STATE(841), 1, + STATE(1069), 1, sym__bare_set_lit, - STATE(1047), 1, - aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1909), 1, + STATE(1861), 1, sym_dotted_sym_lit, - ACTIONS(53), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(646), 2, + ACTIONS(558), 2, sym__ws, sym_comment, - ACTIONS(1312), 2, + ACTIONS(598), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(1416), 2, sym_num_lit, sym_char_lit, - ACTIONS(1314), 2, + ACTIONS(1418), 2, sym_nil_lit, sym_fancy_literal, - STATE(942), 2, + STATE(902), 2, sym__gap, sym_dis_expr, - STATE(842), 3, + STATE(1067), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(248), 18, + STATE(1129), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -29451,90 +29460,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [31437] = 38, + [31518] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(13), 1, - aux_sym_str_lit_token1, - ACTIONS(17), 1, - aux_sym_sym_lit_token1, - ACTIONS(19), 1, - anon_sym_CARET, - ACTIONS(21), 1, - anon_sym_POUND_CARET, ACTIONS(23), 1, - anon_sym_LPAREN, + anon_sym_CARET, ACTIONS(25), 1, + anon_sym_POUND_CARET, + ACTIONS(140), 1, + anon_sym_COLON, + ACTIONS(142), 1, + anon_sym_COLON_COLON, + ACTIONS(144), 1, + aux_sym_str_lit_token1, + ACTIONS(148), 1, + aux_sym_sym_lit_token1, + ACTIONS(150), 1, anon_sym_POUND0A, - ACTIONS(27), 1, + ACTIONS(152), 1, anon_sym_POUND, - ACTIONS(29), 1, + ACTIONS(154), 1, anon_sym_POUND_QMARK, - ACTIONS(31), 1, + ACTIONS(156), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(33), 1, - anon_sym_COLON_COLON, - ACTIONS(35), 1, + ACTIONS(158), 1, anon_sym_POUND_SQUOTE, - ACTIONS(37), 1, + ACTIONS(160), 1, anon_sym_POUND_POUND, - ACTIONS(39), 1, + ACTIONS(162), 1, anon_sym_POUND_EQ, - ACTIONS(41), 1, + ACTIONS(164), 1, anon_sym_AT, - ACTIONS(43), 1, + ACTIONS(166), 1, anon_sym_SQUOTE, - ACTIONS(45), 1, + ACTIONS(168), 1, anon_sym_BQUOTE, - ACTIONS(47), 1, + ACTIONS(170), 1, anon_sym_COMMA_AT, - ACTIONS(49), 1, + ACTIONS(172), 1, anon_sym_COMMA, - ACTIONS(51), 1, - anon_sym_COLON, - ACTIONS(55), 1, + ACTIONS(178), 1, anon_sym_POUNDC, - STATE(234), 1, - aux_sym_dis_expr_repeat1, - STATE(815), 1, + ACTIONS(413), 1, + anon_sym_LPAREN, + STATE(404), 1, sym_sym_lit, - STATE(838), 1, + STATE(487), 1, sym__bare_vec_lit, - STATE(841), 1, + STATE(488), 1, sym__bare_set_lit, - STATE(1047), 1, + STATE(892), 1, + aux_sym_dis_expr_repeat1, + STATE(981), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1909), 1, + STATE(1866), 1, sym_dotted_sym_lit, - ACTIONS(53), 2, + ACTIONS(176), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(646), 2, + ACTIONS(411), 2, sym__ws, sym_comment, - ACTIONS(1316), 2, + ACTIONS(1420), 2, sym_num_lit, sym_char_lit, - ACTIONS(1318), 2, + ACTIONS(1422), 2, sym_nil_lit, sym_fancy_literal, - STATE(942), 2, + STATE(903), 2, sym__gap, sym_dis_expr, - STATE(842), 3, + STATE(486), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(250), 18, + STATE(447), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -29552,90 +29562,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [31576] = 38, + [31658] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(61), 1, + ACTIONS(140), 1, + anon_sym_COLON, + ACTIONS(142), 1, + anon_sym_COLON_COLON, + ACTIONS(144), 1, aux_sym_str_lit_token1, - ACTIONS(65), 1, + ACTIONS(148), 1, aux_sym_sym_lit_token1, - ACTIONS(67), 1, + ACTIONS(150), 1, anon_sym_POUND0A, - ACTIONS(69), 1, + ACTIONS(152), 1, anon_sym_POUND, - ACTIONS(71), 1, + ACTIONS(154), 1, anon_sym_POUND_QMARK, - ACTIONS(73), 1, + ACTIONS(156), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(75), 1, - anon_sym_COLON_COLON, - ACTIONS(77), 1, + ACTIONS(158), 1, anon_sym_POUND_SQUOTE, - ACTIONS(79), 1, + ACTIONS(160), 1, anon_sym_POUND_POUND, - ACTIONS(81), 1, + ACTIONS(162), 1, anon_sym_POUND_EQ, - ACTIONS(83), 1, + ACTIONS(164), 1, anon_sym_AT, - ACTIONS(85), 1, + ACTIONS(166), 1, anon_sym_SQUOTE, - ACTIONS(87), 1, + ACTIONS(168), 1, anon_sym_BQUOTE, - ACTIONS(89), 1, + ACTIONS(170), 1, anon_sym_COMMA_AT, - ACTIONS(91), 1, + ACTIONS(172), 1, anon_sym_COMMA, - ACTIONS(95), 1, - anon_sym_COLON, - ACTIONS(99), 1, + ACTIONS(178), 1, anon_sym_POUNDC, - ACTIONS(381), 1, + ACTIONS(413), 1, anon_sym_LPAREN, - STATE(152), 1, + STATE(270), 1, aux_sym_dis_expr_repeat1, - STATE(446), 1, + STATE(404), 1, sym_sym_lit, - STATE(513), 1, - sym__bare_set_lit, - STATE(514), 1, + STATE(487), 1, sym__bare_vec_lit, - STATE(1044), 1, + STATE(488), 1, + sym__bare_set_lit, + STATE(981), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1907), 1, + STATE(1866), 1, sym_dotted_sym_lit, - ACTIONS(97), 2, + ACTIONS(176), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(379), 2, + ACTIONS(411), 2, sym__ws, sym_comment, - ACTIONS(1320), 2, + ACTIONS(1424), 2, sym_num_lit, sym_char_lit, - ACTIONS(1322), 2, + ACTIONS(1426), 2, sym_nil_lit, sym_fancy_literal, - STATE(934), 2, + STATE(903), 2, sym__gap, sym_dis_expr, - STATE(515), 3, + STATE(486), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(538), 18, + STATE(446), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -29653,90 +29664,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [31715] = 38, + [31798] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(832), 1, + ACTIONS(1170), 1, + anon_sym_COLON, + ACTIONS(1172), 1, + anon_sym_COLON_COLON, + ACTIONS(1174), 1, aux_sym_str_lit_token1, - ACTIONS(836), 1, + ACTIONS(1178), 1, aux_sym_sym_lit_token1, - ACTIONS(838), 1, + ACTIONS(1180), 1, anon_sym_LPAREN, - ACTIONS(840), 1, + ACTIONS(1182), 1, anon_sym_POUND0A, - ACTIONS(842), 1, + ACTIONS(1184), 1, anon_sym_POUND, - ACTIONS(844), 1, + ACTIONS(1186), 1, anon_sym_POUND_QMARK, - ACTIONS(846), 1, + ACTIONS(1188), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(848), 1, - anon_sym_COLON_COLON, - ACTIONS(850), 1, + ACTIONS(1190), 1, anon_sym_POUND_SQUOTE, - ACTIONS(852), 1, + ACTIONS(1192), 1, anon_sym_POUND_POUND, - ACTIONS(854), 1, + ACTIONS(1194), 1, anon_sym_POUND_EQ, - ACTIONS(856), 1, + ACTIONS(1196), 1, anon_sym_AT, - ACTIONS(858), 1, + ACTIONS(1198), 1, anon_sym_SQUOTE, - ACTIONS(860), 1, + ACTIONS(1200), 1, anon_sym_BQUOTE, - ACTIONS(862), 1, + ACTIONS(1202), 1, anon_sym_COMMA_AT, - ACTIONS(864), 1, + ACTIONS(1204), 1, anon_sym_COMMA, - ACTIONS(866), 1, - anon_sym_COLON, - ACTIONS(870), 1, + ACTIONS(1208), 1, anon_sym_POUNDC, - STATE(168), 1, + STATE(892), 1, aux_sym_dis_expr_repeat1, - STATE(992), 1, + STATE(950), 1, aux_sym_sym_lit_repeat1, - STATE(1076), 1, - sym_sym_lit, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1108), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1173), 1, + sym_sym_lit, + STATE(1226), 1, sym__bare_set_lit, - STATE(1109), 1, + STATE(1230), 1, sym__bare_vec_lit, - STATE(1369), 1, + STATE(1337), 1, sym__metadata_lit, - STATE(1910), 1, + STATE(1864), 1, sym_dotted_sym_lit, - ACTIONS(828), 2, - sym__ws, - sym_comment, - ACTIONS(868), 2, + ACTIONS(1206), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1324), 2, + ACTIONS(1298), 2, + sym__ws, + sym_comment, + ACTIONS(1428), 2, sym_num_lit, sym_char_lit, - ACTIONS(1326), 2, + ACTIONS(1430), 2, sym_nil_lit, sym_fancy_literal, - STATE(943), 2, + STATE(907), 2, sym__gap, sym_dis_expr, - STATE(1110), 3, + STATE(1231), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1158), 18, + STATE(1242), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -29754,90 +29766,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [31854] = 38, + [31938] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(13), 1, - aux_sym_str_lit_token1, - ACTIONS(17), 1, - aux_sym_sym_lit_token1, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(23), 1, + ACTIONS(1170), 1, + anon_sym_COLON, + ACTIONS(1172), 1, + anon_sym_COLON_COLON, + ACTIONS(1174), 1, + aux_sym_str_lit_token1, + ACTIONS(1178), 1, + aux_sym_sym_lit_token1, + ACTIONS(1180), 1, anon_sym_LPAREN, - ACTIONS(25), 1, + ACTIONS(1182), 1, anon_sym_POUND0A, - ACTIONS(27), 1, + ACTIONS(1184), 1, anon_sym_POUND, - ACTIONS(29), 1, + ACTIONS(1186), 1, anon_sym_POUND_QMARK, - ACTIONS(31), 1, + ACTIONS(1188), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(33), 1, - anon_sym_COLON_COLON, - ACTIONS(35), 1, + ACTIONS(1190), 1, anon_sym_POUND_SQUOTE, - ACTIONS(37), 1, + ACTIONS(1192), 1, anon_sym_POUND_POUND, - ACTIONS(39), 1, + ACTIONS(1194), 1, anon_sym_POUND_EQ, - ACTIONS(41), 1, + ACTIONS(1196), 1, anon_sym_AT, - ACTIONS(43), 1, + ACTIONS(1198), 1, anon_sym_SQUOTE, - ACTIONS(45), 1, + ACTIONS(1200), 1, anon_sym_BQUOTE, - ACTIONS(47), 1, + ACTIONS(1202), 1, anon_sym_COMMA_AT, - ACTIONS(49), 1, + ACTIONS(1204), 1, anon_sym_COMMA, - ACTIONS(51), 1, - anon_sym_COLON, - ACTIONS(55), 1, + ACTIONS(1208), 1, anon_sym_POUNDC, - STATE(815), 1, - sym_sym_lit, - STATE(838), 1, - sym__bare_vec_lit, - STATE(841), 1, - sym__bare_set_lit, - STATE(930), 1, + STATE(892), 1, aux_sym_dis_expr_repeat1, - STATE(1047), 1, + STATE(950), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1173), 1, + sym_sym_lit, + STATE(1226), 1, + sym__bare_set_lit, + STATE(1230), 1, + sym__bare_vec_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1909), 1, + STATE(1864), 1, sym_dotted_sym_lit, - ACTIONS(53), 2, + ACTIONS(1206), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(646), 2, + ACTIONS(1298), 2, sym__ws, sym_comment, - ACTIONS(1328), 2, + ACTIONS(1432), 2, sym_num_lit, sym_char_lit, - ACTIONS(1330), 2, + ACTIONS(1434), 2, sym_nil_lit, sym_fancy_literal, - STATE(942), 2, + STATE(907), 2, sym__gap, sym_dis_expr, - STATE(842), 3, + STATE(1231), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(267), 18, + STATE(1243), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -29855,90 +29868,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [31993] = 38, + [32078] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(19), 1, - anon_sym_CARET, - ACTIONS(21), 1, - anon_sym_POUND_CARET, - ACTIONS(61), 1, + ACTIONS(13), 1, + anon_sym_COLON, + ACTIONS(15), 1, + anon_sym_COLON_COLON, + ACTIONS(17), 1, aux_sym_str_lit_token1, - ACTIONS(65), 1, + ACTIONS(21), 1, aux_sym_sym_lit_token1, - ACTIONS(67), 1, + ACTIONS(23), 1, + anon_sym_CARET, + ACTIONS(25), 1, + anon_sym_POUND_CARET, + ACTIONS(27), 1, + anon_sym_LPAREN, + ACTIONS(29), 1, anon_sym_POUND0A, - ACTIONS(69), 1, + ACTIONS(31), 1, anon_sym_POUND, - ACTIONS(71), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(73), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(75), 1, - anon_sym_COLON_COLON, - ACTIONS(77), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(79), 1, + ACTIONS(39), 1, anon_sym_POUND_POUND, - ACTIONS(81), 1, + ACTIONS(41), 1, anon_sym_POUND_EQ, - ACTIONS(83), 1, + ACTIONS(43), 1, anon_sym_AT, - ACTIONS(85), 1, + ACTIONS(45), 1, anon_sym_SQUOTE, - ACTIONS(87), 1, + ACTIONS(47), 1, anon_sym_BQUOTE, - ACTIONS(89), 1, + ACTIONS(49), 1, anon_sym_COMMA_AT, - ACTIONS(91), 1, + ACTIONS(51), 1, anon_sym_COMMA, - ACTIONS(95), 1, - anon_sym_COLON, - ACTIONS(99), 1, + ACTIONS(55), 1, anon_sym_POUNDC, - ACTIONS(381), 1, - anon_sym_LPAREN, - STATE(160), 1, + STATE(216), 1, aux_sym_dis_expr_repeat1, - STATE(446), 1, + STATE(780), 1, sym_sym_lit, - STATE(513), 1, - sym__bare_set_lit, - STATE(514), 1, + STATE(786), 1, sym__bare_vec_lit, - STATE(1044), 1, + STATE(884), 1, + sym__bare_set_lit, + STATE(1033), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1907), 1, + STATE(1863), 1, sym_dotted_sym_lit, - ACTIONS(97), 2, + ACTIONS(53), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(379), 2, + ACTIONS(650), 2, sym__ws, sym_comment, - ACTIONS(1332), 2, + ACTIONS(1436), 2, sym_num_lit, sym_char_lit, - ACTIONS(1334), 2, + ACTIONS(1438), 2, sym_nil_lit, sym_fancy_literal, - STATE(934), 2, + STATE(898), 2, sym__gap, sym_dis_expr, - STATE(515), 3, + STATE(787), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(545), 18, + STATE(251), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -29956,90 +29970,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [32132] = 38, + [32218] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(61), 1, + ACTIONS(140), 1, + anon_sym_COLON, + ACTIONS(142), 1, + anon_sym_COLON_COLON, + ACTIONS(144), 1, aux_sym_str_lit_token1, - ACTIONS(65), 1, + ACTIONS(148), 1, aux_sym_sym_lit_token1, - ACTIONS(67), 1, + ACTIONS(150), 1, anon_sym_POUND0A, - ACTIONS(69), 1, + ACTIONS(152), 1, anon_sym_POUND, - ACTIONS(71), 1, + ACTIONS(154), 1, anon_sym_POUND_QMARK, - ACTIONS(73), 1, + ACTIONS(156), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(75), 1, - anon_sym_COLON_COLON, - ACTIONS(77), 1, + ACTIONS(158), 1, anon_sym_POUND_SQUOTE, - ACTIONS(79), 1, + ACTIONS(160), 1, anon_sym_POUND_POUND, - ACTIONS(81), 1, + ACTIONS(162), 1, anon_sym_POUND_EQ, - ACTIONS(83), 1, + ACTIONS(164), 1, anon_sym_AT, - ACTIONS(85), 1, + ACTIONS(166), 1, anon_sym_SQUOTE, - ACTIONS(87), 1, + ACTIONS(168), 1, anon_sym_BQUOTE, - ACTIONS(89), 1, + ACTIONS(170), 1, anon_sym_COMMA_AT, - ACTIONS(91), 1, + ACTIONS(172), 1, anon_sym_COMMA, - ACTIONS(95), 1, - anon_sym_COLON, - ACTIONS(99), 1, + ACTIONS(178), 1, anon_sym_POUNDC, - ACTIONS(381), 1, + ACTIONS(413), 1, anon_sym_LPAREN, - STATE(170), 1, - aux_sym_dis_expr_repeat1, - STATE(446), 1, + STATE(404), 1, sym_sym_lit, - STATE(513), 1, - sym__bare_set_lit, - STATE(514), 1, + STATE(487), 1, sym__bare_vec_lit, - STATE(1044), 1, + STATE(488), 1, + sym__bare_set_lit, + STATE(892), 1, + aux_sym_dis_expr_repeat1, + STATE(981), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1907), 1, + STATE(1866), 1, sym_dotted_sym_lit, - ACTIONS(97), 2, + ACTIONS(176), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(379), 2, + ACTIONS(411), 2, sym__ws, sym_comment, - ACTIONS(1336), 2, + ACTIONS(1440), 2, sym_num_lit, sym_char_lit, - ACTIONS(1338), 2, + ACTIONS(1442), 2, sym_nil_lit, sym_fancy_literal, - STATE(934), 2, + STATE(903), 2, sym__gap, sym_dis_expr, - STATE(515), 3, + STATE(486), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(549), 18, + STATE(443), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -30057,90 +30072,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [32271] = 38, + [32358] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(832), 1, + ACTIONS(660), 1, + anon_sym_COLON, + ACTIONS(662), 1, + anon_sym_COLON_COLON, + ACTIONS(664), 1, aux_sym_str_lit_token1, - ACTIONS(836), 1, + ACTIONS(668), 1, aux_sym_sym_lit_token1, - ACTIONS(838), 1, + ACTIONS(670), 1, anon_sym_LPAREN, - ACTIONS(840), 1, + ACTIONS(672), 1, anon_sym_POUND0A, - ACTIONS(842), 1, + ACTIONS(674), 1, anon_sym_POUND, - ACTIONS(844), 1, + ACTIONS(676), 1, anon_sym_POUND_QMARK, - ACTIONS(846), 1, + ACTIONS(678), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(848), 1, - anon_sym_COLON_COLON, - ACTIONS(850), 1, + ACTIONS(680), 1, anon_sym_POUND_SQUOTE, - ACTIONS(852), 1, + ACTIONS(682), 1, anon_sym_POUND_POUND, - ACTIONS(854), 1, + ACTIONS(684), 1, anon_sym_POUND_EQ, - ACTIONS(856), 1, + ACTIONS(686), 1, anon_sym_AT, - ACTIONS(858), 1, + ACTIONS(688), 1, anon_sym_SQUOTE, - ACTIONS(860), 1, + ACTIONS(690), 1, anon_sym_BQUOTE, - ACTIONS(862), 1, + ACTIONS(692), 1, anon_sym_COMMA_AT, - ACTIONS(864), 1, + ACTIONS(694), 1, anon_sym_COMMA, - ACTIONS(866), 1, - anon_sym_COLON, - ACTIONS(870), 1, + ACTIONS(698), 1, anon_sym_POUNDC, - STATE(169), 1, - aux_sym_dis_expr_repeat1, - STATE(992), 1, - aux_sym_sym_lit_repeat1, - STATE(1076), 1, + STATE(566), 1, sym_sym_lit, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, - sym_meta_lit, - STATE(1108), 1, + STATE(678), 1, sym__bare_set_lit, - STATE(1109), 1, + STATE(679), 1, sym__bare_vec_lit, - STATE(1369), 1, + STATE(892), 1, + aux_sym_dis_expr_repeat1, + STATE(925), 1, + aux_sym_sym_lit_repeat1, + STATE(1162), 1, + sym_meta_lit, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1910), 1, + STATE(1868), 1, sym_dotted_sym_lit, - ACTIONS(828), 2, + ACTIONS(656), 2, sym__ws, sym_comment, - ACTIONS(868), 2, + ACTIONS(696), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1340), 2, + ACTIONS(1444), 2, sym_num_lit, sym_char_lit, - ACTIONS(1342), 2, + ACTIONS(1446), 2, sym_nil_lit, sym_fancy_literal, - STATE(943), 2, + STATE(906), 2, sym__gap, sym_dis_expr, - STATE(1110), 3, + STATE(680), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1157), 18, + STATE(603), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -30158,90 +30174,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [32410] = 38, + [32498] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(606), 1, - aux_sym_str_lit_token1, ACTIONS(610), 1, - aux_sym_sym_lit_token1, + anon_sym_COLON, ACTIONS(612), 1, - anon_sym_LPAREN, + anon_sym_COLON_COLON, ACTIONS(614), 1, - anon_sym_POUND0A, - ACTIONS(616), 1, - anon_sym_POUND, + aux_sym_str_lit_token1, ACTIONS(618), 1, - anon_sym_POUND_QMARK, + aux_sym_sym_lit_token1, ACTIONS(620), 1, - anon_sym_POUND_QMARK_AT, + anon_sym_LPAREN, ACTIONS(622), 1, - anon_sym_COLON_COLON, + anon_sym_POUND0A, ACTIONS(624), 1, - anon_sym_POUND_SQUOTE, + anon_sym_POUND, ACTIONS(626), 1, - anon_sym_POUND_POUND, + anon_sym_POUND_QMARK, ACTIONS(628), 1, - anon_sym_POUND_EQ, + anon_sym_POUND_QMARK_AT, ACTIONS(630), 1, - anon_sym_AT, + anon_sym_POUND_SQUOTE, ACTIONS(632), 1, - anon_sym_SQUOTE, + anon_sym_POUND_POUND, ACTIONS(634), 1, - anon_sym_BQUOTE, + anon_sym_POUND_EQ, ACTIONS(636), 1, - anon_sym_COMMA_AT, + anon_sym_AT, ACTIONS(638), 1, - anon_sym_COMMA, + anon_sym_SQUOTE, ACTIONS(640), 1, - anon_sym_COLON, + anon_sym_BQUOTE, + ACTIONS(642), 1, + anon_sym_COMMA_AT, ACTIONS(644), 1, + anon_sym_COMMA, + ACTIONS(648), 1, anon_sym_POUNDC, - STATE(930), 1, + STATE(115), 1, aux_sym_dis_expr_repeat1, - STATE(949), 1, + STATE(545), 1, sym_sym_lit, - STATE(963), 1, - sym__bare_set_lit, - STATE(964), 1, + STATE(688), 1, sym__bare_vec_lit, - STATE(967), 1, + STATE(691), 1, + sym__bare_set_lit, + STATE(1013), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1911), 1, + STATE(1862), 1, sym_dotted_sym_lit, - ACTIONS(602), 2, + ACTIONS(606), 2, sym__ws, sym_comment, - ACTIONS(642), 2, + ACTIONS(646), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1344), 2, + ACTIONS(1448), 2, sym_num_lit, sym_char_lit, - ACTIONS(1346), 2, + ACTIONS(1450), 2, sym_nil_lit, sym_fancy_literal, - STATE(944), 2, + STATE(896), 2, sym__gap, sym_dis_expr, - STATE(965), 3, + STATE(687), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1001), 18, + STATE(701), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -30259,90 +30276,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [32549] = 38, + [32638] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(832), 1, + ACTIONS(610), 1, + anon_sym_COLON, + ACTIONS(612), 1, + anon_sym_COLON_COLON, + ACTIONS(614), 1, aux_sym_str_lit_token1, - ACTIONS(836), 1, + ACTIONS(618), 1, aux_sym_sym_lit_token1, - ACTIONS(838), 1, + ACTIONS(620), 1, anon_sym_LPAREN, - ACTIONS(840), 1, + ACTIONS(622), 1, anon_sym_POUND0A, - ACTIONS(842), 1, + ACTIONS(624), 1, anon_sym_POUND, - ACTIONS(844), 1, + ACTIONS(626), 1, anon_sym_POUND_QMARK, - ACTIONS(846), 1, + ACTIONS(628), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(848), 1, - anon_sym_COLON_COLON, - ACTIONS(850), 1, + ACTIONS(630), 1, anon_sym_POUND_SQUOTE, - ACTIONS(852), 1, + ACTIONS(632), 1, anon_sym_POUND_POUND, - ACTIONS(854), 1, + ACTIONS(634), 1, anon_sym_POUND_EQ, - ACTIONS(856), 1, + ACTIONS(636), 1, anon_sym_AT, - ACTIONS(858), 1, + ACTIONS(638), 1, anon_sym_SQUOTE, - ACTIONS(860), 1, + ACTIONS(640), 1, anon_sym_BQUOTE, - ACTIONS(862), 1, + ACTIONS(642), 1, anon_sym_COMMA_AT, - ACTIONS(864), 1, + ACTIONS(644), 1, anon_sym_COMMA, - ACTIONS(866), 1, - anon_sym_COLON, - ACTIONS(870), 1, + ACTIONS(648), 1, anon_sym_POUNDC, - STATE(184), 1, + STATE(545), 1, + sym_sym_lit, + STATE(688), 1, + sym__bare_vec_lit, + STATE(691), 1, + sym__bare_set_lit, + STATE(892), 1, aux_sym_dis_expr_repeat1, - STATE(992), 1, + STATE(1013), 1, aux_sym_sym_lit_repeat1, - STATE(1076), 1, - sym_sym_lit, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1108), 1, - sym__bare_set_lit, - STATE(1109), 1, - sym__bare_vec_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1910), 1, + STATE(1862), 1, sym_dotted_sym_lit, - ACTIONS(828), 2, + ACTIONS(606), 2, sym__ws, sym_comment, - ACTIONS(868), 2, + ACTIONS(646), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1348), 2, + ACTIONS(1452), 2, sym_num_lit, sym_char_lit, - ACTIONS(1350), 2, + ACTIONS(1454), 2, sym_nil_lit, sym_fancy_literal, - STATE(943), 2, + STATE(896), 2, sym__gap, sym_dis_expr, - STATE(1110), 3, + STATE(687), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1152), 18, + STATE(713), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -30360,90 +30378,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [32688] = 38, + [32778] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(13), 1, - aux_sym_str_lit_token1, - ACTIONS(17), 1, - aux_sym_sym_lit_token1, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(23), 1, + ACTIONS(1170), 1, + anon_sym_COLON, + ACTIONS(1172), 1, + anon_sym_COLON_COLON, + ACTIONS(1174), 1, + aux_sym_str_lit_token1, + ACTIONS(1178), 1, + aux_sym_sym_lit_token1, + ACTIONS(1180), 1, anon_sym_LPAREN, - ACTIONS(25), 1, + ACTIONS(1182), 1, anon_sym_POUND0A, - ACTIONS(27), 1, + ACTIONS(1184), 1, anon_sym_POUND, - ACTIONS(29), 1, + ACTIONS(1186), 1, anon_sym_POUND_QMARK, - ACTIONS(31), 1, + ACTIONS(1188), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(33), 1, - anon_sym_COLON_COLON, - ACTIONS(35), 1, + ACTIONS(1190), 1, anon_sym_POUND_SQUOTE, - ACTIONS(37), 1, + ACTIONS(1192), 1, anon_sym_POUND_POUND, - ACTIONS(39), 1, + ACTIONS(1194), 1, anon_sym_POUND_EQ, - ACTIONS(41), 1, + ACTIONS(1196), 1, anon_sym_AT, - ACTIONS(43), 1, + ACTIONS(1198), 1, anon_sym_SQUOTE, - ACTIONS(45), 1, + ACTIONS(1200), 1, anon_sym_BQUOTE, - ACTIONS(47), 1, + ACTIONS(1202), 1, anon_sym_COMMA_AT, - ACTIONS(49), 1, + ACTIONS(1204), 1, anon_sym_COMMA, - ACTIONS(51), 1, - anon_sym_COLON, - ACTIONS(55), 1, + ACTIONS(1208), 1, anon_sym_POUNDC, - STATE(239), 1, + STATE(219), 1, aux_sym_dis_expr_repeat1, - STATE(815), 1, - sym_sym_lit, - STATE(838), 1, - sym__bare_vec_lit, - STATE(841), 1, - sym__bare_set_lit, - STATE(1047), 1, + STATE(950), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1173), 1, + sym_sym_lit, + STATE(1226), 1, + sym__bare_set_lit, + STATE(1230), 1, + sym__bare_vec_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1909), 1, + STATE(1864), 1, sym_dotted_sym_lit, - ACTIONS(53), 2, + ACTIONS(1206), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(646), 2, + ACTIONS(1298), 2, sym__ws, sym_comment, - ACTIONS(1352), 2, + ACTIONS(1456), 2, sym_num_lit, sym_char_lit, - ACTIONS(1354), 2, + ACTIONS(1458), 2, sym_nil_lit, sym_fancy_literal, - STATE(942), 2, + STATE(907), 2, sym__gap, sym_dis_expr, - STATE(842), 3, + STATE(1231), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(282), 18, + STATE(1342), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -30461,90 +30480,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [32827] = 38, + [32918] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(606), 1, + ACTIONS(562), 1, + anon_sym_COLON, + ACTIONS(564), 1, + anon_sym_COLON_COLON, + ACTIONS(566), 1, aux_sym_str_lit_token1, - ACTIONS(610), 1, + ACTIONS(570), 1, aux_sym_sym_lit_token1, - ACTIONS(612), 1, + ACTIONS(572), 1, anon_sym_LPAREN, - ACTIONS(614), 1, + ACTIONS(574), 1, anon_sym_POUND0A, - ACTIONS(616), 1, + ACTIONS(576), 1, anon_sym_POUND, - ACTIONS(618), 1, + ACTIONS(578), 1, anon_sym_POUND_QMARK, - ACTIONS(620), 1, + ACTIONS(580), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(622), 1, - anon_sym_COLON_COLON, - ACTIONS(624), 1, + ACTIONS(582), 1, anon_sym_POUND_SQUOTE, - ACTIONS(626), 1, + ACTIONS(584), 1, anon_sym_POUND_POUND, - ACTIONS(628), 1, + ACTIONS(586), 1, anon_sym_POUND_EQ, - ACTIONS(630), 1, + ACTIONS(588), 1, anon_sym_AT, - ACTIONS(632), 1, + ACTIONS(590), 1, anon_sym_SQUOTE, - ACTIONS(634), 1, + ACTIONS(592), 1, anon_sym_BQUOTE, - ACTIONS(636), 1, + ACTIONS(594), 1, anon_sym_COMMA_AT, - ACTIONS(638), 1, + ACTIONS(596), 1, anon_sym_COMMA, - ACTIONS(640), 1, - anon_sym_COLON, - ACTIONS(644), 1, + ACTIONS(600), 1, anon_sym_POUNDC, - STATE(272), 1, + STATE(892), 1, aux_sym_dis_expr_repeat1, - STATE(949), 1, + STATE(924), 1, sym_sym_lit, - STATE(963), 1, - sym__bare_set_lit, - STATE(964), 1, - sym__bare_vec_lit, - STATE(967), 1, + STATE(926), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1068), 1, + sym__bare_vec_lit, + STATE(1069), 1, + sym__bare_set_lit, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1911), 1, + STATE(1861), 1, sym_dotted_sym_lit, - ACTIONS(602), 2, + ACTIONS(558), 2, sym__ws, sym_comment, - ACTIONS(642), 2, + ACTIONS(598), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1356), 2, + ACTIONS(1460), 2, sym_num_lit, sym_char_lit, - ACTIONS(1358), 2, + ACTIONS(1462), 2, sym_nil_lit, sym_fancy_literal, - STATE(944), 2, + STATE(902), 2, sym__gap, sym_dis_expr, - STATE(965), 3, + STATE(1067), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1000), 18, + STATE(1125), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -30562,90 +30582,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [32966] = 38, + [33058] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(13), 1, - aux_sym_str_lit_token1, - ACTIONS(17), 1, - aux_sym_sym_lit_token1, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(23), 1, + ACTIONS(660), 1, + anon_sym_COLON, + ACTIONS(662), 1, + anon_sym_COLON_COLON, + ACTIONS(664), 1, + aux_sym_str_lit_token1, + ACTIONS(668), 1, + aux_sym_sym_lit_token1, + ACTIONS(670), 1, anon_sym_LPAREN, - ACTIONS(25), 1, + ACTIONS(672), 1, anon_sym_POUND0A, - ACTIONS(27), 1, + ACTIONS(674), 1, anon_sym_POUND, - ACTIONS(29), 1, + ACTIONS(676), 1, anon_sym_POUND_QMARK, - ACTIONS(31), 1, + ACTIONS(678), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(680), 1, + anon_sym_POUND_SQUOTE, + ACTIONS(682), 1, anon_sym_POUND_POUND, - ACTIONS(39), 1, + ACTIONS(684), 1, anon_sym_POUND_EQ, - ACTIONS(45), 1, - anon_sym_BQUOTE, - ACTIONS(55), 1, - anon_sym_POUNDC, - ACTIONS(652), 1, - anon_sym_COLON_COLON, - ACTIONS(654), 1, - anon_sym_POUND_SQUOTE, - ACTIONS(656), 1, + ACTIONS(686), 1, anon_sym_AT, - ACTIONS(658), 1, + ACTIONS(688), 1, anon_sym_SQUOTE, - ACTIONS(660), 1, + ACTIONS(690), 1, + anon_sym_BQUOTE, + ACTIONS(692), 1, anon_sym_COMMA_AT, - ACTIONS(662), 1, + ACTIONS(694), 1, anon_sym_COMMA, - ACTIONS(664), 1, - anon_sym_COLON, - STATE(817), 1, + ACTIONS(698), 1, + anon_sym_POUNDC, + STATE(566), 1, sym_sym_lit, - STATE(838), 1, - sym__bare_vec_lit, - STATE(841), 1, + STATE(678), 1, sym__bare_set_lit, - STATE(930), 1, + STATE(679), 1, + sym__bare_vec_lit, + STATE(892), 1, aux_sym_dis_expr_repeat1, - STATE(999), 1, + STATE(925), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1908), 1, + STATE(1868), 1, sym_dotted_sym_lit, - ACTIONS(646), 2, + ACTIONS(656), 2, sym__ws, sym_comment, - ACTIONS(666), 2, + ACTIONS(696), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1360), 2, + ACTIONS(1464), 2, sym_num_lit, sym_char_lit, - ACTIONS(1362), 2, + ACTIONS(1466), 2, sym_nil_lit, sym_fancy_literal, - STATE(942), 2, + STATE(906), 2, sym__gap, sym_dis_expr, - STATE(842), 3, + STATE(680), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(920), 18, + STATE(604), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -30663,90 +30684,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [33105] = 38, + [33198] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(518), 1, + ACTIONS(1170), 1, + anon_sym_COLON, + ACTIONS(1172), 1, + anon_sym_COLON_COLON, + ACTIONS(1174), 1, aux_sym_str_lit_token1, - ACTIONS(522), 1, + ACTIONS(1178), 1, aux_sym_sym_lit_token1, - ACTIONS(524), 1, + ACTIONS(1180), 1, anon_sym_LPAREN, - ACTIONS(526), 1, + ACTIONS(1182), 1, anon_sym_POUND0A, - ACTIONS(528), 1, + ACTIONS(1184), 1, anon_sym_POUND, - ACTIONS(530), 1, + ACTIONS(1186), 1, anon_sym_POUND_QMARK, - ACTIONS(532), 1, + ACTIONS(1188), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(534), 1, - anon_sym_COLON_COLON, - ACTIONS(536), 1, + ACTIONS(1190), 1, anon_sym_POUND_SQUOTE, - ACTIONS(538), 1, + ACTIONS(1192), 1, anon_sym_POUND_POUND, - ACTIONS(540), 1, + ACTIONS(1194), 1, anon_sym_POUND_EQ, - ACTIONS(542), 1, + ACTIONS(1196), 1, anon_sym_AT, - ACTIONS(544), 1, + ACTIONS(1198), 1, anon_sym_SQUOTE, - ACTIONS(546), 1, + ACTIONS(1200), 1, anon_sym_BQUOTE, - ACTIONS(548), 1, + ACTIONS(1202), 1, anon_sym_COMMA_AT, - ACTIONS(550), 1, + ACTIONS(1204), 1, anon_sym_COMMA, - ACTIONS(552), 1, - anon_sym_COLON, - ACTIONS(556), 1, + ACTIONS(1208), 1, anon_sym_POUNDC, - STATE(221), 1, + STATE(892), 1, aux_sym_dis_expr_repeat1, - STATE(575), 1, - sym_sym_lit, - STATE(654), 1, - sym__bare_vec_lit, - STATE(683), 1, - sym__bare_set_lit, - STATE(1029), 1, + STATE(950), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1173), 1, + sym_sym_lit, + STATE(1226), 1, + sym__bare_set_lit, + STATE(1230), 1, + sym__bare_vec_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1906), 1, + STATE(1864), 1, sym_dotted_sym_lit, - ACTIONS(514), 2, - sym__ws, - sym_comment, - ACTIONS(554), 2, + ACTIONS(1206), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1364), 2, + ACTIONS(1298), 2, + sym__ws, + sym_comment, + ACTIONS(1468), 2, sym_num_lit, sym_char_lit, - ACTIONS(1366), 2, + ACTIONS(1470), 2, sym_nil_lit, sym_fancy_literal, - STATE(936), 2, + STATE(907), 2, sym__gap, sym_dis_expr, - STATE(651), 3, + STATE(1231), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(798), 18, + STATE(1245), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -30764,90 +30786,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [33244] = 38, + [33338] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(606), 1, + ACTIONS(1170), 1, + anon_sym_COLON, + ACTIONS(1172), 1, + anon_sym_COLON_COLON, + ACTIONS(1174), 1, aux_sym_str_lit_token1, - ACTIONS(610), 1, + ACTIONS(1178), 1, aux_sym_sym_lit_token1, - ACTIONS(612), 1, + ACTIONS(1180), 1, anon_sym_LPAREN, - ACTIONS(614), 1, + ACTIONS(1182), 1, anon_sym_POUND0A, - ACTIONS(616), 1, + ACTIONS(1184), 1, anon_sym_POUND, - ACTIONS(618), 1, + ACTIONS(1186), 1, anon_sym_POUND_QMARK, - ACTIONS(620), 1, + ACTIONS(1188), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(622), 1, - anon_sym_COLON_COLON, - ACTIONS(624), 1, + ACTIONS(1190), 1, anon_sym_POUND_SQUOTE, - ACTIONS(626), 1, + ACTIONS(1192), 1, anon_sym_POUND_POUND, - ACTIONS(628), 1, + ACTIONS(1194), 1, anon_sym_POUND_EQ, - ACTIONS(630), 1, + ACTIONS(1196), 1, anon_sym_AT, - ACTIONS(632), 1, + ACTIONS(1198), 1, anon_sym_SQUOTE, - ACTIONS(634), 1, + ACTIONS(1200), 1, anon_sym_BQUOTE, - ACTIONS(636), 1, + ACTIONS(1202), 1, anon_sym_COMMA_AT, - ACTIONS(638), 1, + ACTIONS(1204), 1, anon_sym_COMMA, - ACTIONS(640), 1, - anon_sym_COLON, - ACTIONS(644), 1, + ACTIONS(1208), 1, anon_sym_POUNDC, - STATE(81), 1, + STATE(892), 1, aux_sym_dis_expr_repeat1, - STATE(949), 1, + STATE(950), 1, + aux_sym_sym_lit_repeat1, + STATE(1162), 1, + sym_meta_lit, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1173), 1, sym_sym_lit, - STATE(963), 1, + STATE(1226), 1, sym__bare_set_lit, - STATE(964), 1, + STATE(1230), 1, sym__bare_vec_lit, - STATE(967), 1, - aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, - sym_meta_lit, - STATE(1369), 1, + STATE(1337), 1, sym__metadata_lit, - STATE(1911), 1, + STATE(1864), 1, sym_dotted_sym_lit, - ACTIONS(602), 2, - sym__ws, - sym_comment, - ACTIONS(642), 2, + ACTIONS(1206), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1368), 2, + ACTIONS(1298), 2, + sym__ws, + sym_comment, + ACTIONS(1472), 2, sym_num_lit, sym_char_lit, - ACTIONS(1370), 2, + ACTIONS(1474), 2, sym_nil_lit, sym_fancy_literal, - STATE(944), 2, + STATE(907), 2, sym__gap, sym_dis_expr, - STATE(965), 3, + STATE(1231), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(962), 18, + STATE(1246), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -30865,90 +30888,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [33383] = 38, + [33478] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(518), 1, + ACTIONS(660), 1, + anon_sym_COLON, + ACTIONS(662), 1, + anon_sym_COLON_COLON, + ACTIONS(664), 1, aux_sym_str_lit_token1, - ACTIONS(522), 1, + ACTIONS(668), 1, aux_sym_sym_lit_token1, - ACTIONS(524), 1, + ACTIONS(670), 1, anon_sym_LPAREN, - ACTIONS(526), 1, + ACTIONS(672), 1, anon_sym_POUND0A, - ACTIONS(528), 1, + ACTIONS(674), 1, anon_sym_POUND, - ACTIONS(530), 1, + ACTIONS(676), 1, anon_sym_POUND_QMARK, - ACTIONS(532), 1, + ACTIONS(678), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(534), 1, - anon_sym_COLON_COLON, - ACTIONS(536), 1, + ACTIONS(680), 1, anon_sym_POUND_SQUOTE, - ACTIONS(538), 1, + ACTIONS(682), 1, anon_sym_POUND_POUND, - ACTIONS(540), 1, + ACTIONS(684), 1, anon_sym_POUND_EQ, - ACTIONS(542), 1, + ACTIONS(686), 1, anon_sym_AT, - ACTIONS(544), 1, + ACTIONS(688), 1, anon_sym_SQUOTE, - ACTIONS(546), 1, + ACTIONS(690), 1, anon_sym_BQUOTE, - ACTIONS(548), 1, + ACTIONS(692), 1, anon_sym_COMMA_AT, - ACTIONS(550), 1, + ACTIONS(694), 1, anon_sym_COMMA, - ACTIONS(552), 1, - anon_sym_COLON, - ACTIONS(556), 1, + ACTIONS(698), 1, anon_sym_POUNDC, - STATE(223), 1, - aux_sym_dis_expr_repeat1, - STATE(575), 1, + STATE(566), 1, sym_sym_lit, - STATE(654), 1, - sym__bare_vec_lit, - STATE(683), 1, + STATE(678), 1, sym__bare_set_lit, - STATE(1029), 1, + STATE(679), 1, + sym__bare_vec_lit, + STATE(892), 1, + aux_sym_dis_expr_repeat1, + STATE(925), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1906), 1, + STATE(1868), 1, sym_dotted_sym_lit, - ACTIONS(514), 2, + ACTIONS(656), 2, sym__ws, sym_comment, - ACTIONS(554), 2, + ACTIONS(696), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1372), 2, + ACTIONS(1476), 2, sym_num_lit, sym_char_lit, - ACTIONS(1374), 2, + ACTIONS(1478), 2, sym_nil_lit, sym_fancy_literal, - STATE(936), 2, + STATE(906), 2, sym__gap, sym_dis_expr, - STATE(651), 3, + STATE(680), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(797), 18, + STATE(634), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -30966,90 +30990,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [33522] = 38, + [33618] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(832), 1, + ACTIONS(1170), 1, + anon_sym_COLON, + ACTIONS(1172), 1, + anon_sym_COLON_COLON, + ACTIONS(1174), 1, aux_sym_str_lit_token1, - ACTIONS(836), 1, + ACTIONS(1178), 1, aux_sym_sym_lit_token1, - ACTIONS(838), 1, + ACTIONS(1180), 1, anon_sym_LPAREN, - ACTIONS(840), 1, + ACTIONS(1182), 1, anon_sym_POUND0A, - ACTIONS(842), 1, + ACTIONS(1184), 1, anon_sym_POUND, - ACTIONS(844), 1, + ACTIONS(1186), 1, anon_sym_POUND_QMARK, - ACTIONS(846), 1, + ACTIONS(1188), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(848), 1, - anon_sym_COLON_COLON, - ACTIONS(850), 1, + ACTIONS(1190), 1, anon_sym_POUND_SQUOTE, - ACTIONS(852), 1, + ACTIONS(1192), 1, anon_sym_POUND_POUND, - ACTIONS(854), 1, + ACTIONS(1194), 1, anon_sym_POUND_EQ, - ACTIONS(856), 1, + ACTIONS(1196), 1, anon_sym_AT, - ACTIONS(858), 1, + ACTIONS(1198), 1, anon_sym_SQUOTE, - ACTIONS(860), 1, + ACTIONS(1200), 1, anon_sym_BQUOTE, - ACTIONS(862), 1, + ACTIONS(1202), 1, anon_sym_COMMA_AT, - ACTIONS(864), 1, + ACTIONS(1204), 1, anon_sym_COMMA, - ACTIONS(866), 1, - anon_sym_COLON, - ACTIONS(870), 1, + ACTIONS(1208), 1, anon_sym_POUNDC, - STATE(201), 1, + STATE(320), 1, aux_sym_dis_expr_repeat1, - STATE(992), 1, + STATE(950), 1, aux_sym_sym_lit_repeat1, - STATE(1076), 1, - sym_sym_lit, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1108), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1173), 1, + sym_sym_lit, + STATE(1226), 1, sym__bare_set_lit, - STATE(1109), 1, + STATE(1230), 1, sym__bare_vec_lit, - STATE(1369), 1, + STATE(1337), 1, sym__metadata_lit, - STATE(1910), 1, + STATE(1864), 1, sym_dotted_sym_lit, - ACTIONS(828), 2, - sym__ws, - sym_comment, - ACTIONS(868), 2, + ACTIONS(1206), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1376), 2, + ACTIONS(1298), 2, + sym__ws, + sym_comment, + ACTIONS(1480), 2, sym_num_lit, sym_char_lit, - ACTIONS(1378), 2, + ACTIONS(1482), 2, sym_nil_lit, sym_fancy_literal, - STATE(943), 2, + STATE(907), 2, sym__gap, sym_dis_expr, - STATE(1110), 3, + STATE(1231), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1146), 18, + STATE(1247), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -31067,90 +31092,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [33661] = 38, + [33758] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(19), 1, - anon_sym_CARET, - ACTIONS(21), 1, - anon_sym_POUND_CARET, - ACTIONS(832), 1, + ACTIONS(13), 1, + anon_sym_COLON, + ACTIONS(15), 1, + anon_sym_COLON_COLON, + ACTIONS(17), 1, aux_sym_str_lit_token1, - ACTIONS(836), 1, + ACTIONS(21), 1, aux_sym_sym_lit_token1, - ACTIONS(838), 1, + ACTIONS(23), 1, + anon_sym_CARET, + ACTIONS(25), 1, + anon_sym_POUND_CARET, + ACTIONS(27), 1, anon_sym_LPAREN, - ACTIONS(840), 1, + ACTIONS(29), 1, anon_sym_POUND0A, - ACTIONS(842), 1, + ACTIONS(31), 1, anon_sym_POUND, - ACTIONS(844), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(846), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(848), 1, - anon_sym_COLON_COLON, - ACTIONS(850), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(852), 1, + ACTIONS(39), 1, anon_sym_POUND_POUND, - ACTIONS(854), 1, + ACTIONS(41), 1, anon_sym_POUND_EQ, - ACTIONS(856), 1, + ACTIONS(43), 1, anon_sym_AT, - ACTIONS(858), 1, + ACTIONS(45), 1, anon_sym_SQUOTE, - ACTIONS(860), 1, + ACTIONS(47), 1, anon_sym_BQUOTE, - ACTIONS(862), 1, + ACTIONS(49), 1, anon_sym_COMMA_AT, - ACTIONS(864), 1, + ACTIONS(51), 1, anon_sym_COMMA, - ACTIONS(866), 1, - anon_sym_COLON, - ACTIONS(870), 1, + ACTIONS(55), 1, anon_sym_POUNDC, - STATE(930), 1, + STATE(780), 1, + sym_sym_lit, + STATE(786), 1, + sym__bare_vec_lit, + STATE(884), 1, + sym__bare_set_lit, + STATE(892), 1, aux_sym_dis_expr_repeat1, - STATE(992), 1, + STATE(1033), 1, aux_sym_sym_lit_repeat1, - STATE(1076), 1, - sym_sym_lit, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1108), 1, - sym__bare_set_lit, - STATE(1109), 1, - sym__bare_vec_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1910), 1, + STATE(1863), 1, sym_dotted_sym_lit, - ACTIONS(828), 2, - sym__ws, - sym_comment, - ACTIONS(868), 2, + ACTIONS(53), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1380), 2, + ACTIONS(650), 2, + sym__ws, + sym_comment, + ACTIONS(1484), 2, sym_num_lit, sym_char_lit, - ACTIONS(1382), 2, + ACTIONS(1486), 2, sym_nil_lit, sym_fancy_literal, - STATE(943), 2, + STATE(898), 2, sym__gap, sym_dis_expr, - STATE(1110), 3, + STATE(787), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1145), 18, + STATE(66), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -31168,90 +31194,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [33800] = 38, + [33898] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(19), 1, - anon_sym_CARET, - ACTIONS(21), 1, - anon_sym_POUND_CARET, - ACTIONS(832), 1, + ACTIONS(13), 1, + anon_sym_COLON, + ACTIONS(15), 1, + anon_sym_COLON_COLON, + ACTIONS(17), 1, aux_sym_str_lit_token1, - ACTIONS(836), 1, + ACTIONS(21), 1, aux_sym_sym_lit_token1, - ACTIONS(838), 1, + ACTIONS(23), 1, + anon_sym_CARET, + ACTIONS(25), 1, + anon_sym_POUND_CARET, + ACTIONS(27), 1, anon_sym_LPAREN, - ACTIONS(840), 1, + ACTIONS(29), 1, anon_sym_POUND0A, - ACTIONS(842), 1, + ACTIONS(31), 1, anon_sym_POUND, - ACTIONS(844), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(846), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(848), 1, - anon_sym_COLON_COLON, - ACTIONS(850), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(852), 1, + ACTIONS(39), 1, anon_sym_POUND_POUND, - ACTIONS(854), 1, + ACTIONS(41), 1, anon_sym_POUND_EQ, - ACTIONS(856), 1, + ACTIONS(43), 1, anon_sym_AT, - ACTIONS(858), 1, + ACTIONS(45), 1, anon_sym_SQUOTE, - ACTIONS(860), 1, + ACTIONS(47), 1, anon_sym_BQUOTE, - ACTIONS(862), 1, + ACTIONS(49), 1, anon_sym_COMMA_AT, - ACTIONS(864), 1, + ACTIONS(51), 1, anon_sym_COMMA, - ACTIONS(866), 1, - anon_sym_COLON, - ACTIONS(870), 1, + ACTIONS(55), 1, anon_sym_POUNDC, - STATE(930), 1, + STATE(780), 1, + sym_sym_lit, + STATE(786), 1, + sym__bare_vec_lit, + STATE(884), 1, + sym__bare_set_lit, + STATE(892), 1, aux_sym_dis_expr_repeat1, - STATE(992), 1, + STATE(1033), 1, aux_sym_sym_lit_repeat1, - STATE(1076), 1, - sym_sym_lit, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1108), 1, - sym__bare_set_lit, - STATE(1109), 1, - sym__bare_vec_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1910), 1, + STATE(1863), 1, sym_dotted_sym_lit, - ACTIONS(828), 2, - sym__ws, - sym_comment, - ACTIONS(868), 2, + ACTIONS(53), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1384), 2, + ACTIONS(650), 2, + sym__ws, + sym_comment, + ACTIONS(1488), 2, sym_num_lit, sym_char_lit, - ACTIONS(1386), 2, + ACTIONS(1490), 2, sym_nil_lit, sym_fancy_literal, - STATE(943), 2, + STATE(898), 2, sym__gap, sym_dis_expr, - STATE(1110), 3, + STATE(787), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1144), 18, + STATE(160), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -31269,90 +31296,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [33939] = 38, + [34038] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(518), 1, + ACTIONS(140), 1, + anon_sym_COLON, + ACTIONS(142), 1, + anon_sym_COLON_COLON, + ACTIONS(144), 1, aux_sym_str_lit_token1, - ACTIONS(522), 1, + ACTIONS(148), 1, aux_sym_sym_lit_token1, - ACTIONS(524), 1, - anon_sym_LPAREN, - ACTIONS(526), 1, + ACTIONS(150), 1, anon_sym_POUND0A, - ACTIONS(528), 1, + ACTIONS(152), 1, anon_sym_POUND, - ACTIONS(530), 1, + ACTIONS(154), 1, anon_sym_POUND_QMARK, - ACTIONS(532), 1, + ACTIONS(156), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(534), 1, - anon_sym_COLON_COLON, - ACTIONS(536), 1, + ACTIONS(158), 1, anon_sym_POUND_SQUOTE, - ACTIONS(538), 1, + ACTIONS(160), 1, anon_sym_POUND_POUND, - ACTIONS(540), 1, + ACTIONS(162), 1, anon_sym_POUND_EQ, - ACTIONS(542), 1, + ACTIONS(164), 1, anon_sym_AT, - ACTIONS(544), 1, + ACTIONS(166), 1, anon_sym_SQUOTE, - ACTIONS(546), 1, + ACTIONS(168), 1, anon_sym_BQUOTE, - ACTIONS(548), 1, + ACTIONS(170), 1, anon_sym_COMMA_AT, - ACTIONS(550), 1, + ACTIONS(172), 1, anon_sym_COMMA, - ACTIONS(552), 1, - anon_sym_COLON, - ACTIONS(556), 1, + ACTIONS(178), 1, anon_sym_POUNDC, - STATE(575), 1, + ACTIONS(413), 1, + anon_sym_LPAREN, + STATE(287), 1, + aux_sym_dis_expr_repeat1, + STATE(404), 1, sym_sym_lit, - STATE(654), 1, + STATE(487), 1, sym__bare_vec_lit, - STATE(683), 1, + STATE(488), 1, sym__bare_set_lit, - STATE(930), 1, - aux_sym_dis_expr_repeat1, - STATE(1029), 1, + STATE(981), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1906), 1, + STATE(1866), 1, sym_dotted_sym_lit, - ACTIONS(514), 2, - sym__ws, - sym_comment, - ACTIONS(554), 2, + ACTIONS(176), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1388), 2, + ACTIONS(411), 2, + sym__ws, + sym_comment, + ACTIONS(1492), 2, sym_num_lit, sym_char_lit, - ACTIONS(1390), 2, + ACTIONS(1494), 2, sym_nil_lit, sym_fancy_literal, - STATE(936), 2, + STATE(903), 2, sym__gap, sym_dis_expr, - STATE(651), 3, + STATE(486), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(795), 18, + STATE(437), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -31370,90 +31398,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [34078] = 38, + [34178] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(61), 1, + ACTIONS(610), 1, + anon_sym_COLON, + ACTIONS(612), 1, + anon_sym_COLON_COLON, + ACTIONS(614), 1, aux_sym_str_lit_token1, - ACTIONS(65), 1, + ACTIONS(618), 1, aux_sym_sym_lit_token1, - ACTIONS(67), 1, + ACTIONS(620), 1, + anon_sym_LPAREN, + ACTIONS(622), 1, anon_sym_POUND0A, - ACTIONS(69), 1, + ACTIONS(624), 1, anon_sym_POUND, - ACTIONS(71), 1, + ACTIONS(626), 1, anon_sym_POUND_QMARK, - ACTIONS(73), 1, + ACTIONS(628), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(75), 1, - anon_sym_COLON_COLON, - ACTIONS(77), 1, + ACTIONS(630), 1, anon_sym_POUND_SQUOTE, - ACTIONS(79), 1, + ACTIONS(632), 1, anon_sym_POUND_POUND, - ACTIONS(81), 1, + ACTIONS(634), 1, anon_sym_POUND_EQ, - ACTIONS(83), 1, + ACTIONS(636), 1, anon_sym_AT, - ACTIONS(85), 1, + ACTIONS(638), 1, anon_sym_SQUOTE, - ACTIONS(87), 1, + ACTIONS(640), 1, anon_sym_BQUOTE, - ACTIONS(89), 1, + ACTIONS(642), 1, anon_sym_COMMA_AT, - ACTIONS(91), 1, + ACTIONS(644), 1, anon_sym_COMMA, - ACTIONS(95), 1, - anon_sym_COLON, - ACTIONS(99), 1, + ACTIONS(648), 1, anon_sym_POUNDC, - ACTIONS(381), 1, - anon_sym_LPAREN, - STATE(197), 1, - aux_sym_dis_expr_repeat1, - STATE(446), 1, + STATE(545), 1, sym_sym_lit, - STATE(513), 1, - sym__bare_set_lit, - STATE(514), 1, + STATE(688), 1, sym__bare_vec_lit, - STATE(1044), 1, + STATE(691), 1, + sym__bare_set_lit, + STATE(892), 1, + aux_sym_dis_expr_repeat1, + STATE(1013), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1907), 1, + STATE(1862), 1, sym_dotted_sym_lit, - ACTIONS(97), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(379), 2, + ACTIONS(606), 2, sym__ws, sym_comment, - ACTIONS(1392), 2, + ACTIONS(646), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(1496), 2, sym_num_lit, sym_char_lit, - ACTIONS(1394), 2, + ACTIONS(1498), 2, sym_nil_lit, sym_fancy_literal, - STATE(934), 2, + STATE(896), 2, sym__gap, sym_dis_expr, - STATE(515), 3, + STATE(687), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(520), 18, + STATE(714), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -31471,90 +31500,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [34217] = 38, + [34318] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(61), 1, + ACTIONS(610), 1, + anon_sym_COLON, + ACTIONS(612), 1, + anon_sym_COLON_COLON, + ACTIONS(614), 1, aux_sym_str_lit_token1, - ACTIONS(65), 1, + ACTIONS(618), 1, aux_sym_sym_lit_token1, - ACTIONS(67), 1, + ACTIONS(620), 1, + anon_sym_LPAREN, + ACTIONS(622), 1, anon_sym_POUND0A, - ACTIONS(69), 1, + ACTIONS(624), 1, anon_sym_POUND, - ACTIONS(71), 1, + ACTIONS(626), 1, anon_sym_POUND_QMARK, - ACTIONS(73), 1, + ACTIONS(628), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(75), 1, - anon_sym_COLON_COLON, - ACTIONS(77), 1, + ACTIONS(630), 1, anon_sym_POUND_SQUOTE, - ACTIONS(79), 1, + ACTIONS(632), 1, anon_sym_POUND_POUND, - ACTIONS(81), 1, + ACTIONS(634), 1, anon_sym_POUND_EQ, - ACTIONS(83), 1, + ACTIONS(636), 1, anon_sym_AT, - ACTIONS(85), 1, + ACTIONS(638), 1, anon_sym_SQUOTE, - ACTIONS(87), 1, + ACTIONS(640), 1, anon_sym_BQUOTE, - ACTIONS(89), 1, + ACTIONS(642), 1, anon_sym_COMMA_AT, - ACTIONS(91), 1, + ACTIONS(644), 1, anon_sym_COMMA, - ACTIONS(95), 1, - anon_sym_COLON, - ACTIONS(99), 1, + ACTIONS(648), 1, anon_sym_POUNDC, - ACTIONS(381), 1, - anon_sym_LPAREN, - STATE(446), 1, + STATE(545), 1, sym_sym_lit, - STATE(513), 1, - sym__bare_set_lit, - STATE(514), 1, + STATE(688), 1, sym__bare_vec_lit, - STATE(930), 1, + STATE(691), 1, + sym__bare_set_lit, + STATE(892), 1, aux_sym_dis_expr_repeat1, - STATE(1044), 1, + STATE(1013), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1907), 1, + STATE(1862), 1, sym_dotted_sym_lit, - ACTIONS(97), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(379), 2, + ACTIONS(606), 2, sym__ws, sym_comment, - ACTIONS(1396), 2, + ACTIONS(646), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(1500), 2, sym_num_lit, sym_char_lit, - ACTIONS(1398), 2, + ACTIONS(1502), 2, sym_nil_lit, sym_fancy_literal, - STATE(934), 2, + STATE(896), 2, sym__gap, sym_dis_expr, - STATE(515), 3, + STATE(687), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(517), 18, + STATE(755), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -31572,90 +31602,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [34356] = 38, + [34458] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(518), 1, + ACTIONS(1170), 1, + anon_sym_COLON, + ACTIONS(1172), 1, + anon_sym_COLON_COLON, + ACTIONS(1174), 1, aux_sym_str_lit_token1, - ACTIONS(522), 1, + ACTIONS(1178), 1, aux_sym_sym_lit_token1, - ACTIONS(524), 1, + ACTIONS(1180), 1, anon_sym_LPAREN, - ACTIONS(526), 1, + ACTIONS(1182), 1, anon_sym_POUND0A, - ACTIONS(528), 1, + ACTIONS(1184), 1, anon_sym_POUND, - ACTIONS(530), 1, + ACTIONS(1186), 1, anon_sym_POUND_QMARK, - ACTIONS(532), 1, + ACTIONS(1188), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(534), 1, - anon_sym_COLON_COLON, - ACTIONS(536), 1, + ACTIONS(1190), 1, anon_sym_POUND_SQUOTE, - ACTIONS(538), 1, + ACTIONS(1192), 1, anon_sym_POUND_POUND, - ACTIONS(540), 1, + ACTIONS(1194), 1, anon_sym_POUND_EQ, - ACTIONS(542), 1, + ACTIONS(1196), 1, anon_sym_AT, - ACTIONS(544), 1, + ACTIONS(1198), 1, anon_sym_SQUOTE, - ACTIONS(546), 1, + ACTIONS(1200), 1, anon_sym_BQUOTE, - ACTIONS(548), 1, + ACTIONS(1202), 1, anon_sym_COMMA_AT, - ACTIONS(550), 1, + ACTIONS(1204), 1, anon_sym_COMMA, - ACTIONS(552), 1, - anon_sym_COLON, - ACTIONS(556), 1, + ACTIONS(1208), 1, anon_sym_POUNDC, - STATE(575), 1, - sym_sym_lit, - STATE(654), 1, - sym__bare_vec_lit, - STATE(683), 1, - sym__bare_set_lit, - STATE(930), 1, + STATE(366), 1, aux_sym_dis_expr_repeat1, - STATE(1029), 1, + STATE(950), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1173), 1, + sym_sym_lit, + STATE(1226), 1, + sym__bare_set_lit, + STATE(1230), 1, + sym__bare_vec_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1906), 1, + STATE(1864), 1, sym_dotted_sym_lit, - ACTIONS(514), 2, - sym__ws, - sym_comment, - ACTIONS(554), 2, + ACTIONS(1206), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1400), 2, - sym_num_lit, + ACTIONS(1298), 2, + sym__ws, + sym_comment, + ACTIONS(1504), 2, + sym_num_lit, sym_char_lit, - ACTIONS(1402), 2, + ACTIONS(1506), 2, sym_nil_lit, sym_fancy_literal, - STATE(936), 2, + STATE(907), 2, sym__gap, sym_dis_expr, - STATE(651), 3, + STATE(1231), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(787), 18, + STATE(1252), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -31673,90 +31704,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [34495] = 38, + [34598] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(19), 1, - anon_sym_CARET, - ACTIONS(21), 1, - anon_sym_POUND_CARET, - ACTIONS(832), 1, + ACTIONS(17), 1, aux_sym_str_lit_token1, - ACTIONS(836), 1, + ACTIONS(21), 1, aux_sym_sym_lit_token1, - ACTIONS(838), 1, + ACTIONS(23), 1, + anon_sym_CARET, + ACTIONS(25), 1, + anon_sym_POUND_CARET, + ACTIONS(27), 1, anon_sym_LPAREN, - ACTIONS(840), 1, + ACTIONS(29), 1, anon_sym_POUND0A, - ACTIONS(842), 1, + ACTIONS(31), 1, anon_sym_POUND, - ACTIONS(844), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(846), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(848), 1, - anon_sym_COLON_COLON, - ACTIONS(850), 1, - anon_sym_POUND_SQUOTE, - ACTIONS(852), 1, + ACTIONS(39), 1, anon_sym_POUND_POUND, - ACTIONS(854), 1, + ACTIONS(41), 1, anon_sym_POUND_EQ, - ACTIONS(856), 1, + ACTIONS(47), 1, + anon_sym_BQUOTE, + ACTIONS(55), 1, + anon_sym_POUNDC, + ACTIONS(1248), 1, + anon_sym_COLON, + ACTIONS(1250), 1, + anon_sym_COLON_COLON, + ACTIONS(1254), 1, + anon_sym_POUND_SQUOTE, + ACTIONS(1256), 1, anon_sym_AT, - ACTIONS(858), 1, + ACTIONS(1258), 1, anon_sym_SQUOTE, - ACTIONS(860), 1, - anon_sym_BQUOTE, - ACTIONS(862), 1, + ACTIONS(1260), 1, anon_sym_COMMA_AT, - ACTIONS(864), 1, + ACTIONS(1262), 1, anon_sym_COMMA, - ACTIONS(866), 1, - anon_sym_COLON, - ACTIONS(870), 1, - anon_sym_POUNDC, - STATE(930), 1, + STATE(197), 1, aux_sym_dis_expr_repeat1, - STATE(992), 1, - aux_sym_sym_lit_repeat1, - STATE(1076), 1, + STATE(783), 1, sym_sym_lit, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, - sym_meta_lit, - STATE(1108), 1, - sym__bare_set_lit, - STATE(1109), 1, + STATE(786), 1, sym__bare_vec_lit, - STATE(1369), 1, + STATE(884), 1, + sym__bare_set_lit, + STATE(933), 1, + aux_sym_sym_lit_repeat1, + STATE(1162), 1, + sym_meta_lit, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1910), 1, + STATE(1867), 1, sym_dotted_sym_lit, - ACTIONS(828), 2, + ACTIONS(650), 2, sym__ws, sym_comment, - ACTIONS(868), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(1404), 2, + ACTIONS(1144), 2, sym_num_lit, sym_char_lit, - ACTIONS(1406), 2, + ACTIONS(1146), 2, sym_nil_lit, sym_fancy_literal, - STATE(943), 2, + ACTIONS(1264), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + STATE(898), 2, sym__gap, sym_dis_expr, - STATE(1110), 3, + STATE(787), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1141), 18, + STATE(882), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -31774,90 +31806,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [34634] = 38, + [34738] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(61), 1, + ACTIONS(1170), 1, + anon_sym_COLON, + ACTIONS(1172), 1, + anon_sym_COLON_COLON, + ACTIONS(1174), 1, aux_sym_str_lit_token1, - ACTIONS(65), 1, + ACTIONS(1178), 1, aux_sym_sym_lit_token1, - ACTIONS(67), 1, + ACTIONS(1180), 1, + anon_sym_LPAREN, + ACTIONS(1182), 1, anon_sym_POUND0A, - ACTIONS(69), 1, + ACTIONS(1184), 1, anon_sym_POUND, - ACTIONS(71), 1, + ACTIONS(1186), 1, anon_sym_POUND_QMARK, - ACTIONS(73), 1, + ACTIONS(1188), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(75), 1, - anon_sym_COLON_COLON, - ACTIONS(77), 1, + ACTIONS(1190), 1, anon_sym_POUND_SQUOTE, - ACTIONS(79), 1, + ACTIONS(1192), 1, anon_sym_POUND_POUND, - ACTIONS(81), 1, + ACTIONS(1194), 1, anon_sym_POUND_EQ, - ACTIONS(83), 1, + ACTIONS(1196), 1, anon_sym_AT, - ACTIONS(85), 1, + ACTIONS(1198), 1, anon_sym_SQUOTE, - ACTIONS(87), 1, + ACTIONS(1200), 1, anon_sym_BQUOTE, - ACTIONS(89), 1, + ACTIONS(1202), 1, anon_sym_COMMA_AT, - ACTIONS(91), 1, + ACTIONS(1204), 1, anon_sym_COMMA, - ACTIONS(95), 1, - anon_sym_COLON, - ACTIONS(99), 1, + ACTIONS(1208), 1, anon_sym_POUNDC, - ACTIONS(381), 1, - anon_sym_LPAREN, - STATE(446), 1, - sym_sym_lit, - STATE(513), 1, - sym__bare_set_lit, - STATE(514), 1, - sym__bare_vec_lit, - STATE(930), 1, + STATE(892), 1, aux_sym_dis_expr_repeat1, - STATE(1044), 1, + STATE(950), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1173), 1, + sym_sym_lit, + STATE(1226), 1, + sym__bare_set_lit, + STATE(1230), 1, + sym__bare_vec_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1907), 1, + STATE(1864), 1, sym_dotted_sym_lit, - ACTIONS(97), 2, + ACTIONS(1206), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(379), 2, + ACTIONS(1298), 2, sym__ws, sym_comment, - ACTIONS(1408), 2, + ACTIONS(1508), 2, sym_num_lit, sym_char_lit, - ACTIONS(1410), 2, + ACTIONS(1510), 2, sym_nil_lit, sym_fancy_literal, - STATE(934), 2, + STATE(907), 2, sym__gap, sym_dis_expr, - STATE(515), 3, + STATE(1231), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(453), 18, + STATE(1302), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -31875,90 +31908,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [34773] = 38, + [34878] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(518), 1, + ACTIONS(1170), 1, + anon_sym_COLON, + ACTIONS(1172), 1, + anon_sym_COLON_COLON, + ACTIONS(1174), 1, aux_sym_str_lit_token1, - ACTIONS(522), 1, + ACTIONS(1178), 1, aux_sym_sym_lit_token1, - ACTIONS(524), 1, + ACTIONS(1180), 1, anon_sym_LPAREN, - ACTIONS(526), 1, + ACTIONS(1182), 1, anon_sym_POUND0A, - ACTIONS(528), 1, + ACTIONS(1184), 1, anon_sym_POUND, - ACTIONS(530), 1, + ACTIONS(1186), 1, anon_sym_POUND_QMARK, - ACTIONS(532), 1, + ACTIONS(1188), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(534), 1, - anon_sym_COLON_COLON, - ACTIONS(536), 1, + ACTIONS(1190), 1, anon_sym_POUND_SQUOTE, - ACTIONS(538), 1, + ACTIONS(1192), 1, anon_sym_POUND_POUND, - ACTIONS(540), 1, + ACTIONS(1194), 1, anon_sym_POUND_EQ, - ACTIONS(542), 1, + ACTIONS(1196), 1, anon_sym_AT, - ACTIONS(544), 1, + ACTIONS(1198), 1, anon_sym_SQUOTE, - ACTIONS(546), 1, + ACTIONS(1200), 1, anon_sym_BQUOTE, - ACTIONS(548), 1, + ACTIONS(1202), 1, anon_sym_COMMA_AT, - ACTIONS(550), 1, + ACTIONS(1204), 1, anon_sym_COMMA, - ACTIONS(552), 1, - anon_sym_COLON, - ACTIONS(556), 1, + ACTIONS(1208), 1, anon_sym_POUNDC, - STATE(575), 1, - sym_sym_lit, - STATE(654), 1, - sym__bare_vec_lit, - STATE(683), 1, - sym__bare_set_lit, - STATE(930), 1, + STATE(358), 1, aux_sym_dis_expr_repeat1, - STATE(1029), 1, + STATE(950), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1173), 1, + sym_sym_lit, + STATE(1226), 1, + sym__bare_set_lit, + STATE(1230), 1, + sym__bare_vec_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1906), 1, + STATE(1864), 1, sym_dotted_sym_lit, - ACTIONS(514), 2, - sym__ws, - sym_comment, - ACTIONS(554), 2, + ACTIONS(1206), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1412), 2, + ACTIONS(1298), 2, + sym__ws, + sym_comment, + ACTIONS(1512), 2, sym_num_lit, sym_char_lit, - ACTIONS(1414), 2, + ACTIONS(1514), 2, sym_nil_lit, sym_fancy_literal, - STATE(936), 2, + STATE(907), 2, sym__gap, sym_dis_expr, - STATE(651), 3, + STATE(1231), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(781), 18, + STATE(1256), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -31976,90 +32010,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [34912] = 38, + [35018] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(13), 1, - aux_sym_str_lit_token1, - ACTIONS(17), 1, - aux_sym_sym_lit_token1, - ACTIONS(19), 1, - anon_sym_CARET, - ACTIONS(21), 1, - anon_sym_POUND_CARET, ACTIONS(23), 1, - anon_sym_LPAREN, + anon_sym_CARET, ACTIONS(25), 1, + anon_sym_POUND_CARET, + ACTIONS(140), 1, + anon_sym_COLON, + ACTIONS(142), 1, + anon_sym_COLON_COLON, + ACTIONS(144), 1, + aux_sym_str_lit_token1, + ACTIONS(148), 1, + aux_sym_sym_lit_token1, + ACTIONS(150), 1, anon_sym_POUND0A, - ACTIONS(27), 1, + ACTIONS(152), 1, anon_sym_POUND, - ACTIONS(29), 1, + ACTIONS(154), 1, anon_sym_POUND_QMARK, - ACTIONS(31), 1, + ACTIONS(156), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(33), 1, - anon_sym_COLON_COLON, - ACTIONS(35), 1, + ACTIONS(158), 1, anon_sym_POUND_SQUOTE, - ACTIONS(37), 1, + ACTIONS(160), 1, anon_sym_POUND_POUND, - ACTIONS(39), 1, + ACTIONS(162), 1, anon_sym_POUND_EQ, - ACTIONS(41), 1, + ACTIONS(164), 1, anon_sym_AT, - ACTIONS(43), 1, + ACTIONS(166), 1, anon_sym_SQUOTE, - ACTIONS(45), 1, + ACTIONS(168), 1, anon_sym_BQUOTE, - ACTIONS(47), 1, + ACTIONS(170), 1, anon_sym_COMMA_AT, - ACTIONS(49), 1, + ACTIONS(172), 1, anon_sym_COMMA, - ACTIONS(51), 1, - anon_sym_COLON, - ACTIONS(55), 1, + ACTIONS(178), 1, anon_sym_POUNDC, - STATE(815), 1, + ACTIONS(413), 1, + anon_sym_LPAREN, + STATE(404), 1, sym_sym_lit, - STATE(838), 1, + STATE(487), 1, sym__bare_vec_lit, - STATE(841), 1, + STATE(488), 1, sym__bare_set_lit, - STATE(930), 1, + STATE(892), 1, aux_sym_dis_expr_repeat1, - STATE(1047), 1, + STATE(981), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1909), 1, + STATE(1866), 1, sym_dotted_sym_lit, - ACTIONS(53), 2, + ACTIONS(176), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(646), 2, + ACTIONS(411), 2, sym__ws, sym_comment, - ACTIONS(1416), 2, + ACTIONS(1516), 2, sym_num_lit, sym_char_lit, - ACTIONS(1418), 2, + ACTIONS(1518), 2, sym_nil_lit, sym_fancy_literal, - STATE(942), 2, + STATE(903), 2, sym__gap, sym_dis_expr, - STATE(842), 3, + STATE(486), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(112), 18, + STATE(470), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -32077,90 +32112,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [35051] = 38, + [35158] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(13), 1, - aux_sym_str_lit_token1, - ACTIONS(17), 1, - aux_sym_sym_lit_token1, - ACTIONS(19), 1, - anon_sym_CARET, - ACTIONS(21), 1, - anon_sym_POUND_CARET, ACTIONS(23), 1, - anon_sym_LPAREN, + anon_sym_CARET, ACTIONS(25), 1, + anon_sym_POUND_CARET, + ACTIONS(140), 1, + anon_sym_COLON, + ACTIONS(142), 1, + anon_sym_COLON_COLON, + ACTIONS(144), 1, + aux_sym_str_lit_token1, + ACTIONS(148), 1, + aux_sym_sym_lit_token1, + ACTIONS(150), 1, anon_sym_POUND0A, - ACTIONS(27), 1, + ACTIONS(152), 1, anon_sym_POUND, - ACTIONS(29), 1, + ACTIONS(154), 1, anon_sym_POUND_QMARK, - ACTIONS(31), 1, + ACTIONS(156), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(33), 1, - anon_sym_COLON_COLON, - ACTIONS(35), 1, + ACTIONS(158), 1, anon_sym_POUND_SQUOTE, - ACTIONS(37), 1, + ACTIONS(160), 1, anon_sym_POUND_POUND, - ACTIONS(39), 1, + ACTIONS(162), 1, anon_sym_POUND_EQ, - ACTIONS(41), 1, + ACTIONS(164), 1, anon_sym_AT, - ACTIONS(43), 1, + ACTIONS(166), 1, anon_sym_SQUOTE, - ACTIONS(45), 1, + ACTIONS(168), 1, anon_sym_BQUOTE, - ACTIONS(47), 1, + ACTIONS(170), 1, anon_sym_COMMA_AT, - ACTIONS(49), 1, + ACTIONS(172), 1, anon_sym_COMMA, - ACTIONS(51), 1, - anon_sym_COLON, - ACTIONS(55), 1, + ACTIONS(178), 1, anon_sym_POUNDC, - STATE(815), 1, + ACTIONS(413), 1, + anon_sym_LPAREN, + STATE(218), 1, + aux_sym_dis_expr_repeat1, + STATE(404), 1, sym_sym_lit, - STATE(838), 1, + STATE(487), 1, sym__bare_vec_lit, - STATE(841), 1, + STATE(488), 1, sym__bare_set_lit, - STATE(930), 1, - aux_sym_dis_expr_repeat1, - STATE(1047), 1, + STATE(981), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1909), 1, + STATE(1866), 1, sym_dotted_sym_lit, - ACTIONS(53), 2, + ACTIONS(176), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(646), 2, + ACTIONS(411), 2, sym__ws, sym_comment, - ACTIONS(1420), 2, + ACTIONS(1520), 2, sym_num_lit, sym_char_lit, - ACTIONS(1422), 2, + ACTIONS(1522), 2, sym_nil_lit, sym_fancy_literal, - STATE(942), 2, + STATE(903), 2, sym__gap, sym_dis_expr, - STATE(842), 3, + STATE(486), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(115), 18, + STATE(469), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -32178,90 +32214,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [35190] = 38, + [35298] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(832), 1, + ACTIONS(562), 1, + anon_sym_COLON, + ACTIONS(564), 1, + anon_sym_COLON_COLON, + ACTIONS(566), 1, aux_sym_str_lit_token1, - ACTIONS(836), 1, + ACTIONS(570), 1, aux_sym_sym_lit_token1, - ACTIONS(838), 1, + ACTIONS(572), 1, anon_sym_LPAREN, - ACTIONS(840), 1, + ACTIONS(574), 1, anon_sym_POUND0A, - ACTIONS(842), 1, + ACTIONS(576), 1, anon_sym_POUND, - ACTIONS(844), 1, + ACTIONS(578), 1, anon_sym_POUND_QMARK, - ACTIONS(846), 1, + ACTIONS(580), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(848), 1, - anon_sym_COLON_COLON, - ACTIONS(850), 1, + ACTIONS(582), 1, anon_sym_POUND_SQUOTE, - ACTIONS(852), 1, + ACTIONS(584), 1, anon_sym_POUND_POUND, - ACTIONS(854), 1, + ACTIONS(586), 1, anon_sym_POUND_EQ, - ACTIONS(856), 1, + ACTIONS(588), 1, anon_sym_AT, - ACTIONS(858), 1, + ACTIONS(590), 1, anon_sym_SQUOTE, - ACTIONS(860), 1, + ACTIONS(592), 1, anon_sym_BQUOTE, - ACTIONS(862), 1, + ACTIONS(594), 1, anon_sym_COMMA_AT, - ACTIONS(864), 1, + ACTIONS(596), 1, anon_sym_COMMA, - ACTIONS(866), 1, - anon_sym_COLON, - ACTIONS(870), 1, + ACTIONS(600), 1, anon_sym_POUNDC, - STATE(930), 1, + STATE(211), 1, aux_sym_dis_expr_repeat1, - STATE(992), 1, - aux_sym_sym_lit_repeat1, - STATE(1076), 1, + STATE(924), 1, sym_sym_lit, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, - sym_meta_lit, - STATE(1108), 1, - sym__bare_set_lit, - STATE(1109), 1, + STATE(926), 1, + aux_sym_sym_lit_repeat1, + STATE(1068), 1, sym__bare_vec_lit, - STATE(1369), 1, + STATE(1069), 1, + sym__bare_set_lit, + STATE(1162), 1, + sym_meta_lit, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1910), 1, + STATE(1861), 1, sym_dotted_sym_lit, - ACTIONS(828), 2, + ACTIONS(558), 2, sym__ws, sym_comment, - ACTIONS(868), 2, + ACTIONS(598), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1424), 2, + ACTIONS(1524), 2, sym_num_lit, sym_char_lit, - ACTIONS(1426), 2, + ACTIONS(1526), 2, sym_nil_lit, sym_fancy_literal, - STATE(943), 2, + STATE(902), 2, sym__gap, sym_dis_expr, - STATE(1110), 3, + STATE(1067), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1138), 18, + STATE(1123), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -32279,90 +32316,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [35329] = 38, + [35438] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(606), 1, + ACTIONS(562), 1, + anon_sym_COLON, + ACTIONS(564), 1, + anon_sym_COLON_COLON, + ACTIONS(566), 1, aux_sym_str_lit_token1, - ACTIONS(610), 1, + ACTIONS(570), 1, aux_sym_sym_lit_token1, - ACTIONS(612), 1, + ACTIONS(572), 1, anon_sym_LPAREN, - ACTIONS(614), 1, + ACTIONS(574), 1, anon_sym_POUND0A, - ACTIONS(616), 1, + ACTIONS(576), 1, anon_sym_POUND, - ACTIONS(618), 1, + ACTIONS(578), 1, anon_sym_POUND_QMARK, - ACTIONS(620), 1, + ACTIONS(580), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(622), 1, - anon_sym_COLON_COLON, - ACTIONS(624), 1, + ACTIONS(582), 1, anon_sym_POUND_SQUOTE, - ACTIONS(626), 1, + ACTIONS(584), 1, anon_sym_POUND_POUND, - ACTIONS(628), 1, + ACTIONS(586), 1, anon_sym_POUND_EQ, - ACTIONS(630), 1, + ACTIONS(588), 1, anon_sym_AT, - ACTIONS(632), 1, + ACTIONS(590), 1, anon_sym_SQUOTE, - ACTIONS(634), 1, + ACTIONS(592), 1, anon_sym_BQUOTE, - ACTIONS(636), 1, + ACTIONS(594), 1, anon_sym_COMMA_AT, - ACTIONS(638), 1, + ACTIONS(596), 1, anon_sym_COMMA, - ACTIONS(640), 1, - anon_sym_COLON, - ACTIONS(644), 1, + ACTIONS(600), 1, anon_sym_POUNDC, - STATE(930), 1, + STATE(892), 1, aux_sym_dis_expr_repeat1, - STATE(949), 1, + STATE(924), 1, sym_sym_lit, - STATE(963), 1, - sym__bare_set_lit, - STATE(964), 1, - sym__bare_vec_lit, - STATE(967), 1, + STATE(926), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1068), 1, + sym__bare_vec_lit, + STATE(1069), 1, + sym__bare_set_lit, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1911), 1, + STATE(1861), 1, sym_dotted_sym_lit, - ACTIONS(602), 2, + ACTIONS(558), 2, sym__ws, sym_comment, - ACTIONS(642), 2, + ACTIONS(598), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1428), 2, + ACTIONS(1528), 2, sym_num_lit, sym_char_lit, - ACTIONS(1430), 2, + ACTIONS(1530), 2, sym_nil_lit, sym_fancy_literal, - STATE(944), 2, + STATE(902), 2, sym__gap, sym_dis_expr, - STATE(965), 3, + STATE(1067), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(995), 18, + STATE(1122), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -32380,90 +32418,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [35468] = 38, + [35578] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(13), 1, - aux_sym_str_lit_token1, + anon_sym_COLON, + ACTIONS(15), 1, + anon_sym_COLON_COLON, ACTIONS(17), 1, - aux_sym_sym_lit_token1, - ACTIONS(19), 1, - anon_sym_CARET, + aux_sym_str_lit_token1, ACTIONS(21), 1, - anon_sym_POUND_CARET, + aux_sym_sym_lit_token1, ACTIONS(23), 1, - anon_sym_LPAREN, + anon_sym_CARET, ACTIONS(25), 1, - anon_sym_POUND0A, + anon_sym_POUND_CARET, ACTIONS(27), 1, - anon_sym_POUND, + anon_sym_LPAREN, ACTIONS(29), 1, - anon_sym_POUND_QMARK, + anon_sym_POUND0A, ACTIONS(31), 1, - anon_sym_POUND_QMARK_AT, + anon_sym_POUND, ACTIONS(33), 1, - anon_sym_COLON_COLON, + anon_sym_POUND_QMARK, ACTIONS(35), 1, - anon_sym_POUND_SQUOTE, + anon_sym_POUND_QMARK_AT, ACTIONS(37), 1, - anon_sym_POUND_POUND, + anon_sym_POUND_SQUOTE, ACTIONS(39), 1, - anon_sym_POUND_EQ, + anon_sym_POUND_POUND, ACTIONS(41), 1, - anon_sym_AT, + anon_sym_POUND_EQ, ACTIONS(43), 1, - anon_sym_SQUOTE, + anon_sym_AT, ACTIONS(45), 1, - anon_sym_BQUOTE, + anon_sym_SQUOTE, ACTIONS(47), 1, - anon_sym_COMMA_AT, + anon_sym_BQUOTE, ACTIONS(49), 1, - anon_sym_COMMA, + anon_sym_COMMA_AT, ACTIONS(51), 1, - anon_sym_COLON, + anon_sym_COMMA, ACTIONS(55), 1, anon_sym_POUNDC, - STATE(132), 1, + STATE(252), 1, aux_sym_dis_expr_repeat1, - STATE(815), 1, + STATE(780), 1, sym_sym_lit, - STATE(838), 1, + STATE(786), 1, sym__bare_vec_lit, - STATE(841), 1, + STATE(884), 1, sym__bare_set_lit, - STATE(1047), 1, + STATE(1033), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1909), 1, + STATE(1863), 1, sym_dotted_sym_lit, ACTIONS(53), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(646), 2, + ACTIONS(650), 2, sym__ws, sym_comment, - ACTIONS(1432), 2, + ACTIONS(1532), 2, sym_num_lit, sym_char_lit, - ACTIONS(1434), 2, + ACTIONS(1534), 2, sym_nil_lit, sym_fancy_literal, - STATE(942), 2, + STATE(898), 2, sym__gap, sym_dis_expr, - STATE(842), 3, + STATE(787), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1360), 18, + STATE(157), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -32481,90 +32520,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [35607] = 38, + [35718] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(61), 1, + ACTIONS(1170), 1, + anon_sym_COLON, + ACTIONS(1172), 1, + anon_sym_COLON_COLON, + ACTIONS(1174), 1, aux_sym_str_lit_token1, - ACTIONS(65), 1, + ACTIONS(1178), 1, aux_sym_sym_lit_token1, - ACTIONS(67), 1, + ACTIONS(1180), 1, + anon_sym_LPAREN, + ACTIONS(1182), 1, anon_sym_POUND0A, - ACTIONS(69), 1, + ACTIONS(1184), 1, anon_sym_POUND, - ACTIONS(71), 1, + ACTIONS(1186), 1, anon_sym_POUND_QMARK, - ACTIONS(73), 1, + ACTIONS(1188), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(75), 1, - anon_sym_COLON_COLON, - ACTIONS(77), 1, + ACTIONS(1190), 1, anon_sym_POUND_SQUOTE, - ACTIONS(79), 1, + ACTIONS(1192), 1, anon_sym_POUND_POUND, - ACTIONS(81), 1, + ACTIONS(1194), 1, anon_sym_POUND_EQ, - ACTIONS(83), 1, + ACTIONS(1196), 1, anon_sym_AT, - ACTIONS(85), 1, + ACTIONS(1198), 1, anon_sym_SQUOTE, - ACTIONS(87), 1, + ACTIONS(1200), 1, anon_sym_BQUOTE, - ACTIONS(89), 1, + ACTIONS(1202), 1, anon_sym_COMMA_AT, - ACTIONS(91), 1, + ACTIONS(1204), 1, anon_sym_COMMA, - ACTIONS(95), 1, - anon_sym_COLON, - ACTIONS(99), 1, + ACTIONS(1208), 1, anon_sym_POUNDC, - ACTIONS(381), 1, - anon_sym_LPAREN, - STATE(446), 1, - sym_sym_lit, - STATE(513), 1, - sym__bare_set_lit, - STATE(514), 1, - sym__bare_vec_lit, - STATE(930), 1, + STATE(352), 1, aux_sym_dis_expr_repeat1, - STATE(1044), 1, + STATE(950), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1173), 1, + sym_sym_lit, + STATE(1226), 1, + sym__bare_set_lit, + STATE(1230), 1, + sym__bare_vec_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1907), 1, + STATE(1864), 1, sym_dotted_sym_lit, - ACTIONS(97), 2, + ACTIONS(1206), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(379), 2, + ACTIONS(1298), 2, sym__ws, sym_comment, - ACTIONS(1436), 2, + ACTIONS(1536), 2, sym_num_lit, sym_char_lit, - ACTIONS(1438), 2, + ACTIONS(1538), 2, sym_nil_lit, sym_fancy_literal, - STATE(934), 2, + STATE(907), 2, sym__gap, sym_dis_expr, - STATE(515), 3, + STATE(1231), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(455), 18, + STATE(1257), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -32582,90 +32622,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [35746] = 38, + [35858] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(518), 1, + ACTIONS(1170), 1, + anon_sym_COLON, + ACTIONS(1172), 1, + anon_sym_COLON_COLON, + ACTIONS(1174), 1, aux_sym_str_lit_token1, - ACTIONS(522), 1, + ACTIONS(1178), 1, aux_sym_sym_lit_token1, - ACTIONS(524), 1, + ACTIONS(1180), 1, anon_sym_LPAREN, - ACTIONS(526), 1, + ACTIONS(1182), 1, anon_sym_POUND0A, - ACTIONS(528), 1, + ACTIONS(1184), 1, anon_sym_POUND, - ACTIONS(530), 1, + ACTIONS(1186), 1, anon_sym_POUND_QMARK, - ACTIONS(532), 1, + ACTIONS(1188), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(534), 1, - anon_sym_COLON_COLON, - ACTIONS(536), 1, + ACTIONS(1190), 1, anon_sym_POUND_SQUOTE, - ACTIONS(538), 1, + ACTIONS(1192), 1, anon_sym_POUND_POUND, - ACTIONS(540), 1, + ACTIONS(1194), 1, anon_sym_POUND_EQ, - ACTIONS(542), 1, + ACTIONS(1196), 1, anon_sym_AT, - ACTIONS(544), 1, + ACTIONS(1198), 1, anon_sym_SQUOTE, - ACTIONS(546), 1, + ACTIONS(1200), 1, anon_sym_BQUOTE, - ACTIONS(548), 1, + ACTIONS(1202), 1, anon_sym_COMMA_AT, - ACTIONS(550), 1, + ACTIONS(1204), 1, anon_sym_COMMA, - ACTIONS(552), 1, - anon_sym_COLON, - ACTIONS(556), 1, + ACTIONS(1208), 1, anon_sym_POUNDC, - STATE(226), 1, + STATE(892), 1, aux_sym_dis_expr_repeat1, - STATE(575), 1, - sym_sym_lit, - STATE(654), 1, - sym__bare_vec_lit, - STATE(683), 1, - sym__bare_set_lit, - STATE(1029), 1, + STATE(950), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1173), 1, + sym_sym_lit, + STATE(1226), 1, + sym__bare_set_lit, + STATE(1230), 1, + sym__bare_vec_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1906), 1, + STATE(1864), 1, sym_dotted_sym_lit, - ACTIONS(514), 2, - sym__ws, - sym_comment, - ACTIONS(554), 2, + ACTIONS(1206), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1440), 2, + ACTIONS(1298), 2, + sym__ws, + sym_comment, + ACTIONS(1540), 2, sym_num_lit, sym_char_lit, - ACTIONS(1442), 2, + ACTIONS(1542), 2, sym_nil_lit, sym_fancy_literal, - STATE(936), 2, + STATE(907), 2, sym__gap, sym_dis_expr, - STATE(651), 3, + STATE(1231), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(776), 18, + STATE(1295), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -32683,90 +32724,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [35885] = 38, + [35998] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(13), 1, - aux_sym_str_lit_token1, + anon_sym_COLON, + ACTIONS(15), 1, + anon_sym_COLON_COLON, ACTIONS(17), 1, - aux_sym_sym_lit_token1, - ACTIONS(19), 1, - anon_sym_CARET, + aux_sym_str_lit_token1, ACTIONS(21), 1, - anon_sym_POUND_CARET, + aux_sym_sym_lit_token1, ACTIONS(23), 1, - anon_sym_LPAREN, + anon_sym_CARET, ACTIONS(25), 1, - anon_sym_POUND0A, + anon_sym_POUND_CARET, ACTIONS(27), 1, - anon_sym_POUND, + anon_sym_LPAREN, ACTIONS(29), 1, - anon_sym_POUND_QMARK, + anon_sym_POUND0A, ACTIONS(31), 1, - anon_sym_POUND_QMARK_AT, + anon_sym_POUND, ACTIONS(33), 1, - anon_sym_COLON_COLON, + anon_sym_POUND_QMARK, ACTIONS(35), 1, - anon_sym_POUND_SQUOTE, + anon_sym_POUND_QMARK_AT, ACTIONS(37), 1, - anon_sym_POUND_POUND, + anon_sym_POUND_SQUOTE, ACTIONS(39), 1, - anon_sym_POUND_EQ, + anon_sym_POUND_POUND, ACTIONS(41), 1, - anon_sym_AT, + anon_sym_POUND_EQ, ACTIONS(43), 1, - anon_sym_SQUOTE, + anon_sym_AT, ACTIONS(45), 1, - anon_sym_BQUOTE, + anon_sym_SQUOTE, ACTIONS(47), 1, - anon_sym_COMMA_AT, + anon_sym_BQUOTE, ACTIONS(49), 1, - anon_sym_COMMA, + anon_sym_COMMA_AT, ACTIONS(51), 1, - anon_sym_COLON, + anon_sym_COMMA, ACTIONS(55), 1, anon_sym_POUNDC, - STATE(815), 1, + STATE(780), 1, sym_sym_lit, - STATE(838), 1, + STATE(786), 1, sym__bare_vec_lit, - STATE(841), 1, + STATE(884), 1, sym__bare_set_lit, - STATE(930), 1, + STATE(892), 1, aux_sym_dis_expr_repeat1, - STATE(1047), 1, + STATE(1033), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1909), 1, + STATE(1863), 1, sym_dotted_sym_lit, ACTIONS(53), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(646), 2, + ACTIONS(650), 2, sym__ws, sym_comment, - ACTIONS(1170), 2, + ACTIONS(1544), 2, sym_num_lit, sym_char_lit, - ACTIONS(1172), 2, + ACTIONS(1546), 2, sym_nil_lit, sym_fancy_literal, - STATE(942), 2, + STATE(898), 2, sym__gap, sym_dis_expr, - STATE(842), 3, + STATE(787), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(919), 18, + STATE(869), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -32784,90 +32826,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [36024] = 38, + [36138] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(61), 1, + ACTIONS(1170), 1, + anon_sym_COLON, + ACTIONS(1172), 1, + anon_sym_COLON_COLON, + ACTIONS(1174), 1, aux_sym_str_lit_token1, - ACTIONS(65), 1, + ACTIONS(1178), 1, aux_sym_sym_lit_token1, - ACTIONS(67), 1, + ACTIONS(1180), 1, + anon_sym_LPAREN, + ACTIONS(1182), 1, anon_sym_POUND0A, - ACTIONS(69), 1, + ACTIONS(1184), 1, anon_sym_POUND, - ACTIONS(71), 1, + ACTIONS(1186), 1, anon_sym_POUND_QMARK, - ACTIONS(73), 1, + ACTIONS(1188), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(75), 1, - anon_sym_COLON_COLON, - ACTIONS(77), 1, + ACTIONS(1190), 1, anon_sym_POUND_SQUOTE, - ACTIONS(79), 1, + ACTIONS(1192), 1, anon_sym_POUND_POUND, - ACTIONS(81), 1, + ACTIONS(1194), 1, anon_sym_POUND_EQ, - ACTIONS(83), 1, + ACTIONS(1196), 1, anon_sym_AT, - ACTIONS(85), 1, + ACTIONS(1198), 1, anon_sym_SQUOTE, - ACTIONS(87), 1, + ACTIONS(1200), 1, anon_sym_BQUOTE, - ACTIONS(89), 1, + ACTIONS(1202), 1, anon_sym_COMMA_AT, - ACTIONS(91), 1, + ACTIONS(1204), 1, anon_sym_COMMA, - ACTIONS(95), 1, - anon_sym_COLON, - ACTIONS(99), 1, + ACTIONS(1208), 1, anon_sym_POUNDC, - ACTIONS(381), 1, - anon_sym_LPAREN, - STATE(446), 1, - sym_sym_lit, - STATE(513), 1, - sym__bare_set_lit, - STATE(514), 1, - sym__bare_vec_lit, - STATE(930), 1, + STATE(349), 1, aux_sym_dis_expr_repeat1, - STATE(1044), 1, + STATE(950), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1173), 1, + sym_sym_lit, + STATE(1226), 1, + sym__bare_set_lit, + STATE(1230), 1, + sym__bare_vec_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1907), 1, + STATE(1864), 1, sym_dotted_sym_lit, - ACTIONS(97), 2, + ACTIONS(1206), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(379), 2, + ACTIONS(1298), 2, sym__ws, sym_comment, - ACTIONS(1444), 2, + ACTIONS(1548), 2, sym_num_lit, sym_char_lit, - ACTIONS(1446), 2, + ACTIONS(1550), 2, sym_nil_lit, sym_fancy_literal, - STATE(934), 2, + STATE(907), 2, sym__gap, sym_dis_expr, - STATE(515), 3, + STATE(1231), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(456), 18, + STATE(1258), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -32885,90 +32928,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [36163] = 38, + [36278] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(518), 1, + ACTIONS(140), 1, + anon_sym_COLON, + ACTIONS(142), 1, + anon_sym_COLON_COLON, + ACTIONS(144), 1, aux_sym_str_lit_token1, - ACTIONS(522), 1, + ACTIONS(148), 1, aux_sym_sym_lit_token1, - ACTIONS(524), 1, - anon_sym_LPAREN, - ACTIONS(526), 1, + ACTIONS(150), 1, anon_sym_POUND0A, - ACTIONS(528), 1, + ACTIONS(152), 1, anon_sym_POUND, - ACTIONS(530), 1, + ACTIONS(154), 1, anon_sym_POUND_QMARK, - ACTIONS(532), 1, + ACTIONS(156), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(534), 1, - anon_sym_COLON_COLON, - ACTIONS(536), 1, + ACTIONS(158), 1, anon_sym_POUND_SQUOTE, - ACTIONS(538), 1, + ACTIONS(160), 1, anon_sym_POUND_POUND, - ACTIONS(540), 1, + ACTIONS(162), 1, anon_sym_POUND_EQ, - ACTIONS(542), 1, + ACTIONS(164), 1, anon_sym_AT, - ACTIONS(544), 1, + ACTIONS(166), 1, anon_sym_SQUOTE, - ACTIONS(546), 1, + ACTIONS(168), 1, anon_sym_BQUOTE, - ACTIONS(548), 1, + ACTIONS(170), 1, anon_sym_COMMA_AT, - ACTIONS(550), 1, + ACTIONS(172), 1, anon_sym_COMMA, - ACTIONS(552), 1, - anon_sym_COLON, - ACTIONS(556), 1, + ACTIONS(178), 1, anon_sym_POUNDC, - STATE(575), 1, + ACTIONS(413), 1, + anon_sym_LPAREN, + STATE(404), 1, sym_sym_lit, - STATE(654), 1, + STATE(487), 1, sym__bare_vec_lit, - STATE(683), 1, + STATE(488), 1, sym__bare_set_lit, - STATE(930), 1, + STATE(892), 1, aux_sym_dis_expr_repeat1, - STATE(1029), 1, + STATE(981), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1906), 1, + STATE(1866), 1, sym_dotted_sym_lit, - ACTIONS(514), 2, - sym__ws, - sym_comment, - ACTIONS(554), 2, + ACTIONS(176), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1448), 2, + ACTIONS(411), 2, + sym__ws, + sym_comment, + ACTIONS(1552), 2, sym_num_lit, sym_char_lit, - ACTIONS(1450), 2, + ACTIONS(1554), 2, sym_nil_lit, sym_fancy_literal, - STATE(936), 2, + STATE(903), 2, sym__gap, sym_dis_expr, - STATE(651), 3, + STATE(486), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(775), 18, + STATE(428), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -32986,90 +33030,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [36302] = 38, + [36418] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(13), 1, - aux_sym_str_lit_token1, + anon_sym_COLON, + ACTIONS(15), 1, + anon_sym_COLON_COLON, ACTIONS(17), 1, - aux_sym_sym_lit_token1, - ACTIONS(19), 1, - anon_sym_CARET, + aux_sym_str_lit_token1, ACTIONS(21), 1, - anon_sym_POUND_CARET, + aux_sym_sym_lit_token1, ACTIONS(23), 1, - anon_sym_LPAREN, + anon_sym_CARET, ACTIONS(25), 1, - anon_sym_POUND0A, + anon_sym_POUND_CARET, ACTIONS(27), 1, - anon_sym_POUND, + anon_sym_LPAREN, ACTIONS(29), 1, - anon_sym_POUND_QMARK, + anon_sym_POUND0A, ACTIONS(31), 1, - anon_sym_POUND_QMARK_AT, + anon_sym_POUND, ACTIONS(33), 1, - anon_sym_COLON_COLON, + anon_sym_POUND_QMARK, ACTIONS(35), 1, - anon_sym_POUND_SQUOTE, + anon_sym_POUND_QMARK_AT, ACTIONS(37), 1, - anon_sym_POUND_POUND, + anon_sym_POUND_SQUOTE, ACTIONS(39), 1, - anon_sym_POUND_EQ, + anon_sym_POUND_POUND, ACTIONS(41), 1, - anon_sym_AT, + anon_sym_POUND_EQ, ACTIONS(43), 1, - anon_sym_SQUOTE, + anon_sym_AT, ACTIONS(45), 1, - anon_sym_BQUOTE, + anon_sym_SQUOTE, ACTIONS(47), 1, - anon_sym_COMMA_AT, + anon_sym_BQUOTE, ACTIONS(49), 1, - anon_sym_COMMA, + anon_sym_COMMA_AT, ACTIONS(51), 1, - anon_sym_COLON, + anon_sym_COMMA, ACTIONS(55), 1, anon_sym_POUNDC, - STATE(815), 1, + STATE(780), 1, sym_sym_lit, - STATE(838), 1, + STATE(786), 1, sym__bare_vec_lit, - STATE(841), 1, + STATE(884), 1, sym__bare_set_lit, - STATE(930), 1, + STATE(892), 1, aux_sym_dis_expr_repeat1, - STATE(1047), 1, + STATE(1033), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1909), 1, + STATE(1863), 1, sym_dotted_sym_lit, ACTIONS(53), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(646), 2, + ACTIONS(650), 2, sym__ws, sym_comment, - ACTIONS(1360), 2, + ACTIONS(1556), 2, sym_num_lit, sym_char_lit, - ACTIONS(1362), 2, + ACTIONS(1558), 2, sym_nil_lit, sym_fancy_literal, - STATE(942), 2, + STATE(898), 2, sym__gap, sym_dis_expr, - STATE(842), 3, + STATE(787), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(920), 18, + STATE(870), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -33087,90 +33132,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [36441] = 38, + [36558] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(19), 1, - anon_sym_CARET, - ACTIONS(21), 1, - anon_sym_POUND_CARET, - ACTIONS(606), 1, + ACTIONS(13), 1, + anon_sym_COLON, + ACTIONS(15), 1, + anon_sym_COLON_COLON, + ACTIONS(17), 1, aux_sym_str_lit_token1, - ACTIONS(610), 1, + ACTIONS(21), 1, aux_sym_sym_lit_token1, - ACTIONS(612), 1, + ACTIONS(23), 1, + anon_sym_CARET, + ACTIONS(25), 1, + anon_sym_POUND_CARET, + ACTIONS(27), 1, anon_sym_LPAREN, - ACTIONS(614), 1, + ACTIONS(29), 1, anon_sym_POUND0A, - ACTIONS(616), 1, + ACTIONS(31), 1, anon_sym_POUND, - ACTIONS(618), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(620), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(622), 1, - anon_sym_COLON_COLON, - ACTIONS(624), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(626), 1, + ACTIONS(39), 1, anon_sym_POUND_POUND, - ACTIONS(628), 1, + ACTIONS(41), 1, anon_sym_POUND_EQ, - ACTIONS(630), 1, + ACTIONS(43), 1, anon_sym_AT, - ACTIONS(632), 1, + ACTIONS(45), 1, anon_sym_SQUOTE, - ACTIONS(634), 1, + ACTIONS(47), 1, anon_sym_BQUOTE, - ACTIONS(636), 1, + ACTIONS(49), 1, anon_sym_COMMA_AT, - ACTIONS(638), 1, + ACTIONS(51), 1, anon_sym_COMMA, - ACTIONS(640), 1, - anon_sym_COLON, - ACTIONS(644), 1, + ACTIONS(55), 1, anon_sym_POUNDC, - STATE(930), 1, + STATE(253), 1, aux_sym_dis_expr_repeat1, - STATE(949), 1, + STATE(780), 1, sym_sym_lit, - STATE(963), 1, - sym__bare_set_lit, - STATE(964), 1, + STATE(786), 1, sym__bare_vec_lit, - STATE(967), 1, + STATE(884), 1, + sym__bare_set_lit, + STATE(1033), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1911), 1, + STATE(1863), 1, sym_dotted_sym_lit, - ACTIONS(602), 2, - sym__ws, - sym_comment, - ACTIONS(642), 2, + ACTIONS(53), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1452), 2, + ACTIONS(650), 2, + sym__ws, + sym_comment, + ACTIONS(1560), 2, sym_num_lit, sym_char_lit, - ACTIONS(1454), 2, + ACTIONS(1562), 2, sym_nil_lit, sym_fancy_literal, - STATE(944), 2, + STATE(898), 2, sym__gap, sym_dis_expr, - STATE(965), 3, + STATE(787), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(994), 18, + STATE(156), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -33188,90 +33234,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [36580] = 38, + [36698] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(19), 1, - anon_sym_CARET, - ACTIONS(21), 1, - anon_sym_POUND_CARET, - ACTIONS(518), 1, + ACTIONS(13), 1, + anon_sym_COLON, + ACTIONS(15), 1, + anon_sym_COLON_COLON, + ACTIONS(17), 1, aux_sym_str_lit_token1, - ACTIONS(522), 1, + ACTIONS(21), 1, aux_sym_sym_lit_token1, - ACTIONS(524), 1, + ACTIONS(23), 1, + anon_sym_CARET, + ACTIONS(25), 1, + anon_sym_POUND_CARET, + ACTIONS(27), 1, anon_sym_LPAREN, - ACTIONS(526), 1, + ACTIONS(29), 1, anon_sym_POUND0A, - ACTIONS(528), 1, + ACTIONS(31), 1, anon_sym_POUND, - ACTIONS(530), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(532), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(534), 1, - anon_sym_COLON_COLON, - ACTIONS(536), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(538), 1, + ACTIONS(39), 1, anon_sym_POUND_POUND, - ACTIONS(540), 1, + ACTIONS(41), 1, anon_sym_POUND_EQ, - ACTIONS(542), 1, + ACTIONS(43), 1, anon_sym_AT, - ACTIONS(544), 1, + ACTIONS(45), 1, anon_sym_SQUOTE, - ACTIONS(546), 1, + ACTIONS(47), 1, anon_sym_BQUOTE, - ACTIONS(548), 1, + ACTIONS(49), 1, anon_sym_COMMA_AT, - ACTIONS(550), 1, + ACTIONS(51), 1, anon_sym_COMMA, - ACTIONS(552), 1, - anon_sym_COLON, - ACTIONS(556), 1, + ACTIONS(55), 1, anon_sym_POUNDC, - STATE(66), 1, - aux_sym_dis_expr_repeat1, - STATE(575), 1, + STATE(780), 1, sym_sym_lit, - STATE(654), 1, + STATE(786), 1, sym__bare_vec_lit, - STATE(683), 1, + STATE(884), 1, sym__bare_set_lit, - STATE(1029), 1, + STATE(892), 1, + aux_sym_dis_expr_repeat1, + STATE(1033), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1906), 1, + STATE(1863), 1, sym_dotted_sym_lit, - ACTIONS(514), 2, - sym__ws, - sym_comment, - ACTIONS(554), 2, + ACTIONS(53), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1456), 2, + ACTIONS(650), 2, + sym__ws, + sym_comment, + ACTIONS(1564), 2, sym_num_lit, sym_char_lit, - ACTIONS(1458), 2, + ACTIONS(1566), 2, sym_nil_lit, sym_fancy_literal, - STATE(936), 2, + STATE(898), 2, sym__gap, sym_dis_expr, - STATE(651), 3, + STATE(787), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(769), 18, + STATE(135), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -33289,90 +33336,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [36719] = 38, + [36838] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(13), 1, - aux_sym_str_lit_token1, + anon_sym_COLON, + ACTIONS(15), 1, + anon_sym_COLON_COLON, ACTIONS(17), 1, - aux_sym_sym_lit_token1, - ACTIONS(19), 1, - anon_sym_CARET, + aux_sym_str_lit_token1, ACTIONS(21), 1, - anon_sym_POUND_CARET, + aux_sym_sym_lit_token1, ACTIONS(23), 1, - anon_sym_LPAREN, + anon_sym_CARET, ACTIONS(25), 1, - anon_sym_POUND0A, + anon_sym_POUND_CARET, ACTIONS(27), 1, - anon_sym_POUND, + anon_sym_LPAREN, ACTIONS(29), 1, - anon_sym_POUND_QMARK, + anon_sym_POUND0A, ACTIONS(31), 1, - anon_sym_POUND_QMARK_AT, + anon_sym_POUND, ACTIONS(33), 1, - anon_sym_COLON_COLON, + anon_sym_POUND_QMARK, ACTIONS(35), 1, - anon_sym_POUND_SQUOTE, + anon_sym_POUND_QMARK_AT, ACTIONS(37), 1, - anon_sym_POUND_POUND, + anon_sym_POUND_SQUOTE, ACTIONS(39), 1, - anon_sym_POUND_EQ, + anon_sym_POUND_POUND, ACTIONS(41), 1, - anon_sym_AT, + anon_sym_POUND_EQ, ACTIONS(43), 1, - anon_sym_SQUOTE, + anon_sym_AT, ACTIONS(45), 1, - anon_sym_BQUOTE, + anon_sym_SQUOTE, ACTIONS(47), 1, - anon_sym_COMMA_AT, + anon_sym_BQUOTE, ACTIONS(49), 1, - anon_sym_COMMA, + anon_sym_COMMA_AT, ACTIONS(51), 1, - anon_sym_COLON, + anon_sym_COMMA, ACTIONS(55), 1, anon_sym_POUNDC, - STATE(261), 1, + STATE(297), 1, aux_sym_dis_expr_repeat1, - STATE(815), 1, + STATE(780), 1, sym_sym_lit, - STATE(838), 1, + STATE(786), 1, sym__bare_vec_lit, - STATE(841), 1, + STATE(884), 1, sym__bare_set_lit, - STATE(1047), 1, + STATE(1033), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1909), 1, + STATE(1863), 1, sym_dotted_sym_lit, ACTIONS(53), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(646), 2, + ACTIONS(650), 2, sym__ws, sym_comment, - ACTIONS(1460), 2, + ACTIONS(1568), 2, sym_num_lit, sym_char_lit, - ACTIONS(1462), 2, + ACTIONS(1570), 2, sym_nil_lit, sym_fancy_literal, - STATE(942), 2, + STATE(898), 2, sym__gap, sym_dis_expr, - STATE(842), 3, + STATE(787), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(148), 18, + STATE(369), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -33390,90 +33438,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [36858] = 38, + [36978] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(13), 1, - aux_sym_str_lit_token1, + anon_sym_COLON, + ACTIONS(15), 1, + anon_sym_COLON_COLON, ACTIONS(17), 1, - aux_sym_sym_lit_token1, - ACTIONS(19), 1, - anon_sym_CARET, + aux_sym_str_lit_token1, ACTIONS(21), 1, - anon_sym_POUND_CARET, + aux_sym_sym_lit_token1, ACTIONS(23), 1, - anon_sym_LPAREN, + anon_sym_CARET, ACTIONS(25), 1, - anon_sym_POUND0A, + anon_sym_POUND_CARET, ACTIONS(27), 1, - anon_sym_POUND, + anon_sym_LPAREN, ACTIONS(29), 1, - anon_sym_POUND_QMARK, + anon_sym_POUND0A, ACTIONS(31), 1, - anon_sym_POUND_QMARK_AT, + anon_sym_POUND, ACTIONS(33), 1, - anon_sym_COLON_COLON, + anon_sym_POUND_QMARK, ACTIONS(35), 1, - anon_sym_POUND_SQUOTE, + anon_sym_POUND_QMARK_AT, ACTIONS(37), 1, - anon_sym_POUND_POUND, + anon_sym_POUND_SQUOTE, ACTIONS(39), 1, - anon_sym_POUND_EQ, + anon_sym_POUND_POUND, ACTIONS(41), 1, - anon_sym_AT, + anon_sym_POUND_EQ, ACTIONS(43), 1, - anon_sym_SQUOTE, + anon_sym_AT, ACTIONS(45), 1, - anon_sym_BQUOTE, + anon_sym_SQUOTE, ACTIONS(47), 1, - anon_sym_COMMA_AT, + anon_sym_BQUOTE, ACTIONS(49), 1, - anon_sym_COMMA, + anon_sym_COMMA_AT, ACTIONS(51), 1, - anon_sym_COLON, + anon_sym_COMMA, ACTIONS(55), 1, anon_sym_POUNDC, - STATE(262), 1, + STATE(306), 1, aux_sym_dis_expr_repeat1, - STATE(815), 1, + STATE(780), 1, sym_sym_lit, - STATE(838), 1, + STATE(786), 1, sym__bare_vec_lit, - STATE(841), 1, + STATE(884), 1, sym__bare_set_lit, - STATE(1047), 1, + STATE(1033), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1909), 1, + STATE(1863), 1, sym_dotted_sym_lit, ACTIONS(53), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(646), 2, + ACTIONS(650), 2, sym__ws, sym_comment, - ACTIONS(1464), 2, + ACTIONS(1572), 2, sym_num_lit, sym_char_lit, - ACTIONS(1466), 2, + ACTIONS(1574), 2, sym_nil_lit, sym_fancy_literal, - STATE(942), 2, + STATE(898), 2, sym__gap, sym_dis_expr, - STATE(842), 3, + STATE(787), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(149), 18, + STATE(362), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -33491,90 +33540,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [36997] = 38, + [37118] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(13), 1, - aux_sym_str_lit_token1, + anon_sym_COLON, + ACTIONS(15), 1, + anon_sym_COLON_COLON, ACTIONS(17), 1, - aux_sym_sym_lit_token1, - ACTIONS(19), 1, - anon_sym_CARET, + aux_sym_str_lit_token1, ACTIONS(21), 1, - anon_sym_POUND_CARET, + aux_sym_sym_lit_token1, ACTIONS(23), 1, - anon_sym_LPAREN, + anon_sym_CARET, ACTIONS(25), 1, - anon_sym_POUND0A, + anon_sym_POUND_CARET, ACTIONS(27), 1, - anon_sym_POUND, + anon_sym_LPAREN, ACTIONS(29), 1, - anon_sym_POUND_QMARK, + anon_sym_POUND0A, ACTIONS(31), 1, - anon_sym_POUND_QMARK_AT, + anon_sym_POUND, ACTIONS(33), 1, - anon_sym_COLON_COLON, + anon_sym_POUND_QMARK, ACTIONS(35), 1, - anon_sym_POUND_SQUOTE, + anon_sym_POUND_QMARK_AT, ACTIONS(37), 1, - anon_sym_POUND_POUND, + anon_sym_POUND_SQUOTE, ACTIONS(39), 1, - anon_sym_POUND_EQ, + anon_sym_POUND_POUND, ACTIONS(41), 1, - anon_sym_AT, + anon_sym_POUND_EQ, ACTIONS(43), 1, - anon_sym_SQUOTE, + anon_sym_AT, ACTIONS(45), 1, - anon_sym_BQUOTE, + anon_sym_SQUOTE, ACTIONS(47), 1, - anon_sym_COMMA_AT, + anon_sym_BQUOTE, ACTIONS(49), 1, - anon_sym_COMMA, + anon_sym_COMMA_AT, ACTIONS(51), 1, - anon_sym_COLON, + anon_sym_COMMA, ACTIONS(55), 1, anon_sym_POUNDC, - STATE(815), 1, + STATE(93), 1, + aux_sym_dis_expr_repeat1, + STATE(780), 1, sym_sym_lit, - STATE(838), 1, + STATE(786), 1, sym__bare_vec_lit, - STATE(841), 1, + STATE(884), 1, sym__bare_set_lit, - STATE(930), 1, - aux_sym_dis_expr_repeat1, - STATE(1047), 1, + STATE(1033), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1909), 1, + STATE(1863), 1, sym_dotted_sym_lit, ACTIONS(53), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(646), 2, + ACTIONS(650), 2, sym__ws, sym_comment, - ACTIONS(1468), 2, + ACTIONS(1576), 2, sym_num_lit, sym_char_lit, - ACTIONS(1470), 2, + ACTIONS(1578), 2, sym_nil_lit, sym_fancy_literal, - STATE(942), 2, + STATE(898), 2, sym__gap, sym_dis_expr, - STATE(842), 3, + STATE(787), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(195), 18, + STATE(92), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -33592,90 +33642,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [37136] = 38, + [37258] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(832), 1, + ACTIONS(610), 1, + anon_sym_COLON, + ACTIONS(612), 1, + anon_sym_COLON_COLON, + ACTIONS(614), 1, aux_sym_str_lit_token1, - ACTIONS(836), 1, + ACTIONS(618), 1, aux_sym_sym_lit_token1, - ACTIONS(838), 1, + ACTIONS(620), 1, anon_sym_LPAREN, - ACTIONS(840), 1, + ACTIONS(622), 1, anon_sym_POUND0A, - ACTIONS(842), 1, + ACTIONS(624), 1, anon_sym_POUND, - ACTIONS(844), 1, + ACTIONS(626), 1, anon_sym_POUND_QMARK, - ACTIONS(846), 1, + ACTIONS(628), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(848), 1, - anon_sym_COLON_COLON, - ACTIONS(850), 1, + ACTIONS(630), 1, anon_sym_POUND_SQUOTE, - ACTIONS(852), 1, + ACTIONS(632), 1, anon_sym_POUND_POUND, - ACTIONS(854), 1, + ACTIONS(634), 1, anon_sym_POUND_EQ, - ACTIONS(856), 1, + ACTIONS(636), 1, anon_sym_AT, - ACTIONS(858), 1, + ACTIONS(638), 1, anon_sym_SQUOTE, - ACTIONS(860), 1, + ACTIONS(640), 1, anon_sym_BQUOTE, - ACTIONS(862), 1, + ACTIONS(642), 1, anon_sym_COMMA_AT, - ACTIONS(864), 1, + ACTIONS(644), 1, anon_sym_COMMA, - ACTIONS(866), 1, - anon_sym_COLON, - ACTIONS(870), 1, + ACTIONS(648), 1, anon_sym_POUNDC, - STATE(930), 1, + STATE(545), 1, + sym_sym_lit, + STATE(688), 1, + sym__bare_vec_lit, + STATE(691), 1, + sym__bare_set_lit, + STATE(892), 1, aux_sym_dis_expr_repeat1, - STATE(992), 1, + STATE(1013), 1, aux_sym_sym_lit_repeat1, - STATE(1076), 1, - sym_sym_lit, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1108), 1, - sym__bare_set_lit, - STATE(1109), 1, - sym__bare_vec_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1910), 1, + STATE(1862), 1, sym_dotted_sym_lit, - ACTIONS(828), 2, + ACTIONS(606), 2, sym__ws, sym_comment, - ACTIONS(868), 2, + ACTIONS(646), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1472), 2, + ACTIONS(1580), 2, sym_num_lit, sym_char_lit, - ACTIONS(1474), 2, + ACTIONS(1582), 2, sym_nil_lit, sym_fancy_literal, - STATE(943), 2, + STATE(896), 2, sym__gap, sym_dis_expr, - STATE(1110), 3, + STATE(687), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1103), 18, + STATE(769), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -33693,90 +33744,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [37275] = 38, + [37398] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(518), 1, + ACTIONS(610), 1, + anon_sym_COLON, + ACTIONS(612), 1, + anon_sym_COLON_COLON, + ACTIONS(614), 1, aux_sym_str_lit_token1, - ACTIONS(522), 1, + ACTIONS(618), 1, aux_sym_sym_lit_token1, - ACTIONS(524), 1, + ACTIONS(620), 1, anon_sym_LPAREN, - ACTIONS(526), 1, + ACTIONS(622), 1, anon_sym_POUND0A, - ACTIONS(528), 1, + ACTIONS(624), 1, anon_sym_POUND, - ACTIONS(530), 1, + ACTIONS(626), 1, anon_sym_POUND_QMARK, - ACTIONS(532), 1, + ACTIONS(628), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(534), 1, - anon_sym_COLON_COLON, - ACTIONS(536), 1, + ACTIONS(630), 1, anon_sym_POUND_SQUOTE, - ACTIONS(538), 1, + ACTIONS(632), 1, anon_sym_POUND_POUND, - ACTIONS(540), 1, + ACTIONS(634), 1, anon_sym_POUND_EQ, - ACTIONS(542), 1, + ACTIONS(636), 1, anon_sym_AT, - ACTIONS(544), 1, + ACTIONS(638), 1, anon_sym_SQUOTE, - ACTIONS(546), 1, + ACTIONS(640), 1, anon_sym_BQUOTE, - ACTIONS(548), 1, + ACTIONS(642), 1, anon_sym_COMMA_AT, - ACTIONS(550), 1, + ACTIONS(644), 1, anon_sym_COMMA, - ACTIONS(552), 1, - anon_sym_COLON, - ACTIONS(556), 1, + ACTIONS(648), 1, anon_sym_POUNDC, - STATE(254), 1, - aux_sym_dis_expr_repeat1, - STATE(575), 1, + STATE(545), 1, sym_sym_lit, - STATE(654), 1, + STATE(688), 1, sym__bare_vec_lit, - STATE(683), 1, + STATE(691), 1, sym__bare_set_lit, - STATE(1029), 1, + STATE(892), 1, + aux_sym_dis_expr_repeat1, + STATE(1013), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1906), 1, + STATE(1862), 1, sym_dotted_sym_lit, - ACTIONS(514), 2, + ACTIONS(606), 2, sym__ws, sym_comment, - ACTIONS(554), 2, + ACTIONS(646), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1476), 2, + ACTIONS(1584), 2, sym_num_lit, sym_char_lit, - ACTIONS(1478), 2, + ACTIONS(1586), 2, sym_nil_lit, sym_fancy_literal, - STATE(936), 2, + STATE(896), 2, sym__gap, sym_dis_expr, - STATE(651), 3, + STATE(687), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(768), 18, + STATE(765), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -33794,90 +33846,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [37414] = 38, + [37538] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(606), 1, + ACTIONS(518), 1, + anon_sym_COLON, + ACTIONS(520), 1, + anon_sym_COLON_COLON, + ACTIONS(522), 1, aux_sym_str_lit_token1, - ACTIONS(610), 1, + ACTIONS(526), 1, aux_sym_sym_lit_token1, - ACTIONS(612), 1, + ACTIONS(528), 1, anon_sym_LPAREN, - ACTIONS(614), 1, + ACTIONS(530), 1, anon_sym_POUND0A, - ACTIONS(616), 1, + ACTIONS(532), 1, anon_sym_POUND, - ACTIONS(618), 1, + ACTIONS(534), 1, anon_sym_POUND_QMARK, - ACTIONS(620), 1, + ACTIONS(536), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(622), 1, - anon_sym_COLON_COLON, - ACTIONS(624), 1, + ACTIONS(538), 1, anon_sym_POUND_SQUOTE, - ACTIONS(626), 1, + ACTIONS(540), 1, anon_sym_POUND_POUND, - ACTIONS(628), 1, + ACTIONS(542), 1, anon_sym_POUND_EQ, - ACTIONS(630), 1, + ACTIONS(544), 1, anon_sym_AT, - ACTIONS(632), 1, + ACTIONS(546), 1, anon_sym_SQUOTE, - ACTIONS(634), 1, + ACTIONS(548), 1, anon_sym_BQUOTE, - ACTIONS(636), 1, + ACTIONS(550), 1, anon_sym_COMMA_AT, - ACTIONS(638), 1, + ACTIONS(552), 1, anon_sym_COMMA, - ACTIONS(640), 1, - anon_sym_COLON, - ACTIONS(644), 1, + ACTIONS(556), 1, anon_sym_POUNDC, - ACTIONS(1094), 1, + ACTIONS(1154), 1, anon_sym_DOT, - STATE(949), 1, + STATE(909), 1, sym_sym_lit, - STATE(963), 1, + STATE(922), 1, sym__bare_set_lit, - STATE(964), 1, + STATE(931), 1, sym__bare_vec_lit, - STATE(967), 1, + STATE(936), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1911), 1, + STATE(1865), 1, sym_dotted_sym_lit, - ACTIONS(642), 2, + ACTIONS(554), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1092), 2, + ACTIONS(1152), 2, sym__ws, sym_comment, - ACTIONS(1480), 2, + ACTIONS(1588), 2, sym_num_lit, sym_char_lit, - ACTIONS(1482), 2, + ACTIONS(1590), 2, sym_nil_lit, sym_fancy_literal, - STATE(1917), 2, + STATE(1872), 2, sym__gap, sym_dis_expr, - STATE(965), 3, + STATE(930), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1079), 18, + STATE(1093), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -33895,90 +33948,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [37553] = 38, + [37678] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(518), 1, + ACTIONS(610), 1, + anon_sym_COLON, + ACTIONS(612), 1, + anon_sym_COLON_COLON, + ACTIONS(614), 1, aux_sym_str_lit_token1, - ACTIONS(522), 1, + ACTIONS(618), 1, aux_sym_sym_lit_token1, - ACTIONS(524), 1, + ACTIONS(620), 1, anon_sym_LPAREN, - ACTIONS(526), 1, + ACTIONS(622), 1, anon_sym_POUND0A, - ACTIONS(528), 1, + ACTIONS(624), 1, anon_sym_POUND, - ACTIONS(530), 1, + ACTIONS(626), 1, anon_sym_POUND_QMARK, - ACTIONS(532), 1, + ACTIONS(628), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(534), 1, - anon_sym_COLON_COLON, - ACTIONS(536), 1, + ACTIONS(630), 1, anon_sym_POUND_SQUOTE, - ACTIONS(538), 1, + ACTIONS(632), 1, anon_sym_POUND_POUND, - ACTIONS(540), 1, + ACTIONS(634), 1, anon_sym_POUND_EQ, - ACTIONS(542), 1, + ACTIONS(636), 1, anon_sym_AT, - ACTIONS(544), 1, + ACTIONS(638), 1, anon_sym_SQUOTE, - ACTIONS(546), 1, + ACTIONS(640), 1, anon_sym_BQUOTE, - ACTIONS(548), 1, + ACTIONS(642), 1, anon_sym_COMMA_AT, - ACTIONS(550), 1, + ACTIONS(644), 1, anon_sym_COMMA, - ACTIONS(552), 1, - anon_sym_COLON, - ACTIONS(556), 1, + ACTIONS(648), 1, anon_sym_POUNDC, - STATE(257), 1, + STATE(244), 1, aux_sym_dis_expr_repeat1, - STATE(575), 1, + STATE(545), 1, sym_sym_lit, - STATE(654), 1, + STATE(688), 1, sym__bare_vec_lit, - STATE(683), 1, + STATE(691), 1, sym__bare_set_lit, - STATE(1029), 1, + STATE(1013), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1906), 1, + STATE(1862), 1, sym_dotted_sym_lit, - ACTIONS(514), 2, + ACTIONS(606), 2, sym__ws, sym_comment, - ACTIONS(554), 2, + ACTIONS(646), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1484), 2, + ACTIONS(1592), 2, sym_num_lit, sym_char_lit, - ACTIONS(1486), 2, + ACTIONS(1594), 2, sym_nil_lit, sym_fancy_literal, - STATE(936), 2, + STATE(896), 2, sym__gap, sym_dis_expr, - STATE(651), 3, + STATE(687), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(765), 18, + STATE(728), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -33996,90 +34050,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [37692] = 38, + [37818] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(518), 1, + ACTIONS(562), 1, + anon_sym_COLON, + ACTIONS(564), 1, + anon_sym_COLON_COLON, + ACTIONS(566), 1, aux_sym_str_lit_token1, - ACTIONS(522), 1, + ACTIONS(570), 1, aux_sym_sym_lit_token1, - ACTIONS(524), 1, + ACTIONS(572), 1, anon_sym_LPAREN, - ACTIONS(526), 1, + ACTIONS(574), 1, anon_sym_POUND0A, - ACTIONS(528), 1, + ACTIONS(576), 1, anon_sym_POUND, - ACTIONS(530), 1, + ACTIONS(578), 1, anon_sym_POUND_QMARK, - ACTIONS(532), 1, + ACTIONS(580), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(534), 1, - anon_sym_COLON_COLON, - ACTIONS(536), 1, + ACTIONS(582), 1, anon_sym_POUND_SQUOTE, - ACTIONS(538), 1, + ACTIONS(584), 1, anon_sym_POUND_POUND, - ACTIONS(540), 1, + ACTIONS(586), 1, anon_sym_POUND_EQ, - ACTIONS(542), 1, + ACTIONS(588), 1, anon_sym_AT, - ACTIONS(544), 1, + ACTIONS(590), 1, anon_sym_SQUOTE, - ACTIONS(546), 1, + ACTIONS(592), 1, anon_sym_BQUOTE, - ACTIONS(548), 1, + ACTIONS(594), 1, anon_sym_COMMA_AT, - ACTIONS(550), 1, + ACTIONS(596), 1, anon_sym_COMMA, - ACTIONS(552), 1, - anon_sym_COLON, - ACTIONS(556), 1, + ACTIONS(600), 1, anon_sym_POUNDC, - STATE(260), 1, + STATE(382), 1, aux_sym_dis_expr_repeat1, - STATE(575), 1, + STATE(924), 1, sym_sym_lit, - STATE(654), 1, + STATE(926), 1, + aux_sym_sym_lit_repeat1, + STATE(1068), 1, sym__bare_vec_lit, - STATE(683), 1, + STATE(1069), 1, sym__bare_set_lit, - STATE(1029), 1, - aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1906), 1, + STATE(1861), 1, sym_dotted_sym_lit, - ACTIONS(514), 2, + ACTIONS(558), 2, sym__ws, sym_comment, - ACTIONS(554), 2, + ACTIONS(598), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1488), 2, + ACTIONS(1596), 2, sym_num_lit, sym_char_lit, - ACTIONS(1490), 2, + ACTIONS(1598), 2, sym_nil_lit, sym_fancy_literal, - STATE(936), 2, + STATE(902), 2, sym__gap, sym_dis_expr, - STATE(651), 3, + STATE(1067), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(759), 18, + STATE(1070), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -34097,90 +34152,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [37831] = 38, + [37958] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(19), 1, - anon_sym_CARET, - ACTIONS(21), 1, - anon_sym_POUND_CARET, - ACTIONS(518), 1, + ACTIONS(13), 1, + anon_sym_COLON, + ACTIONS(15), 1, + anon_sym_COLON_COLON, + ACTIONS(17), 1, aux_sym_str_lit_token1, - ACTIONS(522), 1, + ACTIONS(21), 1, aux_sym_sym_lit_token1, - ACTIONS(524), 1, + ACTIONS(23), 1, + anon_sym_CARET, + ACTIONS(25), 1, + anon_sym_POUND_CARET, + ACTIONS(27), 1, anon_sym_LPAREN, - ACTIONS(526), 1, + ACTIONS(29), 1, anon_sym_POUND0A, - ACTIONS(528), 1, + ACTIONS(31), 1, anon_sym_POUND, - ACTIONS(530), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(532), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(534), 1, - anon_sym_COLON_COLON, - ACTIONS(536), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(538), 1, + ACTIONS(39), 1, anon_sym_POUND_POUND, - ACTIONS(540), 1, + ACTIONS(41), 1, anon_sym_POUND_EQ, - ACTIONS(542), 1, + ACTIONS(43), 1, anon_sym_AT, - ACTIONS(544), 1, + ACTIONS(45), 1, anon_sym_SQUOTE, - ACTIONS(546), 1, + ACTIONS(47), 1, anon_sym_BQUOTE, - ACTIONS(548), 1, + ACTIONS(49), 1, anon_sym_COMMA_AT, - ACTIONS(550), 1, + ACTIONS(51), 1, anon_sym_COMMA, - ACTIONS(552), 1, - anon_sym_COLON, - ACTIONS(556), 1, + ACTIONS(55), 1, anon_sym_POUNDC, - STATE(270), 1, + STATE(91), 1, aux_sym_dis_expr_repeat1, - STATE(575), 1, + STATE(780), 1, sym_sym_lit, - STATE(654), 1, + STATE(786), 1, sym__bare_vec_lit, - STATE(683), 1, + STATE(884), 1, sym__bare_set_lit, - STATE(1029), 1, + STATE(1033), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1906), 1, + STATE(1863), 1, sym_dotted_sym_lit, - ACTIONS(514), 2, - sym__ws, - sym_comment, - ACTIONS(554), 2, + ACTIONS(53), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1492), 2, + ACTIONS(650), 2, + sym__ws, + sym_comment, + ACTIONS(1600), 2, sym_num_lit, sym_char_lit, - ACTIONS(1494), 2, + ACTIONS(1602), 2, sym_nil_lit, sym_fancy_literal, - STATE(936), 2, + STATE(898), 2, sym__gap, sym_dis_expr, - STATE(651), 3, + STATE(787), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(713), 18, + STATE(861), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -34198,90 +34254,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [37970] = 38, + [38098] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(518), 1, + ACTIONS(610), 1, + anon_sym_COLON, + ACTIONS(612), 1, + anon_sym_COLON_COLON, + ACTIONS(614), 1, aux_sym_str_lit_token1, - ACTIONS(522), 1, + ACTIONS(618), 1, aux_sym_sym_lit_token1, - ACTIONS(524), 1, + ACTIONS(620), 1, anon_sym_LPAREN, - ACTIONS(526), 1, + ACTIONS(622), 1, anon_sym_POUND0A, - ACTIONS(528), 1, + ACTIONS(624), 1, anon_sym_POUND, - ACTIONS(530), 1, + ACTIONS(626), 1, anon_sym_POUND_QMARK, - ACTIONS(532), 1, + ACTIONS(628), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(534), 1, - anon_sym_COLON_COLON, - ACTIONS(536), 1, + ACTIONS(630), 1, anon_sym_POUND_SQUOTE, - ACTIONS(538), 1, + ACTIONS(632), 1, anon_sym_POUND_POUND, - ACTIONS(540), 1, + ACTIONS(634), 1, anon_sym_POUND_EQ, - ACTIONS(542), 1, + ACTIONS(636), 1, anon_sym_AT, - ACTIONS(544), 1, + ACTIONS(638), 1, anon_sym_SQUOTE, - ACTIONS(546), 1, + ACTIONS(640), 1, anon_sym_BQUOTE, - ACTIONS(548), 1, + ACTIONS(642), 1, anon_sym_COMMA_AT, - ACTIONS(550), 1, + ACTIONS(644), 1, anon_sym_COMMA, - ACTIONS(552), 1, - anon_sym_COLON, - ACTIONS(556), 1, + ACTIONS(648), 1, anon_sym_POUNDC, - ACTIONS(1498), 1, + ACTIONS(1606), 1, anon_sym_DOT, - STATE(575), 1, + STATE(545), 1, sym_sym_lit, - STATE(654), 1, + STATE(688), 1, sym__bare_vec_lit, - STATE(683), 1, + STATE(691), 1, sym__bare_set_lit, - STATE(1029), 1, + STATE(1013), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1906), 1, + STATE(1862), 1, sym_dotted_sym_lit, - ACTIONS(554), 2, + ACTIONS(646), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1496), 2, + ACTIONS(1604), 2, sym__ws, sym_comment, - ACTIONS(1500), 2, + ACTIONS(1608), 2, sym_num_lit, sym_char_lit, - ACTIONS(1502), 2, + ACTIONS(1610), 2, sym_nil_lit, sym_fancy_literal, - STATE(1924), 2, + STATE(1884), 2, sym__gap, sym_dis_expr, - STATE(651), 3, + STATE(687), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(644), 18, + STATE(676), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -34299,90 +34356,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [38109] = 38, + [38238] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(19), 1, - anon_sym_CARET, - ACTIONS(21), 1, - anon_sym_POUND_CARET, - ACTIONS(518), 1, + ACTIONS(17), 1, aux_sym_str_lit_token1, - ACTIONS(522), 1, + ACTIONS(21), 1, aux_sym_sym_lit_token1, - ACTIONS(524), 1, + ACTIONS(23), 1, + anon_sym_CARET, + ACTIONS(25), 1, + anon_sym_POUND_CARET, + ACTIONS(27), 1, anon_sym_LPAREN, - ACTIONS(526), 1, + ACTIONS(29), 1, anon_sym_POUND0A, - ACTIONS(528), 1, + ACTIONS(31), 1, anon_sym_POUND, - ACTIONS(530), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(532), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(534), 1, - anon_sym_COLON_COLON, - ACTIONS(536), 1, - anon_sym_POUND_SQUOTE, - ACTIONS(538), 1, + ACTIONS(39), 1, anon_sym_POUND_POUND, - ACTIONS(540), 1, + ACTIONS(41), 1, anon_sym_POUND_EQ, - ACTIONS(542), 1, + ACTIONS(47), 1, + anon_sym_BQUOTE, + ACTIONS(55), 1, + anon_sym_POUNDC, + ACTIONS(1248), 1, + anon_sym_COLON, + ACTIONS(1250), 1, + anon_sym_COLON_COLON, + ACTIONS(1254), 1, + anon_sym_POUND_SQUOTE, + ACTIONS(1256), 1, anon_sym_AT, - ACTIONS(544), 1, + ACTIONS(1258), 1, anon_sym_SQUOTE, - ACTIONS(546), 1, - anon_sym_BQUOTE, - ACTIONS(548), 1, + ACTIONS(1260), 1, anon_sym_COMMA_AT, - ACTIONS(550), 1, + ACTIONS(1262), 1, anon_sym_COMMA, - ACTIONS(552), 1, - anon_sym_COLON, - ACTIONS(556), 1, - anon_sym_POUNDC, - STATE(575), 1, + STATE(327), 1, + aux_sym_dis_expr_repeat1, + STATE(783), 1, sym_sym_lit, - STATE(654), 1, + STATE(786), 1, sym__bare_vec_lit, - STATE(683), 1, + STATE(884), 1, sym__bare_set_lit, - STATE(930), 1, - aux_sym_dis_expr_repeat1, - STATE(1029), 1, + STATE(933), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1906), 1, + STATE(1867), 1, sym_dotted_sym_lit, - ACTIONS(514), 2, + ACTIONS(650), 2, sym__ws, sym_comment, - ACTIONS(554), 2, + ACTIONS(1264), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1504), 2, + ACTIONS(1612), 2, sym_num_lit, sym_char_lit, - ACTIONS(1506), 2, + ACTIONS(1614), 2, sym_nil_lit, sym_fancy_literal, - STATE(936), 2, + STATE(898), 2, sym__gap, sym_dis_expr, - STATE(651), 3, + STATE(787), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(746), 18, + STATE(873), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -34400,90 +34458,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [38248] = 38, + [38378] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(19), 1, - anon_sym_CARET, - ACTIONS(21), 1, - anon_sym_POUND_CARET, - ACTIONS(518), 1, + ACTIONS(17), 1, aux_sym_str_lit_token1, - ACTIONS(522), 1, + ACTIONS(21), 1, aux_sym_sym_lit_token1, - ACTIONS(524), 1, + ACTIONS(23), 1, + anon_sym_CARET, + ACTIONS(25), 1, + anon_sym_POUND_CARET, + ACTIONS(27), 1, anon_sym_LPAREN, - ACTIONS(526), 1, + ACTIONS(29), 1, anon_sym_POUND0A, - ACTIONS(528), 1, + ACTIONS(31), 1, anon_sym_POUND, - ACTIONS(530), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(532), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(534), 1, - anon_sym_COLON_COLON, - ACTIONS(536), 1, - anon_sym_POUND_SQUOTE, - ACTIONS(538), 1, + ACTIONS(39), 1, anon_sym_POUND_POUND, - ACTIONS(540), 1, + ACTIONS(41), 1, anon_sym_POUND_EQ, - ACTIONS(542), 1, + ACTIONS(47), 1, + anon_sym_BQUOTE, + ACTIONS(55), 1, + anon_sym_POUNDC, + ACTIONS(1248), 1, + anon_sym_COLON, + ACTIONS(1250), 1, + anon_sym_COLON_COLON, + ACTIONS(1254), 1, + anon_sym_POUND_SQUOTE, + ACTIONS(1256), 1, anon_sym_AT, - ACTIONS(544), 1, + ACTIONS(1258), 1, anon_sym_SQUOTE, - ACTIONS(546), 1, - anon_sym_BQUOTE, - ACTIONS(548), 1, + ACTIONS(1260), 1, anon_sym_COMMA_AT, - ACTIONS(550), 1, + ACTIONS(1262), 1, anon_sym_COMMA, - ACTIONS(552), 1, - anon_sym_COLON, - ACTIONS(556), 1, - anon_sym_POUNDC, - STATE(575), 1, + STATE(328), 1, + aux_sym_dis_expr_repeat1, + STATE(783), 1, sym_sym_lit, - STATE(654), 1, + STATE(786), 1, sym__bare_vec_lit, - STATE(683), 1, + STATE(884), 1, sym__bare_set_lit, - STATE(930), 1, - aux_sym_dis_expr_repeat1, - STATE(1029), 1, + STATE(933), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1906), 1, + STATE(1867), 1, sym_dotted_sym_lit, - ACTIONS(514), 2, + ACTIONS(650), 2, sym__ws, sym_comment, - ACTIONS(554), 2, + ACTIONS(1264), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1508), 2, + ACTIONS(1616), 2, sym_num_lit, sym_char_lit, - ACTIONS(1510), 2, + ACTIONS(1618), 2, sym_nil_lit, sym_fancy_literal, - STATE(936), 2, + STATE(898), 2, sym__gap, sym_dis_expr, - STATE(651), 3, + STATE(787), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(744), 18, + STATE(853), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -34501,90 +34560,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [38387] = 38, + [38518] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(19), 1, - anon_sym_CARET, - ACTIONS(21), 1, - anon_sym_POUND_CARET, - ACTIONS(832), 1, + ACTIONS(17), 1, aux_sym_str_lit_token1, - ACTIONS(836), 1, + ACTIONS(21), 1, aux_sym_sym_lit_token1, - ACTIONS(838), 1, + ACTIONS(23), 1, + anon_sym_CARET, + ACTIONS(25), 1, + anon_sym_POUND_CARET, + ACTIONS(27), 1, anon_sym_LPAREN, - ACTIONS(840), 1, + ACTIONS(29), 1, anon_sym_POUND0A, - ACTIONS(842), 1, + ACTIONS(31), 1, anon_sym_POUND, - ACTIONS(844), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(846), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(848), 1, - anon_sym_COLON_COLON, - ACTIONS(850), 1, - anon_sym_POUND_SQUOTE, - ACTIONS(852), 1, + ACTIONS(39), 1, anon_sym_POUND_POUND, - ACTIONS(854), 1, + ACTIONS(41), 1, anon_sym_POUND_EQ, - ACTIONS(856), 1, + ACTIONS(47), 1, + anon_sym_BQUOTE, + ACTIONS(55), 1, + anon_sym_POUNDC, + ACTIONS(1248), 1, + anon_sym_COLON, + ACTIONS(1250), 1, + anon_sym_COLON_COLON, + ACTIONS(1254), 1, + anon_sym_POUND_SQUOTE, + ACTIONS(1256), 1, anon_sym_AT, - ACTIONS(858), 1, + ACTIONS(1258), 1, anon_sym_SQUOTE, - ACTIONS(860), 1, - anon_sym_BQUOTE, - ACTIONS(862), 1, + ACTIONS(1260), 1, anon_sym_COMMA_AT, - ACTIONS(864), 1, + ACTIONS(1262), 1, anon_sym_COMMA, - ACTIONS(866), 1, - anon_sym_COLON, - ACTIONS(870), 1, - anon_sym_POUNDC, - STATE(930), 1, + STATE(329), 1, aux_sym_dis_expr_repeat1, - STATE(992), 1, - aux_sym_sym_lit_repeat1, - STATE(1076), 1, + STATE(783), 1, sym_sym_lit, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, - sym_meta_lit, - STATE(1108), 1, - sym__bare_set_lit, - STATE(1109), 1, + STATE(786), 1, sym__bare_vec_lit, - STATE(1369), 1, + STATE(884), 1, + sym__bare_set_lit, + STATE(933), 1, + aux_sym_sym_lit_repeat1, + STATE(1162), 1, + sym_meta_lit, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1910), 1, + STATE(1867), 1, sym_dotted_sym_lit, - ACTIONS(828), 2, + ACTIONS(650), 2, sym__ws, sym_comment, - ACTIONS(868), 2, + ACTIONS(1264), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1512), 2, + ACTIONS(1620), 2, sym_num_lit, sym_char_lit, - ACTIONS(1514), 2, + ACTIONS(1622), 2, sym_nil_lit, sym_fancy_literal, - STATE(943), 2, + STATE(898), 2, sym__gap, sym_dis_expr, - STATE(1110), 3, + STATE(787), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1121), 18, + STATE(864), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -34602,90 +34662,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [38526] = 38, + [38658] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(518), 1, + ACTIONS(140), 1, + anon_sym_COLON, + ACTIONS(142), 1, + anon_sym_COLON_COLON, + ACTIONS(144), 1, aux_sym_str_lit_token1, - ACTIONS(522), 1, + ACTIONS(148), 1, aux_sym_sym_lit_token1, - ACTIONS(524), 1, - anon_sym_LPAREN, - ACTIONS(526), 1, + ACTIONS(150), 1, anon_sym_POUND0A, - ACTIONS(528), 1, + ACTIONS(152), 1, anon_sym_POUND, - ACTIONS(530), 1, + ACTIONS(154), 1, anon_sym_POUND_QMARK, - ACTIONS(532), 1, + ACTIONS(156), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(534), 1, - anon_sym_COLON_COLON, - ACTIONS(536), 1, + ACTIONS(158), 1, anon_sym_POUND_SQUOTE, - ACTIONS(538), 1, + ACTIONS(160), 1, anon_sym_POUND_POUND, - ACTIONS(540), 1, + ACTIONS(162), 1, anon_sym_POUND_EQ, - ACTIONS(542), 1, + ACTIONS(164), 1, anon_sym_AT, - ACTIONS(544), 1, + ACTIONS(166), 1, anon_sym_SQUOTE, - ACTIONS(546), 1, + ACTIONS(168), 1, anon_sym_BQUOTE, - ACTIONS(548), 1, + ACTIONS(170), 1, anon_sym_COMMA_AT, - ACTIONS(550), 1, + ACTIONS(172), 1, anon_sym_COMMA, - ACTIONS(552), 1, - anon_sym_COLON, - ACTIONS(556), 1, + ACTIONS(178), 1, anon_sym_POUNDC, - STATE(575), 1, + ACTIONS(413), 1, + anon_sym_LPAREN, + STATE(404), 1, sym_sym_lit, - STATE(654), 1, + STATE(487), 1, sym__bare_vec_lit, - STATE(683), 1, + STATE(488), 1, sym__bare_set_lit, - STATE(930), 1, + STATE(892), 1, aux_sym_dis_expr_repeat1, - STATE(1029), 1, + STATE(981), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1906), 1, + STATE(1866), 1, sym_dotted_sym_lit, - ACTIONS(514), 2, - sym__ws, - sym_comment, - ACTIONS(554), 2, + ACTIONS(176), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1516), 2, + ACTIONS(411), 2, + sym__ws, + sym_comment, + ACTIONS(1624), 2, sym_num_lit, sym_char_lit, - ACTIONS(1518), 2, + ACTIONS(1626), 2, sym_nil_lit, sym_fancy_literal, - STATE(936), 2, + STATE(903), 2, sym__gap, sym_dis_expr, - STATE(651), 3, + STATE(486), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(740), 18, + STATE(427), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -34703,90 +34764,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [38665] = 38, + [38798] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(606), 1, + ACTIONS(518), 1, + anon_sym_COLON, + ACTIONS(520), 1, + anon_sym_COLON_COLON, + ACTIONS(522), 1, aux_sym_str_lit_token1, - ACTIONS(610), 1, + ACTIONS(526), 1, aux_sym_sym_lit_token1, - ACTIONS(612), 1, + ACTIONS(528), 1, anon_sym_LPAREN, - ACTIONS(614), 1, + ACTIONS(530), 1, anon_sym_POUND0A, - ACTIONS(616), 1, + ACTIONS(532), 1, anon_sym_POUND, - ACTIONS(618), 1, + ACTIONS(534), 1, anon_sym_POUND_QMARK, - ACTIONS(620), 1, + ACTIONS(536), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(622), 1, - anon_sym_COLON_COLON, - ACTIONS(624), 1, + ACTIONS(538), 1, anon_sym_POUND_SQUOTE, - ACTIONS(626), 1, + ACTIONS(540), 1, anon_sym_POUND_POUND, - ACTIONS(628), 1, + ACTIONS(542), 1, anon_sym_POUND_EQ, - ACTIONS(630), 1, + ACTIONS(544), 1, anon_sym_AT, - ACTIONS(632), 1, + ACTIONS(546), 1, anon_sym_SQUOTE, - ACTIONS(634), 1, + ACTIONS(548), 1, anon_sym_BQUOTE, - ACTIONS(636), 1, + ACTIONS(550), 1, anon_sym_COMMA_AT, - ACTIONS(638), 1, + ACTIONS(552), 1, anon_sym_COMMA, - ACTIONS(640), 1, - anon_sym_COLON, - ACTIONS(644), 1, + ACTIONS(556), 1, anon_sym_POUNDC, - ACTIONS(1094), 1, + ACTIONS(1154), 1, anon_sym_DOT, - STATE(949), 1, + STATE(909), 1, sym_sym_lit, - STATE(963), 1, + STATE(922), 1, sym__bare_set_lit, - STATE(964), 1, + STATE(931), 1, sym__bare_vec_lit, - STATE(967), 1, + STATE(936), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1911), 1, + STATE(1865), 1, sym_dotted_sym_lit, - ACTIONS(642), 2, + ACTIONS(554), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1092), 2, + ACTIONS(1152), 2, sym__ws, sym_comment, - ACTIONS(1520), 2, + ACTIONS(1628), 2, sym_num_lit, sym_char_lit, - ACTIONS(1522), 2, + ACTIONS(1630), 2, sym_nil_lit, sym_fancy_literal, - STATE(1917), 2, + STATE(1872), 2, sym__gap, sym_dis_expr, - STATE(965), 3, + STATE(930), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1100), 18, + STATE(1051), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -34804,90 +34866,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [38804] = 38, + [38938] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(19), 1, - anon_sym_CARET, - ACTIONS(21), 1, - anon_sym_POUND_CARET, - ACTIONS(518), 1, + ACTIONS(13), 1, + anon_sym_COLON, + ACTIONS(15), 1, + anon_sym_COLON_COLON, + ACTIONS(17), 1, aux_sym_str_lit_token1, - ACTIONS(522), 1, + ACTIONS(21), 1, aux_sym_sym_lit_token1, - ACTIONS(524), 1, + ACTIONS(23), 1, + anon_sym_CARET, + ACTIONS(25), 1, + anon_sym_POUND_CARET, + ACTIONS(27), 1, anon_sym_LPAREN, - ACTIONS(526), 1, + ACTIONS(29), 1, anon_sym_POUND0A, - ACTIONS(528), 1, + ACTIONS(31), 1, anon_sym_POUND, - ACTIONS(530), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(532), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(534), 1, - anon_sym_COLON_COLON, - ACTIONS(536), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(538), 1, + ACTIONS(39), 1, anon_sym_POUND_POUND, - ACTIONS(540), 1, + ACTIONS(41), 1, anon_sym_POUND_EQ, - ACTIONS(542), 1, + ACTIONS(43), 1, anon_sym_AT, - ACTIONS(544), 1, + ACTIONS(45), 1, anon_sym_SQUOTE, - ACTIONS(546), 1, + ACTIONS(47), 1, anon_sym_BQUOTE, - ACTIONS(548), 1, + ACTIONS(49), 1, anon_sym_COMMA_AT, - ACTIONS(550), 1, + ACTIONS(51), 1, anon_sym_COMMA, - ACTIONS(552), 1, - anon_sym_COLON, - ACTIONS(556), 1, + ACTIONS(55), 1, anon_sym_POUNDC, - STATE(575), 1, + STATE(273), 1, + aux_sym_dis_expr_repeat1, + STATE(780), 1, sym_sym_lit, - STATE(654), 1, + STATE(786), 1, sym__bare_vec_lit, - STATE(683), 1, + STATE(884), 1, sym__bare_set_lit, - STATE(930), 1, - aux_sym_dis_expr_repeat1, - STATE(1029), 1, + STATE(1033), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1906), 1, + STATE(1863), 1, sym_dotted_sym_lit, - ACTIONS(514), 2, - sym__ws, - sym_comment, - ACTIONS(554), 2, + ACTIONS(53), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1524), 2, + ACTIONS(650), 2, + sym__ws, + sym_comment, + ACTIONS(1632), 2, sym_num_lit, sym_char_lit, - ACTIONS(1526), 2, + ACTIONS(1634), 2, sym_nil_lit, sym_fancy_literal, - STATE(936), 2, + STATE(898), 2, sym__gap, sym_dis_expr, - STATE(651), 3, + STATE(787), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(739), 18, + STATE(121), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -34905,90 +34968,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [38943] = 38, + [39078] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(19), 1, - anon_sym_CARET, - ACTIONS(21), 1, - anon_sym_POUND_CARET, - ACTIONS(518), 1, + ACTIONS(17), 1, aux_sym_str_lit_token1, - ACTIONS(522), 1, + ACTIONS(21), 1, aux_sym_sym_lit_token1, - ACTIONS(524), 1, + ACTIONS(23), 1, + anon_sym_CARET, + ACTIONS(25), 1, + anon_sym_POUND_CARET, + ACTIONS(27), 1, anon_sym_LPAREN, - ACTIONS(526), 1, + ACTIONS(29), 1, anon_sym_POUND0A, - ACTIONS(528), 1, + ACTIONS(31), 1, anon_sym_POUND, - ACTIONS(530), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(532), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(534), 1, - anon_sym_COLON_COLON, - ACTIONS(536), 1, - anon_sym_POUND_SQUOTE, - ACTIONS(538), 1, + ACTIONS(39), 1, anon_sym_POUND_POUND, - ACTIONS(540), 1, + ACTIONS(41), 1, anon_sym_POUND_EQ, - ACTIONS(542), 1, + ACTIONS(47), 1, + anon_sym_BQUOTE, + ACTIONS(55), 1, + anon_sym_POUNDC, + ACTIONS(1248), 1, + anon_sym_COLON, + ACTIONS(1250), 1, + anon_sym_COLON_COLON, + ACTIONS(1254), 1, + anon_sym_POUND_SQUOTE, + ACTIONS(1256), 1, anon_sym_AT, - ACTIONS(544), 1, + ACTIONS(1258), 1, anon_sym_SQUOTE, - ACTIONS(546), 1, - anon_sym_BQUOTE, - ACTIONS(548), 1, + ACTIONS(1260), 1, anon_sym_COMMA_AT, - ACTIONS(550), 1, + ACTIONS(1262), 1, anon_sym_COMMA, - ACTIONS(552), 1, - anon_sym_COLON, - ACTIONS(556), 1, - anon_sym_POUNDC, - STATE(575), 1, + STATE(341), 1, + aux_sym_dis_expr_repeat1, + STATE(783), 1, sym_sym_lit, - STATE(654), 1, + STATE(786), 1, sym__bare_vec_lit, - STATE(683), 1, + STATE(884), 1, sym__bare_set_lit, - STATE(930), 1, - aux_sym_dis_expr_repeat1, - STATE(1029), 1, + STATE(933), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1906), 1, + STATE(1867), 1, sym_dotted_sym_lit, - ACTIONS(514), 2, + ACTIONS(650), 2, sym__ws, sym_comment, - ACTIONS(554), 2, + ACTIONS(1264), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1528), 2, + ACTIONS(1636), 2, sym_num_lit, sym_char_lit, - ACTIONS(1530), 2, + ACTIONS(1638), 2, sym_nil_lit, sym_fancy_literal, - STATE(936), 2, + STATE(898), 2, sym__gap, sym_dis_expr, - STATE(651), 3, + STATE(787), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(734), 18, + STATE(862), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -35006,90 +35070,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [39082] = 38, + [39218] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(19), 1, - anon_sym_CARET, - ACTIONS(21), 1, - anon_sym_POUND_CARET, - ACTIONS(61), 1, + ACTIONS(17), 1, aux_sym_str_lit_token1, - ACTIONS(65), 1, + ACTIONS(21), 1, aux_sym_sym_lit_token1, - ACTIONS(67), 1, + ACTIONS(23), 1, + anon_sym_CARET, + ACTIONS(25), 1, + anon_sym_POUND_CARET, + ACTIONS(27), 1, + anon_sym_LPAREN, + ACTIONS(29), 1, anon_sym_POUND0A, - ACTIONS(69), 1, + ACTIONS(31), 1, anon_sym_POUND, - ACTIONS(71), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(73), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(75), 1, - anon_sym_COLON_COLON, - ACTIONS(77), 1, - anon_sym_POUND_SQUOTE, - ACTIONS(79), 1, + ACTIONS(39), 1, anon_sym_POUND_POUND, - ACTIONS(81), 1, + ACTIONS(41), 1, anon_sym_POUND_EQ, - ACTIONS(83), 1, + ACTIONS(47), 1, + anon_sym_BQUOTE, + ACTIONS(55), 1, + anon_sym_POUNDC, + ACTIONS(1248), 1, + anon_sym_COLON, + ACTIONS(1250), 1, + anon_sym_COLON_COLON, + ACTIONS(1254), 1, + anon_sym_POUND_SQUOTE, + ACTIONS(1256), 1, anon_sym_AT, - ACTIONS(85), 1, + ACTIONS(1258), 1, anon_sym_SQUOTE, - ACTIONS(87), 1, - anon_sym_BQUOTE, - ACTIONS(89), 1, + ACTIONS(1260), 1, anon_sym_COMMA_AT, - ACTIONS(91), 1, + ACTIONS(1262), 1, anon_sym_COMMA, - ACTIONS(95), 1, - anon_sym_COLON, - ACTIONS(99), 1, - anon_sym_POUNDC, - ACTIONS(381), 1, - anon_sym_LPAREN, - STATE(446), 1, + STATE(343), 1, + aux_sym_dis_expr_repeat1, + STATE(783), 1, sym_sym_lit, - STATE(513), 1, - sym__bare_set_lit, - STATE(514), 1, + STATE(786), 1, sym__bare_vec_lit, - STATE(930), 1, - aux_sym_dis_expr_repeat1, - STATE(1044), 1, + STATE(884), 1, + sym__bare_set_lit, + STATE(933), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1907), 1, + STATE(1867), 1, sym_dotted_sym_lit, - ACTIONS(97), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(379), 2, + ACTIONS(650), 2, sym__ws, sym_comment, - ACTIONS(1532), 2, + ACTIONS(1264), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(1600), 2, sym_num_lit, sym_char_lit, - ACTIONS(1534), 2, + ACTIONS(1602), 2, sym_nil_lit, sym_fancy_literal, - STATE(934), 2, + STATE(898), 2, sym__gap, sym_dis_expr, - STATE(515), 3, + STATE(787), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(461), 18, + STATE(861), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -35107,90 +35172,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [39221] = 38, + [39358] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(518), 1, + ACTIONS(1170), 1, + anon_sym_COLON, + ACTIONS(1172), 1, + anon_sym_COLON_COLON, + ACTIONS(1174), 1, aux_sym_str_lit_token1, - ACTIONS(522), 1, + ACTIONS(1178), 1, aux_sym_sym_lit_token1, - ACTIONS(524), 1, + ACTIONS(1180), 1, anon_sym_LPAREN, - ACTIONS(526), 1, + ACTIONS(1182), 1, anon_sym_POUND0A, - ACTIONS(528), 1, + ACTIONS(1184), 1, anon_sym_POUND, - ACTIONS(530), 1, + ACTIONS(1186), 1, anon_sym_POUND_QMARK, - ACTIONS(532), 1, + ACTIONS(1188), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(534), 1, - anon_sym_COLON_COLON, - ACTIONS(536), 1, + ACTIONS(1190), 1, anon_sym_POUND_SQUOTE, - ACTIONS(538), 1, + ACTIONS(1192), 1, anon_sym_POUND_POUND, - ACTIONS(540), 1, + ACTIONS(1194), 1, anon_sym_POUND_EQ, - ACTIONS(542), 1, + ACTIONS(1196), 1, anon_sym_AT, - ACTIONS(544), 1, + ACTIONS(1198), 1, anon_sym_SQUOTE, - ACTIONS(546), 1, + ACTIONS(1200), 1, anon_sym_BQUOTE, - ACTIONS(548), 1, + ACTIONS(1202), 1, anon_sym_COMMA_AT, - ACTIONS(550), 1, + ACTIONS(1204), 1, anon_sym_COMMA, - ACTIONS(552), 1, - anon_sym_COLON, - ACTIONS(556), 1, + ACTIONS(1208), 1, anon_sym_POUNDC, - STATE(284), 1, + STATE(259), 1, aux_sym_dis_expr_repeat1, - STATE(575), 1, - sym_sym_lit, - STATE(654), 1, - sym__bare_vec_lit, - STATE(683), 1, - sym__bare_set_lit, - STATE(1029), 1, + STATE(950), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1173), 1, + sym_sym_lit, + STATE(1226), 1, + sym__bare_set_lit, + STATE(1230), 1, + sym__bare_vec_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1906), 1, + STATE(1864), 1, sym_dotted_sym_lit, - ACTIONS(514), 2, - sym__ws, - sym_comment, - ACTIONS(554), 2, + ACTIONS(1206), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1536), 2, + ACTIONS(1298), 2, + sym__ws, + sym_comment, + ACTIONS(1640), 2, sym_num_lit, sym_char_lit, - ACTIONS(1538), 2, + ACTIONS(1642), 2, sym_nil_lit, sym_fancy_literal, - STATE(936), 2, + STATE(907), 2, sym__gap, sym_dis_expr, - STATE(651), 3, + STATE(1231), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(709), 18, + STATE(1288), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -35208,90 +35274,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [39360] = 38, + [39498] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(832), 1, + ACTIONS(1170), 1, + anon_sym_COLON, + ACTIONS(1172), 1, + anon_sym_COLON_COLON, + ACTIONS(1174), 1, aux_sym_str_lit_token1, - ACTIONS(836), 1, + ACTIONS(1178), 1, aux_sym_sym_lit_token1, - ACTIONS(838), 1, + ACTIONS(1180), 1, anon_sym_LPAREN, - ACTIONS(840), 1, + ACTIONS(1182), 1, anon_sym_POUND0A, - ACTIONS(842), 1, + ACTIONS(1184), 1, anon_sym_POUND, - ACTIONS(844), 1, + ACTIONS(1186), 1, anon_sym_POUND_QMARK, - ACTIONS(846), 1, + ACTIONS(1188), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(848), 1, - anon_sym_COLON_COLON, - ACTIONS(850), 1, + ACTIONS(1190), 1, anon_sym_POUND_SQUOTE, - ACTIONS(852), 1, + ACTIONS(1192), 1, anon_sym_POUND_POUND, - ACTIONS(854), 1, + ACTIONS(1194), 1, anon_sym_POUND_EQ, - ACTIONS(856), 1, + ACTIONS(1196), 1, anon_sym_AT, - ACTIONS(858), 1, + ACTIONS(1198), 1, anon_sym_SQUOTE, - ACTIONS(860), 1, + ACTIONS(1200), 1, anon_sym_BQUOTE, - ACTIONS(862), 1, + ACTIONS(1202), 1, anon_sym_COMMA_AT, - ACTIONS(864), 1, + ACTIONS(1204), 1, anon_sym_COMMA, - ACTIONS(866), 1, - anon_sym_COLON, - ACTIONS(870), 1, + ACTIONS(1208), 1, anon_sym_POUNDC, - STATE(252), 1, + STATE(892), 1, aux_sym_dis_expr_repeat1, - STATE(992), 1, + STATE(950), 1, aux_sym_sym_lit_repeat1, - STATE(1076), 1, - sym_sym_lit, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1108), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1173), 1, + sym_sym_lit, + STATE(1226), 1, sym__bare_set_lit, - STATE(1109), 1, + STATE(1230), 1, sym__bare_vec_lit, - STATE(1369), 1, + STATE(1337), 1, sym__metadata_lit, - STATE(1910), 1, + STATE(1864), 1, sym_dotted_sym_lit, - ACTIONS(828), 2, - sym__ws, - sym_comment, - ACTIONS(868), 2, + ACTIONS(1206), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1540), 2, + ACTIONS(1298), 2, + sym__ws, + sym_comment, + ACTIONS(1644), 2, sym_num_lit, sym_char_lit, - ACTIONS(1542), 2, + ACTIONS(1646), 2, sym_nil_lit, sym_fancy_literal, - STATE(943), 2, + STATE(907), 2, sym__gap, sym_dis_expr, - STATE(1110), 3, + STATE(1231), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1169), 18, + STATE(1287), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -35309,90 +35376,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [39499] = 38, + [39638] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(19), 1, - anon_sym_CARET, - ACTIONS(21), 1, - anon_sym_POUND_CARET, - ACTIONS(832), 1, + ACTIONS(13), 1, + anon_sym_COLON, + ACTIONS(15), 1, + anon_sym_COLON_COLON, + ACTIONS(17), 1, aux_sym_str_lit_token1, - ACTIONS(836), 1, + ACTIONS(21), 1, aux_sym_sym_lit_token1, - ACTIONS(838), 1, + ACTIONS(23), 1, + anon_sym_CARET, + ACTIONS(25), 1, + anon_sym_POUND_CARET, + ACTIONS(27), 1, anon_sym_LPAREN, - ACTIONS(840), 1, + ACTIONS(29), 1, anon_sym_POUND0A, - ACTIONS(842), 1, + ACTIONS(31), 1, anon_sym_POUND, - ACTIONS(844), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(846), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(848), 1, - anon_sym_COLON_COLON, - ACTIONS(850), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(852), 1, + ACTIONS(39), 1, anon_sym_POUND_POUND, - ACTIONS(854), 1, + ACTIONS(41), 1, anon_sym_POUND_EQ, - ACTIONS(856), 1, + ACTIONS(43), 1, anon_sym_AT, - ACTIONS(858), 1, + ACTIONS(45), 1, anon_sym_SQUOTE, - ACTIONS(860), 1, + ACTIONS(47), 1, anon_sym_BQUOTE, - ACTIONS(862), 1, + ACTIONS(49), 1, anon_sym_COMMA_AT, - ACTIONS(864), 1, + ACTIONS(51), 1, anon_sym_COMMA, - ACTIONS(866), 1, - anon_sym_COLON, - ACTIONS(870), 1, + ACTIONS(55), 1, anon_sym_POUNDC, - STATE(253), 1, + STATE(89), 1, aux_sym_dis_expr_repeat1, - STATE(992), 1, - aux_sym_sym_lit_repeat1, - STATE(1076), 1, + STATE(780), 1, sym_sym_lit, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, - sym_meta_lit, - STATE(1108), 1, - sym__bare_set_lit, - STATE(1109), 1, + STATE(786), 1, sym__bare_vec_lit, - STATE(1369), 1, + STATE(884), 1, + sym__bare_set_lit, + STATE(1033), 1, + aux_sym_sym_lit_repeat1, + STATE(1162), 1, + sym_meta_lit, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1910), 1, + STATE(1863), 1, sym_dotted_sym_lit, - ACTIONS(828), 2, - sym__ws, - sym_comment, - ACTIONS(868), 2, + ACTIONS(53), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1544), 2, + ACTIONS(650), 2, + sym__ws, + sym_comment, + ACTIONS(1636), 2, sym_num_lit, sym_char_lit, - ACTIONS(1546), 2, + ACTIONS(1638), 2, sym_nil_lit, sym_fancy_literal, - STATE(943), 2, + STATE(898), 2, sym__gap, sym_dis_expr, - STATE(1110), 3, + STATE(787), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1112), 18, + STATE(862), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -35410,90 +35478,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [39638] = 38, + [39778] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(832), 1, + ACTIONS(610), 1, + anon_sym_COLON, + ACTIONS(612), 1, + anon_sym_COLON_COLON, + ACTIONS(614), 1, aux_sym_str_lit_token1, - ACTIONS(836), 1, + ACTIONS(618), 1, aux_sym_sym_lit_token1, - ACTIONS(838), 1, + ACTIONS(620), 1, anon_sym_LPAREN, - ACTIONS(840), 1, + ACTIONS(622), 1, anon_sym_POUND0A, - ACTIONS(842), 1, + ACTIONS(624), 1, anon_sym_POUND, - ACTIONS(844), 1, + ACTIONS(626), 1, anon_sym_POUND_QMARK, - ACTIONS(846), 1, + ACTIONS(628), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(848), 1, - anon_sym_COLON_COLON, - ACTIONS(850), 1, + ACTIONS(630), 1, anon_sym_POUND_SQUOTE, - ACTIONS(852), 1, + ACTIONS(632), 1, anon_sym_POUND_POUND, - ACTIONS(854), 1, + ACTIONS(634), 1, anon_sym_POUND_EQ, - ACTIONS(856), 1, + ACTIONS(636), 1, anon_sym_AT, - ACTIONS(858), 1, + ACTIONS(638), 1, anon_sym_SQUOTE, - ACTIONS(860), 1, + ACTIONS(640), 1, anon_sym_BQUOTE, - ACTIONS(862), 1, + ACTIONS(642), 1, anon_sym_COMMA_AT, - ACTIONS(864), 1, + ACTIONS(644), 1, anon_sym_COMMA, - ACTIONS(866), 1, - anon_sym_COLON, - ACTIONS(870), 1, + ACTIONS(648), 1, anon_sym_POUNDC, - STATE(258), 1, + STATE(255), 1, aux_sym_dis_expr_repeat1, - STATE(992), 1, - aux_sym_sym_lit_repeat1, - STATE(1076), 1, + STATE(545), 1, sym_sym_lit, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, - sym_meta_lit, - STATE(1108), 1, - sym__bare_set_lit, - STATE(1109), 1, + STATE(688), 1, sym__bare_vec_lit, - STATE(1369), 1, + STATE(691), 1, + sym__bare_set_lit, + STATE(1013), 1, + aux_sym_sym_lit_repeat1, + STATE(1162), 1, + sym_meta_lit, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1910), 1, + STATE(1862), 1, sym_dotted_sym_lit, - ACTIONS(828), 2, + ACTIONS(606), 2, sym__ws, sym_comment, - ACTIONS(868), 2, + ACTIONS(646), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1548), 2, + ACTIONS(1648), 2, sym_num_lit, sym_char_lit, - ACTIONS(1550), 2, + ACTIONS(1650), 2, sym_nil_lit, sym_fancy_literal, - STATE(943), 2, + STATE(896), 2, sym__gap, sym_dis_expr, - STATE(1110), 3, + STATE(687), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1123), 18, + STATE(724), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -35511,90 +35580,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [39777] = 38, + [39918] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(832), 1, + ACTIONS(518), 1, + anon_sym_COLON, + ACTIONS(520), 1, + anon_sym_COLON_COLON, + ACTIONS(522), 1, aux_sym_str_lit_token1, - ACTIONS(836), 1, + ACTIONS(526), 1, aux_sym_sym_lit_token1, - ACTIONS(838), 1, + ACTIONS(528), 1, anon_sym_LPAREN, - ACTIONS(840), 1, + ACTIONS(530), 1, anon_sym_POUND0A, - ACTIONS(842), 1, + ACTIONS(532), 1, anon_sym_POUND, - ACTIONS(844), 1, + ACTIONS(534), 1, anon_sym_POUND_QMARK, - ACTIONS(846), 1, + ACTIONS(536), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(848), 1, - anon_sym_COLON_COLON, - ACTIONS(850), 1, + ACTIONS(538), 1, anon_sym_POUND_SQUOTE, - ACTIONS(852), 1, + ACTIONS(540), 1, anon_sym_POUND_POUND, - ACTIONS(854), 1, + ACTIONS(542), 1, anon_sym_POUND_EQ, - ACTIONS(856), 1, + ACTIONS(544), 1, anon_sym_AT, - ACTIONS(858), 1, + ACTIONS(546), 1, anon_sym_SQUOTE, - ACTIONS(860), 1, + ACTIONS(548), 1, anon_sym_BQUOTE, - ACTIONS(862), 1, + ACTIONS(550), 1, anon_sym_COMMA_AT, - ACTIONS(864), 1, + ACTIONS(552), 1, anon_sym_COMMA, - ACTIONS(866), 1, - anon_sym_COLON, - ACTIONS(870), 1, + ACTIONS(556), 1, anon_sym_POUNDC, - STATE(263), 1, + STATE(95), 1, aux_sym_dis_expr_repeat1, - STATE(992), 1, - aux_sym_sym_lit_repeat1, - STATE(1076), 1, + STATE(909), 1, sym_sym_lit, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, - sym_meta_lit, - STATE(1108), 1, + STATE(922), 1, sym__bare_set_lit, - STATE(1109), 1, + STATE(931), 1, sym__bare_vec_lit, - STATE(1369), 1, + STATE(936), 1, + aux_sym_sym_lit_repeat1, + STATE(1162), 1, + sym_meta_lit, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1910), 1, + STATE(1865), 1, sym_dotted_sym_lit, - ACTIONS(828), 2, + ACTIONS(514), 2, sym__ws, sym_comment, - ACTIONS(868), 2, + ACTIONS(554), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1552), 2, + ACTIONS(1652), 2, sym_num_lit, sym_char_lit, - ACTIONS(1554), 2, + ACTIONS(1654), 2, sym_nil_lit, sym_fancy_literal, - STATE(943), 2, + STATE(897), 2, sym__gap, sym_dis_expr, - STATE(1110), 3, + STATE(930), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1124), 18, + STATE(1030), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -35612,90 +35682,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [39916] = 38, + [40058] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(13), 1, - aux_sym_str_lit_token1, + anon_sym_COLON, + ACTIONS(15), 1, + anon_sym_COLON_COLON, ACTIONS(17), 1, - aux_sym_sym_lit_token1, - ACTIONS(19), 1, - anon_sym_CARET, + aux_sym_str_lit_token1, ACTIONS(21), 1, - anon_sym_POUND_CARET, + aux_sym_sym_lit_token1, ACTIONS(23), 1, - anon_sym_LPAREN, + anon_sym_CARET, ACTIONS(25), 1, - anon_sym_POUND0A, + anon_sym_POUND_CARET, ACTIONS(27), 1, - anon_sym_POUND, + anon_sym_LPAREN, ACTIONS(29), 1, - anon_sym_POUND_QMARK, + anon_sym_POUND0A, ACTIONS(31), 1, - anon_sym_POUND_QMARK_AT, + anon_sym_POUND, ACTIONS(33), 1, - anon_sym_COLON_COLON, + anon_sym_POUND_QMARK, ACTIONS(35), 1, - anon_sym_POUND_SQUOTE, + anon_sym_POUND_QMARK_AT, ACTIONS(37), 1, - anon_sym_POUND_POUND, + anon_sym_POUND_SQUOTE, ACTIONS(39), 1, - anon_sym_POUND_EQ, + anon_sym_POUND_POUND, ACTIONS(41), 1, - anon_sym_AT, + anon_sym_POUND_EQ, ACTIONS(43), 1, - anon_sym_SQUOTE, + anon_sym_AT, ACTIONS(45), 1, - anon_sym_BQUOTE, + anon_sym_SQUOTE, ACTIONS(47), 1, - anon_sym_COMMA_AT, + anon_sym_BQUOTE, ACTIONS(49), 1, - anon_sym_COMMA, + anon_sym_COMMA_AT, ACTIONS(51), 1, - anon_sym_COLON, + anon_sym_COMMA, ACTIONS(55), 1, anon_sym_POUNDC, - STATE(71), 1, - aux_sym_dis_expr_repeat1, - STATE(815), 1, + STATE(780), 1, sym_sym_lit, - STATE(838), 1, + STATE(786), 1, sym__bare_vec_lit, - STATE(841), 1, + STATE(884), 1, sym__bare_set_lit, - STATE(1047), 1, + STATE(892), 1, + aux_sym_dis_expr_repeat1, + STATE(1033), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1909), 1, + STATE(1863), 1, sym_dotted_sym_lit, ACTIONS(53), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(646), 2, + ACTIONS(650), 2, sym__ws, sym_comment, - ACTIONS(1256), 2, + ACTIONS(1656), 2, sym_num_lit, sym_char_lit, - ACTIONS(1258), 2, + ACTIONS(1658), 2, sym_nil_lit, sym_fancy_literal, - STATE(942), 2, + STATE(898), 2, sym__gap, sym_dis_expr, - STATE(842), 3, + STATE(787), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(826), 18, + STATE(348), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -35713,90 +35784,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [40055] = 38, + [40198] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(13), 1, - aux_sym_str_lit_token1, + anon_sym_COLON, + ACTIONS(15), 1, + anon_sym_COLON_COLON, ACTIONS(17), 1, - aux_sym_sym_lit_token1, - ACTIONS(19), 1, - anon_sym_CARET, + aux_sym_str_lit_token1, ACTIONS(21), 1, - anon_sym_POUND_CARET, + aux_sym_sym_lit_token1, ACTIONS(23), 1, - anon_sym_LPAREN, + anon_sym_CARET, ACTIONS(25), 1, - anon_sym_POUND0A, + anon_sym_POUND_CARET, ACTIONS(27), 1, - anon_sym_POUND, + anon_sym_LPAREN, ACTIONS(29), 1, - anon_sym_POUND_QMARK, + anon_sym_POUND0A, ACTIONS(31), 1, - anon_sym_POUND_QMARK_AT, + anon_sym_POUND, ACTIONS(33), 1, - anon_sym_COLON_COLON, + anon_sym_POUND_QMARK, ACTIONS(35), 1, - anon_sym_POUND_SQUOTE, + anon_sym_POUND_QMARK_AT, ACTIONS(37), 1, - anon_sym_POUND_POUND, + anon_sym_POUND_SQUOTE, ACTIONS(39), 1, - anon_sym_POUND_EQ, + anon_sym_POUND_POUND, ACTIONS(41), 1, - anon_sym_AT, + anon_sym_POUND_EQ, ACTIONS(43), 1, - anon_sym_SQUOTE, + anon_sym_AT, ACTIONS(45), 1, - anon_sym_BQUOTE, + anon_sym_SQUOTE, ACTIONS(47), 1, - anon_sym_COMMA_AT, + anon_sym_BQUOTE, ACTIONS(49), 1, - anon_sym_COMMA, + anon_sym_COMMA_AT, ACTIONS(51), 1, - anon_sym_COLON, + anon_sym_COMMA, ACTIONS(55), 1, anon_sym_POUNDC, - STATE(421), 1, + STATE(355), 1, aux_sym_dis_expr_repeat1, - STATE(815), 1, + STATE(780), 1, sym_sym_lit, - STATE(838), 1, + STATE(786), 1, sym__bare_vec_lit, - STATE(841), 1, + STATE(884), 1, sym__bare_set_lit, - STATE(1047), 1, + STATE(1033), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1909), 1, + STATE(1863), 1, sym_dotted_sym_lit, ACTIONS(53), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(646), 2, + ACTIONS(650), 2, sym__ws, sym_comment, - ACTIONS(1556), 2, + ACTIONS(1660), 2, sym_num_lit, sym_char_lit, - ACTIONS(1558), 2, + ACTIONS(1662), 2, sym_nil_lit, sym_fancy_literal, - STATE(942), 2, + STATE(898), 2, sym__gap, sym_dis_expr, - STATE(842), 3, + STATE(787), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(120), 18, + STATE(331), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -35814,90 +35886,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [40194] = 38, + [40338] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(13), 1, - aux_sym_str_lit_token1, + anon_sym_COLON, + ACTIONS(15), 1, + anon_sym_COLON_COLON, ACTIONS(17), 1, - aux_sym_sym_lit_token1, - ACTIONS(19), 1, - anon_sym_CARET, + aux_sym_str_lit_token1, ACTIONS(21), 1, - anon_sym_POUND_CARET, + aux_sym_sym_lit_token1, ACTIONS(23), 1, - anon_sym_LPAREN, + anon_sym_CARET, ACTIONS(25), 1, - anon_sym_POUND0A, + anon_sym_POUND_CARET, ACTIONS(27), 1, - anon_sym_POUND, + anon_sym_LPAREN, ACTIONS(29), 1, - anon_sym_POUND_QMARK, + anon_sym_POUND0A, ACTIONS(31), 1, - anon_sym_POUND_QMARK_AT, + anon_sym_POUND, ACTIONS(33), 1, - anon_sym_COLON_COLON, + anon_sym_POUND_QMARK, ACTIONS(35), 1, - anon_sym_POUND_SQUOTE, + anon_sym_POUND_QMARK_AT, ACTIONS(37), 1, - anon_sym_POUND_POUND, + anon_sym_POUND_SQUOTE, ACTIONS(39), 1, - anon_sym_POUND_EQ, + anon_sym_POUND_POUND, ACTIONS(41), 1, - anon_sym_AT, + anon_sym_POUND_EQ, ACTIONS(43), 1, - anon_sym_SQUOTE, + anon_sym_AT, ACTIONS(45), 1, - anon_sym_BQUOTE, + anon_sym_SQUOTE, ACTIONS(47), 1, - anon_sym_COMMA_AT, + anon_sym_BQUOTE, ACTIONS(49), 1, - anon_sym_COMMA, + anon_sym_COMMA_AT, ACTIONS(51), 1, - anon_sym_COLON, + anon_sym_COMMA, ACTIONS(55), 1, anon_sym_POUNDC, - STATE(276), 1, - aux_sym_dis_expr_repeat1, - STATE(815), 1, + STATE(780), 1, sym_sym_lit, - STATE(838), 1, + STATE(786), 1, sym__bare_vec_lit, - STATE(841), 1, + STATE(884), 1, sym__bare_set_lit, - STATE(1047), 1, + STATE(892), 1, + aux_sym_dis_expr_repeat1, + STATE(1033), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1909), 1, + STATE(1863), 1, sym_dotted_sym_lit, ACTIONS(53), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(646), 2, + ACTIONS(650), 2, sym__ws, sym_comment, - ACTIONS(1560), 2, + ACTIONS(1664), 2, sym_num_lit, sym_char_lit, - ACTIONS(1562), 2, + ACTIONS(1666), 2, sym_nil_lit, sym_fancy_literal, - STATE(942), 2, + STATE(898), 2, sym__gap, sym_dis_expr, - STATE(842), 3, + STATE(787), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(255), 18, + STATE(234), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -35915,90 +35988,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [40333] = 38, + [40478] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(832), 1, + ACTIONS(1170), 1, + anon_sym_COLON, + ACTIONS(1172), 1, + anon_sym_COLON_COLON, + ACTIONS(1174), 1, aux_sym_str_lit_token1, - ACTIONS(836), 1, + ACTIONS(1178), 1, aux_sym_sym_lit_token1, - ACTIONS(838), 1, + ACTIONS(1180), 1, anon_sym_LPAREN, - ACTIONS(840), 1, + ACTIONS(1182), 1, anon_sym_POUND0A, - ACTIONS(842), 1, + ACTIONS(1184), 1, anon_sym_POUND, - ACTIONS(844), 1, + ACTIONS(1186), 1, anon_sym_POUND_QMARK, - ACTIONS(846), 1, + ACTIONS(1188), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(848), 1, - anon_sym_COLON_COLON, - ACTIONS(850), 1, + ACTIONS(1190), 1, anon_sym_POUND_SQUOTE, - ACTIONS(852), 1, + ACTIONS(1192), 1, anon_sym_POUND_POUND, - ACTIONS(854), 1, + ACTIONS(1194), 1, anon_sym_POUND_EQ, - ACTIONS(856), 1, + ACTIONS(1196), 1, anon_sym_AT, - ACTIONS(858), 1, + ACTIONS(1198), 1, anon_sym_SQUOTE, - ACTIONS(860), 1, + ACTIONS(1200), 1, anon_sym_BQUOTE, - ACTIONS(862), 1, + ACTIONS(1202), 1, anon_sym_COMMA_AT, - ACTIONS(864), 1, + ACTIONS(1204), 1, anon_sym_COMMA, - ACTIONS(866), 1, - anon_sym_COLON, - ACTIONS(870), 1, + ACTIONS(1208), 1, anon_sym_POUNDC, - STATE(277), 1, + STATE(267), 1, aux_sym_dis_expr_repeat1, - STATE(992), 1, + STATE(950), 1, aux_sym_sym_lit_repeat1, - STATE(1076), 1, - sym_sym_lit, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1108), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1173), 1, + sym_sym_lit, + STATE(1226), 1, sym__bare_set_lit, - STATE(1109), 1, + STATE(1230), 1, sym__bare_vec_lit, - STATE(1369), 1, + STATE(1337), 1, sym__metadata_lit, - STATE(1910), 1, + STATE(1864), 1, sym_dotted_sym_lit, - ACTIONS(828), 2, - sym__ws, - sym_comment, - ACTIONS(868), 2, + ACTIONS(1206), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1564), 2, + ACTIONS(1298), 2, + sym__ws, + sym_comment, + ACTIONS(1668), 2, sym_num_lit, sym_char_lit, - ACTIONS(1566), 2, + ACTIONS(1670), 2, sym_nil_lit, sym_fancy_literal, - STATE(943), 2, + STATE(907), 2, sym__gap, sym_dis_expr, - STATE(1110), 3, + STATE(1231), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1198), 18, + STATE(1286), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -36016,90 +36090,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [40472] = 38, + [40618] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(518), 1, + ACTIONS(1170), 1, + anon_sym_COLON, + ACTIONS(1172), 1, + anon_sym_COLON_COLON, + ACTIONS(1174), 1, aux_sym_str_lit_token1, - ACTIONS(522), 1, + ACTIONS(1178), 1, aux_sym_sym_lit_token1, - ACTIONS(524), 1, + ACTIONS(1180), 1, anon_sym_LPAREN, - ACTIONS(526), 1, + ACTIONS(1182), 1, anon_sym_POUND0A, - ACTIONS(528), 1, + ACTIONS(1184), 1, anon_sym_POUND, - ACTIONS(530), 1, + ACTIONS(1186), 1, anon_sym_POUND_QMARK, - ACTIONS(532), 1, + ACTIONS(1188), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(534), 1, - anon_sym_COLON_COLON, - ACTIONS(536), 1, + ACTIONS(1190), 1, anon_sym_POUND_SQUOTE, - ACTIONS(538), 1, + ACTIONS(1192), 1, anon_sym_POUND_POUND, - ACTIONS(540), 1, + ACTIONS(1194), 1, anon_sym_POUND_EQ, - ACTIONS(542), 1, + ACTIONS(1196), 1, anon_sym_AT, - ACTIONS(544), 1, + ACTIONS(1198), 1, anon_sym_SQUOTE, - ACTIONS(546), 1, + ACTIONS(1200), 1, anon_sym_BQUOTE, - ACTIONS(548), 1, + ACTIONS(1202), 1, anon_sym_COMMA_AT, - ACTIONS(550), 1, + ACTIONS(1204), 1, anon_sym_COMMA, - ACTIONS(552), 1, - anon_sym_COLON, - ACTIONS(556), 1, + ACTIONS(1208), 1, anon_sym_POUNDC, - STATE(285), 1, + STATE(892), 1, aux_sym_dis_expr_repeat1, - STATE(575), 1, - sym_sym_lit, - STATE(654), 1, - sym__bare_vec_lit, - STATE(683), 1, - sym__bare_set_lit, - STATE(1029), 1, + STATE(950), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1173), 1, + sym_sym_lit, + STATE(1226), 1, + sym__bare_set_lit, + STATE(1230), 1, + sym__bare_vec_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1906), 1, + STATE(1864), 1, sym_dotted_sym_lit, - ACTIONS(514), 2, - sym__ws, - sym_comment, - ACTIONS(554), 2, + ACTIONS(1206), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1568), 2, + ACTIONS(1298), 2, + sym__ws, + sym_comment, + ACTIONS(1672), 2, sym_num_lit, sym_char_lit, - ACTIONS(1570), 2, + ACTIONS(1674), 2, sym_nil_lit, sym_fancy_literal, - STATE(936), 2, + STATE(907), 2, sym__gap, sym_dis_expr, - STATE(651), 3, + STATE(1231), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(707), 18, + STATE(1285), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -36117,90 +36192,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [40611] = 38, + [40758] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(61), 1, + ACTIONS(610), 1, + anon_sym_COLON, + ACTIONS(612), 1, + anon_sym_COLON_COLON, + ACTIONS(614), 1, aux_sym_str_lit_token1, - ACTIONS(65), 1, + ACTIONS(618), 1, aux_sym_sym_lit_token1, - ACTIONS(67), 1, + ACTIONS(620), 1, + anon_sym_LPAREN, + ACTIONS(622), 1, anon_sym_POUND0A, - ACTIONS(69), 1, + ACTIONS(624), 1, anon_sym_POUND, - ACTIONS(71), 1, + ACTIONS(626), 1, anon_sym_POUND_QMARK, - ACTIONS(73), 1, + ACTIONS(628), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(75), 1, - anon_sym_COLON_COLON, - ACTIONS(77), 1, + ACTIONS(630), 1, anon_sym_POUND_SQUOTE, - ACTIONS(79), 1, + ACTIONS(632), 1, anon_sym_POUND_POUND, - ACTIONS(81), 1, + ACTIONS(634), 1, anon_sym_POUND_EQ, - ACTIONS(83), 1, + ACTIONS(636), 1, anon_sym_AT, - ACTIONS(85), 1, + ACTIONS(638), 1, anon_sym_SQUOTE, - ACTIONS(87), 1, + ACTIONS(640), 1, anon_sym_BQUOTE, - ACTIONS(89), 1, + ACTIONS(642), 1, anon_sym_COMMA_AT, - ACTIONS(91), 1, + ACTIONS(644), 1, anon_sym_COMMA, - ACTIONS(95), 1, - anon_sym_COLON, - ACTIONS(99), 1, + ACTIONS(648), 1, anon_sym_POUNDC, - ACTIONS(381), 1, - anon_sym_LPAREN, - STATE(446), 1, + STATE(256), 1, + aux_sym_dis_expr_repeat1, + STATE(545), 1, sym_sym_lit, - STATE(513), 1, - sym__bare_set_lit, - STATE(514), 1, + STATE(688), 1, sym__bare_vec_lit, - STATE(930), 1, - aux_sym_dis_expr_repeat1, - STATE(1044), 1, + STATE(691), 1, + sym__bare_set_lit, + STATE(1013), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1907), 1, + STATE(1862), 1, sym_dotted_sym_lit, - ACTIONS(97), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(379), 2, + ACTIONS(606), 2, sym__ws, sym_comment, - ACTIONS(1572), 2, + ACTIONS(646), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(1676), 2, sym_num_lit, sym_char_lit, - ACTIONS(1574), 2, + ACTIONS(1678), 2, sym_nil_lit, sym_fancy_literal, - STATE(934), 2, + STATE(896), 2, sym__gap, sym_dis_expr, - STATE(515), 3, + STATE(687), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(473), 18, + STATE(716), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -36218,90 +36294,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [40750] = 38, + [40898] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(19), 1, - anon_sym_CARET, - ACTIONS(21), 1, - anon_sym_POUND_CARET, - ACTIONS(518), 1, + ACTIONS(13), 1, + anon_sym_COLON, + ACTIONS(15), 1, + anon_sym_COLON_COLON, + ACTIONS(17), 1, aux_sym_str_lit_token1, - ACTIONS(522), 1, + ACTIONS(21), 1, aux_sym_sym_lit_token1, - ACTIONS(524), 1, + ACTIONS(23), 1, + anon_sym_CARET, + ACTIONS(25), 1, + anon_sym_POUND_CARET, + ACTIONS(27), 1, anon_sym_LPAREN, - ACTIONS(526), 1, + ACTIONS(29), 1, anon_sym_POUND0A, - ACTIONS(528), 1, + ACTIONS(31), 1, anon_sym_POUND, - ACTIONS(530), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(532), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(534), 1, - anon_sym_COLON_COLON, - ACTIONS(536), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(538), 1, + ACTIONS(39), 1, anon_sym_POUND_POUND, - ACTIONS(540), 1, + ACTIONS(41), 1, anon_sym_POUND_EQ, - ACTIONS(542), 1, + ACTIONS(43), 1, anon_sym_AT, - ACTIONS(544), 1, + ACTIONS(45), 1, anon_sym_SQUOTE, - ACTIONS(546), 1, + ACTIONS(47), 1, anon_sym_BQUOTE, - ACTIONS(548), 1, + ACTIONS(49), 1, anon_sym_COMMA_AT, - ACTIONS(550), 1, + ACTIONS(51), 1, anon_sym_COMMA, - ACTIONS(552), 1, - anon_sym_COLON, - ACTIONS(556), 1, + ACTIONS(55), 1, anon_sym_POUNDC, - STATE(287), 1, - aux_sym_dis_expr_repeat1, - STATE(575), 1, + STATE(780), 1, sym_sym_lit, - STATE(654), 1, + STATE(786), 1, sym__bare_vec_lit, - STATE(683), 1, + STATE(884), 1, sym__bare_set_lit, - STATE(1029), 1, + STATE(892), 1, + aux_sym_dis_expr_repeat1, + STATE(1033), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1906), 1, + STATE(1863), 1, sym_dotted_sym_lit, - ACTIONS(514), 2, - sym__ws, - sym_comment, - ACTIONS(554), 2, + ACTIONS(53), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1576), 2, + ACTIONS(650), 2, + sym__ws, + sym_comment, + ACTIONS(1680), 2, sym_num_lit, sym_char_lit, - ACTIONS(1578), 2, + ACTIONS(1682), 2, sym_nil_lit, sym_fancy_literal, - STATE(936), 2, + STATE(898), 2, sym__gap, sym_dis_expr, - STATE(651), 3, + STATE(787), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(605), 18, + STATE(383), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -36319,90 +36396,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [40889] = 38, + [41038] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(19), 1, - anon_sym_CARET, - ACTIONS(21), 1, - anon_sym_POUND_CARET, - ACTIONS(61), 1, + ACTIONS(13), 1, + anon_sym_COLON, + ACTIONS(15), 1, + anon_sym_COLON_COLON, + ACTIONS(17), 1, aux_sym_str_lit_token1, - ACTIONS(65), 1, + ACTIONS(21), 1, aux_sym_sym_lit_token1, - ACTIONS(67), 1, + ACTIONS(23), 1, + anon_sym_CARET, + ACTIONS(25), 1, + anon_sym_POUND_CARET, + ACTIONS(27), 1, + anon_sym_LPAREN, + ACTIONS(29), 1, anon_sym_POUND0A, - ACTIONS(69), 1, + ACTIONS(31), 1, anon_sym_POUND, - ACTIONS(71), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(73), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(75), 1, - anon_sym_COLON_COLON, - ACTIONS(77), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(79), 1, + ACTIONS(39), 1, anon_sym_POUND_POUND, - ACTIONS(81), 1, + ACTIONS(41), 1, anon_sym_POUND_EQ, - ACTIONS(83), 1, + ACTIONS(43), 1, anon_sym_AT, - ACTIONS(85), 1, + ACTIONS(45), 1, anon_sym_SQUOTE, - ACTIONS(87), 1, + ACTIONS(47), 1, anon_sym_BQUOTE, - ACTIONS(89), 1, + ACTIONS(49), 1, anon_sym_COMMA_AT, - ACTIONS(91), 1, + ACTIONS(51), 1, anon_sym_COMMA, - ACTIONS(95), 1, - anon_sym_COLON, - ACTIONS(99), 1, + ACTIONS(55), 1, anon_sym_POUNDC, - ACTIONS(381), 1, - anon_sym_LPAREN, - STATE(302), 1, + STATE(86), 1, aux_sym_dis_expr_repeat1, - STATE(446), 1, + STATE(780), 1, sym_sym_lit, - STATE(513), 1, - sym__bare_set_lit, - STATE(514), 1, + STATE(786), 1, sym__bare_vec_lit, - STATE(1044), 1, + STATE(884), 1, + sym__bare_set_lit, + STATE(1033), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1907), 1, + STATE(1863), 1, sym_dotted_sym_lit, - ACTIONS(97), 2, + ACTIONS(53), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(379), 2, + ACTIONS(650), 2, sym__ws, sym_comment, - ACTIONS(1580), 2, + ACTIONS(1620), 2, sym_num_lit, sym_char_lit, - ACTIONS(1582), 2, + ACTIONS(1622), 2, sym_nil_lit, sym_fancy_literal, - STATE(934), 2, + STATE(898), 2, sym__gap, sym_dis_expr, - STATE(515), 3, + STATE(787), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(512), 18, + STATE(864), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -36420,90 +36498,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [41028] = 38, + [41178] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(19), 1, - anon_sym_CARET, - ACTIONS(21), 1, - anon_sym_POUND_CARET, - ACTIONS(518), 1, + ACTIONS(13), 1, + anon_sym_COLON, + ACTIONS(15), 1, + anon_sym_COLON_COLON, + ACTIONS(17), 1, aux_sym_str_lit_token1, - ACTIONS(522), 1, + ACTIONS(21), 1, aux_sym_sym_lit_token1, - ACTIONS(524), 1, + ACTIONS(23), 1, + anon_sym_CARET, + ACTIONS(25), 1, + anon_sym_POUND_CARET, + ACTIONS(27), 1, anon_sym_LPAREN, - ACTIONS(526), 1, + ACTIONS(29), 1, anon_sym_POUND0A, - ACTIONS(528), 1, + ACTIONS(31), 1, anon_sym_POUND, - ACTIONS(530), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(532), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(534), 1, - anon_sym_COLON_COLON, - ACTIONS(536), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(538), 1, + ACTIONS(39), 1, anon_sym_POUND_POUND, - ACTIONS(540), 1, + ACTIONS(41), 1, anon_sym_POUND_EQ, - ACTIONS(542), 1, + ACTIONS(43), 1, anon_sym_AT, - ACTIONS(544), 1, + ACTIONS(45), 1, anon_sym_SQUOTE, - ACTIONS(546), 1, + ACTIONS(47), 1, anon_sym_BQUOTE, - ACTIONS(548), 1, + ACTIONS(49), 1, anon_sym_COMMA_AT, - ACTIONS(550), 1, + ACTIONS(51), 1, anon_sym_COMMA, - ACTIONS(552), 1, - anon_sym_COLON, - ACTIONS(556), 1, + ACTIONS(55), 1, anon_sym_POUNDC, - STATE(289), 1, + STATE(84), 1, aux_sym_dis_expr_repeat1, - STATE(575), 1, + STATE(780), 1, sym_sym_lit, - STATE(654), 1, + STATE(786), 1, sym__bare_vec_lit, - STATE(683), 1, + STATE(884), 1, sym__bare_set_lit, - STATE(1029), 1, + STATE(1033), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1906), 1, + STATE(1863), 1, sym_dotted_sym_lit, - ACTIONS(514), 2, - sym__ws, - sym_comment, - ACTIONS(554), 2, + ACTIONS(53), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1584), 2, + ACTIONS(650), 2, + sym__ws, + sym_comment, + ACTIONS(1616), 2, sym_num_lit, sym_char_lit, - ACTIONS(1586), 2, + ACTIONS(1618), 2, sym_nil_lit, sym_fancy_literal, - STATE(936), 2, + STATE(898), 2, sym__gap, sym_dis_expr, - STATE(651), 3, + STATE(787), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(703), 18, + STATE(853), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -36521,90 +36600,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [41167] = 38, + [41318] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(19), 1, - anon_sym_CARET, - ACTIONS(21), 1, - anon_sym_POUND_CARET, - ACTIONS(518), 1, + ACTIONS(13), 1, + anon_sym_COLON, + ACTIONS(15), 1, + anon_sym_COLON_COLON, + ACTIONS(17), 1, aux_sym_str_lit_token1, - ACTIONS(522), 1, + ACTIONS(21), 1, aux_sym_sym_lit_token1, - ACTIONS(524), 1, + ACTIONS(23), 1, + anon_sym_CARET, + ACTIONS(25), 1, + anon_sym_POUND_CARET, + ACTIONS(27), 1, anon_sym_LPAREN, - ACTIONS(526), 1, + ACTIONS(29), 1, anon_sym_POUND0A, - ACTIONS(528), 1, + ACTIONS(31), 1, anon_sym_POUND, - ACTIONS(530), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(532), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(534), 1, - anon_sym_COLON_COLON, - ACTIONS(536), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(538), 1, + ACTIONS(39), 1, anon_sym_POUND_POUND, - ACTIONS(540), 1, + ACTIONS(41), 1, anon_sym_POUND_EQ, - ACTIONS(542), 1, + ACTIONS(43), 1, anon_sym_AT, - ACTIONS(544), 1, + ACTIONS(45), 1, anon_sym_SQUOTE, - ACTIONS(546), 1, + ACTIONS(47), 1, anon_sym_BQUOTE, - ACTIONS(548), 1, + ACTIONS(49), 1, anon_sym_COMMA_AT, - ACTIONS(550), 1, + ACTIONS(51), 1, anon_sym_COMMA, - ACTIONS(552), 1, - anon_sym_COLON, - ACTIONS(556), 1, + ACTIONS(55), 1, anon_sym_POUNDC, - STATE(290), 1, - aux_sym_dis_expr_repeat1, - STATE(575), 1, + STATE(780), 1, sym_sym_lit, - STATE(654), 1, + STATE(786), 1, sym__bare_vec_lit, - STATE(683), 1, + STATE(884), 1, sym__bare_set_lit, - STATE(1029), 1, + STATE(892), 1, + aux_sym_dis_expr_repeat1, + STATE(1033), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1906), 1, + STATE(1863), 1, sym_dotted_sym_lit, - ACTIONS(514), 2, - sym__ws, - sym_comment, - ACTIONS(554), 2, + ACTIONS(53), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1588), 2, + ACTIONS(650), 2, + sym__ws, + sym_comment, + ACTIONS(1684), 2, sym_num_lit, sym_char_lit, - ACTIONS(1590), 2, + ACTIONS(1686), 2, sym_nil_lit, sym_fancy_literal, - STATE(936), 2, + STATE(898), 2, sym__gap, sym_dis_expr, - STATE(651), 3, + STATE(787), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(689), 18, + STATE(339), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -36622,90 +36702,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [41306] = 38, + [41458] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(13), 1, - aux_sym_str_lit_token1, - ACTIONS(17), 1, - aux_sym_sym_lit_token1, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(23), 1, + ACTIONS(610), 1, + anon_sym_COLON, + ACTIONS(612), 1, + anon_sym_COLON_COLON, + ACTIONS(614), 1, + aux_sym_str_lit_token1, + ACTIONS(618), 1, + aux_sym_sym_lit_token1, + ACTIONS(620), 1, anon_sym_LPAREN, - ACTIONS(25), 1, + ACTIONS(622), 1, anon_sym_POUND0A, - ACTIONS(27), 1, + ACTIONS(624), 1, anon_sym_POUND, - ACTIONS(29), 1, + ACTIONS(626), 1, anon_sym_POUND_QMARK, - ACTIONS(31), 1, + ACTIONS(628), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(33), 1, - anon_sym_COLON_COLON, - ACTIONS(35), 1, + ACTIONS(630), 1, anon_sym_POUND_SQUOTE, - ACTIONS(37), 1, + ACTIONS(632), 1, anon_sym_POUND_POUND, - ACTIONS(39), 1, + ACTIONS(634), 1, anon_sym_POUND_EQ, - ACTIONS(41), 1, + ACTIONS(636), 1, anon_sym_AT, - ACTIONS(43), 1, + ACTIONS(638), 1, anon_sym_SQUOTE, - ACTIONS(45), 1, + ACTIONS(640), 1, anon_sym_BQUOTE, - ACTIONS(47), 1, + ACTIONS(642), 1, anon_sym_COMMA_AT, - ACTIONS(49), 1, + ACTIONS(644), 1, anon_sym_COMMA, - ACTIONS(51), 1, - anon_sym_COLON, - ACTIONS(55), 1, + ACTIONS(648), 1, anon_sym_POUNDC, - STATE(815), 1, + STATE(277), 1, + aux_sym_dis_expr_repeat1, + STATE(545), 1, sym_sym_lit, - STATE(838), 1, + STATE(688), 1, sym__bare_vec_lit, - STATE(841), 1, + STATE(691), 1, sym__bare_set_lit, - STATE(930), 1, - aux_sym_dis_expr_repeat1, - STATE(1047), 1, + STATE(1013), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1909), 1, + STATE(1862), 1, sym_dotted_sym_lit, - ACTIONS(53), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(646), 2, + ACTIONS(606), 2, sym__ws, sym_comment, - ACTIONS(1592), 2, + ACTIONS(646), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(1688), 2, sym_num_lit, sym_char_lit, - ACTIONS(1594), 2, + ACTIONS(1690), 2, sym_nil_lit, sym_fancy_literal, - STATE(942), 2, + STATE(896), 2, sym__gap, sym_dis_expr, - STATE(842), 3, + STATE(687), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(388), 18, + STATE(707), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -36723,90 +36804,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [41445] = 38, + [41598] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(13), 1, - aux_sym_str_lit_token1, + anon_sym_COLON, + ACTIONS(15), 1, + anon_sym_COLON_COLON, ACTIONS(17), 1, - aux_sym_sym_lit_token1, - ACTIONS(19), 1, - anon_sym_CARET, + aux_sym_str_lit_token1, ACTIONS(21), 1, - anon_sym_POUND_CARET, + aux_sym_sym_lit_token1, ACTIONS(23), 1, - anon_sym_LPAREN, + anon_sym_CARET, ACTIONS(25), 1, - anon_sym_POUND0A, + anon_sym_POUND_CARET, ACTIONS(27), 1, - anon_sym_POUND, + anon_sym_LPAREN, ACTIONS(29), 1, - anon_sym_POUND_QMARK, + anon_sym_POUND0A, ACTIONS(31), 1, - anon_sym_POUND_QMARK_AT, + anon_sym_POUND, ACTIONS(33), 1, - anon_sym_COLON_COLON, + anon_sym_POUND_QMARK, ACTIONS(35), 1, - anon_sym_POUND_SQUOTE, + anon_sym_POUND_QMARK_AT, ACTIONS(37), 1, - anon_sym_POUND_POUND, + anon_sym_POUND_SQUOTE, ACTIONS(39), 1, - anon_sym_POUND_EQ, + anon_sym_POUND_POUND, ACTIONS(41), 1, - anon_sym_AT, + anon_sym_POUND_EQ, ACTIONS(43), 1, - anon_sym_SQUOTE, + anon_sym_AT, ACTIONS(45), 1, - anon_sym_BQUOTE, + anon_sym_SQUOTE, ACTIONS(47), 1, - anon_sym_COMMA_AT, + anon_sym_BQUOTE, ACTIONS(49), 1, - anon_sym_COMMA, + anon_sym_COMMA_AT, ACTIONS(51), 1, - anon_sym_COLON, + anon_sym_COMMA, ACTIONS(55), 1, anon_sym_POUNDC, - STATE(815), 1, + STATE(780), 1, sym_sym_lit, - STATE(838), 1, + STATE(786), 1, sym__bare_vec_lit, - STATE(841), 1, + STATE(884), 1, sym__bare_set_lit, - STATE(930), 1, + STATE(892), 1, aux_sym_dis_expr_repeat1, - STATE(1047), 1, + STATE(1033), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1909), 1, + STATE(1863), 1, sym_dotted_sym_lit, ACTIONS(53), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(646), 2, + ACTIONS(650), 2, sym__ws, sym_comment, - ACTIONS(1596), 2, + ACTIONS(1246), 2, sym_num_lit, sym_char_lit, - ACTIONS(1598), 2, + ACTIONS(1252), 2, sym_nil_lit, sym_fancy_literal, - STATE(942), 2, + STATE(898), 2, sym__gap, sym_dis_expr, - STATE(842), 3, + STATE(787), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(391), 18, + STATE(867), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -36824,90 +36906,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [41584] = 38, + [41738] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(19), 1, - anon_sym_CARET, - ACTIONS(21), 1, - anon_sym_POUND_CARET, - ACTIONS(562), 1, + ACTIONS(13), 1, + anon_sym_COLON, + ACTIONS(15), 1, + anon_sym_COLON_COLON, + ACTIONS(17), 1, aux_sym_str_lit_token1, - ACTIONS(566), 1, + ACTIONS(21), 1, aux_sym_sym_lit_token1, - ACTIONS(568), 1, + ACTIONS(23), 1, + anon_sym_CARET, + ACTIONS(25), 1, + anon_sym_POUND_CARET, + ACTIONS(27), 1, anon_sym_LPAREN, - ACTIONS(570), 1, + ACTIONS(29), 1, anon_sym_POUND0A, - ACTIONS(572), 1, + ACTIONS(31), 1, anon_sym_POUND, - ACTIONS(574), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(576), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(578), 1, - anon_sym_COLON_COLON, - ACTIONS(580), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(582), 1, + ACTIONS(39), 1, anon_sym_POUND_POUND, - ACTIONS(584), 1, + ACTIONS(41), 1, anon_sym_POUND_EQ, - ACTIONS(586), 1, + ACTIONS(43), 1, anon_sym_AT, - ACTIONS(588), 1, + ACTIONS(45), 1, anon_sym_SQUOTE, - ACTIONS(590), 1, + ACTIONS(47), 1, anon_sym_BQUOTE, - ACTIONS(592), 1, + ACTIONS(49), 1, anon_sym_COMMA_AT, - ACTIONS(594), 1, + ACTIONS(51), 1, anon_sym_COMMA, - ACTIONS(596), 1, - anon_sym_COLON, - ACTIONS(600), 1, + ACTIONS(55), 1, anon_sym_POUNDC, - STATE(599), 1, + STATE(299), 1, + aux_sym_dis_expr_repeat1, + STATE(780), 1, sym_sym_lit, - STATE(779), 1, - sym__bare_set_lit, - STATE(784), 1, + STATE(786), 1, sym__bare_vec_lit, - STATE(930), 1, - aux_sym_dis_expr_repeat1, - STATE(1021), 1, + STATE(884), 1, + sym__bare_set_lit, + STATE(1033), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1905), 1, + STATE(1863), 1, sym_dotted_sym_lit, - ACTIONS(558), 2, - sym__ws, - sym_comment, - ACTIONS(598), 2, + ACTIONS(53), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1600), 2, + ACTIONS(650), 2, + sym__ws, + sym_comment, + ACTIONS(1692), 2, sym_num_lit, sym_char_lit, - ACTIONS(1602), 2, + ACTIONS(1694), 2, sym_nil_lit, sym_fancy_literal, - STATE(945), 2, + STATE(898), 2, sym__gap, sym_dis_expr, - STATE(786), 3, + STATE(787), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(659), 18, + STATE(323), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -36925,90 +37008,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [41723] = 38, + [41878] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(606), 1, + ACTIONS(518), 1, + anon_sym_COLON, + ACTIONS(520), 1, + anon_sym_COLON_COLON, + ACTIONS(522), 1, aux_sym_str_lit_token1, - ACTIONS(610), 1, + ACTIONS(526), 1, aux_sym_sym_lit_token1, - ACTIONS(612), 1, + ACTIONS(528), 1, anon_sym_LPAREN, - ACTIONS(614), 1, + ACTIONS(530), 1, anon_sym_POUND0A, - ACTIONS(616), 1, + ACTIONS(532), 1, anon_sym_POUND, - ACTIONS(618), 1, + ACTIONS(534), 1, anon_sym_POUND_QMARK, - ACTIONS(620), 1, + ACTIONS(536), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(622), 1, - anon_sym_COLON_COLON, - ACTIONS(624), 1, + ACTIONS(538), 1, anon_sym_POUND_SQUOTE, - ACTIONS(626), 1, + ACTIONS(540), 1, anon_sym_POUND_POUND, - ACTIONS(628), 1, + ACTIONS(542), 1, anon_sym_POUND_EQ, - ACTIONS(630), 1, + ACTIONS(544), 1, anon_sym_AT, - ACTIONS(632), 1, + ACTIONS(546), 1, anon_sym_SQUOTE, - ACTIONS(634), 1, + ACTIONS(548), 1, anon_sym_BQUOTE, - ACTIONS(636), 1, + ACTIONS(550), 1, anon_sym_COMMA_AT, - ACTIONS(638), 1, + ACTIONS(552), 1, anon_sym_COMMA, - ACTIONS(640), 1, - anon_sym_COLON, - ACTIONS(644), 1, + ACTIONS(556), 1, anon_sym_POUNDC, - ACTIONS(1094), 1, + ACTIONS(1154), 1, anon_sym_DOT, - STATE(949), 1, + STATE(909), 1, sym_sym_lit, - STATE(963), 1, + STATE(922), 1, sym__bare_set_lit, - STATE(964), 1, + STATE(931), 1, sym__bare_vec_lit, - STATE(967), 1, + STATE(936), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1911), 1, + STATE(1865), 1, sym_dotted_sym_lit, - ACTIONS(642), 2, + ACTIONS(554), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1092), 2, + ACTIONS(1152), 2, sym__ws, sym_comment, - ACTIONS(1604), 2, + ACTIONS(1696), 2, sym_num_lit, sym_char_lit, - ACTIONS(1606), 2, + ACTIONS(1698), 2, sym_nil_lit, sym_fancy_literal, - STATE(1917), 2, + STATE(1872), 2, sym__gap, sym_dis_expr, - STATE(965), 3, + STATE(930), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1096), 18, + STATE(1055), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -37026,90 +37110,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [41862] = 38, + [42018] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(19), 1, - anon_sym_CARET, - ACTIONS(21), 1, - anon_sym_POUND_CARET, - ACTIONS(562), 1, + ACTIONS(13), 1, + anon_sym_COLON, + ACTIONS(15), 1, + anon_sym_COLON_COLON, + ACTIONS(17), 1, aux_sym_str_lit_token1, - ACTIONS(566), 1, + ACTIONS(21), 1, aux_sym_sym_lit_token1, - ACTIONS(568), 1, + ACTIONS(23), 1, + anon_sym_CARET, + ACTIONS(25), 1, + anon_sym_POUND_CARET, + ACTIONS(27), 1, anon_sym_LPAREN, - ACTIONS(570), 1, + ACTIONS(29), 1, anon_sym_POUND0A, - ACTIONS(572), 1, + ACTIONS(31), 1, anon_sym_POUND, - ACTIONS(574), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(576), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(578), 1, - anon_sym_COLON_COLON, - ACTIONS(580), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(582), 1, + ACTIONS(39), 1, anon_sym_POUND_POUND, - ACTIONS(584), 1, + ACTIONS(41), 1, anon_sym_POUND_EQ, - ACTIONS(586), 1, + ACTIONS(43), 1, anon_sym_AT, - ACTIONS(588), 1, + ACTIONS(45), 1, anon_sym_SQUOTE, - ACTIONS(590), 1, + ACTIONS(47), 1, anon_sym_BQUOTE, - ACTIONS(592), 1, + ACTIONS(49), 1, anon_sym_COMMA_AT, - ACTIONS(594), 1, + ACTIONS(51), 1, anon_sym_COMMA, - ACTIONS(596), 1, - anon_sym_COLON, - ACTIONS(600), 1, + ACTIONS(55), 1, anon_sym_POUNDC, - STATE(599), 1, + STATE(303), 1, + aux_sym_dis_expr_repeat1, + STATE(780), 1, sym_sym_lit, - STATE(779), 1, - sym__bare_set_lit, - STATE(784), 1, + STATE(786), 1, sym__bare_vec_lit, - STATE(930), 1, - aux_sym_dis_expr_repeat1, - STATE(1021), 1, + STATE(884), 1, + sym__bare_set_lit, + STATE(1033), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1905), 1, + STATE(1863), 1, sym_dotted_sym_lit, - ACTIONS(558), 2, - sym__ws, - sym_comment, - ACTIONS(598), 2, + ACTIONS(53), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1608), 2, + ACTIONS(650), 2, + sym__ws, + sym_comment, + ACTIONS(1700), 2, sym_num_lit, sym_char_lit, - ACTIONS(1610), 2, + ACTIONS(1702), 2, sym_nil_lit, sym_fancy_literal, - STATE(945), 2, + STATE(898), 2, sym__gap, sym_dis_expr, - STATE(786), 3, + STATE(787), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(658), 18, + STATE(318), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -37127,68 +37212,68 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [42001] = 38, + [42158] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, ACTIONS(562), 1, - aux_sym_str_lit_token1, + anon_sym_COLON, + ACTIONS(564), 1, + anon_sym_COLON_COLON, ACTIONS(566), 1, - aux_sym_sym_lit_token1, - ACTIONS(568), 1, - anon_sym_LPAREN, + aux_sym_str_lit_token1, ACTIONS(570), 1, - anon_sym_POUND0A, + aux_sym_sym_lit_token1, ACTIONS(572), 1, - anon_sym_POUND, + anon_sym_LPAREN, ACTIONS(574), 1, - anon_sym_POUND_QMARK, + anon_sym_POUND0A, ACTIONS(576), 1, - anon_sym_POUND_QMARK_AT, + anon_sym_POUND, ACTIONS(578), 1, - anon_sym_COLON_COLON, + anon_sym_POUND_QMARK, ACTIONS(580), 1, - anon_sym_POUND_SQUOTE, + anon_sym_POUND_QMARK_AT, ACTIONS(582), 1, - anon_sym_POUND_POUND, + anon_sym_POUND_SQUOTE, ACTIONS(584), 1, - anon_sym_POUND_EQ, + anon_sym_POUND_POUND, ACTIONS(586), 1, - anon_sym_AT, + anon_sym_POUND_EQ, ACTIONS(588), 1, - anon_sym_SQUOTE, + anon_sym_AT, ACTIONS(590), 1, - anon_sym_BQUOTE, + anon_sym_SQUOTE, ACTIONS(592), 1, - anon_sym_COMMA_AT, + anon_sym_BQUOTE, ACTIONS(594), 1, - anon_sym_COMMA, + anon_sym_COMMA_AT, ACTIONS(596), 1, - anon_sym_COLON, + anon_sym_COMMA, ACTIONS(600), 1, anon_sym_POUNDC, - STATE(309), 1, + STATE(226), 1, aux_sym_dis_expr_repeat1, - STATE(599), 1, + STATE(924), 1, sym_sym_lit, - STATE(779), 1, - sym__bare_set_lit, - STATE(784), 1, - sym__bare_vec_lit, - STATE(1021), 1, + STATE(926), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1068), 1, + sym__bare_vec_lit, + STATE(1069), 1, + sym__bare_set_lit, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1905), 1, + STATE(1861), 1, sym_dotted_sym_lit, ACTIONS(558), 2, sym__ws, @@ -37196,21 +37281,22 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(598), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1612), 2, + ACTIONS(1704), 2, sym_num_lit, sym_char_lit, - ACTIONS(1614), 2, + ACTIONS(1706), 2, sym_nil_lit, sym_fancy_literal, - STATE(945), 2, + STATE(902), 2, sym__gap, sym_dis_expr, - STATE(786), 3, + STATE(1067), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(653), 18, + STATE(1117), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -37228,90 +37314,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [42140] = 38, + [42298] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(518), 1, + ACTIONS(610), 1, + anon_sym_COLON, + ACTIONS(612), 1, + anon_sym_COLON_COLON, + ACTIONS(614), 1, aux_sym_str_lit_token1, - ACTIONS(522), 1, + ACTIONS(618), 1, aux_sym_sym_lit_token1, - ACTIONS(524), 1, + ACTIONS(620), 1, anon_sym_LPAREN, - ACTIONS(526), 1, + ACTIONS(622), 1, anon_sym_POUND0A, - ACTIONS(528), 1, + ACTIONS(624), 1, anon_sym_POUND, - ACTIONS(530), 1, + ACTIONS(626), 1, anon_sym_POUND_QMARK, - ACTIONS(532), 1, + ACTIONS(628), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(534), 1, - anon_sym_COLON_COLON, - ACTIONS(536), 1, + ACTIONS(630), 1, anon_sym_POUND_SQUOTE, - ACTIONS(538), 1, + ACTIONS(632), 1, anon_sym_POUND_POUND, - ACTIONS(540), 1, + ACTIONS(634), 1, anon_sym_POUND_EQ, - ACTIONS(542), 1, + ACTIONS(636), 1, anon_sym_AT, - ACTIONS(544), 1, + ACTIONS(638), 1, anon_sym_SQUOTE, - ACTIONS(546), 1, + ACTIONS(640), 1, anon_sym_BQUOTE, - ACTIONS(548), 1, + ACTIONS(642), 1, anon_sym_COMMA_AT, - ACTIONS(550), 1, + ACTIONS(644), 1, anon_sym_COMMA, - ACTIONS(552), 1, - anon_sym_COLON, - ACTIONS(556), 1, + ACTIONS(648), 1, anon_sym_POUNDC, - ACTIONS(1498), 1, + ACTIONS(1606), 1, anon_sym_DOT, - STATE(575), 1, + STATE(545), 1, sym_sym_lit, - STATE(654), 1, + STATE(688), 1, sym__bare_vec_lit, - STATE(683), 1, + STATE(691), 1, sym__bare_set_lit, - STATE(1029), 1, + STATE(1013), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1906), 1, + STATE(1862), 1, sym_dotted_sym_lit, - ACTIONS(554), 2, + ACTIONS(646), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1496), 2, + ACTIONS(1604), 2, sym__ws, sym_comment, - ACTIONS(1616), 2, + ACTIONS(1708), 2, sym_num_lit, sym_char_lit, - ACTIONS(1618), 2, + ACTIONS(1710), 2, sym_nil_lit, sym_fancy_literal, - STATE(1924), 2, + STATE(1884), 2, sym__gap, sym_dis_expr, - STATE(651), 3, + STATE(687), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(690), 18, + STATE(586), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -37329,68 +37416,68 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [42279] = 38, + [42438] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, ACTIONS(562), 1, - aux_sym_str_lit_token1, + anon_sym_COLON, + ACTIONS(564), 1, + anon_sym_COLON_COLON, ACTIONS(566), 1, - aux_sym_sym_lit_token1, - ACTIONS(568), 1, - anon_sym_LPAREN, + aux_sym_str_lit_token1, ACTIONS(570), 1, - anon_sym_POUND0A, + aux_sym_sym_lit_token1, ACTIONS(572), 1, - anon_sym_POUND, + anon_sym_LPAREN, ACTIONS(574), 1, - anon_sym_POUND_QMARK, + anon_sym_POUND0A, ACTIONS(576), 1, - anon_sym_POUND_QMARK_AT, + anon_sym_POUND, ACTIONS(578), 1, - anon_sym_COLON_COLON, + anon_sym_POUND_QMARK, ACTIONS(580), 1, - anon_sym_POUND_SQUOTE, + anon_sym_POUND_QMARK_AT, ACTIONS(582), 1, - anon_sym_POUND_POUND, + anon_sym_POUND_SQUOTE, ACTIONS(584), 1, - anon_sym_POUND_EQ, + anon_sym_POUND_POUND, ACTIONS(586), 1, - anon_sym_AT, + anon_sym_POUND_EQ, ACTIONS(588), 1, - anon_sym_SQUOTE, + anon_sym_AT, ACTIONS(590), 1, - anon_sym_BQUOTE, + anon_sym_SQUOTE, ACTIONS(592), 1, - anon_sym_COMMA_AT, + anon_sym_BQUOTE, ACTIONS(594), 1, - anon_sym_COMMA, + anon_sym_COMMA_AT, ACTIONS(596), 1, - anon_sym_COLON, + anon_sym_COMMA, ACTIONS(600), 1, anon_sym_POUNDC, - STATE(599), 1, - sym_sym_lit, - STATE(779), 1, - sym__bare_set_lit, - STATE(784), 1, - sym__bare_vec_lit, - STATE(930), 1, + STATE(230), 1, aux_sym_dis_expr_repeat1, - STATE(1021), 1, + STATE(924), 1, + sym_sym_lit, + STATE(926), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1068), 1, + sym__bare_vec_lit, + STATE(1069), 1, + sym__bare_set_lit, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1905), 1, + STATE(1861), 1, sym_dotted_sym_lit, ACTIONS(558), 2, sym__ws, @@ -37398,21 +37485,22 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(598), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1620), 2, + ACTIONS(1712), 2, sym_num_lit, sym_char_lit, - ACTIONS(1622), 2, + ACTIONS(1714), 2, sym_nil_lit, sym_fancy_literal, - STATE(945), 2, + STATE(902), 2, sym__gap, sym_dis_expr, - STATE(786), 3, + STATE(1067), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(652), 18, + STATE(1116), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -37430,90 +37518,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [42418] = 38, + [42578] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(606), 1, + ACTIONS(518), 1, + anon_sym_COLON, + ACTIONS(520), 1, + anon_sym_COLON_COLON, + ACTIONS(522), 1, aux_sym_str_lit_token1, - ACTIONS(610), 1, + ACTIONS(526), 1, aux_sym_sym_lit_token1, - ACTIONS(612), 1, + ACTIONS(528), 1, anon_sym_LPAREN, - ACTIONS(614), 1, + ACTIONS(530), 1, anon_sym_POUND0A, - ACTIONS(616), 1, + ACTIONS(532), 1, anon_sym_POUND, - ACTIONS(618), 1, + ACTIONS(534), 1, anon_sym_POUND_QMARK, - ACTIONS(620), 1, + ACTIONS(536), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(622), 1, - anon_sym_COLON_COLON, - ACTIONS(624), 1, + ACTIONS(538), 1, anon_sym_POUND_SQUOTE, - ACTIONS(626), 1, + ACTIONS(540), 1, anon_sym_POUND_POUND, - ACTIONS(628), 1, + ACTIONS(542), 1, anon_sym_POUND_EQ, - ACTIONS(630), 1, + ACTIONS(544), 1, anon_sym_AT, - ACTIONS(632), 1, + ACTIONS(546), 1, anon_sym_SQUOTE, - ACTIONS(634), 1, + ACTIONS(548), 1, anon_sym_BQUOTE, - ACTIONS(636), 1, + ACTIONS(550), 1, anon_sym_COMMA_AT, - ACTIONS(638), 1, + ACTIONS(552), 1, anon_sym_COMMA, - ACTIONS(640), 1, - anon_sym_COLON, - ACTIONS(644), 1, + ACTIONS(556), 1, anon_sym_POUNDC, - ACTIONS(1094), 1, + ACTIONS(1154), 1, anon_sym_DOT, - STATE(949), 1, + STATE(909), 1, sym_sym_lit, - STATE(963), 1, + STATE(922), 1, sym__bare_set_lit, - STATE(964), 1, + STATE(931), 1, sym__bare_vec_lit, - STATE(967), 1, + STATE(936), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1911), 1, + STATE(1865), 1, sym_dotted_sym_lit, - ACTIONS(642), 2, + ACTIONS(554), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1092), 2, + ACTIONS(1152), 2, sym__ws, sym_comment, - ACTIONS(1624), 2, + ACTIONS(1716), 2, sym_num_lit, sym_char_lit, - ACTIONS(1626), 2, + ACTIONS(1718), 2, sym_nil_lit, sym_fancy_literal, - STATE(1917), 2, + STATE(1872), 2, sym__gap, sym_dis_expr, - STATE(965), 3, + STATE(930), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1095), 18, + STATE(1056), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -37531,90 +37620,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [42557] = 38, + [42718] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(13), 1, - aux_sym_str_lit_token1, + anon_sym_COLON, + ACTIONS(15), 1, + anon_sym_COLON_COLON, ACTIONS(17), 1, - aux_sym_sym_lit_token1, - ACTIONS(19), 1, - anon_sym_CARET, + aux_sym_str_lit_token1, ACTIONS(21), 1, - anon_sym_POUND_CARET, + aux_sym_sym_lit_token1, ACTIONS(23), 1, - anon_sym_LPAREN, + anon_sym_CARET, ACTIONS(25), 1, - anon_sym_POUND0A, + anon_sym_POUND_CARET, ACTIONS(27), 1, - anon_sym_POUND, + anon_sym_LPAREN, ACTIONS(29), 1, - anon_sym_POUND_QMARK, + anon_sym_POUND0A, ACTIONS(31), 1, - anon_sym_POUND_QMARK_AT, + anon_sym_POUND, ACTIONS(33), 1, - anon_sym_COLON_COLON, + anon_sym_POUND_QMARK, ACTIONS(35), 1, - anon_sym_POUND_SQUOTE, + anon_sym_POUND_QMARK_AT, ACTIONS(37), 1, - anon_sym_POUND_POUND, + anon_sym_POUND_SQUOTE, ACTIONS(39), 1, - anon_sym_POUND_EQ, + anon_sym_POUND_POUND, ACTIONS(41), 1, - anon_sym_AT, + anon_sym_POUND_EQ, ACTIONS(43), 1, - anon_sym_SQUOTE, + anon_sym_AT, ACTIONS(45), 1, - anon_sym_BQUOTE, + anon_sym_SQUOTE, ACTIONS(47), 1, - anon_sym_COMMA_AT, + anon_sym_BQUOTE, ACTIONS(49), 1, - anon_sym_COMMA, + anon_sym_COMMA_AT, ACTIONS(51), 1, - anon_sym_COLON, + anon_sym_COMMA, ACTIONS(55), 1, anon_sym_POUNDC, - STATE(815), 1, + STATE(780), 1, sym_sym_lit, - STATE(838), 1, + STATE(786), 1, sym__bare_vec_lit, - STATE(841), 1, + STATE(884), 1, sym__bare_set_lit, - STATE(930), 1, + STATE(892), 1, aux_sym_dis_expr_repeat1, - STATE(1047), 1, + STATE(1033), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1909), 1, + STATE(1863), 1, sym_dotted_sym_lit, ACTIONS(53), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(646), 2, + ACTIONS(650), 2, sym__ws, sym_comment, - ACTIONS(1628), 2, + ACTIONS(1720), 2, sym_num_lit, sym_char_lit, - ACTIONS(1630), 2, + ACTIONS(1722), 2, sym_nil_lit, sym_fancy_literal, - STATE(942), 2, + STATE(898), 2, sym__gap, sym_dis_expr, - STATE(842), 3, + STATE(787), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(125), 18, + STATE(209), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -37632,68 +37722,68 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [42696] = 38, + [42858] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, ACTIONS(562), 1, - aux_sym_str_lit_token1, + anon_sym_COLON, + ACTIONS(564), 1, + anon_sym_COLON_COLON, ACTIONS(566), 1, - aux_sym_sym_lit_token1, - ACTIONS(568), 1, - anon_sym_LPAREN, + aux_sym_str_lit_token1, ACTIONS(570), 1, - anon_sym_POUND0A, + aux_sym_sym_lit_token1, ACTIONS(572), 1, - anon_sym_POUND, + anon_sym_LPAREN, ACTIONS(574), 1, - anon_sym_POUND_QMARK, + anon_sym_POUND0A, ACTIONS(576), 1, - anon_sym_POUND_QMARK_AT, + anon_sym_POUND, ACTIONS(578), 1, - anon_sym_COLON_COLON, + anon_sym_POUND_QMARK, ACTIONS(580), 1, - anon_sym_POUND_SQUOTE, + anon_sym_POUND_QMARK_AT, ACTIONS(582), 1, - anon_sym_POUND_POUND, + anon_sym_POUND_SQUOTE, ACTIONS(584), 1, - anon_sym_POUND_EQ, + anon_sym_POUND_POUND, ACTIONS(586), 1, - anon_sym_AT, + anon_sym_POUND_EQ, ACTIONS(588), 1, - anon_sym_SQUOTE, + anon_sym_AT, ACTIONS(590), 1, - anon_sym_BQUOTE, + anon_sym_SQUOTE, ACTIONS(592), 1, - anon_sym_COMMA_AT, + anon_sym_BQUOTE, ACTIONS(594), 1, - anon_sym_COMMA, + anon_sym_COMMA_AT, ACTIONS(596), 1, - anon_sym_COLON, + anon_sym_COMMA, ACTIONS(600), 1, anon_sym_POUNDC, - STATE(599), 1, - sym_sym_lit, - STATE(779), 1, - sym__bare_set_lit, - STATE(784), 1, - sym__bare_vec_lit, - STATE(930), 1, + STATE(235), 1, aux_sym_dis_expr_repeat1, - STATE(1021), 1, + STATE(924), 1, + sym_sym_lit, + STATE(926), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1068), 1, + sym__bare_vec_lit, + STATE(1069), 1, + sym__bare_set_lit, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1905), 1, + STATE(1861), 1, sym_dotted_sym_lit, ACTIONS(558), 2, sym__ws, @@ -37701,21 +37791,22 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(598), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1632), 2, + ACTIONS(1724), 2, sym_num_lit, sym_char_lit, - ACTIONS(1634), 2, + ACTIONS(1726), 2, sym_nil_lit, sym_fancy_literal, - STATE(945), 2, + STATE(902), 2, sym__gap, sym_dis_expr, - STATE(786), 3, + STATE(1067), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(649), 18, + STATE(1115), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -37733,90 +37824,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [42835] = 38, + [42998] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(61), 1, + ACTIONS(660), 1, + anon_sym_COLON, + ACTIONS(662), 1, + anon_sym_COLON_COLON, + ACTIONS(664), 1, aux_sym_str_lit_token1, - ACTIONS(65), 1, + ACTIONS(668), 1, aux_sym_sym_lit_token1, - ACTIONS(67), 1, + ACTIONS(670), 1, + anon_sym_LPAREN, + ACTIONS(672), 1, anon_sym_POUND0A, - ACTIONS(69), 1, + ACTIONS(674), 1, anon_sym_POUND, - ACTIONS(71), 1, + ACTIONS(676), 1, anon_sym_POUND_QMARK, - ACTIONS(73), 1, + ACTIONS(678), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(75), 1, - anon_sym_COLON_COLON, - ACTIONS(77), 1, + ACTIONS(680), 1, anon_sym_POUND_SQUOTE, - ACTIONS(79), 1, + ACTIONS(682), 1, anon_sym_POUND_POUND, - ACTIONS(81), 1, + ACTIONS(684), 1, anon_sym_POUND_EQ, - ACTIONS(83), 1, + ACTIONS(686), 1, anon_sym_AT, - ACTIONS(85), 1, + ACTIONS(688), 1, anon_sym_SQUOTE, - ACTIONS(87), 1, + ACTIONS(690), 1, anon_sym_BQUOTE, - ACTIONS(89), 1, + ACTIONS(692), 1, anon_sym_COMMA_AT, - ACTIONS(91), 1, + ACTIONS(694), 1, anon_sym_COMMA, - ACTIONS(95), 1, - anon_sym_COLON, - ACTIONS(99), 1, + ACTIONS(698), 1, anon_sym_POUNDC, - ACTIONS(381), 1, - anon_sym_LPAREN, - STATE(256), 1, + STATE(379), 1, aux_sym_dis_expr_repeat1, - STATE(446), 1, + STATE(566), 1, sym_sym_lit, - STATE(513), 1, + STATE(678), 1, sym__bare_set_lit, - STATE(514), 1, + STATE(679), 1, sym__bare_vec_lit, - STATE(1044), 1, + STATE(925), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1907), 1, + STATE(1868), 1, sym_dotted_sym_lit, - ACTIONS(97), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(379), 2, + ACTIONS(656), 2, sym__ws, sym_comment, - ACTIONS(1636), 2, + ACTIONS(696), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(1728), 2, sym_num_lit, sym_char_lit, - ACTIONS(1638), 2, + ACTIONS(1730), 2, sym_nil_lit, sym_fancy_literal, - STATE(934), 2, + STATE(906), 2, sym__gap, sym_dis_expr, - STATE(515), 3, + STATE(680), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(490), 18, + STATE(635), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -37834,90 +37926,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [42974] = 38, + [43138] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(61), 1, + ACTIONS(562), 1, + anon_sym_COLON, + ACTIONS(564), 1, + anon_sym_COLON_COLON, + ACTIONS(566), 1, aux_sym_str_lit_token1, - ACTIONS(65), 1, + ACTIONS(570), 1, aux_sym_sym_lit_token1, - ACTIONS(67), 1, + ACTIONS(572), 1, + anon_sym_LPAREN, + ACTIONS(574), 1, anon_sym_POUND0A, - ACTIONS(69), 1, + ACTIONS(576), 1, anon_sym_POUND, - ACTIONS(71), 1, + ACTIONS(578), 1, anon_sym_POUND_QMARK, - ACTIONS(73), 1, + ACTIONS(580), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(75), 1, - anon_sym_COLON_COLON, - ACTIONS(77), 1, + ACTIONS(582), 1, anon_sym_POUND_SQUOTE, - ACTIONS(79), 1, + ACTIONS(584), 1, anon_sym_POUND_POUND, - ACTIONS(81), 1, + ACTIONS(586), 1, anon_sym_POUND_EQ, - ACTIONS(83), 1, + ACTIONS(588), 1, anon_sym_AT, - ACTIONS(85), 1, + ACTIONS(590), 1, anon_sym_SQUOTE, - ACTIONS(87), 1, + ACTIONS(592), 1, anon_sym_BQUOTE, - ACTIONS(89), 1, + ACTIONS(594), 1, anon_sym_COMMA_AT, - ACTIONS(91), 1, + ACTIONS(596), 1, anon_sym_COMMA, - ACTIONS(95), 1, - anon_sym_COLON, - ACTIONS(99), 1, + ACTIONS(600), 1, anon_sym_POUNDC, - ACTIONS(381), 1, - anon_sym_LPAREN, - STATE(259), 1, + STATE(246), 1, aux_sym_dis_expr_repeat1, - STATE(446), 1, + STATE(924), 1, sym_sym_lit, - STATE(513), 1, - sym__bare_set_lit, - STATE(514), 1, - sym__bare_vec_lit, - STATE(1044), 1, + STATE(926), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1068), 1, + sym__bare_vec_lit, + STATE(1069), 1, + sym__bare_set_lit, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1907), 1, + STATE(1861), 1, sym_dotted_sym_lit, - ACTIONS(97), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(379), 2, + ACTIONS(558), 2, sym__ws, sym_comment, - ACTIONS(1640), 2, + ACTIONS(598), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(1732), 2, sym_num_lit, sym_char_lit, - ACTIONS(1642), 2, + ACTIONS(1734), 2, sym_nil_lit, sym_fancy_literal, - STATE(934), 2, + STATE(902), 2, sym__gap, sym_dis_expr, - STATE(515), 3, + STATE(1067), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(493), 18, + STATE(1111), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -37935,90 +38028,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [43113] = 38, + [43278] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(61), 1, + ACTIONS(1170), 1, + anon_sym_COLON, + ACTIONS(1172), 1, + anon_sym_COLON_COLON, + ACTIONS(1174), 1, aux_sym_str_lit_token1, - ACTIONS(65), 1, + ACTIONS(1178), 1, aux_sym_sym_lit_token1, - ACTIONS(67), 1, + ACTIONS(1180), 1, + anon_sym_LPAREN, + ACTIONS(1182), 1, anon_sym_POUND0A, - ACTIONS(69), 1, + ACTIONS(1184), 1, anon_sym_POUND, - ACTIONS(71), 1, + ACTIONS(1186), 1, anon_sym_POUND_QMARK, - ACTIONS(73), 1, + ACTIONS(1188), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(75), 1, - anon_sym_COLON_COLON, - ACTIONS(77), 1, + ACTIONS(1190), 1, anon_sym_POUND_SQUOTE, - ACTIONS(79), 1, + ACTIONS(1192), 1, anon_sym_POUND_POUND, - ACTIONS(81), 1, + ACTIONS(1194), 1, anon_sym_POUND_EQ, - ACTIONS(83), 1, + ACTIONS(1196), 1, anon_sym_AT, - ACTIONS(85), 1, + ACTIONS(1198), 1, anon_sym_SQUOTE, - ACTIONS(87), 1, + ACTIONS(1200), 1, anon_sym_BQUOTE, - ACTIONS(89), 1, + ACTIONS(1202), 1, anon_sym_COMMA_AT, - ACTIONS(91), 1, + ACTIONS(1204), 1, anon_sym_COMMA, - ACTIONS(95), 1, - anon_sym_COLON, - ACTIONS(99), 1, + ACTIONS(1208), 1, anon_sym_POUNDC, - ACTIONS(381), 1, - anon_sym_LPAREN, - STATE(266), 1, + STATE(892), 1, aux_sym_dis_expr_repeat1, - STATE(446), 1, + STATE(950), 1, + aux_sym_sym_lit_repeat1, + STATE(1162), 1, + sym_meta_lit, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1173), 1, sym_sym_lit, - STATE(513), 1, + STATE(1226), 1, sym__bare_set_lit, - STATE(514), 1, + STATE(1230), 1, sym__bare_vec_lit, - STATE(1044), 1, - aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, - sym_meta_lit, - STATE(1369), 1, + STATE(1337), 1, sym__metadata_lit, - STATE(1907), 1, + STATE(1864), 1, sym_dotted_sym_lit, - ACTIONS(97), 2, + ACTIONS(1206), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(379), 2, + ACTIONS(1298), 2, sym__ws, sym_comment, - ACTIONS(1644), 2, + ACTIONS(1736), 2, sym_num_lit, sym_char_lit, - ACTIONS(1646), 2, + ACTIONS(1738), 2, sym_nil_lit, sym_fancy_literal, - STATE(934), 2, + STATE(907), 2, sym__gap, sym_dis_expr, - STATE(515), 3, + STATE(1231), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(497), 18, + STATE(1263), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -38036,90 +38130,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [43252] = 38, + [43418] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(19), 1, - anon_sym_CARET, - ACTIONS(21), 1, - anon_sym_POUND_CARET, - ACTIONS(61), 1, + ACTIONS(13), 1, + anon_sym_COLON, + ACTIONS(15), 1, + anon_sym_COLON_COLON, + ACTIONS(17), 1, aux_sym_str_lit_token1, - ACTIONS(65), 1, + ACTIONS(21), 1, aux_sym_sym_lit_token1, - ACTIONS(67), 1, + ACTIONS(23), 1, + anon_sym_CARET, + ACTIONS(25), 1, + anon_sym_POUND_CARET, + ACTIONS(27), 1, + anon_sym_LPAREN, + ACTIONS(29), 1, anon_sym_POUND0A, - ACTIONS(69), 1, + ACTIONS(31), 1, anon_sym_POUND, - ACTIONS(71), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(73), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(75), 1, - anon_sym_COLON_COLON, - ACTIONS(77), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(79), 1, + ACTIONS(39), 1, anon_sym_POUND_POUND, - ACTIONS(81), 1, + ACTIONS(41), 1, anon_sym_POUND_EQ, - ACTIONS(83), 1, + ACTIONS(43), 1, anon_sym_AT, - ACTIONS(85), 1, + ACTIONS(45), 1, anon_sym_SQUOTE, - ACTIONS(87), 1, + ACTIONS(47), 1, anon_sym_BQUOTE, - ACTIONS(89), 1, + ACTIONS(49), 1, anon_sym_COMMA_AT, - ACTIONS(91), 1, + ACTIONS(51), 1, anon_sym_COMMA, - ACTIONS(95), 1, - anon_sym_COLON, - ACTIONS(99), 1, + ACTIONS(55), 1, anon_sym_POUNDC, - ACTIONS(381), 1, - anon_sym_LPAREN, - STATE(269), 1, + STATE(78), 1, aux_sym_dis_expr_repeat1, - STATE(446), 1, + STATE(780), 1, sym_sym_lit, - STATE(513), 1, - sym__bare_set_lit, - STATE(514), 1, + STATE(786), 1, sym__bare_vec_lit, - STATE(1044), 1, + STATE(884), 1, + sym__bare_set_lit, + STATE(1033), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1907), 1, + STATE(1863), 1, sym_dotted_sym_lit, - ACTIONS(97), 2, + ACTIONS(53), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(379), 2, + ACTIONS(650), 2, sym__ws, sym_comment, - ACTIONS(1648), 2, + ACTIONS(1612), 2, sym_num_lit, sym_char_lit, - ACTIONS(1650), 2, + ACTIONS(1614), 2, sym_nil_lit, sym_fancy_literal, - STATE(934), 2, + STATE(898), 2, sym__gap, sym_dis_expr, - STATE(515), 3, + STATE(787), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(499), 18, + STATE(873), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -38137,90 +38232,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [43391] = 38, + [43558] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(562), 1, + ACTIONS(660), 1, + anon_sym_COLON, + ACTIONS(662), 1, + anon_sym_COLON_COLON, + ACTIONS(664), 1, aux_sym_str_lit_token1, - ACTIONS(566), 1, + ACTIONS(668), 1, aux_sym_sym_lit_token1, - ACTIONS(568), 1, + ACTIONS(670), 1, anon_sym_LPAREN, - ACTIONS(570), 1, + ACTIONS(672), 1, anon_sym_POUND0A, - ACTIONS(572), 1, + ACTIONS(674), 1, anon_sym_POUND, - ACTIONS(574), 1, + ACTIONS(676), 1, anon_sym_POUND_QMARK, - ACTIONS(576), 1, + ACTIONS(678), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(578), 1, - anon_sym_COLON_COLON, - ACTIONS(580), 1, + ACTIONS(680), 1, anon_sym_POUND_SQUOTE, - ACTIONS(582), 1, + ACTIONS(682), 1, anon_sym_POUND_POUND, - ACTIONS(584), 1, + ACTIONS(684), 1, anon_sym_POUND_EQ, - ACTIONS(586), 1, + ACTIONS(686), 1, anon_sym_AT, - ACTIONS(588), 1, + ACTIONS(688), 1, anon_sym_SQUOTE, - ACTIONS(590), 1, + ACTIONS(690), 1, anon_sym_BQUOTE, - ACTIONS(592), 1, + ACTIONS(692), 1, anon_sym_COMMA_AT, - ACTIONS(594), 1, + ACTIONS(694), 1, anon_sym_COMMA, - ACTIONS(596), 1, - anon_sym_COLON, - ACTIONS(600), 1, + ACTIONS(698), 1, anon_sym_POUNDC, - STATE(599), 1, + STATE(566), 1, sym_sym_lit, - STATE(779), 1, + STATE(678), 1, sym__bare_set_lit, - STATE(784), 1, + STATE(679), 1, sym__bare_vec_lit, - STATE(930), 1, + STATE(892), 1, aux_sym_dis_expr_repeat1, - STATE(1021), 1, + STATE(925), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1905), 1, + STATE(1868), 1, sym_dotted_sym_lit, - ACTIONS(558), 2, + ACTIONS(656), 2, sym__ws, sym_comment, - ACTIONS(598), 2, + ACTIONS(696), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1652), 2, + ACTIONS(1740), 2, sym_num_lit, sym_char_lit, - ACTIONS(1654), 2, + ACTIONS(1742), 2, sym_nil_lit, sym_fancy_literal, - STATE(945), 2, + STATE(906), 2, sym__gap, sym_dis_expr, - STATE(786), 3, + STATE(680), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(647), 18, + STATE(606), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -38238,90 +38334,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [43530] = 38, + [43698] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(61), 1, + ACTIONS(660), 1, + anon_sym_COLON, + ACTIONS(662), 1, + anon_sym_COLON_COLON, + ACTIONS(664), 1, aux_sym_str_lit_token1, - ACTIONS(65), 1, + ACTIONS(668), 1, aux_sym_sym_lit_token1, - ACTIONS(67), 1, + ACTIONS(670), 1, + anon_sym_LPAREN, + ACTIONS(672), 1, anon_sym_POUND0A, - ACTIONS(69), 1, + ACTIONS(674), 1, anon_sym_POUND, - ACTIONS(71), 1, + ACTIONS(676), 1, anon_sym_POUND_QMARK, - ACTIONS(73), 1, + ACTIONS(678), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(75), 1, - anon_sym_COLON_COLON, - ACTIONS(77), 1, + ACTIONS(680), 1, anon_sym_POUND_SQUOTE, - ACTIONS(79), 1, + ACTIONS(682), 1, anon_sym_POUND_POUND, - ACTIONS(81), 1, + ACTIONS(684), 1, anon_sym_POUND_EQ, - ACTIONS(83), 1, + ACTIONS(686), 1, anon_sym_AT, - ACTIONS(85), 1, + ACTIONS(688), 1, anon_sym_SQUOTE, - ACTIONS(87), 1, + ACTIONS(690), 1, anon_sym_BQUOTE, - ACTIONS(89), 1, + ACTIONS(692), 1, anon_sym_COMMA_AT, - ACTIONS(91), 1, + ACTIONS(694), 1, anon_sym_COMMA, - ACTIONS(95), 1, - anon_sym_COLON, - ACTIONS(99), 1, + ACTIONS(698), 1, anon_sym_POUNDC, - ACTIONS(381), 1, - anon_sym_LPAREN, - STATE(291), 1, + STATE(195), 1, aux_sym_dis_expr_repeat1, - STATE(446), 1, + STATE(566), 1, sym_sym_lit, - STATE(513), 1, + STATE(678), 1, sym__bare_set_lit, - STATE(514), 1, + STATE(679), 1, sym__bare_vec_lit, - STATE(1044), 1, + STATE(925), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1907), 1, + STATE(1868), 1, sym_dotted_sym_lit, - ACTIONS(97), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(379), 2, + ACTIONS(656), 2, sym__ws, sym_comment, - ACTIONS(1656), 2, + ACTIONS(696), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(1744), 2, sym_num_lit, sym_char_lit, - ACTIONS(1658), 2, + ACTIONS(1746), 2, sym_nil_lit, sym_fancy_literal, - STATE(934), 2, + STATE(906), 2, sym__gap, sym_dis_expr, - STATE(515), 3, + STATE(680), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(504), 18, + STATE(636), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -38339,90 +38436,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [43669] = 38, + [43838] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(562), 1, + ACTIONS(660), 1, + anon_sym_COLON, + ACTIONS(662), 1, + anon_sym_COLON_COLON, + ACTIONS(664), 1, aux_sym_str_lit_token1, - ACTIONS(566), 1, + ACTIONS(668), 1, aux_sym_sym_lit_token1, - ACTIONS(568), 1, + ACTIONS(670), 1, anon_sym_LPAREN, - ACTIONS(570), 1, + ACTIONS(672), 1, anon_sym_POUND0A, - ACTIONS(572), 1, + ACTIONS(674), 1, anon_sym_POUND, - ACTIONS(574), 1, + ACTIONS(676), 1, anon_sym_POUND_QMARK, - ACTIONS(576), 1, + ACTIONS(678), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(578), 1, - anon_sym_COLON_COLON, - ACTIONS(580), 1, + ACTIONS(680), 1, anon_sym_POUND_SQUOTE, - ACTIONS(582), 1, + ACTIONS(682), 1, anon_sym_POUND_POUND, - ACTIONS(584), 1, + ACTIONS(684), 1, anon_sym_POUND_EQ, - ACTIONS(586), 1, + ACTIONS(686), 1, anon_sym_AT, - ACTIONS(588), 1, + ACTIONS(688), 1, anon_sym_SQUOTE, - ACTIONS(590), 1, + ACTIONS(690), 1, anon_sym_BQUOTE, - ACTIONS(592), 1, + ACTIONS(692), 1, anon_sym_COMMA_AT, - ACTIONS(594), 1, + ACTIONS(694), 1, anon_sym_COMMA, - ACTIONS(596), 1, - anon_sym_COLON, - ACTIONS(600), 1, + ACTIONS(698), 1, anon_sym_POUNDC, - STATE(314), 1, - aux_sym_dis_expr_repeat1, - STATE(599), 1, + STATE(566), 1, sym_sym_lit, - STATE(779), 1, + STATE(678), 1, sym__bare_set_lit, - STATE(784), 1, + STATE(679), 1, sym__bare_vec_lit, - STATE(1021), 1, + STATE(892), 1, + aux_sym_dis_expr_repeat1, + STATE(925), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1905), 1, + STATE(1868), 1, sym_dotted_sym_lit, - ACTIONS(558), 2, + ACTIONS(656), 2, sym__ws, sym_comment, - ACTIONS(598), 2, + ACTIONS(696), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1660), 2, + ACTIONS(1748), 2, sym_num_lit, sym_char_lit, - ACTIONS(1662), 2, + ACTIONS(1750), 2, sym_nil_lit, sym_fancy_literal, - STATE(945), 2, + STATE(906), 2, sym__gap, sym_dis_expr, - STATE(786), 3, + STATE(680), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(643), 18, + STATE(607), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -38440,90 +38538,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [43808] = 38, + [43978] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(562), 1, + ACTIONS(660), 1, + anon_sym_COLON, + ACTIONS(662), 1, + anon_sym_COLON_COLON, + ACTIONS(664), 1, aux_sym_str_lit_token1, - ACTIONS(566), 1, + ACTIONS(668), 1, aux_sym_sym_lit_token1, - ACTIONS(568), 1, + ACTIONS(670), 1, anon_sym_LPAREN, - ACTIONS(570), 1, + ACTIONS(672), 1, anon_sym_POUND0A, - ACTIONS(572), 1, + ACTIONS(674), 1, anon_sym_POUND, - ACTIONS(574), 1, + ACTIONS(676), 1, anon_sym_POUND_QMARK, - ACTIONS(576), 1, + ACTIONS(678), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(578), 1, - anon_sym_COLON_COLON, - ACTIONS(580), 1, + ACTIONS(680), 1, anon_sym_POUND_SQUOTE, - ACTIONS(582), 1, + ACTIONS(682), 1, anon_sym_POUND_POUND, - ACTIONS(584), 1, + ACTIONS(684), 1, anon_sym_POUND_EQ, - ACTIONS(586), 1, + ACTIONS(686), 1, anon_sym_AT, - ACTIONS(588), 1, + ACTIONS(688), 1, anon_sym_SQUOTE, - ACTIONS(590), 1, + ACTIONS(690), 1, anon_sym_BQUOTE, - ACTIONS(592), 1, + ACTIONS(692), 1, anon_sym_COMMA_AT, - ACTIONS(594), 1, + ACTIONS(694), 1, anon_sym_COMMA, - ACTIONS(596), 1, - anon_sym_COLON, - ACTIONS(600), 1, + ACTIONS(698), 1, anon_sym_POUNDC, - STATE(317), 1, + STATE(199), 1, aux_sym_dis_expr_repeat1, - STATE(599), 1, + STATE(566), 1, sym_sym_lit, - STATE(779), 1, + STATE(678), 1, sym__bare_set_lit, - STATE(784), 1, + STATE(679), 1, sym__bare_vec_lit, - STATE(1021), 1, + STATE(925), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1905), 1, + STATE(1868), 1, sym_dotted_sym_lit, - ACTIONS(558), 2, + ACTIONS(656), 2, sym__ws, sym_comment, - ACTIONS(598), 2, + ACTIONS(696), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1664), 2, + ACTIONS(1752), 2, sym_num_lit, sym_char_lit, - ACTIONS(1666), 2, + ACTIONS(1754), 2, sym_nil_lit, sym_fancy_literal, - STATE(945), 2, + STATE(906), 2, sym__gap, sym_dis_expr, - STATE(786), 3, + STATE(680), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(642), 18, + STATE(608), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -38541,90 +38640,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [43947] = 38, + [44118] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(562), 1, + ACTIONS(1170), 1, + anon_sym_COLON, + ACTIONS(1172), 1, + anon_sym_COLON_COLON, + ACTIONS(1174), 1, aux_sym_str_lit_token1, - ACTIONS(566), 1, + ACTIONS(1178), 1, aux_sym_sym_lit_token1, - ACTIONS(568), 1, + ACTIONS(1180), 1, anon_sym_LPAREN, - ACTIONS(570), 1, + ACTIONS(1182), 1, anon_sym_POUND0A, - ACTIONS(572), 1, + ACTIONS(1184), 1, anon_sym_POUND, - ACTIONS(574), 1, + ACTIONS(1186), 1, anon_sym_POUND_QMARK, - ACTIONS(576), 1, + ACTIONS(1188), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(578), 1, - anon_sym_COLON_COLON, - ACTIONS(580), 1, + ACTIONS(1190), 1, anon_sym_POUND_SQUOTE, - ACTIONS(582), 1, + ACTIONS(1192), 1, anon_sym_POUND_POUND, - ACTIONS(584), 1, + ACTIONS(1194), 1, anon_sym_POUND_EQ, - ACTIONS(586), 1, + ACTIONS(1196), 1, anon_sym_AT, - ACTIONS(588), 1, + ACTIONS(1198), 1, anon_sym_SQUOTE, - ACTIONS(590), 1, + ACTIONS(1200), 1, anon_sym_BQUOTE, - ACTIONS(592), 1, + ACTIONS(1202), 1, anon_sym_COMMA_AT, - ACTIONS(594), 1, + ACTIONS(1204), 1, anon_sym_COMMA, - ACTIONS(596), 1, - anon_sym_COLON, - ACTIONS(600), 1, + ACTIONS(1208), 1, anon_sym_POUNDC, - STATE(599), 1, - sym_sym_lit, - STATE(779), 1, - sym__bare_set_lit, - STATE(784), 1, - sym__bare_vec_lit, - STATE(930), 1, + STATE(330), 1, aux_sym_dis_expr_repeat1, - STATE(1021), 1, + STATE(950), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1173), 1, + sym_sym_lit, + STATE(1226), 1, + sym__bare_set_lit, + STATE(1230), 1, + sym__bare_vec_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1905), 1, + STATE(1864), 1, sym_dotted_sym_lit, - ACTIONS(558), 2, - sym__ws, - sym_comment, - ACTIONS(598), 2, + ACTIONS(1206), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1668), 2, + ACTIONS(1298), 2, + sym__ws, + sym_comment, + ACTIONS(1756), 2, sym_num_lit, sym_char_lit, - ACTIONS(1670), 2, + ACTIONS(1758), 2, sym_nil_lit, sym_fancy_literal, - STATE(945), 2, + STATE(907), 2, sym__gap, sym_dis_expr, - STATE(786), 3, + STATE(1231), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(606), 18, + STATE(1264), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -38642,90 +38742,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [44086] = 38, + [44258] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(19), 1, - anon_sym_CARET, - ACTIONS(21), 1, - anon_sym_POUND_CARET, - ACTIONS(562), 1, + ACTIONS(17), 1, aux_sym_str_lit_token1, - ACTIONS(566), 1, + ACTIONS(21), 1, aux_sym_sym_lit_token1, - ACTIONS(568), 1, + ACTIONS(23), 1, + anon_sym_CARET, + ACTIONS(25), 1, + anon_sym_POUND_CARET, + ACTIONS(27), 1, anon_sym_LPAREN, - ACTIONS(570), 1, + ACTIONS(29), 1, anon_sym_POUND0A, - ACTIONS(572), 1, + ACTIONS(31), 1, anon_sym_POUND, - ACTIONS(574), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(576), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(578), 1, - anon_sym_COLON_COLON, - ACTIONS(580), 1, - anon_sym_POUND_SQUOTE, - ACTIONS(582), 1, + ACTIONS(39), 1, anon_sym_POUND_POUND, - ACTIONS(584), 1, + ACTIONS(41), 1, anon_sym_POUND_EQ, - ACTIONS(586), 1, + ACTIONS(47), 1, + anon_sym_BQUOTE, + ACTIONS(55), 1, + anon_sym_POUNDC, + ACTIONS(1248), 1, + anon_sym_COLON, + ACTIONS(1250), 1, + anon_sym_COLON_COLON, + ACTIONS(1254), 1, + anon_sym_POUND_SQUOTE, + ACTIONS(1256), 1, anon_sym_AT, - ACTIONS(588), 1, + ACTIONS(1258), 1, anon_sym_SQUOTE, - ACTIONS(590), 1, - anon_sym_BQUOTE, - ACTIONS(592), 1, + ACTIONS(1260), 1, anon_sym_COMMA_AT, - ACTIONS(594), 1, + ACTIONS(1262), 1, anon_sym_COMMA, - ACTIONS(596), 1, - anon_sym_COLON, - ACTIONS(600), 1, - anon_sym_POUNDC, - STATE(599), 1, + STATE(783), 1, sym_sym_lit, - STATE(779), 1, - sym__bare_set_lit, - STATE(784), 1, + STATE(786), 1, sym__bare_vec_lit, - STATE(930), 1, + STATE(884), 1, + sym__bare_set_lit, + STATE(892), 1, aux_sym_dis_expr_repeat1, - STATE(1021), 1, + STATE(933), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1905), 1, + STATE(1867), 1, sym_dotted_sym_lit, - ACTIONS(558), 2, + ACTIONS(650), 2, sym__ws, sym_comment, - ACTIONS(598), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(1672), 2, + ACTIONS(724), 2, sym_num_lit, sym_char_lit, - ACTIONS(1674), 2, + ACTIONS(726), 2, sym_nil_lit, sym_fancy_literal, - STATE(945), 2, + ACTIONS(1264), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + STATE(898), 2, sym__gap, sym_dis_expr, - STATE(786), 3, + STATE(787), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(640), 18, + STATE(838), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -38743,90 +38844,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [44225] = 38, + [44398] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(19), 1, - anon_sym_CARET, - ACTIONS(21), 1, - anon_sym_POUND_CARET, - ACTIONS(562), 1, + ACTIONS(17), 1, aux_sym_str_lit_token1, - ACTIONS(566), 1, + ACTIONS(21), 1, aux_sym_sym_lit_token1, - ACTIONS(568), 1, + ACTIONS(23), 1, + anon_sym_CARET, + ACTIONS(25), 1, + anon_sym_POUND_CARET, + ACTIONS(27), 1, anon_sym_LPAREN, - ACTIONS(570), 1, + ACTIONS(29), 1, anon_sym_POUND0A, - ACTIONS(572), 1, + ACTIONS(31), 1, anon_sym_POUND, - ACTIONS(574), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(576), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(578), 1, - anon_sym_COLON_COLON, - ACTIONS(580), 1, - anon_sym_POUND_SQUOTE, - ACTIONS(582), 1, + ACTIONS(39), 1, anon_sym_POUND_POUND, - ACTIONS(584), 1, + ACTIONS(41), 1, anon_sym_POUND_EQ, - ACTIONS(586), 1, + ACTIONS(47), 1, + anon_sym_BQUOTE, + ACTIONS(55), 1, + anon_sym_POUNDC, + ACTIONS(1248), 1, + anon_sym_COLON, + ACTIONS(1250), 1, + anon_sym_COLON_COLON, + ACTIONS(1254), 1, + anon_sym_POUND_SQUOTE, + ACTIONS(1256), 1, anon_sym_AT, - ACTIONS(588), 1, + ACTIONS(1258), 1, anon_sym_SQUOTE, - ACTIONS(590), 1, - anon_sym_BQUOTE, - ACTIONS(592), 1, + ACTIONS(1260), 1, anon_sym_COMMA_AT, - ACTIONS(594), 1, + ACTIONS(1262), 1, anon_sym_COMMA, - ACTIONS(596), 1, - anon_sym_COLON, - ACTIONS(600), 1, - anon_sym_POUNDC, - STATE(599), 1, + STATE(783), 1, sym_sym_lit, - STATE(779), 1, - sym__bare_set_lit, - STATE(784), 1, + STATE(786), 1, sym__bare_vec_lit, - STATE(930), 1, + STATE(884), 1, + sym__bare_set_lit, + STATE(892), 1, aux_sym_dis_expr_repeat1, - STATE(1021), 1, + STATE(933), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1905), 1, + STATE(1867), 1, sym_dotted_sym_lit, - ACTIONS(558), 2, + ACTIONS(650), 2, sym__ws, sym_comment, - ACTIONS(598), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(1676), 2, + ACTIONS(748), 2, sym_num_lit, sym_char_lit, - ACTIONS(1678), 2, + ACTIONS(750), 2, sym_nil_lit, sym_fancy_literal, - STATE(945), 2, + ACTIONS(1264), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + STATE(898), 2, sym__gap, sym_dis_expr, - STATE(786), 3, + STATE(787), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(639), 18, + STATE(835), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -38844,90 +38946,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [44364] = 38, + [44538] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(13), 1, - aux_sym_str_lit_token1, ACTIONS(17), 1, - aux_sym_sym_lit_token1, - ACTIONS(19), 1, - anon_sym_CARET, + aux_sym_str_lit_token1, ACTIONS(21), 1, - anon_sym_POUND_CARET, + aux_sym_sym_lit_token1, ACTIONS(23), 1, - anon_sym_LPAREN, + anon_sym_CARET, ACTIONS(25), 1, - anon_sym_POUND0A, + anon_sym_POUND_CARET, ACTIONS(27), 1, - anon_sym_POUND, + anon_sym_LPAREN, ACTIONS(29), 1, - anon_sym_POUND_QMARK, + anon_sym_POUND0A, ACTIONS(31), 1, - anon_sym_POUND_QMARK_AT, + anon_sym_POUND, ACTIONS(33), 1, - anon_sym_COLON_COLON, + anon_sym_POUND_QMARK, ACTIONS(35), 1, - anon_sym_POUND_SQUOTE, - ACTIONS(37), 1, - anon_sym_POUND_POUND, + anon_sym_POUND_QMARK_AT, ACTIONS(39), 1, - anon_sym_POUND_EQ, + anon_sym_POUND_POUND, ACTIONS(41), 1, + anon_sym_POUND_EQ, + ACTIONS(47), 1, + anon_sym_BQUOTE, + ACTIONS(55), 1, + anon_sym_POUNDC, + ACTIONS(1248), 1, + anon_sym_COLON, + ACTIONS(1250), 1, + anon_sym_COLON_COLON, + ACTIONS(1254), 1, + anon_sym_POUND_SQUOTE, + ACTIONS(1256), 1, anon_sym_AT, - ACTIONS(43), 1, + ACTIONS(1258), 1, anon_sym_SQUOTE, - ACTIONS(45), 1, - anon_sym_BQUOTE, - ACTIONS(47), 1, + ACTIONS(1260), 1, anon_sym_COMMA_AT, - ACTIONS(49), 1, + ACTIONS(1262), 1, anon_sym_COMMA, - ACTIONS(51), 1, - anon_sym_COLON, - ACTIONS(55), 1, - anon_sym_POUNDC, - STATE(307), 1, - aux_sym_dis_expr_repeat1, - STATE(815), 1, + STATE(783), 1, sym_sym_lit, - STATE(838), 1, + STATE(786), 1, sym__bare_vec_lit, - STATE(841), 1, + STATE(884), 1, sym__bare_set_lit, - STATE(1047), 1, + STATE(892), 1, + aux_sym_dis_expr_repeat1, + STATE(933), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1909), 1, + STATE(1867), 1, sym_dotted_sym_lit, - ACTIONS(53), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(646), 2, + ACTIONS(650), 2, sym__ws, sym_comment, - ACTIONS(1680), 2, + ACTIONS(756), 2, sym_num_lit, sym_char_lit, - ACTIONS(1682), 2, + ACTIONS(758), 2, sym_nil_lit, sym_fancy_literal, - STATE(942), 2, + ACTIONS(1264), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + STATE(898), 2, sym__gap, sym_dis_expr, - STATE(842), 3, + STATE(787), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(420), 18, + STATE(834), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -38945,90 +39048,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [44503] = 38, + [44678] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(13), 1, - aux_sym_str_lit_token1, - ACTIONS(17), 1, - aux_sym_sym_lit_token1, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(23), 1, + ACTIONS(1170), 1, + anon_sym_COLON, + ACTIONS(1172), 1, + anon_sym_COLON_COLON, + ACTIONS(1174), 1, + aux_sym_str_lit_token1, + ACTIONS(1178), 1, + aux_sym_sym_lit_token1, + ACTIONS(1180), 1, anon_sym_LPAREN, - ACTIONS(25), 1, + ACTIONS(1182), 1, anon_sym_POUND0A, - ACTIONS(27), 1, + ACTIONS(1184), 1, anon_sym_POUND, - ACTIONS(29), 1, + ACTIONS(1186), 1, anon_sym_POUND_QMARK, - ACTIONS(31), 1, + ACTIONS(1188), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(33), 1, - anon_sym_COLON_COLON, - ACTIONS(35), 1, + ACTIONS(1190), 1, anon_sym_POUND_SQUOTE, - ACTIONS(37), 1, + ACTIONS(1192), 1, anon_sym_POUND_POUND, - ACTIONS(39), 1, + ACTIONS(1194), 1, anon_sym_POUND_EQ, - ACTIONS(41), 1, + ACTIONS(1196), 1, anon_sym_AT, - ACTIONS(43), 1, + ACTIONS(1198), 1, anon_sym_SQUOTE, - ACTIONS(45), 1, + ACTIONS(1200), 1, anon_sym_BQUOTE, - ACTIONS(47), 1, + ACTIONS(1202), 1, anon_sym_COMMA_AT, - ACTIONS(49), 1, + ACTIONS(1204), 1, anon_sym_COMMA, - ACTIONS(51), 1, - anon_sym_COLON, - ACTIONS(55), 1, + ACTIONS(1208), 1, anon_sym_POUNDC, - STATE(308), 1, + STATE(892), 1, aux_sym_dis_expr_repeat1, - STATE(815), 1, - sym_sym_lit, - STATE(838), 1, - sym__bare_vec_lit, - STATE(841), 1, - sym__bare_set_lit, - STATE(1047), 1, + STATE(950), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1173), 1, + sym_sym_lit, + STATE(1226), 1, + sym__bare_set_lit, + STATE(1230), 1, + sym__bare_vec_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1909), 1, + STATE(1864), 1, sym_dotted_sym_lit, - ACTIONS(53), 2, + ACTIONS(1206), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(646), 2, + ACTIONS(1298), 2, sym__ws, sym_comment, - ACTIONS(1684), 2, + ACTIONS(1760), 2, sym_num_lit, sym_char_lit, - ACTIONS(1686), 2, + ACTIONS(1762), 2, sym_nil_lit, sym_fancy_literal, - STATE(942), 2, + STATE(907), 2, sym__gap, sym_dis_expr, - STATE(842), 3, + STATE(1231), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(416), 18, + STATE(1282), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -39046,68 +39150,68 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [44642] = 38, + [44818] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, ACTIONS(562), 1, - aux_sym_str_lit_token1, + anon_sym_COLON, + ACTIONS(564), 1, + anon_sym_COLON_COLON, ACTIONS(566), 1, - aux_sym_sym_lit_token1, - ACTIONS(568), 1, - anon_sym_LPAREN, + aux_sym_str_lit_token1, ACTIONS(570), 1, - anon_sym_POUND0A, + aux_sym_sym_lit_token1, ACTIONS(572), 1, - anon_sym_POUND, + anon_sym_LPAREN, ACTIONS(574), 1, - anon_sym_POUND_QMARK, + anon_sym_POUND0A, ACTIONS(576), 1, - anon_sym_POUND_QMARK_AT, + anon_sym_POUND, ACTIONS(578), 1, - anon_sym_COLON_COLON, + anon_sym_POUND_QMARK, ACTIONS(580), 1, - anon_sym_POUND_SQUOTE, + anon_sym_POUND_QMARK_AT, ACTIONS(582), 1, - anon_sym_POUND_POUND, + anon_sym_POUND_SQUOTE, ACTIONS(584), 1, - anon_sym_POUND_EQ, + anon_sym_POUND_POUND, ACTIONS(586), 1, - anon_sym_AT, + anon_sym_POUND_EQ, ACTIONS(588), 1, - anon_sym_SQUOTE, + anon_sym_AT, ACTIONS(590), 1, - anon_sym_BQUOTE, + anon_sym_SQUOTE, ACTIONS(592), 1, - anon_sym_COMMA_AT, + anon_sym_BQUOTE, ACTIONS(594), 1, - anon_sym_COMMA, + anon_sym_COMMA_AT, ACTIONS(596), 1, - anon_sym_COLON, + anon_sym_COMMA, ACTIONS(600), 1, anon_sym_POUNDC, - STATE(599), 1, - sym_sym_lit, - STATE(779), 1, - sym__bare_set_lit, - STATE(784), 1, - sym__bare_vec_lit, - STATE(930), 1, + STATE(264), 1, aux_sym_dis_expr_repeat1, - STATE(1021), 1, + STATE(924), 1, + sym_sym_lit, + STATE(926), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1068), 1, + sym__bare_vec_lit, + STATE(1069), 1, + sym__bare_set_lit, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1905), 1, + STATE(1861), 1, sym_dotted_sym_lit, ACTIONS(558), 2, sym__ws, @@ -39115,21 +39219,22 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(598), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1688), 2, + ACTIONS(1764), 2, sym_num_lit, sym_char_lit, - ACTIONS(1690), 2, + ACTIONS(1766), 2, sym_nil_lit, sym_fancy_literal, - STATE(945), 2, + STATE(902), 2, sym__gap, sym_dis_expr, - STATE(786), 3, + STATE(1067), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(635), 18, + STATE(1107), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -39147,90 +39252,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [44781] = 38, + [44958] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(13), 1, - aux_sym_str_lit_token1, + anon_sym_COLON, + ACTIONS(15), 1, + anon_sym_COLON_COLON, ACTIONS(17), 1, - aux_sym_sym_lit_token1, - ACTIONS(19), 1, - anon_sym_CARET, + aux_sym_str_lit_token1, ACTIONS(21), 1, - anon_sym_POUND_CARET, + aux_sym_sym_lit_token1, ACTIONS(23), 1, - anon_sym_LPAREN, + anon_sym_CARET, ACTIONS(25), 1, - anon_sym_POUND0A, + anon_sym_POUND_CARET, ACTIONS(27), 1, - anon_sym_POUND, + anon_sym_LPAREN, ACTIONS(29), 1, - anon_sym_POUND_QMARK, + anon_sym_POUND0A, ACTIONS(31), 1, - anon_sym_POUND_QMARK_AT, + anon_sym_POUND, ACTIONS(33), 1, - anon_sym_COLON_COLON, + anon_sym_POUND_QMARK, ACTIONS(35), 1, - anon_sym_POUND_SQUOTE, + anon_sym_POUND_QMARK_AT, ACTIONS(37), 1, - anon_sym_POUND_POUND, + anon_sym_POUND_SQUOTE, ACTIONS(39), 1, - anon_sym_POUND_EQ, + anon_sym_POUND_POUND, ACTIONS(41), 1, - anon_sym_AT, + anon_sym_POUND_EQ, ACTIONS(43), 1, - anon_sym_SQUOTE, + anon_sym_AT, ACTIONS(45), 1, - anon_sym_BQUOTE, + anon_sym_SQUOTE, ACTIONS(47), 1, - anon_sym_COMMA_AT, + anon_sym_BQUOTE, ACTIONS(49), 1, - anon_sym_COMMA, + anon_sym_COMMA_AT, ACTIONS(51), 1, - anon_sym_COLON, + anon_sym_COMMA, ACTIONS(55), 1, anon_sym_POUNDC, - STATE(815), 1, + STATE(316), 1, + aux_sym_dis_expr_repeat1, + STATE(780), 1, sym_sym_lit, - STATE(838), 1, + STATE(786), 1, sym__bare_vec_lit, - STATE(841), 1, + STATE(884), 1, sym__bare_set_lit, - STATE(930), 1, - aux_sym_dis_expr_repeat1, - STATE(1047), 1, + STATE(1033), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1909), 1, + STATE(1863), 1, sym_dotted_sym_lit, ACTIONS(53), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(646), 2, + ACTIONS(650), 2, sym__ws, sym_comment, - ACTIONS(1692), 2, + ACTIONS(1768), 2, sym_num_lit, sym_char_lit, - ACTIONS(1694), 2, + ACTIONS(1770), 2, sym_nil_lit, sym_fancy_literal, - STATE(942), 2, + STATE(898), 2, sym__gap, sym_dis_expr, - STATE(842), 3, + STATE(787), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(403), 18, + STATE(325), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -39248,90 +39354,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [44920] = 38, + [45098] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(562), 1, + ACTIONS(660), 1, + anon_sym_COLON, + ACTIONS(662), 1, + anon_sym_COLON_COLON, + ACTIONS(664), 1, aux_sym_str_lit_token1, - ACTIONS(566), 1, + ACTIONS(668), 1, aux_sym_sym_lit_token1, - ACTIONS(568), 1, + ACTIONS(670), 1, anon_sym_LPAREN, - ACTIONS(570), 1, + ACTIONS(672), 1, anon_sym_POUND0A, - ACTIONS(572), 1, + ACTIONS(674), 1, anon_sym_POUND, - ACTIONS(574), 1, + ACTIONS(676), 1, anon_sym_POUND_QMARK, - ACTIONS(576), 1, + ACTIONS(678), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(578), 1, - anon_sym_COLON_COLON, - ACTIONS(580), 1, + ACTIONS(680), 1, anon_sym_POUND_SQUOTE, - ACTIONS(582), 1, + ACTIONS(682), 1, anon_sym_POUND_POUND, - ACTIONS(584), 1, + ACTIONS(684), 1, anon_sym_POUND_EQ, - ACTIONS(586), 1, + ACTIONS(686), 1, anon_sym_AT, - ACTIONS(588), 1, + ACTIONS(688), 1, anon_sym_SQUOTE, - ACTIONS(590), 1, + ACTIONS(690), 1, anon_sym_BQUOTE, - ACTIONS(592), 1, + ACTIONS(692), 1, anon_sym_COMMA_AT, - ACTIONS(594), 1, + ACTIONS(694), 1, anon_sym_COMMA, - ACTIONS(596), 1, - anon_sym_COLON, - ACTIONS(600), 1, + ACTIONS(698), 1, anon_sym_POUNDC, - STATE(322), 1, - aux_sym_dis_expr_repeat1, - STATE(599), 1, + STATE(566), 1, sym_sym_lit, - STATE(779), 1, + STATE(678), 1, sym__bare_set_lit, - STATE(784), 1, + STATE(679), 1, sym__bare_vec_lit, - STATE(1021), 1, + STATE(892), 1, + aux_sym_dis_expr_repeat1, + STATE(925), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1905), 1, + STATE(1868), 1, sym_dotted_sym_lit, - ACTIONS(558), 2, + ACTIONS(656), 2, sym__ws, sym_comment, - ACTIONS(598), 2, + ACTIONS(696), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1696), 2, + ACTIONS(1772), 2, sym_num_lit, sym_char_lit, - ACTIONS(1698), 2, + ACTIONS(1774), 2, sym_nil_lit, sym_fancy_literal, - STATE(945), 2, + STATE(906), 2, sym__gap, sym_dis_expr, - STATE(786), 3, + STATE(680), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(631), 18, + STATE(628), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -39349,90 +39456,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [45059] = 38, + [45238] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(562), 1, + ACTIONS(660), 1, + anon_sym_COLON, + ACTIONS(662), 1, + anon_sym_COLON_COLON, + ACTIONS(664), 1, aux_sym_str_lit_token1, - ACTIONS(566), 1, + ACTIONS(668), 1, aux_sym_sym_lit_token1, - ACTIONS(568), 1, + ACTIONS(670), 1, anon_sym_LPAREN, - ACTIONS(570), 1, + ACTIONS(672), 1, anon_sym_POUND0A, - ACTIONS(572), 1, + ACTIONS(674), 1, anon_sym_POUND, - ACTIONS(574), 1, + ACTIONS(676), 1, anon_sym_POUND_QMARK, - ACTIONS(576), 1, + ACTIONS(678), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(578), 1, - anon_sym_COLON_COLON, - ACTIONS(580), 1, + ACTIONS(680), 1, anon_sym_POUND_SQUOTE, - ACTIONS(582), 1, + ACTIONS(682), 1, anon_sym_POUND_POUND, - ACTIONS(584), 1, + ACTIONS(684), 1, anon_sym_POUND_EQ, - ACTIONS(586), 1, + ACTIONS(686), 1, anon_sym_AT, - ACTIONS(588), 1, + ACTIONS(688), 1, anon_sym_SQUOTE, - ACTIONS(590), 1, + ACTIONS(690), 1, anon_sym_BQUOTE, - ACTIONS(592), 1, + ACTIONS(692), 1, anon_sym_COMMA_AT, - ACTIONS(594), 1, + ACTIONS(694), 1, anon_sym_COMMA, - ACTIONS(596), 1, - anon_sym_COLON, - ACTIONS(600), 1, + ACTIONS(698), 1, anon_sym_POUNDC, - STATE(599), 1, + STATE(134), 1, + aux_sym_dis_expr_repeat1, + STATE(566), 1, sym_sym_lit, - STATE(779), 1, + STATE(678), 1, sym__bare_set_lit, - STATE(784), 1, + STATE(679), 1, sym__bare_vec_lit, - STATE(930), 1, - aux_sym_dis_expr_repeat1, - STATE(1021), 1, + STATE(925), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1905), 1, + STATE(1868), 1, sym_dotted_sym_lit, - ACTIONS(558), 2, + ACTIONS(656), 2, sym__ws, sym_comment, - ACTIONS(598), 2, + ACTIONS(696), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1700), 2, + ACTIONS(1776), 2, sym_num_lit, sym_char_lit, - ACTIONS(1702), 2, + ACTIONS(1778), 2, sym_nil_lit, sym_fancy_literal, - STATE(945), 2, + STATE(906), 2, sym__gap, sym_dis_expr, - STATE(786), 3, + STATE(680), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(630), 18, + STATE(645), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -39450,90 +39558,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [45198] = 38, + [45378] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(19), 1, - anon_sym_CARET, - ACTIONS(21), 1, - anon_sym_POUND_CARET, - ACTIONS(562), 1, + ACTIONS(17), 1, aux_sym_str_lit_token1, - ACTIONS(566), 1, + ACTIONS(21), 1, aux_sym_sym_lit_token1, - ACTIONS(568), 1, + ACTIONS(23), 1, + anon_sym_CARET, + ACTIONS(25), 1, + anon_sym_POUND_CARET, + ACTIONS(27), 1, anon_sym_LPAREN, - ACTIONS(570), 1, + ACTIONS(29), 1, anon_sym_POUND0A, - ACTIONS(572), 1, + ACTIONS(31), 1, anon_sym_POUND, - ACTIONS(574), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(576), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(578), 1, - anon_sym_COLON_COLON, - ACTIONS(580), 1, - anon_sym_POUND_SQUOTE, - ACTIONS(582), 1, + ACTIONS(39), 1, anon_sym_POUND_POUND, - ACTIONS(584), 1, + ACTIONS(41), 1, anon_sym_POUND_EQ, - ACTIONS(586), 1, + ACTIONS(47), 1, + anon_sym_BQUOTE, + ACTIONS(55), 1, + anon_sym_POUNDC, + ACTIONS(1248), 1, + anon_sym_COLON, + ACTIONS(1250), 1, + anon_sym_COLON_COLON, + ACTIONS(1254), 1, + anon_sym_POUND_SQUOTE, + ACTIONS(1256), 1, anon_sym_AT, - ACTIONS(588), 1, + ACTIONS(1258), 1, anon_sym_SQUOTE, - ACTIONS(590), 1, - anon_sym_BQUOTE, - ACTIONS(592), 1, + ACTIONS(1260), 1, anon_sym_COMMA_AT, - ACTIONS(594), 1, + ACTIONS(1262), 1, anon_sym_COMMA, - ACTIONS(596), 1, - anon_sym_COLON, - ACTIONS(600), 1, - anon_sym_POUNDC, - STATE(326), 1, - aux_sym_dis_expr_repeat1, - STATE(599), 1, + STATE(783), 1, sym_sym_lit, - STATE(779), 1, - sym__bare_set_lit, - STATE(784), 1, + STATE(786), 1, sym__bare_vec_lit, - STATE(1021), 1, + STATE(884), 1, + sym__bare_set_lit, + STATE(892), 1, + aux_sym_dis_expr_repeat1, + STATE(933), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1905), 1, + STATE(1867), 1, sym_dotted_sym_lit, - ACTIONS(558), 2, + ACTIONS(650), 2, sym__ws, sym_comment, - ACTIONS(598), 2, + ACTIONS(1264), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1704), 2, + ACTIONS(1556), 2, sym_num_lit, sym_char_lit, - ACTIONS(1706), 2, + ACTIONS(1558), 2, sym_nil_lit, sym_fancy_literal, - STATE(945), 2, + STATE(898), 2, sym__gap, sym_dis_expr, - STATE(786), 3, + STATE(787), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(624), 18, + STATE(870), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -39551,90 +39660,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [45337] = 38, + [45518] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(19), 1, - anon_sym_CARET, - ACTIONS(21), 1, - anon_sym_POUND_CARET, - ACTIONS(562), 1, + ACTIONS(17), 1, aux_sym_str_lit_token1, - ACTIONS(566), 1, + ACTIONS(21), 1, aux_sym_sym_lit_token1, - ACTIONS(568), 1, + ACTIONS(23), 1, + anon_sym_CARET, + ACTIONS(25), 1, + anon_sym_POUND_CARET, + ACTIONS(27), 1, anon_sym_LPAREN, - ACTIONS(570), 1, + ACTIONS(29), 1, anon_sym_POUND0A, - ACTIONS(572), 1, + ACTIONS(31), 1, anon_sym_POUND, - ACTIONS(574), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(576), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(578), 1, - anon_sym_COLON_COLON, - ACTIONS(580), 1, - anon_sym_POUND_SQUOTE, - ACTIONS(582), 1, + ACTIONS(39), 1, anon_sym_POUND_POUND, - ACTIONS(584), 1, + ACTIONS(41), 1, anon_sym_POUND_EQ, - ACTIONS(586), 1, + ACTIONS(47), 1, + anon_sym_BQUOTE, + ACTIONS(55), 1, + anon_sym_POUNDC, + ACTIONS(1248), 1, + anon_sym_COLON, + ACTIONS(1250), 1, + anon_sym_COLON_COLON, + ACTIONS(1254), 1, + anon_sym_POUND_SQUOTE, + ACTIONS(1256), 1, anon_sym_AT, - ACTIONS(588), 1, + ACTIONS(1258), 1, anon_sym_SQUOTE, - ACTIONS(590), 1, - anon_sym_BQUOTE, - ACTIONS(592), 1, + ACTIONS(1260), 1, anon_sym_COMMA_AT, - ACTIONS(594), 1, + ACTIONS(1262), 1, anon_sym_COMMA, - ACTIONS(596), 1, - anon_sym_COLON, - ACTIONS(600), 1, - anon_sym_POUNDC, - STATE(327), 1, - aux_sym_dis_expr_repeat1, - STATE(599), 1, + STATE(783), 1, sym_sym_lit, - STATE(779), 1, - sym__bare_set_lit, - STATE(784), 1, + STATE(786), 1, sym__bare_vec_lit, - STATE(1021), 1, + STATE(884), 1, + sym__bare_set_lit, + STATE(892), 1, + aux_sym_dis_expr_repeat1, + STATE(933), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1905), 1, + STATE(1867), 1, sym_dotted_sym_lit, - ACTIONS(558), 2, + ACTIONS(650), 2, sym__ws, sym_comment, - ACTIONS(598), 2, + ACTIONS(1264), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1708), 2, + ACTIONS(1544), 2, sym_num_lit, sym_char_lit, - ACTIONS(1710), 2, + ACTIONS(1546), 2, sym_nil_lit, sym_fancy_literal, - STATE(945), 2, + STATE(898), 2, sym__gap, sym_dis_expr, - STATE(786), 3, + STATE(787), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(623), 18, + STATE(869), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -39652,90 +39762,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [45476] = 38, + [45658] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(606), 1, + ACTIONS(518), 1, + anon_sym_COLON, + ACTIONS(520), 1, + anon_sym_COLON_COLON, + ACTIONS(522), 1, aux_sym_str_lit_token1, - ACTIONS(610), 1, + ACTIONS(526), 1, aux_sym_sym_lit_token1, - ACTIONS(612), 1, + ACTIONS(528), 1, anon_sym_LPAREN, - ACTIONS(614), 1, + ACTIONS(530), 1, anon_sym_POUND0A, - ACTIONS(616), 1, + ACTIONS(532), 1, anon_sym_POUND, - ACTIONS(618), 1, + ACTIONS(534), 1, anon_sym_POUND_QMARK, - ACTIONS(620), 1, + ACTIONS(536), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(622), 1, - anon_sym_COLON_COLON, - ACTIONS(624), 1, + ACTIONS(538), 1, anon_sym_POUND_SQUOTE, - ACTIONS(626), 1, + ACTIONS(540), 1, anon_sym_POUND_POUND, - ACTIONS(628), 1, + ACTIONS(542), 1, anon_sym_POUND_EQ, - ACTIONS(630), 1, + ACTIONS(544), 1, anon_sym_AT, - ACTIONS(632), 1, + ACTIONS(546), 1, anon_sym_SQUOTE, - ACTIONS(634), 1, + ACTIONS(548), 1, anon_sym_BQUOTE, - ACTIONS(636), 1, + ACTIONS(550), 1, anon_sym_COMMA_AT, - ACTIONS(638), 1, + ACTIONS(552), 1, anon_sym_COMMA, - ACTIONS(640), 1, - anon_sym_COLON, - ACTIONS(644), 1, + ACTIONS(556), 1, anon_sym_POUNDC, - ACTIONS(1094), 1, + ACTIONS(1154), 1, anon_sym_DOT, - STATE(949), 1, + STATE(909), 1, sym_sym_lit, - STATE(963), 1, + STATE(922), 1, sym__bare_set_lit, - STATE(964), 1, + STATE(931), 1, sym__bare_vec_lit, - STATE(967), 1, + STATE(936), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1911), 1, + STATE(1865), 1, sym_dotted_sym_lit, - ACTIONS(642), 2, + ACTIONS(554), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1092), 2, + ACTIONS(1152), 2, sym__ws, sym_comment, - ACTIONS(1712), 2, + ACTIONS(1780), 2, sym_num_lit, sym_char_lit, - ACTIONS(1714), 2, + ACTIONS(1782), 2, sym_nil_lit, sym_fancy_literal, - STATE(1917), 2, + STATE(1872), 2, sym__gap, sym_dis_expr, - STATE(965), 3, + STATE(930), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1102), 18, + STATE(1061), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -39753,68 +39864,68 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [45615] = 38, + [45798] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, ACTIONS(562), 1, - aux_sym_str_lit_token1, + anon_sym_COLON, + ACTIONS(564), 1, + anon_sym_COLON_COLON, ACTIONS(566), 1, - aux_sym_sym_lit_token1, - ACTIONS(568), 1, - anon_sym_LPAREN, + aux_sym_str_lit_token1, ACTIONS(570), 1, - anon_sym_POUND0A, + aux_sym_sym_lit_token1, ACTIONS(572), 1, - anon_sym_POUND, + anon_sym_LPAREN, ACTIONS(574), 1, - anon_sym_POUND_QMARK, + anon_sym_POUND0A, ACTIONS(576), 1, - anon_sym_POUND_QMARK_AT, + anon_sym_POUND, ACTIONS(578), 1, - anon_sym_COLON_COLON, + anon_sym_POUND_QMARK, ACTIONS(580), 1, - anon_sym_POUND_SQUOTE, + anon_sym_POUND_QMARK_AT, ACTIONS(582), 1, - anon_sym_POUND_POUND, + anon_sym_POUND_SQUOTE, ACTIONS(584), 1, - anon_sym_POUND_EQ, + anon_sym_POUND_POUND, ACTIONS(586), 1, - anon_sym_AT, + anon_sym_POUND_EQ, ACTIONS(588), 1, - anon_sym_SQUOTE, + anon_sym_AT, ACTIONS(590), 1, - anon_sym_BQUOTE, + anon_sym_SQUOTE, ACTIONS(592), 1, - anon_sym_COMMA_AT, + anon_sym_BQUOTE, ACTIONS(594), 1, - anon_sym_COMMA, + anon_sym_COMMA_AT, ACTIONS(596), 1, - anon_sym_COLON, + anon_sym_COMMA, ACTIONS(600), 1, anon_sym_POUNDC, - STATE(328), 1, + STATE(892), 1, aux_sym_dis_expr_repeat1, - STATE(599), 1, + STATE(924), 1, sym_sym_lit, - STATE(779), 1, - sym__bare_set_lit, - STATE(784), 1, - sym__bare_vec_lit, - STATE(1021), 1, + STATE(926), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1068), 1, + sym__bare_vec_lit, + STATE(1069), 1, + sym__bare_set_lit, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1905), 1, + STATE(1861), 1, sym_dotted_sym_lit, ACTIONS(558), 2, sym__ws, @@ -39822,21 +39933,22 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(598), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1716), 2, + ACTIONS(1784), 2, sym_num_lit, sym_char_lit, - ACTIONS(1718), 2, + ACTIONS(1786), 2, sym_nil_lit, sym_fancy_literal, - STATE(945), 2, + STATE(902), 2, sym__gap, sym_dis_expr, - STATE(786), 3, + STATE(1067), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(621), 18, + STATE(1106), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -39854,90 +39966,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [45754] = 38, + [45938] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(19), 1, - anon_sym_CARET, - ACTIONS(21), 1, - anon_sym_POUND_CARET, - ACTIONS(562), 1, + ACTIONS(17), 1, aux_sym_str_lit_token1, - ACTIONS(566), 1, + ACTIONS(21), 1, aux_sym_sym_lit_token1, - ACTIONS(568), 1, + ACTIONS(23), 1, + anon_sym_CARET, + ACTIONS(25), 1, + anon_sym_POUND_CARET, + ACTIONS(27), 1, anon_sym_LPAREN, - ACTIONS(570), 1, + ACTIONS(29), 1, anon_sym_POUND0A, - ACTIONS(572), 1, + ACTIONS(31), 1, anon_sym_POUND, - ACTIONS(574), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(576), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(578), 1, - anon_sym_COLON_COLON, - ACTIONS(580), 1, - anon_sym_POUND_SQUOTE, - ACTIONS(582), 1, + ACTIONS(39), 1, anon_sym_POUND_POUND, - ACTIONS(584), 1, + ACTIONS(41), 1, anon_sym_POUND_EQ, - ACTIONS(586), 1, + ACTIONS(47), 1, + anon_sym_BQUOTE, + ACTIONS(55), 1, + anon_sym_POUNDC, + ACTIONS(1248), 1, + anon_sym_COLON, + ACTIONS(1250), 1, + anon_sym_COLON_COLON, + ACTIONS(1254), 1, + anon_sym_POUND_SQUOTE, + ACTIONS(1256), 1, anon_sym_AT, - ACTIONS(588), 1, + ACTIONS(1258), 1, anon_sym_SQUOTE, - ACTIONS(590), 1, - anon_sym_BQUOTE, - ACTIONS(592), 1, + ACTIONS(1260), 1, anon_sym_COMMA_AT, - ACTIONS(594), 1, + ACTIONS(1262), 1, anon_sym_COMMA, - ACTIONS(596), 1, - anon_sym_COLON, - ACTIONS(600), 1, - anon_sym_POUNDC, - STATE(331), 1, + STATE(335), 1, aux_sym_dis_expr_repeat1, - STATE(599), 1, + STATE(783), 1, sym_sym_lit, - STATE(779), 1, - sym__bare_set_lit, - STATE(784), 1, + STATE(786), 1, sym__bare_vec_lit, - STATE(1021), 1, + STATE(884), 1, + sym__bare_set_lit, + STATE(933), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1905), 1, + STATE(1867), 1, sym_dotted_sym_lit, - ACTIONS(558), 2, + ACTIONS(650), 2, sym__ws, sym_comment, - ACTIONS(598), 2, + ACTIONS(1264), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1720), 2, + ACTIONS(1404), 2, sym_num_lit, sym_char_lit, - ACTIONS(1722), 2, + ACTIONS(1406), 2, sym_nil_lit, sym_fancy_literal, - STATE(945), 2, + STATE(898), 2, sym__gap, sym_dis_expr, - STATE(786), 3, + STATE(787), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(616), 18, + STATE(821), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -39955,90 +40068,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [45893] = 38, + [46078] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(606), 1, + ACTIONS(518), 1, + anon_sym_COLON, + ACTIONS(520), 1, + anon_sym_COLON_COLON, + ACTIONS(522), 1, aux_sym_str_lit_token1, - ACTIONS(610), 1, + ACTIONS(526), 1, aux_sym_sym_lit_token1, - ACTIONS(612), 1, + ACTIONS(528), 1, anon_sym_LPAREN, - ACTIONS(614), 1, + ACTIONS(530), 1, anon_sym_POUND0A, - ACTIONS(616), 1, + ACTIONS(532), 1, anon_sym_POUND, - ACTIONS(618), 1, + ACTIONS(534), 1, anon_sym_POUND_QMARK, - ACTIONS(620), 1, + ACTIONS(536), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(622), 1, - anon_sym_COLON_COLON, - ACTIONS(624), 1, + ACTIONS(538), 1, anon_sym_POUND_SQUOTE, - ACTIONS(626), 1, + ACTIONS(540), 1, anon_sym_POUND_POUND, - ACTIONS(628), 1, + ACTIONS(542), 1, anon_sym_POUND_EQ, - ACTIONS(630), 1, + ACTIONS(544), 1, anon_sym_AT, - ACTIONS(632), 1, + ACTIONS(546), 1, anon_sym_SQUOTE, - ACTIONS(634), 1, + ACTIONS(548), 1, anon_sym_BQUOTE, - ACTIONS(636), 1, + ACTIONS(550), 1, anon_sym_COMMA_AT, - ACTIONS(638), 1, + ACTIONS(552), 1, anon_sym_COMMA, - ACTIONS(640), 1, - anon_sym_COLON, - ACTIONS(644), 1, + ACTIONS(556), 1, anon_sym_POUNDC, - ACTIONS(1094), 1, + ACTIONS(1154), 1, anon_sym_DOT, - STATE(949), 1, + STATE(909), 1, sym_sym_lit, - STATE(963), 1, + STATE(922), 1, sym__bare_set_lit, - STATE(964), 1, + STATE(931), 1, sym__bare_vec_lit, - STATE(967), 1, + STATE(936), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1911), 1, + STATE(1865), 1, sym_dotted_sym_lit, - ACTIONS(642), 2, + ACTIONS(554), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1092), 2, + ACTIONS(1152), 2, sym__ws, sym_comment, - ACTIONS(1724), 2, + ACTIONS(1788), 2, sym_num_lit, sym_char_lit, - ACTIONS(1726), 2, + ACTIONS(1790), 2, sym_nil_lit, sym_fancy_literal, - STATE(1917), 2, + STATE(1872), 2, sym__gap, sym_dis_expr, - STATE(965), 3, + STATE(930), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1101), 18, + STATE(1062), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -40056,90 +40170,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [46032] = 38, + [46218] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(19), 1, - anon_sym_CARET, - ACTIONS(21), 1, - anon_sym_POUND_CARET, - ACTIONS(562), 1, + ACTIONS(17), 1, aux_sym_str_lit_token1, - ACTIONS(566), 1, + ACTIONS(21), 1, aux_sym_sym_lit_token1, - ACTIONS(568), 1, + ACTIONS(23), 1, + anon_sym_CARET, + ACTIONS(25), 1, + anon_sym_POUND_CARET, + ACTIONS(27), 1, anon_sym_LPAREN, - ACTIONS(570), 1, + ACTIONS(29), 1, anon_sym_POUND0A, - ACTIONS(572), 1, + ACTIONS(31), 1, anon_sym_POUND, - ACTIONS(574), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(576), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(578), 1, - anon_sym_COLON_COLON, - ACTIONS(580), 1, - anon_sym_POUND_SQUOTE, - ACTIONS(582), 1, + ACTIONS(39), 1, anon_sym_POUND_POUND, - ACTIONS(584), 1, + ACTIONS(41), 1, anon_sym_POUND_EQ, - ACTIONS(586), 1, + ACTIONS(47), 1, + anon_sym_BQUOTE, + ACTIONS(55), 1, + anon_sym_POUNDC, + ACTIONS(1248), 1, + anon_sym_COLON, + ACTIONS(1250), 1, + anon_sym_COLON_COLON, + ACTIONS(1254), 1, + anon_sym_POUND_SQUOTE, + ACTIONS(1256), 1, anon_sym_AT, - ACTIONS(588), 1, + ACTIONS(1258), 1, anon_sym_SQUOTE, - ACTIONS(590), 1, - anon_sym_BQUOTE, - ACTIONS(592), 1, + ACTIONS(1260), 1, anon_sym_COMMA_AT, - ACTIONS(594), 1, + ACTIONS(1262), 1, anon_sym_COMMA, - ACTIONS(596), 1, - anon_sym_COLON, - ACTIONS(600), 1, - anon_sym_POUNDC, - STATE(334), 1, - aux_sym_dis_expr_repeat1, - STATE(599), 1, + STATE(783), 1, sym_sym_lit, - STATE(779), 1, - sym__bare_set_lit, - STATE(784), 1, + STATE(786), 1, sym__bare_vec_lit, - STATE(1021), 1, + STATE(884), 1, + sym__bare_set_lit, + STATE(892), 1, + aux_sym_dis_expr_repeat1, + STATE(933), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1905), 1, + STATE(1867), 1, sym_dotted_sym_lit, - ACTIONS(558), 2, + ACTIONS(650), 2, sym__ws, sym_comment, - ACTIONS(598), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(1728), 2, + ACTIONS(768), 2, sym_num_lit, sym_char_lit, - ACTIONS(1730), 2, + ACTIONS(770), 2, sym_nil_lit, sym_fancy_literal, - STATE(945), 2, + ACTIONS(1264), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + STATE(898), 2, sym__gap, sym_dis_expr, - STATE(786), 3, + STATE(787), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(611), 18, + STATE(831), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -40157,68 +40272,68 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [46171] = 38, + [46358] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, ACTIONS(562), 1, - aux_sym_str_lit_token1, + anon_sym_COLON, + ACTIONS(564), 1, + anon_sym_COLON_COLON, ACTIONS(566), 1, - aux_sym_sym_lit_token1, - ACTIONS(568), 1, - anon_sym_LPAREN, + aux_sym_str_lit_token1, ACTIONS(570), 1, - anon_sym_POUND0A, + aux_sym_sym_lit_token1, ACTIONS(572), 1, - anon_sym_POUND, + anon_sym_LPAREN, ACTIONS(574), 1, - anon_sym_POUND_QMARK, + anon_sym_POUND0A, ACTIONS(576), 1, - anon_sym_POUND_QMARK_AT, + anon_sym_POUND, ACTIONS(578), 1, - anon_sym_COLON_COLON, + anon_sym_POUND_QMARK, ACTIONS(580), 1, - anon_sym_POUND_SQUOTE, + anon_sym_POUND_QMARK_AT, ACTIONS(582), 1, - anon_sym_POUND_POUND, + anon_sym_POUND_SQUOTE, ACTIONS(584), 1, - anon_sym_POUND_EQ, + anon_sym_POUND_POUND, ACTIONS(586), 1, - anon_sym_AT, + anon_sym_POUND_EQ, ACTIONS(588), 1, - anon_sym_SQUOTE, + anon_sym_AT, ACTIONS(590), 1, - anon_sym_BQUOTE, + anon_sym_SQUOTE, ACTIONS(592), 1, - anon_sym_COMMA_AT, + anon_sym_BQUOTE, ACTIONS(594), 1, - anon_sym_COMMA, + anon_sym_COMMA_AT, ACTIONS(596), 1, - anon_sym_COLON, + anon_sym_COMMA, ACTIONS(600), 1, anon_sym_POUNDC, - STATE(599), 1, - sym_sym_lit, - STATE(779), 1, - sym__bare_set_lit, - STATE(784), 1, - sym__bare_vec_lit, - STATE(930), 1, + STATE(892), 1, aux_sym_dis_expr_repeat1, - STATE(1021), 1, + STATE(924), 1, + sym_sym_lit, + STATE(926), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1068), 1, + sym__bare_vec_lit, + STATE(1069), 1, + sym__bare_set_lit, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1905), 1, + STATE(1861), 1, sym_dotted_sym_lit, ACTIONS(558), 2, sym__ws, @@ -40226,21 +40341,22 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(598), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1732), 2, + ACTIONS(1792), 2, sym_num_lit, sym_char_lit, - ACTIONS(1734), 2, + ACTIONS(1794), 2, sym_nil_lit, sym_fancy_literal, - STATE(945), 2, + STATE(902), 2, sym__gap, sym_dis_expr, - STATE(786), 3, + STATE(1067), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(610), 18, + STATE(1105), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -40258,90 +40374,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [46310] = 38, + [46498] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(19), 1, - anon_sym_CARET, - ACTIONS(21), 1, - anon_sym_POUND_CARET, - ACTIONS(562), 1, + ACTIONS(17), 1, aux_sym_str_lit_token1, - ACTIONS(566), 1, + ACTIONS(21), 1, aux_sym_sym_lit_token1, - ACTIONS(568), 1, + ACTIONS(23), 1, + anon_sym_CARET, + ACTIONS(25), 1, + anon_sym_POUND_CARET, + ACTIONS(27), 1, anon_sym_LPAREN, - ACTIONS(570), 1, + ACTIONS(29), 1, anon_sym_POUND0A, - ACTIONS(572), 1, + ACTIONS(31), 1, anon_sym_POUND, - ACTIONS(574), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(576), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(578), 1, - anon_sym_COLON_COLON, - ACTIONS(580), 1, - anon_sym_POUND_SQUOTE, - ACTIONS(582), 1, + ACTIONS(39), 1, anon_sym_POUND_POUND, - ACTIONS(584), 1, + ACTIONS(41), 1, anon_sym_POUND_EQ, - ACTIONS(586), 1, + ACTIONS(47), 1, + anon_sym_BQUOTE, + ACTIONS(55), 1, + anon_sym_POUNDC, + ACTIONS(1248), 1, + anon_sym_COLON, + ACTIONS(1250), 1, + anon_sym_COLON_COLON, + ACTIONS(1254), 1, + anon_sym_POUND_SQUOTE, + ACTIONS(1256), 1, anon_sym_AT, - ACTIONS(588), 1, + ACTIONS(1258), 1, anon_sym_SQUOTE, - ACTIONS(590), 1, - anon_sym_BQUOTE, - ACTIONS(592), 1, + ACTIONS(1260), 1, anon_sym_COMMA_AT, - ACTIONS(594), 1, + ACTIONS(1262), 1, anon_sym_COMMA, - ACTIONS(596), 1, - anon_sym_COLON, - ACTIONS(600), 1, - anon_sym_POUNDC, - STATE(599), 1, + STATE(783), 1, sym_sym_lit, - STATE(779), 1, - sym__bare_set_lit, - STATE(784), 1, + STATE(786), 1, sym__bare_vec_lit, - STATE(930), 1, + STATE(884), 1, + sym__bare_set_lit, + STATE(892), 1, aux_sym_dis_expr_repeat1, - STATE(1021), 1, + STATE(933), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1905), 1, + STATE(1867), 1, sym_dotted_sym_lit, - ACTIONS(558), 2, + ACTIONS(650), 2, sym__ws, sym_comment, - ACTIONS(598), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(1736), 2, + ACTIONS(776), 2, sym_num_lit, sym_char_lit, - ACTIONS(1738), 2, + ACTIONS(778), 2, sym_nil_lit, sym_fancy_literal, - STATE(945), 2, + ACTIONS(1264), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + STATE(898), 2, sym__gap, sym_dis_expr, - STATE(786), 3, + STATE(787), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(609), 18, + STATE(830), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -40359,90 +40476,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [46449] = 38, + [46638] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(19), 1, - anon_sym_CARET, - ACTIONS(21), 1, - anon_sym_POUND_CARET, - ACTIONS(562), 1, + ACTIONS(17), 1, aux_sym_str_lit_token1, - ACTIONS(566), 1, + ACTIONS(21), 1, aux_sym_sym_lit_token1, - ACTIONS(568), 1, + ACTIONS(23), 1, + anon_sym_CARET, + ACTIONS(25), 1, + anon_sym_POUND_CARET, + ACTIONS(27), 1, anon_sym_LPAREN, - ACTIONS(570), 1, + ACTIONS(29), 1, anon_sym_POUND0A, - ACTIONS(572), 1, + ACTIONS(31), 1, anon_sym_POUND, - ACTIONS(574), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(576), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(578), 1, - anon_sym_COLON_COLON, - ACTIONS(580), 1, - anon_sym_POUND_SQUOTE, - ACTIONS(582), 1, + ACTIONS(39), 1, anon_sym_POUND_POUND, - ACTIONS(584), 1, + ACTIONS(41), 1, anon_sym_POUND_EQ, - ACTIONS(586), 1, + ACTIONS(47), 1, + anon_sym_BQUOTE, + ACTIONS(55), 1, + anon_sym_POUNDC, + ACTIONS(1248), 1, + anon_sym_COLON, + ACTIONS(1250), 1, + anon_sym_COLON_COLON, + ACTIONS(1254), 1, + anon_sym_POUND_SQUOTE, + ACTIONS(1256), 1, anon_sym_AT, - ACTIONS(588), 1, + ACTIONS(1258), 1, anon_sym_SQUOTE, - ACTIONS(590), 1, - anon_sym_BQUOTE, - ACTIONS(592), 1, + ACTIONS(1260), 1, anon_sym_COMMA_AT, - ACTIONS(594), 1, + ACTIONS(1262), 1, anon_sym_COMMA, - ACTIONS(596), 1, - anon_sym_COLON, - ACTIONS(600), 1, - anon_sym_POUNDC, - STATE(599), 1, + STATE(783), 1, sym_sym_lit, - STATE(779), 1, - sym__bare_set_lit, - STATE(784), 1, + STATE(786), 1, sym__bare_vec_lit, - STATE(930), 1, + STATE(884), 1, + sym__bare_set_lit, + STATE(892), 1, aux_sym_dis_expr_repeat1, - STATE(1021), 1, + STATE(933), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1905), 1, + STATE(1867), 1, sym_dotted_sym_lit, - ACTIONS(558), 2, + ACTIONS(650), 2, sym__ws, sym_comment, - ACTIONS(598), 2, + ACTIONS(1264), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1740), 2, + ACTIONS(1400), 2, sym_num_lit, sym_char_lit, - ACTIONS(1742), 2, + ACTIONS(1402), 2, sym_nil_lit, sym_fancy_literal, - STATE(945), 2, + STATE(898), 2, sym__gap, sym_dis_expr, - STATE(786), 3, + STATE(787), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(607), 18, + STATE(820), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -40460,90 +40578,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [46588] = 38, + [46778] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(19), 1, - anon_sym_CARET, - ACTIONS(21), 1, - anon_sym_POUND_CARET, - ACTIONS(562), 1, + ACTIONS(17), 1, aux_sym_str_lit_token1, - ACTIONS(566), 1, + ACTIONS(21), 1, aux_sym_sym_lit_token1, - ACTIONS(568), 1, + ACTIONS(23), 1, + anon_sym_CARET, + ACTIONS(25), 1, + anon_sym_POUND_CARET, + ACTIONS(27), 1, anon_sym_LPAREN, - ACTIONS(570), 1, + ACTIONS(29), 1, anon_sym_POUND0A, - ACTIONS(572), 1, + ACTIONS(31), 1, anon_sym_POUND, - ACTIONS(574), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(576), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(578), 1, - anon_sym_COLON_COLON, - ACTIONS(580), 1, - anon_sym_POUND_SQUOTE, - ACTIONS(582), 1, + ACTIONS(39), 1, anon_sym_POUND_POUND, - ACTIONS(584), 1, + ACTIONS(41), 1, anon_sym_POUND_EQ, - ACTIONS(586), 1, + ACTIONS(47), 1, + anon_sym_BQUOTE, + ACTIONS(55), 1, + anon_sym_POUNDC, + ACTIONS(1248), 1, + anon_sym_COLON, + ACTIONS(1250), 1, + anon_sym_COLON_COLON, + ACTIONS(1254), 1, + anon_sym_POUND_SQUOTE, + ACTIONS(1256), 1, anon_sym_AT, - ACTIONS(588), 1, + ACTIONS(1258), 1, anon_sym_SQUOTE, - ACTIONS(590), 1, - anon_sym_BQUOTE, - ACTIONS(592), 1, + ACTIONS(1260), 1, anon_sym_COMMA_AT, - ACTIONS(594), 1, + ACTIONS(1262), 1, anon_sym_COMMA, - ACTIONS(596), 1, - anon_sym_COLON, - ACTIONS(600), 1, - anon_sym_POUNDC, - STATE(599), 1, + STATE(381), 1, + aux_sym_dis_expr_repeat1, + STATE(783), 1, sym_sym_lit, - STATE(779), 1, - sym__bare_set_lit, - STATE(784), 1, + STATE(786), 1, sym__bare_vec_lit, - STATE(930), 1, - aux_sym_dis_expr_repeat1, - STATE(1021), 1, + STATE(884), 1, + sym__bare_set_lit, + STATE(933), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1905), 1, + STATE(1867), 1, sym_dotted_sym_lit, - ACTIONS(558), 2, + ACTIONS(650), 2, sym__ws, sym_comment, - ACTIONS(598), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(1744), 2, + ACTIONS(780), 2, sym_num_lit, sym_char_lit, - ACTIONS(1746), 2, + ACTIONS(782), 2, sym_nil_lit, sym_fancy_literal, - STATE(945), 2, + ACTIONS(1264), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + STATE(898), 2, sym__gap, sym_dis_expr, - STATE(786), 3, + STATE(787), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(714), 18, + STATE(829), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -40561,90 +40680,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [46727] = 38, + [46918] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(562), 1, + ACTIONS(1170), 1, + anon_sym_COLON, + ACTIONS(1172), 1, + anon_sym_COLON_COLON, + ACTIONS(1174), 1, aux_sym_str_lit_token1, - ACTIONS(566), 1, + ACTIONS(1178), 1, aux_sym_sym_lit_token1, - ACTIONS(568), 1, + ACTIONS(1180), 1, anon_sym_LPAREN, - ACTIONS(570), 1, + ACTIONS(1182), 1, anon_sym_POUND0A, - ACTIONS(572), 1, + ACTIONS(1184), 1, anon_sym_POUND, - ACTIONS(574), 1, + ACTIONS(1186), 1, anon_sym_POUND_QMARK, - ACTIONS(576), 1, + ACTIONS(1188), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(578), 1, - anon_sym_COLON_COLON, - ACTIONS(580), 1, + ACTIONS(1190), 1, anon_sym_POUND_SQUOTE, - ACTIONS(582), 1, + ACTIONS(1192), 1, anon_sym_POUND_POUND, - ACTIONS(584), 1, + ACTIONS(1194), 1, anon_sym_POUND_EQ, - ACTIONS(586), 1, + ACTIONS(1196), 1, anon_sym_AT, - ACTIONS(588), 1, + ACTIONS(1198), 1, anon_sym_SQUOTE, - ACTIONS(590), 1, + ACTIONS(1200), 1, anon_sym_BQUOTE, - ACTIONS(592), 1, + ACTIONS(1202), 1, anon_sym_COMMA_AT, - ACTIONS(594), 1, + ACTIONS(1204), 1, anon_sym_COMMA, - ACTIONS(596), 1, - anon_sym_COLON, - ACTIONS(600), 1, + ACTIONS(1208), 1, anon_sym_POUNDC, - STATE(599), 1, - sym_sym_lit, - STATE(779), 1, - sym__bare_set_lit, - STATE(784), 1, - sym__bare_vec_lit, - STATE(930), 1, + STATE(293), 1, aux_sym_dis_expr_repeat1, - STATE(1021), 1, + STATE(950), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1173), 1, + sym_sym_lit, + STATE(1226), 1, + sym__bare_set_lit, + STATE(1230), 1, + sym__bare_vec_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1905), 1, + STATE(1864), 1, sym_dotted_sym_lit, - ACTIONS(558), 2, - sym__ws, - sym_comment, - ACTIONS(598), 2, + ACTIONS(1206), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1748), 2, + ACTIONS(1298), 2, + sym__ws, + sym_comment, + ACTIONS(1796), 2, sym_num_lit, sym_char_lit, - ACTIONS(1750), 2, + ACTIONS(1798), 2, sym_nil_lit, sym_fancy_literal, - STATE(945), 2, + STATE(907), 2, sym__gap, sym_dis_expr, - STATE(786), 3, + STATE(1231), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(748), 18, + STATE(1276), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -40662,90 +40782,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [46866] = 38, + [47058] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(562), 1, + ACTIONS(1170), 1, + anon_sym_COLON, + ACTIONS(1172), 1, + anon_sym_COLON_COLON, + ACTIONS(1174), 1, aux_sym_str_lit_token1, - ACTIONS(566), 1, + ACTIONS(1178), 1, aux_sym_sym_lit_token1, - ACTIONS(568), 1, + ACTIONS(1180), 1, anon_sym_LPAREN, - ACTIONS(570), 1, + ACTIONS(1182), 1, anon_sym_POUND0A, - ACTIONS(572), 1, + ACTIONS(1184), 1, anon_sym_POUND, - ACTIONS(574), 1, + ACTIONS(1186), 1, anon_sym_POUND_QMARK, - ACTIONS(576), 1, + ACTIONS(1188), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(578), 1, - anon_sym_COLON_COLON, - ACTIONS(580), 1, + ACTIONS(1190), 1, anon_sym_POUND_SQUOTE, - ACTIONS(582), 1, + ACTIONS(1192), 1, anon_sym_POUND_POUND, - ACTIONS(584), 1, + ACTIONS(1194), 1, anon_sym_POUND_EQ, - ACTIONS(586), 1, + ACTIONS(1196), 1, anon_sym_AT, - ACTIONS(588), 1, + ACTIONS(1198), 1, anon_sym_SQUOTE, - ACTIONS(590), 1, + ACTIONS(1200), 1, anon_sym_BQUOTE, - ACTIONS(592), 1, + ACTIONS(1202), 1, anon_sym_COMMA_AT, - ACTIONS(594), 1, + ACTIONS(1204), 1, anon_sym_COMMA, - ACTIONS(596), 1, - anon_sym_COLON, - ACTIONS(600), 1, + ACTIONS(1208), 1, anon_sym_POUNDC, - STATE(599), 1, - sym_sym_lit, - STATE(779), 1, - sym__bare_set_lit, - STATE(784), 1, - sym__bare_vec_lit, - STATE(930), 1, + STATE(301), 1, aux_sym_dis_expr_repeat1, - STATE(1021), 1, + STATE(950), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1173), 1, + sym_sym_lit, + STATE(1226), 1, + sym__bare_set_lit, + STATE(1230), 1, + sym__bare_vec_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1905), 1, + STATE(1864), 1, sym_dotted_sym_lit, - ACTIONS(558), 2, - sym__ws, - sym_comment, - ACTIONS(598), 2, + ACTIONS(1206), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1752), 2, + ACTIONS(1298), 2, + sym__ws, + sym_comment, + ACTIONS(1800), 2, sym_num_lit, sym_char_lit, - ACTIONS(1754), 2, + ACTIONS(1802), 2, sym_nil_lit, sym_fancy_literal, - STATE(945), 2, + STATE(907), 2, sym__gap, sym_dis_expr, - STATE(786), 3, + STATE(1231), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(704), 18, + STATE(1274), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -40763,90 +40884,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [47005] = 38, + [47198] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(19), 1, - anon_sym_CARET, - ACTIONS(21), 1, - anon_sym_POUND_CARET, - ACTIONS(562), 1, + ACTIONS(17), 1, aux_sym_str_lit_token1, - ACTIONS(566), 1, + ACTIONS(21), 1, aux_sym_sym_lit_token1, - ACTIONS(568), 1, + ACTIONS(23), 1, + anon_sym_CARET, + ACTIONS(25), 1, + anon_sym_POUND_CARET, + ACTIONS(27), 1, anon_sym_LPAREN, - ACTIONS(570), 1, + ACTIONS(29), 1, anon_sym_POUND0A, - ACTIONS(572), 1, + ACTIONS(31), 1, anon_sym_POUND, - ACTIONS(574), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(576), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(578), 1, - anon_sym_COLON_COLON, - ACTIONS(580), 1, - anon_sym_POUND_SQUOTE, - ACTIONS(582), 1, + ACTIONS(39), 1, anon_sym_POUND_POUND, - ACTIONS(584), 1, + ACTIONS(41), 1, anon_sym_POUND_EQ, - ACTIONS(586), 1, + ACTIONS(47), 1, + anon_sym_BQUOTE, + ACTIONS(55), 1, + anon_sym_POUNDC, + ACTIONS(1248), 1, + anon_sym_COLON, + ACTIONS(1250), 1, + anon_sym_COLON_COLON, + ACTIONS(1254), 1, + anon_sym_POUND_SQUOTE, + ACTIONS(1256), 1, anon_sym_AT, - ACTIONS(588), 1, + ACTIONS(1258), 1, anon_sym_SQUOTE, - ACTIONS(590), 1, - anon_sym_BQUOTE, - ACTIONS(592), 1, + ACTIONS(1260), 1, anon_sym_COMMA_AT, - ACTIONS(594), 1, + ACTIONS(1262), 1, anon_sym_COMMA, - ACTIONS(596), 1, - anon_sym_COLON, - ACTIONS(600), 1, - anon_sym_POUNDC, - STATE(342), 1, + STATE(336), 1, aux_sym_dis_expr_repeat1, - STATE(599), 1, + STATE(783), 1, sym_sym_lit, - STATE(779), 1, - sym__bare_set_lit, - STATE(784), 1, + STATE(786), 1, sym__bare_vec_lit, - STATE(1021), 1, + STATE(884), 1, + sym__bare_set_lit, + STATE(933), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1905), 1, + STATE(1867), 1, sym_dotted_sym_lit, - ACTIONS(558), 2, + ACTIONS(650), 2, sym__ws, sym_comment, - ACTIONS(598), 2, + ACTIONS(1264), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1756), 2, + ACTIONS(1392), 2, sym_num_lit, sym_char_lit, - ACTIONS(1758), 2, + ACTIONS(1394), 2, sym_nil_lit, sym_fancy_literal, - STATE(945), 2, + STATE(898), 2, sym__gap, sym_dis_expr, - STATE(786), 3, + STATE(787), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(696), 18, + STATE(819), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -40864,90 +40986,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [47144] = 38, + [47338] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(562), 1, + ACTIONS(1170), 1, + anon_sym_COLON, + ACTIONS(1172), 1, + anon_sym_COLON_COLON, + ACTIONS(1174), 1, aux_sym_str_lit_token1, - ACTIONS(566), 1, + ACTIONS(1178), 1, aux_sym_sym_lit_token1, - ACTIONS(568), 1, + ACTIONS(1180), 1, anon_sym_LPAREN, - ACTIONS(570), 1, + ACTIONS(1182), 1, anon_sym_POUND0A, - ACTIONS(572), 1, + ACTIONS(1184), 1, anon_sym_POUND, - ACTIONS(574), 1, + ACTIONS(1186), 1, anon_sym_POUND_QMARK, - ACTIONS(576), 1, + ACTIONS(1188), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(578), 1, - anon_sym_COLON_COLON, - ACTIONS(580), 1, + ACTIONS(1190), 1, anon_sym_POUND_SQUOTE, - ACTIONS(582), 1, + ACTIONS(1192), 1, anon_sym_POUND_POUND, - ACTIONS(584), 1, + ACTIONS(1194), 1, anon_sym_POUND_EQ, - ACTIONS(586), 1, + ACTIONS(1196), 1, anon_sym_AT, - ACTIONS(588), 1, + ACTIONS(1198), 1, anon_sym_SQUOTE, - ACTIONS(590), 1, + ACTIONS(1200), 1, anon_sym_BQUOTE, - ACTIONS(592), 1, + ACTIONS(1202), 1, anon_sym_COMMA_AT, - ACTIONS(594), 1, + ACTIONS(1204), 1, anon_sym_COMMA, - ACTIONS(596), 1, - anon_sym_COLON, - ACTIONS(600), 1, + ACTIONS(1208), 1, anon_sym_POUNDC, - STATE(343), 1, + STATE(892), 1, aux_sym_dis_expr_repeat1, - STATE(599), 1, + STATE(950), 1, + aux_sym_sym_lit_repeat1, + STATE(1162), 1, + sym_meta_lit, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1173), 1, sym_sym_lit, - STATE(779), 1, + STATE(1226), 1, sym__bare_set_lit, - STATE(784), 1, + STATE(1230), 1, sym__bare_vec_lit, - STATE(1021), 1, - aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, - sym_meta_lit, - STATE(1369), 1, + STATE(1337), 1, sym__metadata_lit, - STATE(1905), 1, + STATE(1864), 1, sym_dotted_sym_lit, - ACTIONS(558), 2, - sym__ws, - sym_comment, - ACTIONS(598), 2, + ACTIONS(1206), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1760), 2, + ACTIONS(1298), 2, + sym__ws, + sym_comment, + ACTIONS(1804), 2, sym_num_lit, sym_char_lit, - ACTIONS(1762), 2, + ACTIONS(1806), 2, sym_nil_lit, sym_fancy_literal, - STATE(945), 2, + STATE(907), 2, sym__gap, sym_dis_expr, - STATE(786), 3, + STATE(1231), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(716), 18, + STATE(1273), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -40965,68 +41088,68 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [47283] = 38, + [47478] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, ACTIONS(562), 1, - aux_sym_str_lit_token1, + anon_sym_COLON, + ACTIONS(564), 1, + anon_sym_COLON_COLON, ACTIONS(566), 1, - aux_sym_sym_lit_token1, - ACTIONS(568), 1, - anon_sym_LPAREN, + aux_sym_str_lit_token1, ACTIONS(570), 1, - anon_sym_POUND0A, + aux_sym_sym_lit_token1, ACTIONS(572), 1, - anon_sym_POUND, + anon_sym_LPAREN, ACTIONS(574), 1, - anon_sym_POUND_QMARK, + anon_sym_POUND0A, ACTIONS(576), 1, - anon_sym_POUND_QMARK_AT, + anon_sym_POUND, ACTIONS(578), 1, - anon_sym_COLON_COLON, + anon_sym_POUND_QMARK, ACTIONS(580), 1, - anon_sym_POUND_SQUOTE, + anon_sym_POUND_QMARK_AT, ACTIONS(582), 1, - anon_sym_POUND_POUND, + anon_sym_POUND_SQUOTE, ACTIONS(584), 1, - anon_sym_POUND_EQ, + anon_sym_POUND_POUND, ACTIONS(586), 1, - anon_sym_AT, + anon_sym_POUND_EQ, ACTIONS(588), 1, - anon_sym_SQUOTE, + anon_sym_AT, ACTIONS(590), 1, - anon_sym_BQUOTE, + anon_sym_SQUOTE, ACTIONS(592), 1, - anon_sym_COMMA_AT, + anon_sym_BQUOTE, ACTIONS(594), 1, - anon_sym_COMMA, + anon_sym_COMMA_AT, ACTIONS(596), 1, - anon_sym_COLON, + anon_sym_COMMA, ACTIONS(600), 1, anon_sym_POUNDC, - STATE(344), 1, + STATE(892), 1, aux_sym_dis_expr_repeat1, - STATE(599), 1, + STATE(924), 1, sym_sym_lit, - STATE(779), 1, - sym__bare_set_lit, - STATE(784), 1, + STATE(926), 1, + aux_sym_sym_lit_repeat1, + STATE(1068), 1, sym__bare_vec_lit, - STATE(1021), 1, - aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1069), 1, + sym__bare_set_lit, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1905), 1, + STATE(1861), 1, sym_dotted_sym_lit, ACTIONS(558), 2, sym__ws, @@ -41034,21 +41157,22 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(598), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1764), 2, + ACTIONS(1808), 2, sym_num_lit, sym_char_lit, - ACTIONS(1766), 2, + ACTIONS(1810), 2, sym_nil_lit, sym_fancy_literal, - STATE(945), 2, + STATE(902), 2, sym__gap, sym_dis_expr, - STATE(786), 3, + STATE(1067), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(719), 18, + STATE(1103), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -41066,90 +41190,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [47422] = 38, + [47618] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(19), 1, - anon_sym_CARET, - ACTIONS(21), 1, - anon_sym_POUND_CARET, - ACTIONS(562), 1, + ACTIONS(17), 1, aux_sym_str_lit_token1, - ACTIONS(566), 1, + ACTIONS(21), 1, aux_sym_sym_lit_token1, - ACTIONS(568), 1, + ACTIONS(23), 1, + anon_sym_CARET, + ACTIONS(25), 1, + anon_sym_POUND_CARET, + ACTIONS(27), 1, anon_sym_LPAREN, - ACTIONS(570), 1, + ACTIONS(29), 1, anon_sym_POUND0A, - ACTIONS(572), 1, + ACTIONS(31), 1, anon_sym_POUND, - ACTIONS(574), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(576), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(578), 1, - anon_sym_COLON_COLON, - ACTIONS(580), 1, - anon_sym_POUND_SQUOTE, - ACTIONS(582), 1, + ACTIONS(39), 1, anon_sym_POUND_POUND, - ACTIONS(584), 1, + ACTIONS(41), 1, anon_sym_POUND_EQ, - ACTIONS(586), 1, + ACTIONS(47), 1, + anon_sym_BQUOTE, + ACTIONS(55), 1, + anon_sym_POUNDC, + ACTIONS(1248), 1, + anon_sym_COLON, + ACTIONS(1250), 1, + anon_sym_COLON_COLON, + ACTIONS(1254), 1, + anon_sym_POUND_SQUOTE, + ACTIONS(1256), 1, anon_sym_AT, - ACTIONS(588), 1, + ACTIONS(1258), 1, anon_sym_SQUOTE, - ACTIONS(590), 1, - anon_sym_BQUOTE, - ACTIONS(592), 1, + ACTIONS(1260), 1, anon_sym_COMMA_AT, - ACTIONS(594), 1, + ACTIONS(1262), 1, anon_sym_COMMA, - ACTIONS(596), 1, - anon_sym_COLON, - ACTIONS(600), 1, - anon_sym_POUNDC, - STATE(345), 1, - aux_sym_dis_expr_repeat1, - STATE(599), 1, + STATE(783), 1, sym_sym_lit, - STATE(779), 1, - sym__bare_set_lit, - STATE(784), 1, + STATE(786), 1, sym__bare_vec_lit, - STATE(1021), 1, + STATE(884), 1, + sym__bare_set_lit, + STATE(892), 1, + aux_sym_dis_expr_repeat1, + STATE(933), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1905), 1, + STATE(1867), 1, sym_dotted_sym_lit, - ACTIONS(558), 2, + ACTIONS(650), 2, sym__ws, sym_comment, - ACTIONS(598), 2, + ACTIONS(1264), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1768), 2, + ACTIONS(1388), 2, sym_num_lit, sym_char_lit, - ACTIONS(1770), 2, + ACTIONS(1390), 2, sym_nil_lit, sym_fancy_literal, - STATE(945), 2, + STATE(898), 2, sym__gap, sym_dis_expr, - STATE(786), 3, + STATE(787), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(720), 18, + STATE(818), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -41167,90 +41292,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [47561] = 38, + [47758] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(562), 1, + ACTIONS(1170), 1, + anon_sym_COLON, + ACTIONS(1172), 1, + anon_sym_COLON_COLON, + ACTIONS(1174), 1, aux_sym_str_lit_token1, - ACTIONS(566), 1, + ACTIONS(1178), 1, aux_sym_sym_lit_token1, - ACTIONS(568), 1, + ACTIONS(1180), 1, anon_sym_LPAREN, - ACTIONS(570), 1, + ACTIONS(1182), 1, anon_sym_POUND0A, - ACTIONS(572), 1, + ACTIONS(1184), 1, anon_sym_POUND, - ACTIONS(574), 1, + ACTIONS(1186), 1, anon_sym_POUND_QMARK, - ACTIONS(576), 1, + ACTIONS(1188), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(578), 1, - anon_sym_COLON_COLON, - ACTIONS(580), 1, + ACTIONS(1190), 1, anon_sym_POUND_SQUOTE, - ACTIONS(582), 1, + ACTIONS(1192), 1, anon_sym_POUND_POUND, - ACTIONS(584), 1, + ACTIONS(1194), 1, anon_sym_POUND_EQ, - ACTIONS(586), 1, + ACTIONS(1196), 1, anon_sym_AT, - ACTIONS(588), 1, + ACTIONS(1198), 1, anon_sym_SQUOTE, - ACTIONS(590), 1, + ACTIONS(1200), 1, anon_sym_BQUOTE, - ACTIONS(592), 1, + ACTIONS(1202), 1, anon_sym_COMMA_AT, - ACTIONS(594), 1, + ACTIONS(1204), 1, anon_sym_COMMA, - ACTIONS(596), 1, - anon_sym_COLON, - ACTIONS(600), 1, + ACTIONS(1208), 1, anon_sym_POUNDC, - STATE(346), 1, + STATE(892), 1, aux_sym_dis_expr_repeat1, - STATE(599), 1, + STATE(950), 1, + aux_sym_sym_lit_repeat1, + STATE(1162), 1, + sym_meta_lit, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1173), 1, sym_sym_lit, - STATE(779), 1, + STATE(1226), 1, sym__bare_set_lit, - STATE(784), 1, + STATE(1230), 1, sym__bare_vec_lit, - STATE(1021), 1, - aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, - sym_meta_lit, - STATE(1369), 1, + STATE(1337), 1, sym__metadata_lit, - STATE(1905), 1, + STATE(1864), 1, sym_dotted_sym_lit, - ACTIONS(558), 2, - sym__ws, - sym_comment, - ACTIONS(598), 2, + ACTIONS(1206), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1772), 2, + ACTIONS(1298), 2, + sym__ws, + sym_comment, + ACTIONS(1812), 2, sym_num_lit, sym_char_lit, - ACTIONS(1774), 2, + ACTIONS(1814), 2, sym_nil_lit, sym_fancy_literal, - STATE(945), 2, + STATE(907), 2, sym__gap, sym_dis_expr, - STATE(786), 3, + STATE(1231), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(743), 18, + STATE(1272), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -41268,90 +41394,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [47700] = 38, + [47898] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(13), 1, - aux_sym_str_lit_token1, ACTIONS(17), 1, - aux_sym_sym_lit_token1, - ACTIONS(19), 1, - anon_sym_CARET, + aux_sym_str_lit_token1, ACTIONS(21), 1, - anon_sym_POUND_CARET, + aux_sym_sym_lit_token1, ACTIONS(23), 1, - anon_sym_LPAREN, + anon_sym_CARET, ACTIONS(25), 1, - anon_sym_POUND0A, + anon_sym_POUND_CARET, ACTIONS(27), 1, - anon_sym_POUND, + anon_sym_LPAREN, ACTIONS(29), 1, - anon_sym_POUND_QMARK, + anon_sym_POUND0A, ACTIONS(31), 1, - anon_sym_POUND_QMARK_AT, + anon_sym_POUND, ACTIONS(33), 1, - anon_sym_COLON_COLON, + anon_sym_POUND_QMARK, ACTIONS(35), 1, - anon_sym_POUND_SQUOTE, - ACTIONS(37), 1, - anon_sym_POUND_POUND, + anon_sym_POUND_QMARK_AT, ACTIONS(39), 1, - anon_sym_POUND_EQ, + anon_sym_POUND_POUND, ACTIONS(41), 1, + anon_sym_POUND_EQ, + ACTIONS(47), 1, + anon_sym_BQUOTE, + ACTIONS(55), 1, + anon_sym_POUNDC, + ACTIONS(1248), 1, + anon_sym_COLON, + ACTIONS(1250), 1, + anon_sym_COLON_COLON, + ACTIONS(1254), 1, + anon_sym_POUND_SQUOTE, + ACTIONS(1256), 1, anon_sym_AT, - ACTIONS(43), 1, + ACTIONS(1258), 1, anon_sym_SQUOTE, - ACTIONS(45), 1, - anon_sym_BQUOTE, - ACTIONS(47), 1, + ACTIONS(1260), 1, anon_sym_COMMA_AT, - ACTIONS(49), 1, + ACTIONS(1262), 1, anon_sym_COMMA, - ACTIONS(51), 1, - anon_sym_COLON, - ACTIONS(55), 1, - anon_sym_POUNDC, - STATE(332), 1, - aux_sym_dis_expr_repeat1, - STATE(815), 1, + STATE(783), 1, sym_sym_lit, - STATE(838), 1, + STATE(786), 1, sym__bare_vec_lit, - STATE(841), 1, + STATE(884), 1, sym__bare_set_lit, - STATE(1047), 1, + STATE(892), 1, + aux_sym_dis_expr_repeat1, + STATE(933), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1909), 1, + STATE(1867), 1, sym_dotted_sym_lit, - ACTIONS(53), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(646), 2, + ACTIONS(650), 2, sym__ws, sym_comment, - ACTIONS(1776), 2, + ACTIONS(1264), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(1328), 2, sym_num_lit, sym_char_lit, - ACTIONS(1778), 2, + ACTIONS(1330), 2, sym_nil_lit, sym_fancy_literal, - STATE(942), 2, + STATE(898), 2, sym__gap, sym_dis_expr, - STATE(842), 3, + STATE(787), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(370), 18, + STATE(790), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -41369,90 +41496,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [47839] = 38, + [48038] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(1110), 1, + ACTIONS(660), 1, + anon_sym_COLON, + ACTIONS(662), 1, + anon_sym_COLON_COLON, + ACTIONS(664), 1, aux_sym_str_lit_token1, - ACTIONS(1114), 1, + ACTIONS(668), 1, aux_sym_sym_lit_token1, - ACTIONS(1116), 1, + ACTIONS(670), 1, anon_sym_LPAREN, - ACTIONS(1118), 1, + ACTIONS(672), 1, anon_sym_POUND0A, - ACTIONS(1120), 1, + ACTIONS(674), 1, anon_sym_POUND, - ACTIONS(1122), 1, + ACTIONS(676), 1, anon_sym_POUND_QMARK, - ACTIONS(1124), 1, + ACTIONS(678), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(1126), 1, - anon_sym_COLON_COLON, - ACTIONS(1128), 1, + ACTIONS(680), 1, anon_sym_POUND_SQUOTE, - ACTIONS(1130), 1, + ACTIONS(682), 1, anon_sym_POUND_POUND, - ACTIONS(1132), 1, + ACTIONS(684), 1, anon_sym_POUND_EQ, - ACTIONS(1134), 1, + ACTIONS(686), 1, anon_sym_AT, - ACTIONS(1136), 1, + ACTIONS(688), 1, anon_sym_SQUOTE, - ACTIONS(1138), 1, + ACTIONS(690), 1, anon_sym_BQUOTE, - ACTIONS(1140), 1, + ACTIONS(692), 1, anon_sym_COMMA_AT, - ACTIONS(1142), 1, + ACTIONS(694), 1, anon_sym_COMMA, - ACTIONS(1144), 1, - anon_sym_COLON, - ACTIONS(1148), 1, + ACTIONS(698), 1, anon_sym_POUNDC, - STATE(360), 1, - aux_sym_dis_expr_repeat1, - STATE(1067), 1, - aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, - sym_meta_lit, - STATE(1165), 1, + STATE(566), 1, sym_sym_lit, - STATE(1318), 1, + STATE(678), 1, sym__bare_set_lit, - STATE(1320), 1, + STATE(679), 1, sym__bare_vec_lit, - STATE(1369), 1, + STATE(892), 1, + aux_sym_dis_expr_repeat1, + STATE(925), 1, + aux_sym_sym_lit_repeat1, + STATE(1162), 1, + sym_meta_lit, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1904), 1, + STATE(1868), 1, sym_dotted_sym_lit, - ACTIONS(1146), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(1780), 2, + ACTIONS(656), 2, sym__ws, sym_comment, - ACTIONS(1782), 2, + ACTIONS(696), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(1816), 2, sym_num_lit, sym_char_lit, - ACTIONS(1784), 2, + ACTIONS(1818), 2, sym_nil_lit, sym_fancy_literal, - STATE(941), 2, + STATE(906), 2, sym__gap, sym_dis_expr, - STATE(1323), 3, + STATE(680), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1268), 18, + STATE(639), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -41470,90 +41598,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [47978] = 38, + [48178] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(19), 1, - anon_sym_CARET, - ACTIONS(21), 1, - anon_sym_POUND_CARET, - ACTIONS(1110), 1, + ACTIONS(13), 1, + anon_sym_COLON, + ACTIONS(15), 1, + anon_sym_COLON_COLON, + ACTIONS(17), 1, aux_sym_str_lit_token1, - ACTIONS(1114), 1, + ACTIONS(21), 1, aux_sym_sym_lit_token1, - ACTIONS(1116), 1, + ACTIONS(23), 1, + anon_sym_CARET, + ACTIONS(25), 1, + anon_sym_POUND_CARET, + ACTIONS(27), 1, anon_sym_LPAREN, - ACTIONS(1118), 1, + ACTIONS(29), 1, anon_sym_POUND0A, - ACTIONS(1120), 1, + ACTIONS(31), 1, anon_sym_POUND, - ACTIONS(1122), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(1124), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(1126), 1, - anon_sym_COLON_COLON, - ACTIONS(1128), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(1130), 1, + ACTIONS(39), 1, anon_sym_POUND_POUND, - ACTIONS(1132), 1, + ACTIONS(41), 1, anon_sym_POUND_EQ, - ACTIONS(1134), 1, + ACTIONS(43), 1, anon_sym_AT, - ACTIONS(1136), 1, + ACTIONS(45), 1, anon_sym_SQUOTE, - ACTIONS(1138), 1, + ACTIONS(47), 1, anon_sym_BQUOTE, - ACTIONS(1140), 1, + ACTIONS(49), 1, anon_sym_COMMA_AT, - ACTIONS(1142), 1, + ACTIONS(51), 1, anon_sym_COMMA, - ACTIONS(1144), 1, - anon_sym_COLON, - ACTIONS(1148), 1, + ACTIONS(55), 1, anon_sym_POUNDC, - STATE(361), 1, + STATE(780), 1, + sym_sym_lit, + STATE(786), 1, + sym__bare_vec_lit, + STATE(884), 1, + sym__bare_set_lit, + STATE(892), 1, aux_sym_dis_expr_repeat1, - STATE(1067), 1, + STATE(1033), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1165), 1, - sym_sym_lit, - STATE(1318), 1, - sym__bare_set_lit, - STATE(1320), 1, - sym__bare_vec_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1904), 1, + STATE(1863), 1, sym_dotted_sym_lit, - ACTIONS(1146), 2, + ACTIONS(53), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1780), 2, + ACTIONS(650), 2, sym__ws, sym_comment, - ACTIONS(1786), 2, + ACTIONS(1820), 2, sym_num_lit, sym_char_lit, - ACTIONS(1788), 2, + ACTIONS(1822), 2, sym_nil_lit, sym_fancy_literal, - STATE(941), 2, + STATE(898), 2, sym__gap, sym_dis_expr, - STATE(1323), 3, + STATE(787), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1263), 18, + STATE(263), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -41571,90 +41700,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [48117] = 38, + [48318] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(19), 1, - anon_sym_CARET, - ACTIONS(21), 1, - anon_sym_POUND_CARET, - ACTIONS(1110), 1, + ACTIONS(13), 1, + anon_sym_COLON, + ACTIONS(15), 1, + anon_sym_COLON_COLON, + ACTIONS(17), 1, aux_sym_str_lit_token1, - ACTIONS(1114), 1, + ACTIONS(21), 1, aux_sym_sym_lit_token1, - ACTIONS(1116), 1, + ACTIONS(23), 1, + anon_sym_CARET, + ACTIONS(25), 1, + anon_sym_POUND_CARET, + ACTIONS(27), 1, anon_sym_LPAREN, - ACTIONS(1118), 1, + ACTIONS(29), 1, anon_sym_POUND0A, - ACTIONS(1120), 1, + ACTIONS(31), 1, anon_sym_POUND, - ACTIONS(1122), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(1124), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(1126), 1, - anon_sym_COLON_COLON, - ACTIONS(1128), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(1130), 1, + ACTIONS(39), 1, anon_sym_POUND_POUND, - ACTIONS(1132), 1, + ACTIONS(41), 1, anon_sym_POUND_EQ, - ACTIONS(1134), 1, + ACTIONS(43), 1, anon_sym_AT, - ACTIONS(1136), 1, + ACTIONS(45), 1, anon_sym_SQUOTE, - ACTIONS(1138), 1, + ACTIONS(47), 1, anon_sym_BQUOTE, - ACTIONS(1140), 1, + ACTIONS(49), 1, anon_sym_COMMA_AT, - ACTIONS(1142), 1, + ACTIONS(51), 1, anon_sym_COMMA, - ACTIONS(1144), 1, - anon_sym_COLON, - ACTIONS(1148), 1, + ACTIONS(55), 1, anon_sym_POUNDC, - STATE(363), 1, + STATE(780), 1, + sym_sym_lit, + STATE(786), 1, + sym__bare_vec_lit, + STATE(884), 1, + sym__bare_set_lit, + STATE(892), 1, aux_sym_dis_expr_repeat1, - STATE(1067), 1, + STATE(1033), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1165), 1, - sym_sym_lit, - STATE(1318), 1, - sym__bare_set_lit, - STATE(1320), 1, - sym__bare_vec_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1904), 1, + STATE(1863), 1, sym_dotted_sym_lit, - ACTIONS(1146), 2, + ACTIONS(53), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1780), 2, + ACTIONS(650), 2, sym__ws, sym_comment, - ACTIONS(1790), 2, + ACTIONS(1824), 2, sym_num_lit, sym_char_lit, - ACTIONS(1792), 2, + ACTIONS(1826), 2, sym_nil_lit, sym_fancy_literal, - STATE(941), 2, + STATE(898), 2, sym__gap, sym_dis_expr, - STATE(1323), 3, + STATE(787), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1262), 18, + STATE(161), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -41672,90 +41802,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [48256] = 38, + [48458] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(1110), 1, + ACTIONS(562), 1, + anon_sym_COLON, + ACTIONS(564), 1, + anon_sym_COLON_COLON, + ACTIONS(566), 1, aux_sym_str_lit_token1, - ACTIONS(1114), 1, + ACTIONS(570), 1, aux_sym_sym_lit_token1, - ACTIONS(1116), 1, + ACTIONS(572), 1, anon_sym_LPAREN, - ACTIONS(1118), 1, + ACTIONS(574), 1, anon_sym_POUND0A, - ACTIONS(1120), 1, + ACTIONS(576), 1, anon_sym_POUND, - ACTIONS(1122), 1, + ACTIONS(578), 1, anon_sym_POUND_QMARK, - ACTIONS(1124), 1, + ACTIONS(580), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(1126), 1, - anon_sym_COLON_COLON, - ACTIONS(1128), 1, + ACTIONS(582), 1, anon_sym_POUND_SQUOTE, - ACTIONS(1130), 1, + ACTIONS(584), 1, anon_sym_POUND_POUND, - ACTIONS(1132), 1, + ACTIONS(586), 1, anon_sym_POUND_EQ, - ACTIONS(1134), 1, + ACTIONS(588), 1, anon_sym_AT, - ACTIONS(1136), 1, + ACTIONS(590), 1, anon_sym_SQUOTE, - ACTIONS(1138), 1, + ACTIONS(592), 1, anon_sym_BQUOTE, - ACTIONS(1140), 1, + ACTIONS(594), 1, anon_sym_COMMA_AT, - ACTIONS(1142), 1, + ACTIONS(596), 1, anon_sym_COMMA, - ACTIONS(1144), 1, - anon_sym_COLON, - ACTIONS(1148), 1, + ACTIONS(600), 1, anon_sym_POUNDC, - STATE(366), 1, + STATE(892), 1, aux_sym_dis_expr_repeat1, - STATE(1067), 1, - aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, - sym_meta_lit, - STATE(1165), 1, + STATE(924), 1, sym_sym_lit, - STATE(1318), 1, - sym__bare_set_lit, - STATE(1320), 1, + STATE(926), 1, + aux_sym_sym_lit_repeat1, + STATE(1068), 1, sym__bare_vec_lit, - STATE(1369), 1, + STATE(1069), 1, + sym__bare_set_lit, + STATE(1162), 1, + sym_meta_lit, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1904), 1, + STATE(1861), 1, sym_dotted_sym_lit, - ACTIONS(1146), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(1780), 2, + ACTIONS(558), 2, sym__ws, sym_comment, - ACTIONS(1794), 2, + ACTIONS(598), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(1828), 2, sym_num_lit, sym_char_lit, - ACTIONS(1796), 2, + ACTIONS(1830), 2, sym_nil_lit, sym_fancy_literal, - STATE(941), 2, + STATE(902), 2, sym__gap, sym_dis_expr, - STATE(1323), 3, + STATE(1067), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1265), 18, + STATE(1102), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -41773,90 +41904,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [48395] = 38, + [48598] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(1110), 1, + ACTIONS(1170), 1, + anon_sym_COLON, + ACTIONS(1172), 1, + anon_sym_COLON_COLON, + ACTIONS(1174), 1, aux_sym_str_lit_token1, - ACTIONS(1114), 1, + ACTIONS(1178), 1, aux_sym_sym_lit_token1, - ACTIONS(1116), 1, + ACTIONS(1180), 1, anon_sym_LPAREN, - ACTIONS(1118), 1, + ACTIONS(1182), 1, anon_sym_POUND0A, - ACTIONS(1120), 1, + ACTIONS(1184), 1, anon_sym_POUND, - ACTIONS(1122), 1, + ACTIONS(1186), 1, anon_sym_POUND_QMARK, - ACTIONS(1124), 1, + ACTIONS(1188), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(1126), 1, - anon_sym_COLON_COLON, - ACTIONS(1128), 1, + ACTIONS(1190), 1, anon_sym_POUND_SQUOTE, - ACTIONS(1130), 1, + ACTIONS(1192), 1, anon_sym_POUND_POUND, - ACTIONS(1132), 1, + ACTIONS(1194), 1, anon_sym_POUND_EQ, - ACTIONS(1134), 1, + ACTIONS(1196), 1, anon_sym_AT, - ACTIONS(1136), 1, + ACTIONS(1198), 1, anon_sym_SQUOTE, - ACTIONS(1138), 1, + ACTIONS(1200), 1, anon_sym_BQUOTE, - ACTIONS(1140), 1, + ACTIONS(1202), 1, anon_sym_COMMA_AT, - ACTIONS(1142), 1, + ACTIONS(1204), 1, anon_sym_COMMA, - ACTIONS(1144), 1, - anon_sym_COLON, - ACTIONS(1148), 1, + ACTIONS(1208), 1, anon_sym_POUNDC, - STATE(367), 1, + STATE(892), 1, aux_sym_dis_expr_repeat1, - STATE(1067), 1, + STATE(950), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1165), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1173), 1, sym_sym_lit, - STATE(1318), 1, + STATE(1226), 1, sym__bare_set_lit, - STATE(1320), 1, + STATE(1230), 1, sym__bare_vec_lit, - STATE(1369), 1, + STATE(1337), 1, sym__metadata_lit, - STATE(1904), 1, + STATE(1864), 1, sym_dotted_sym_lit, - ACTIONS(1146), 2, + ACTIONS(1206), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1780), 2, + ACTIONS(1298), 2, sym__ws, sym_comment, - ACTIONS(1798), 2, + ACTIONS(1832), 2, sym_num_lit, sym_char_lit, - ACTIONS(1800), 2, + ACTIONS(1834), 2, sym_nil_lit, sym_fancy_literal, - STATE(941), 2, + STATE(907), 2, sym__gap, sym_dis_expr, - STATE(1323), 3, + STATE(1231), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1266), 18, + STATE(1271), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -41874,90 +42006,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [48534] = 38, + [48738] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(19), 1, - anon_sym_CARET, - ACTIONS(21), 1, - anon_sym_POUND_CARET, - ACTIONS(1110), 1, + ACTIONS(17), 1, aux_sym_str_lit_token1, - ACTIONS(1114), 1, + ACTIONS(21), 1, aux_sym_sym_lit_token1, - ACTIONS(1116), 1, + ACTIONS(23), 1, + anon_sym_CARET, + ACTIONS(25), 1, + anon_sym_POUND_CARET, + ACTIONS(27), 1, anon_sym_LPAREN, - ACTIONS(1118), 1, + ACTIONS(29), 1, anon_sym_POUND0A, - ACTIONS(1120), 1, + ACTIONS(31), 1, anon_sym_POUND, - ACTIONS(1122), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(1124), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(1126), 1, - anon_sym_COLON_COLON, - ACTIONS(1128), 1, - anon_sym_POUND_SQUOTE, - ACTIONS(1130), 1, + ACTIONS(39), 1, anon_sym_POUND_POUND, - ACTIONS(1132), 1, + ACTIONS(41), 1, anon_sym_POUND_EQ, - ACTIONS(1134), 1, + ACTIONS(47), 1, + anon_sym_BQUOTE, + ACTIONS(55), 1, + anon_sym_POUNDC, + ACTIONS(1248), 1, + anon_sym_COLON, + ACTIONS(1250), 1, + anon_sym_COLON_COLON, + ACTIONS(1254), 1, + anon_sym_POUND_SQUOTE, + ACTIONS(1256), 1, anon_sym_AT, - ACTIONS(1136), 1, + ACTIONS(1258), 1, anon_sym_SQUOTE, - ACTIONS(1138), 1, - anon_sym_BQUOTE, - ACTIONS(1140), 1, + ACTIONS(1260), 1, anon_sym_COMMA_AT, - ACTIONS(1142), 1, + ACTIONS(1262), 1, anon_sym_COMMA, - ACTIONS(1144), 1, - anon_sym_COLON, - ACTIONS(1148), 1, - anon_sym_POUNDC, - STATE(930), 1, + STATE(378), 1, aux_sym_dis_expr_repeat1, - STATE(1067), 1, - aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, - sym_meta_lit, - STATE(1165), 1, + STATE(783), 1, sym_sym_lit, - STATE(1318), 1, - sym__bare_set_lit, - STATE(1320), 1, + STATE(786), 1, sym__bare_vec_lit, - STATE(1369), 1, + STATE(884), 1, + sym__bare_set_lit, + STATE(933), 1, + aux_sym_sym_lit_repeat1, + STATE(1162), 1, + sym_meta_lit, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1904), 1, + STATE(1867), 1, sym_dotted_sym_lit, - ACTIONS(1146), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(1780), 2, + ACTIONS(650), 2, sym__ws, sym_comment, - ACTIONS(1802), 2, + ACTIONS(820), 2, sym_num_lit, sym_char_lit, - ACTIONS(1804), 2, + ACTIONS(822), 2, sym_nil_lit, sym_fancy_literal, - STATE(941), 2, + ACTIONS(1264), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + STATE(898), 2, sym__gap, sym_dis_expr, - STATE(1323), 3, + STATE(787), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1382), 18, + STATE(886), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -41975,90 +42108,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [48673] = 38, + [48878] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(19), 1, - anon_sym_CARET, - ACTIONS(21), 1, - anon_sym_POUND_CARET, - ACTIONS(1110), 1, + ACTIONS(17), 1, aux_sym_str_lit_token1, - ACTIONS(1114), 1, + ACTIONS(21), 1, aux_sym_sym_lit_token1, - ACTIONS(1116), 1, + ACTIONS(23), 1, + anon_sym_CARET, + ACTIONS(25), 1, + anon_sym_POUND_CARET, + ACTIONS(27), 1, anon_sym_LPAREN, - ACTIONS(1118), 1, + ACTIONS(29), 1, anon_sym_POUND0A, - ACTIONS(1120), 1, + ACTIONS(31), 1, anon_sym_POUND, - ACTIONS(1122), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(1124), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(1126), 1, - anon_sym_COLON_COLON, - ACTIONS(1128), 1, - anon_sym_POUND_SQUOTE, - ACTIONS(1130), 1, + ACTIONS(39), 1, anon_sym_POUND_POUND, - ACTIONS(1132), 1, + ACTIONS(41), 1, anon_sym_POUND_EQ, - ACTIONS(1134), 1, + ACTIONS(47), 1, + anon_sym_BQUOTE, + ACTIONS(55), 1, + anon_sym_POUNDC, + ACTIONS(1248), 1, + anon_sym_COLON, + ACTIONS(1250), 1, + anon_sym_COLON_COLON, + ACTIONS(1254), 1, + anon_sym_POUND_SQUOTE, + ACTIONS(1256), 1, anon_sym_AT, - ACTIONS(1136), 1, + ACTIONS(1258), 1, anon_sym_SQUOTE, - ACTIONS(1138), 1, - anon_sym_BQUOTE, - ACTIONS(1140), 1, + ACTIONS(1260), 1, anon_sym_COMMA_AT, - ACTIONS(1142), 1, + ACTIONS(1262), 1, anon_sym_COMMA, - ACTIONS(1144), 1, - anon_sym_COLON, - ACTIONS(1148), 1, - anon_sym_POUNDC, - STATE(930), 1, + STATE(377), 1, aux_sym_dis_expr_repeat1, - STATE(1067), 1, - aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, - sym_meta_lit, - STATE(1165), 1, + STATE(783), 1, sym_sym_lit, - STATE(1318), 1, - sym__bare_set_lit, - STATE(1320), 1, + STATE(786), 1, sym__bare_vec_lit, - STATE(1369), 1, + STATE(884), 1, + sym__bare_set_lit, + STATE(933), 1, + aux_sym_sym_lit_repeat1, + STATE(1162), 1, + sym_meta_lit, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1904), 1, + STATE(1867), 1, sym_dotted_sym_lit, - ACTIONS(1146), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(1780), 2, + ACTIONS(650), 2, sym__ws, sym_comment, - ACTIONS(1806), 2, + ACTIONS(828), 2, sym_num_lit, sym_char_lit, - ACTIONS(1808), 2, + ACTIONS(830), 2, sym_nil_lit, sym_fancy_literal, - STATE(941), 2, + ACTIONS(1264), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + STATE(898), 2, sym__gap, sym_dis_expr, - STATE(1323), 3, + STATE(787), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1349), 18, + STATE(848), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -42076,90 +42210,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [48812] = 38, + [49018] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(19), 1, - anon_sym_CARET, - ACTIONS(21), 1, - anon_sym_POUND_CARET, - ACTIONS(1110), 1, + ACTIONS(17), 1, aux_sym_str_lit_token1, - ACTIONS(1114), 1, + ACTIONS(21), 1, aux_sym_sym_lit_token1, - ACTIONS(1116), 1, + ACTIONS(23), 1, + anon_sym_CARET, + ACTIONS(25), 1, + anon_sym_POUND_CARET, + ACTIONS(27), 1, anon_sym_LPAREN, - ACTIONS(1118), 1, + ACTIONS(29), 1, anon_sym_POUND0A, - ACTIONS(1120), 1, + ACTIONS(31), 1, anon_sym_POUND, - ACTIONS(1122), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(1124), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(1126), 1, - anon_sym_COLON_COLON, - ACTIONS(1128), 1, - anon_sym_POUND_SQUOTE, - ACTIONS(1130), 1, + ACTIONS(39), 1, anon_sym_POUND_POUND, - ACTIONS(1132), 1, + ACTIONS(41), 1, anon_sym_POUND_EQ, - ACTIONS(1134), 1, + ACTIONS(47), 1, + anon_sym_BQUOTE, + ACTIONS(55), 1, + anon_sym_POUNDC, + ACTIONS(1248), 1, + anon_sym_COLON, + ACTIONS(1250), 1, + anon_sym_COLON_COLON, + ACTIONS(1254), 1, + anon_sym_POUND_SQUOTE, + ACTIONS(1256), 1, anon_sym_AT, - ACTIONS(1136), 1, + ACTIONS(1258), 1, anon_sym_SQUOTE, - ACTIONS(1138), 1, - anon_sym_BQUOTE, - ACTIONS(1140), 1, + ACTIONS(1260), 1, anon_sym_COMMA_AT, - ACTIONS(1142), 1, + ACTIONS(1262), 1, anon_sym_COMMA, - ACTIONS(1144), 1, - anon_sym_COLON, - ACTIONS(1148), 1, - anon_sym_POUNDC, - STATE(930), 1, + STATE(376), 1, aux_sym_dis_expr_repeat1, - STATE(1067), 1, - aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, - sym_meta_lit, - STATE(1165), 1, + STATE(783), 1, sym_sym_lit, - STATE(1318), 1, - sym__bare_set_lit, - STATE(1320), 1, + STATE(786), 1, sym__bare_vec_lit, - STATE(1369), 1, + STATE(884), 1, + sym__bare_set_lit, + STATE(933), 1, + aux_sym_sym_lit_repeat1, + STATE(1162), 1, + sym_meta_lit, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1904), 1, + STATE(1867), 1, sym_dotted_sym_lit, - ACTIONS(1146), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(1780), 2, + ACTIONS(650), 2, sym__ws, sym_comment, - ACTIONS(1810), 2, + ACTIONS(832), 2, sym_num_lit, sym_char_lit, - ACTIONS(1812), 2, + ACTIONS(834), 2, sym_nil_lit, sym_fancy_literal, - STATE(941), 2, + ACTIONS(1264), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + STATE(898), 2, sym__gap, sym_dis_expr, - STATE(1323), 3, + STATE(787), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1356), 18, + STATE(877), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -42177,90 +42312,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [48951] = 38, + [49158] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(19), 1, - anon_sym_CARET, - ACTIONS(21), 1, - anon_sym_POUND_CARET, - ACTIONS(1110), 1, + ACTIONS(17), 1, aux_sym_str_lit_token1, - ACTIONS(1114), 1, + ACTIONS(21), 1, aux_sym_sym_lit_token1, - ACTIONS(1116), 1, + ACTIONS(23), 1, + anon_sym_CARET, + ACTIONS(25), 1, + anon_sym_POUND_CARET, + ACTIONS(27), 1, anon_sym_LPAREN, - ACTIONS(1118), 1, + ACTIONS(29), 1, anon_sym_POUND0A, - ACTIONS(1120), 1, + ACTIONS(31), 1, anon_sym_POUND, - ACTIONS(1122), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(1124), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(1126), 1, - anon_sym_COLON_COLON, - ACTIONS(1128), 1, - anon_sym_POUND_SQUOTE, - ACTIONS(1130), 1, + ACTIONS(39), 1, anon_sym_POUND_POUND, - ACTIONS(1132), 1, + ACTIONS(41), 1, anon_sym_POUND_EQ, - ACTIONS(1134), 1, + ACTIONS(47), 1, + anon_sym_BQUOTE, + ACTIONS(55), 1, + anon_sym_POUNDC, + ACTIONS(1248), 1, + anon_sym_COLON, + ACTIONS(1250), 1, + anon_sym_COLON_COLON, + ACTIONS(1254), 1, + anon_sym_POUND_SQUOTE, + ACTIONS(1256), 1, anon_sym_AT, - ACTIONS(1136), 1, + ACTIONS(1258), 1, anon_sym_SQUOTE, - ACTIONS(1138), 1, - anon_sym_BQUOTE, - ACTIONS(1140), 1, + ACTIONS(1260), 1, anon_sym_COMMA_AT, - ACTIONS(1142), 1, + ACTIONS(1262), 1, anon_sym_COMMA, - ACTIONS(1144), 1, - anon_sym_COLON, - ACTIONS(1148), 1, - anon_sym_POUNDC, - STATE(359), 1, + STATE(344), 1, aux_sym_dis_expr_repeat1, - STATE(1067), 1, - aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, - sym_meta_lit, - STATE(1165), 1, + STATE(783), 1, sym_sym_lit, - STATE(1318), 1, - sym__bare_set_lit, - STATE(1320), 1, + STATE(786), 1, sym__bare_vec_lit, - STATE(1369), 1, + STATE(884), 1, + sym__bare_set_lit, + STATE(933), 1, + aux_sym_sym_lit_repeat1, + STATE(1162), 1, + sym_meta_lit, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1904), 1, + STATE(1867), 1, sym_dotted_sym_lit, - ACTIONS(1146), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(1780), 2, + ACTIONS(650), 2, sym__ws, sym_comment, - ACTIONS(1814), 2, + ACTIONS(1132), 2, sym_num_lit, sym_char_lit, - ACTIONS(1816), 2, + ACTIONS(1134), 2, sym_nil_lit, sym_fancy_literal, - STATE(941), 2, + ACTIONS(1264), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + STATE(898), 2, sym__gap, sym_dis_expr, - STATE(1323), 3, + STATE(787), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1383), 18, + STATE(808), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -42278,90 +42414,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [49090] = 38, + [49298] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(19), 1, - anon_sym_CARET, - ACTIONS(21), 1, - anon_sym_POUND_CARET, - ACTIONS(1110), 1, + ACTIONS(17), 1, aux_sym_str_lit_token1, - ACTIONS(1114), 1, + ACTIONS(21), 1, aux_sym_sym_lit_token1, - ACTIONS(1116), 1, + ACTIONS(23), 1, + anon_sym_CARET, + ACTIONS(25), 1, + anon_sym_POUND_CARET, + ACTIONS(27), 1, anon_sym_LPAREN, - ACTIONS(1118), 1, + ACTIONS(29), 1, anon_sym_POUND0A, - ACTIONS(1120), 1, + ACTIONS(31), 1, anon_sym_POUND, - ACTIONS(1122), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(1124), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(1126), 1, - anon_sym_COLON_COLON, - ACTIONS(1128), 1, - anon_sym_POUND_SQUOTE, - ACTIONS(1130), 1, + ACTIONS(39), 1, anon_sym_POUND_POUND, - ACTIONS(1132), 1, + ACTIONS(41), 1, anon_sym_POUND_EQ, - ACTIONS(1134), 1, + ACTIONS(47), 1, + anon_sym_BQUOTE, + ACTIONS(55), 1, + anon_sym_POUNDC, + ACTIONS(1248), 1, + anon_sym_COLON, + ACTIONS(1250), 1, + anon_sym_COLON_COLON, + ACTIONS(1254), 1, + anon_sym_POUND_SQUOTE, + ACTIONS(1256), 1, anon_sym_AT, - ACTIONS(1136), 1, + ACTIONS(1258), 1, anon_sym_SQUOTE, - ACTIONS(1138), 1, - anon_sym_BQUOTE, - ACTIONS(1140), 1, + ACTIONS(1260), 1, anon_sym_COMMA_AT, - ACTIONS(1142), 1, + ACTIONS(1262), 1, anon_sym_COMMA, - ACTIONS(1144), 1, - anon_sym_COLON, - ACTIONS(1148), 1, - anon_sym_POUNDC, - STATE(930), 1, + STATE(370), 1, aux_sym_dis_expr_repeat1, - STATE(1067), 1, - aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, - sym_meta_lit, - STATE(1165), 1, + STATE(783), 1, sym_sym_lit, - STATE(1318), 1, - sym__bare_set_lit, - STATE(1320), 1, + STATE(786), 1, sym__bare_vec_lit, - STATE(1369), 1, + STATE(884), 1, + sym__bare_set_lit, + STATE(933), 1, + aux_sym_sym_lit_repeat1, + STATE(1162), 1, + sym_meta_lit, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1904), 1, + STATE(1867), 1, sym_dotted_sym_lit, - ACTIONS(1146), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(1780), 2, + ACTIONS(650), 2, sym__ws, sym_comment, - ACTIONS(1818), 2, + ACTIONS(836), 2, sym_num_lit, sym_char_lit, - ACTIONS(1820), 2, + ACTIONS(838), 2, sym_nil_lit, sym_fancy_literal, - STATE(941), 2, + ACTIONS(1264), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + STATE(898), 2, sym__gap, sym_dis_expr, - STATE(1323), 3, + STATE(787), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1357), 18, + STATE(878), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -42379,90 +42516,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [49229] = 38, + [49438] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(19), 1, - anon_sym_CARET, + ACTIONS(13), 1, + anon_sym_COLON, + ACTIONS(15), 1, + anon_sym_COLON_COLON, + ACTIONS(17), 1, + aux_sym_str_lit_token1, ACTIONS(21), 1, + aux_sym_sym_lit_token1, + ACTIONS(23), 1, + anon_sym_CARET, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(832), 1, - aux_sym_str_lit_token1, - ACTIONS(838), 1, + ACTIONS(27), 1, anon_sym_LPAREN, - ACTIONS(840), 1, + ACTIONS(29), 1, anon_sym_POUND0A, - ACTIONS(842), 1, + ACTIONS(31), 1, anon_sym_POUND, - ACTIONS(844), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(846), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(848), 1, - anon_sym_COLON_COLON, - ACTIONS(852), 1, + ACTIONS(37), 1, + anon_sym_POUND_SQUOTE, + ACTIONS(39), 1, anon_sym_POUND_POUND, - ACTIONS(854), 1, + ACTIONS(41), 1, anon_sym_POUND_EQ, - ACTIONS(860), 1, - anon_sym_BQUOTE, - ACTIONS(866), 1, - anon_sym_COLON, - ACTIONS(870), 1, - anon_sym_POUNDC, - ACTIONS(1242), 1, - aux_sym_sym_lit_token1, - ACTIONS(1244), 1, - anon_sym_POUND_SQUOTE, - ACTIONS(1246), 1, + ACTIONS(43), 1, anon_sym_AT, - ACTIONS(1248), 1, + ACTIONS(45), 1, anon_sym_SQUOTE, - ACTIONS(1250), 1, + ACTIONS(47), 1, + anon_sym_BQUOTE, + ACTIONS(49), 1, anon_sym_COMMA_AT, - ACTIONS(1252), 1, + ACTIONS(51), 1, anon_sym_COMMA, - STATE(930), 1, + ACTIONS(55), 1, + anon_sym_POUNDC, + STATE(780), 1, + sym_sym_lit, + STATE(786), 1, + sym__bare_vec_lit, + STATE(884), 1, + sym__bare_set_lit, + STATE(892), 1, aux_sym_dis_expr_repeat1, - STATE(1050), 1, + STATE(1033), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1108), 1, - sym__bare_set_lit, - STATE(1109), 1, - sym__bare_vec_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1386), 1, - sym_sym_lit, - STATE(1910), 1, + STATE(1863), 1, sym_dotted_sym_lit, - ACTIONS(828), 2, + ACTIONS(53), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(650), 2, sym__ws, sym_comment, - ACTIONS(880), 2, + ACTIONS(1836), 2, sym_num_lit, sym_char_lit, - ACTIONS(882), 2, + ACTIONS(1838), 2, sym_nil_lit, sym_fancy_literal, - ACTIONS(1254), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - STATE(943), 2, + STATE(898), 2, sym__gap, sym_dis_expr, - STATE(1110), 3, + STATE(787), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1210), 18, + STATE(174), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -42480,90 +42618,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [49368] = 38, + [49578] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(19), 1, - anon_sym_CARET, + ACTIONS(13), 1, + anon_sym_COLON, + ACTIONS(15), 1, + anon_sym_COLON_COLON, + ACTIONS(17), 1, + aux_sym_str_lit_token1, ACTIONS(21), 1, + aux_sym_sym_lit_token1, + ACTIONS(23), 1, + anon_sym_CARET, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(832), 1, - aux_sym_str_lit_token1, - ACTIONS(838), 1, + ACTIONS(27), 1, anon_sym_LPAREN, - ACTIONS(840), 1, + ACTIONS(29), 1, anon_sym_POUND0A, - ACTIONS(842), 1, + ACTIONS(31), 1, anon_sym_POUND, - ACTIONS(844), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(846), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(848), 1, - anon_sym_COLON_COLON, - ACTIONS(852), 1, + ACTIONS(37), 1, + anon_sym_POUND_SQUOTE, + ACTIONS(39), 1, anon_sym_POUND_POUND, - ACTIONS(854), 1, + ACTIONS(41), 1, anon_sym_POUND_EQ, - ACTIONS(860), 1, - anon_sym_BQUOTE, - ACTIONS(866), 1, - anon_sym_COLON, - ACTIONS(870), 1, - anon_sym_POUNDC, - ACTIONS(1242), 1, - aux_sym_sym_lit_token1, - ACTIONS(1244), 1, - anon_sym_POUND_SQUOTE, - ACTIONS(1246), 1, + ACTIONS(43), 1, anon_sym_AT, - ACTIONS(1248), 1, + ACTIONS(45), 1, anon_sym_SQUOTE, - ACTIONS(1250), 1, + ACTIONS(47), 1, + anon_sym_BQUOTE, + ACTIONS(49), 1, anon_sym_COMMA_AT, - ACTIONS(1252), 1, + ACTIONS(51), 1, anon_sym_COMMA, - STATE(930), 1, + ACTIONS(55), 1, + anon_sym_POUNDC, + STATE(364), 1, aux_sym_dis_expr_repeat1, - STATE(1050), 1, + STATE(780), 1, + sym_sym_lit, + STATE(786), 1, + sym__bare_vec_lit, + STATE(884), 1, + sym__bare_set_lit, + STATE(1033), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1108), 1, - sym__bare_set_lit, - STATE(1109), 1, - sym__bare_vec_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1386), 1, - sym_sym_lit, - STATE(1910), 1, + STATE(1863), 1, sym_dotted_sym_lit, - ACTIONS(828), 2, + ACTIONS(53), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(650), 2, sym__ws, sym_comment, - ACTIONS(900), 2, + ACTIONS(1840), 2, sym_num_lit, sym_char_lit, - ACTIONS(902), 2, + ACTIONS(1842), 2, sym_nil_lit, sym_fancy_literal, - ACTIONS(1254), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - STATE(943), 2, + STATE(898), 2, sym__gap, sym_dis_expr, - STATE(1110), 3, + STATE(787), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1207), 18, + STATE(67), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -42581,90 +42720,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [49507] = 38, + [49718] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(1110), 1, + ACTIONS(1170), 1, + anon_sym_COLON, + ACTIONS(1172), 1, + anon_sym_COLON_COLON, + ACTIONS(1174), 1, aux_sym_str_lit_token1, - ACTIONS(1114), 1, + ACTIONS(1178), 1, aux_sym_sym_lit_token1, - ACTIONS(1116), 1, + ACTIONS(1180), 1, anon_sym_LPAREN, - ACTIONS(1118), 1, + ACTIONS(1182), 1, anon_sym_POUND0A, - ACTIONS(1120), 1, + ACTIONS(1184), 1, anon_sym_POUND, - ACTIONS(1122), 1, + ACTIONS(1186), 1, anon_sym_POUND_QMARK, - ACTIONS(1124), 1, + ACTIONS(1188), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(1126), 1, - anon_sym_COLON_COLON, - ACTIONS(1128), 1, + ACTIONS(1190), 1, anon_sym_POUND_SQUOTE, - ACTIONS(1130), 1, + ACTIONS(1192), 1, anon_sym_POUND_POUND, - ACTIONS(1132), 1, + ACTIONS(1194), 1, anon_sym_POUND_EQ, - ACTIONS(1134), 1, + ACTIONS(1196), 1, anon_sym_AT, - ACTIONS(1136), 1, + ACTIONS(1198), 1, anon_sym_SQUOTE, - ACTIONS(1138), 1, + ACTIONS(1200), 1, anon_sym_BQUOTE, - ACTIONS(1140), 1, + ACTIONS(1202), 1, anon_sym_COMMA_AT, - ACTIONS(1142), 1, + ACTIONS(1204), 1, anon_sym_COMMA, - ACTIONS(1144), 1, - anon_sym_COLON, - ACTIONS(1148), 1, + ACTIONS(1208), 1, anon_sym_POUNDC, - STATE(930), 1, + STATE(892), 1, aux_sym_dis_expr_repeat1, - STATE(1067), 1, + STATE(950), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1165), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1173), 1, sym_sym_lit, - STATE(1318), 1, + STATE(1226), 1, sym__bare_set_lit, - STATE(1320), 1, + STATE(1230), 1, sym__bare_vec_lit, - STATE(1369), 1, + STATE(1337), 1, sym__metadata_lit, - STATE(1904), 1, + STATE(1864), 1, sym_dotted_sym_lit, - ACTIONS(1146), 2, + ACTIONS(1206), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1780), 2, + ACTIONS(1298), 2, sym__ws, sym_comment, - ACTIONS(1822), 2, + ACTIONS(1844), 2, sym_num_lit, sym_char_lit, - ACTIONS(1824), 2, + ACTIONS(1846), 2, sym_nil_lit, sym_fancy_literal, - STATE(941), 2, + STATE(907), 2, sym__gap, sym_dis_expr, - STATE(1323), 3, + STATE(1231), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1359), 18, + STATE(1218), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -42682,90 +42822,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [49646] = 38, + [49858] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(1110), 1, + ACTIONS(562), 1, + anon_sym_COLON, + ACTIONS(564), 1, + anon_sym_COLON_COLON, + ACTIONS(566), 1, aux_sym_str_lit_token1, - ACTIONS(1114), 1, + ACTIONS(570), 1, aux_sym_sym_lit_token1, - ACTIONS(1116), 1, + ACTIONS(572), 1, anon_sym_LPAREN, - ACTIONS(1118), 1, + ACTIONS(574), 1, anon_sym_POUND0A, - ACTIONS(1120), 1, + ACTIONS(576), 1, anon_sym_POUND, - ACTIONS(1122), 1, + ACTIONS(578), 1, anon_sym_POUND_QMARK, - ACTIONS(1124), 1, + ACTIONS(580), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(1126), 1, - anon_sym_COLON_COLON, - ACTIONS(1128), 1, + ACTIONS(582), 1, anon_sym_POUND_SQUOTE, - ACTIONS(1130), 1, + ACTIONS(584), 1, anon_sym_POUND_POUND, - ACTIONS(1132), 1, + ACTIONS(586), 1, anon_sym_POUND_EQ, - ACTIONS(1134), 1, + ACTIONS(588), 1, anon_sym_AT, - ACTIONS(1136), 1, + ACTIONS(590), 1, anon_sym_SQUOTE, - ACTIONS(1138), 1, + ACTIONS(592), 1, anon_sym_BQUOTE, - ACTIONS(1140), 1, + ACTIONS(594), 1, anon_sym_COMMA_AT, - ACTIONS(1142), 1, + ACTIONS(596), 1, anon_sym_COMMA, - ACTIONS(1144), 1, - anon_sym_COLON, - ACTIONS(1148), 1, + ACTIONS(600), 1, anon_sym_POUNDC, - STATE(930), 1, + STATE(892), 1, aux_sym_dis_expr_repeat1, - STATE(1067), 1, - aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, - sym_meta_lit, - STATE(1165), 1, + STATE(924), 1, sym_sym_lit, - STATE(1318), 1, - sym__bare_set_lit, - STATE(1320), 1, + STATE(926), 1, + aux_sym_sym_lit_repeat1, + STATE(1068), 1, sym__bare_vec_lit, - STATE(1369), 1, + STATE(1069), 1, + sym__bare_set_lit, + STATE(1162), 1, + sym_meta_lit, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1904), 1, + STATE(1861), 1, sym_dotted_sym_lit, - ACTIONS(1146), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(1780), 2, + ACTIONS(558), 2, sym__ws, sym_comment, - ACTIONS(1826), 2, + ACTIONS(598), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(1848), 2, sym_num_lit, sym_char_lit, - ACTIONS(1828), 2, + ACTIONS(1850), 2, sym_nil_lit, sym_fancy_literal, - STATE(941), 2, + STATE(902), 2, sym__gap, sym_dis_expr, - STATE(1323), 3, + STATE(1067), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1353), 18, + STATE(1099), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -42783,90 +42924,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [49785] = 38, + [49998] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(13), 1, - aux_sym_str_lit_token1, - ACTIONS(17), 1, - aux_sym_sym_lit_token1, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(23), 1, + ACTIONS(562), 1, + anon_sym_COLON, + ACTIONS(564), 1, + anon_sym_COLON_COLON, + ACTIONS(566), 1, + aux_sym_str_lit_token1, + ACTIONS(570), 1, + aux_sym_sym_lit_token1, + ACTIONS(572), 1, anon_sym_LPAREN, - ACTIONS(25), 1, + ACTIONS(574), 1, anon_sym_POUND0A, - ACTIONS(27), 1, + ACTIONS(576), 1, anon_sym_POUND, - ACTIONS(29), 1, + ACTIONS(578), 1, anon_sym_POUND_QMARK, - ACTIONS(31), 1, + ACTIONS(580), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(582), 1, + anon_sym_POUND_SQUOTE, + ACTIONS(584), 1, anon_sym_POUND_POUND, - ACTIONS(39), 1, + ACTIONS(586), 1, anon_sym_POUND_EQ, - ACTIONS(45), 1, - anon_sym_BQUOTE, - ACTIONS(55), 1, - anon_sym_POUNDC, - ACTIONS(652), 1, - anon_sym_COLON_COLON, - ACTIONS(654), 1, - anon_sym_POUND_SQUOTE, - ACTIONS(656), 1, + ACTIONS(588), 1, anon_sym_AT, - ACTIONS(658), 1, + ACTIONS(590), 1, anon_sym_SQUOTE, - ACTIONS(660), 1, + ACTIONS(592), 1, + anon_sym_BQUOTE, + ACTIONS(594), 1, anon_sym_COMMA_AT, - ACTIONS(662), 1, + ACTIONS(596), 1, anon_sym_COMMA, - ACTIONS(664), 1, - anon_sym_COLON, - STATE(817), 1, + ACTIONS(600), 1, + anon_sym_POUNDC, + STATE(367), 1, + aux_sym_dis_expr_repeat1, + STATE(924), 1, sym_sym_lit, - STATE(838), 1, + STATE(926), 1, + aux_sym_sym_lit_repeat1, + STATE(1068), 1, sym__bare_vec_lit, - STATE(841), 1, + STATE(1069), 1, sym__bare_set_lit, - STATE(930), 1, - aux_sym_dis_expr_repeat1, - STATE(999), 1, - aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1908), 1, + STATE(1861), 1, sym_dotted_sym_lit, - ACTIONS(646), 2, + ACTIONS(558), 2, sym__ws, sym_comment, - ACTIONS(666), 2, + ACTIONS(598), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1226), 2, + ACTIONS(1852), 2, sym_num_lit, sym_char_lit, - ACTIONS(1228), 2, + ACTIONS(1854), 2, sym_nil_lit, sym_fancy_literal, - STATE(942), 2, + STATE(902), 2, sym__gap, sym_dis_expr, - STATE(842), 3, + STATE(1067), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(840), 18, + STATE(1075), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -42884,90 +43026,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [49924] = 38, + [50138] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(19), 1, - anon_sym_CARET, + ACTIONS(17), 1, + aux_sym_str_lit_token1, ACTIONS(21), 1, + aux_sym_sym_lit_token1, + ACTIONS(23), 1, + anon_sym_CARET, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(832), 1, - aux_sym_str_lit_token1, - ACTIONS(838), 1, + ACTIONS(27), 1, anon_sym_LPAREN, - ACTIONS(840), 1, + ACTIONS(29), 1, anon_sym_POUND0A, - ACTIONS(842), 1, + ACTIONS(31), 1, anon_sym_POUND, - ACTIONS(844), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(846), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(848), 1, - anon_sym_COLON_COLON, - ACTIONS(852), 1, + ACTIONS(39), 1, anon_sym_POUND_POUND, - ACTIONS(854), 1, + ACTIONS(41), 1, anon_sym_POUND_EQ, - ACTIONS(860), 1, + ACTIONS(47), 1, anon_sym_BQUOTE, - ACTIONS(866), 1, - anon_sym_COLON, - ACTIONS(870), 1, + ACTIONS(55), 1, anon_sym_POUNDC, - ACTIONS(1242), 1, - aux_sym_sym_lit_token1, - ACTIONS(1244), 1, + ACTIONS(1248), 1, + anon_sym_COLON, + ACTIONS(1250), 1, + anon_sym_COLON_COLON, + ACTIONS(1254), 1, anon_sym_POUND_SQUOTE, - ACTIONS(1246), 1, + ACTIONS(1256), 1, anon_sym_AT, - ACTIONS(1248), 1, + ACTIONS(1258), 1, anon_sym_SQUOTE, - ACTIONS(1250), 1, + ACTIONS(1260), 1, anon_sym_COMMA_AT, - ACTIONS(1252), 1, + ACTIONS(1262), 1, anon_sym_COMMA, - STATE(393), 1, + STATE(351), 1, aux_sym_dis_expr_repeat1, - STATE(1050), 1, + STATE(783), 1, + sym_sym_lit, + STATE(786), 1, + sym__bare_vec_lit, + STATE(884), 1, + sym__bare_set_lit, + STATE(933), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1108), 1, - sym__bare_set_lit, - STATE(1109), 1, - sym__bare_vec_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1386), 1, - sym_sym_lit, - STATE(1910), 1, + STATE(1867), 1, sym_dotted_sym_lit, - ACTIONS(828), 2, + ACTIONS(650), 2, sym__ws, sym_comment, - ACTIONS(1254), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(1564), 2, + ACTIONS(1124), 2, sym_num_lit, sym_char_lit, - ACTIONS(1566), 2, + ACTIONS(1126), 2, sym_nil_lit, sym_fancy_literal, - STATE(943), 2, + ACTIONS(1264), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + STATE(898), 2, sym__gap, sym_dis_expr, - STATE(1110), 3, + STATE(787), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1198), 18, + STATE(807), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -42985,90 +43128,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [50063] = 38, + [50278] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(19), 1, - anon_sym_CARET, - ACTIONS(21), 1, - anon_sym_POUND_CARET, - ACTIONS(1110), 1, + ACTIONS(17), 1, aux_sym_str_lit_token1, - ACTIONS(1114), 1, + ACTIONS(21), 1, aux_sym_sym_lit_token1, - ACTIONS(1116), 1, + ACTIONS(23), 1, + anon_sym_CARET, + ACTIONS(25), 1, + anon_sym_POUND_CARET, + ACTIONS(27), 1, anon_sym_LPAREN, - ACTIONS(1118), 1, + ACTIONS(29), 1, anon_sym_POUND0A, - ACTIONS(1120), 1, + ACTIONS(31), 1, anon_sym_POUND, - ACTIONS(1122), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(1124), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(1126), 1, - anon_sym_COLON_COLON, - ACTIONS(1128), 1, - anon_sym_POUND_SQUOTE, - ACTIONS(1130), 1, + ACTIONS(39), 1, anon_sym_POUND_POUND, - ACTIONS(1132), 1, + ACTIONS(41), 1, anon_sym_POUND_EQ, - ACTIONS(1134), 1, + ACTIONS(47), 1, + anon_sym_BQUOTE, + ACTIONS(55), 1, + anon_sym_POUNDC, + ACTIONS(1248), 1, + anon_sym_COLON, + ACTIONS(1250), 1, + anon_sym_COLON_COLON, + ACTIONS(1254), 1, + anon_sym_POUND_SQUOTE, + ACTIONS(1256), 1, anon_sym_AT, - ACTIONS(1136), 1, + ACTIONS(1258), 1, anon_sym_SQUOTE, - ACTIONS(1138), 1, - anon_sym_BQUOTE, - ACTIONS(1140), 1, + ACTIONS(1260), 1, anon_sym_COMMA_AT, - ACTIONS(1142), 1, + ACTIONS(1262), 1, anon_sym_COMMA, - ACTIONS(1144), 1, - anon_sym_COLON, - ACTIONS(1148), 1, - anon_sym_POUNDC, - STATE(402), 1, + STATE(783), 1, + sym_sym_lit, + STATE(786), 1, + sym__bare_vec_lit, + STATE(884), 1, + sym__bare_set_lit, + STATE(892), 1, aux_sym_dis_expr_repeat1, - STATE(1067), 1, + STATE(933), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1165), 1, - sym_sym_lit, - STATE(1318), 1, - sym__bare_set_lit, - STATE(1320), 1, - sym__bare_vec_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1904), 1, + STATE(1867), 1, sym_dotted_sym_lit, - ACTIONS(1146), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(1780), 2, + ACTIONS(650), 2, sym__ws, sym_comment, - ACTIONS(1830), 2, + ACTIONS(1120), 2, sym_num_lit, sym_char_lit, - ACTIONS(1832), 2, + ACTIONS(1122), 2, sym_nil_lit, sym_fancy_literal, - STATE(941), 2, + ACTIONS(1264), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + STATE(898), 2, sym__gap, sym_dis_expr, - STATE(1323), 3, + STATE(787), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1352), 18, + STATE(806), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -43086,90 +43230,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [50202] = 38, + [50418] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(1110), 1, - aux_sym_str_lit_token1, - ACTIONS(1114), 1, - aux_sym_sym_lit_token1, - ACTIONS(1116), 1, + ACTIONS(562), 1, + anon_sym_COLON, + ACTIONS(564), 1, + anon_sym_COLON_COLON, + ACTIONS(566), 1, + aux_sym_str_lit_token1, + ACTIONS(570), 1, + aux_sym_sym_lit_token1, + ACTIONS(572), 1, anon_sym_LPAREN, - ACTIONS(1118), 1, + ACTIONS(574), 1, anon_sym_POUND0A, - ACTIONS(1120), 1, + ACTIONS(576), 1, anon_sym_POUND, - ACTIONS(1122), 1, + ACTIONS(578), 1, anon_sym_POUND_QMARK, - ACTIONS(1124), 1, + ACTIONS(580), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(1126), 1, - anon_sym_COLON_COLON, - ACTIONS(1128), 1, + ACTIONS(582), 1, anon_sym_POUND_SQUOTE, - ACTIONS(1130), 1, + ACTIONS(584), 1, anon_sym_POUND_POUND, - ACTIONS(1132), 1, + ACTIONS(586), 1, anon_sym_POUND_EQ, - ACTIONS(1134), 1, + ACTIONS(588), 1, anon_sym_AT, - ACTIONS(1136), 1, + ACTIONS(590), 1, anon_sym_SQUOTE, - ACTIONS(1138), 1, + ACTIONS(592), 1, anon_sym_BQUOTE, - ACTIONS(1140), 1, + ACTIONS(594), 1, anon_sym_COMMA_AT, - ACTIONS(1142), 1, + ACTIONS(596), 1, anon_sym_COMMA, - ACTIONS(1144), 1, - anon_sym_COLON, - ACTIONS(1148), 1, + ACTIONS(600), 1, anon_sym_POUNDC, - STATE(930), 1, + STATE(357), 1, aux_sym_dis_expr_repeat1, - STATE(1067), 1, - aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, - sym_meta_lit, - STATE(1165), 1, + STATE(924), 1, sym_sym_lit, - STATE(1318), 1, - sym__bare_set_lit, - STATE(1320), 1, + STATE(926), 1, + aux_sym_sym_lit_repeat1, + STATE(1068), 1, sym__bare_vec_lit, - STATE(1369), 1, + STATE(1069), 1, + sym__bare_set_lit, + STATE(1162), 1, + sym_meta_lit, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1904), 1, + STATE(1861), 1, sym_dotted_sym_lit, - ACTIONS(1146), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(1780), 2, + ACTIONS(558), 2, sym__ws, sym_comment, - ACTIONS(1834), 2, + ACTIONS(598), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(1856), 2, sym_num_lit, sym_char_lit, - ACTIONS(1836), 2, + ACTIONS(1858), 2, sym_nil_lit, sym_fancy_literal, - STATE(941), 2, + STATE(902), 2, sym__gap, sym_dis_expr, - STATE(1323), 3, + STATE(1067), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1293), 18, + STATE(1078), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -43187,90 +43332,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [50341] = 38, + [50558] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(832), 1, + ACTIONS(562), 1, + anon_sym_COLON, + ACTIONS(564), 1, + anon_sym_COLON_COLON, + ACTIONS(566), 1, aux_sym_str_lit_token1, - ACTIONS(838), 1, + ACTIONS(570), 1, + aux_sym_sym_lit_token1, + ACTIONS(572), 1, anon_sym_LPAREN, - ACTIONS(840), 1, + ACTIONS(574), 1, anon_sym_POUND0A, - ACTIONS(842), 1, + ACTIONS(576), 1, anon_sym_POUND, - ACTIONS(844), 1, + ACTIONS(578), 1, anon_sym_POUND_QMARK, - ACTIONS(846), 1, + ACTIONS(580), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(848), 1, - anon_sym_COLON_COLON, - ACTIONS(852), 1, + ACTIONS(582), 1, + anon_sym_POUND_SQUOTE, + ACTIONS(584), 1, anon_sym_POUND_POUND, - ACTIONS(854), 1, + ACTIONS(586), 1, anon_sym_POUND_EQ, - ACTIONS(860), 1, - anon_sym_BQUOTE, - ACTIONS(866), 1, - anon_sym_COLON, - ACTIONS(870), 1, - anon_sym_POUNDC, - ACTIONS(1242), 1, - aux_sym_sym_lit_token1, - ACTIONS(1244), 1, - anon_sym_POUND_SQUOTE, - ACTIONS(1246), 1, + ACTIONS(588), 1, anon_sym_AT, - ACTIONS(1248), 1, + ACTIONS(590), 1, anon_sym_SQUOTE, - ACTIONS(1250), 1, + ACTIONS(592), 1, + anon_sym_BQUOTE, + ACTIONS(594), 1, anon_sym_COMMA_AT, - ACTIONS(1252), 1, + ACTIONS(596), 1, anon_sym_COMMA, - STATE(399), 1, + ACTIONS(600), 1, + anon_sym_POUNDC, + STATE(350), 1, aux_sym_dis_expr_repeat1, - STATE(1050), 1, + STATE(924), 1, + sym_sym_lit, + STATE(926), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, - sym_meta_lit, - STATE(1108), 1, - sym__bare_set_lit, - STATE(1109), 1, + STATE(1068), 1, sym__bare_vec_lit, - STATE(1369), 1, + STATE(1069), 1, + sym__bare_set_lit, + STATE(1162), 1, + sym_meta_lit, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1386), 1, - sym_sym_lit, - STATE(1910), 1, + STATE(1861), 1, sym_dotted_sym_lit, - ACTIONS(828), 2, + ACTIONS(558), 2, sym__ws, sym_comment, - ACTIONS(1254), 2, + ACTIONS(598), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1552), 2, + ACTIONS(1860), 2, sym_num_lit, sym_char_lit, - ACTIONS(1554), 2, + ACTIONS(1862), 2, sym_nil_lit, sym_fancy_literal, - STATE(943), 2, + STATE(902), 2, sym__gap, sym_dis_expr, - STATE(1110), 3, + STATE(1067), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1124), 18, + STATE(1079), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -43288,90 +43434,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [50480] = 38, + [50698] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(832), 1, + ACTIONS(562), 1, + anon_sym_COLON, + ACTIONS(564), 1, + anon_sym_COLON_COLON, + ACTIONS(566), 1, aux_sym_str_lit_token1, - ACTIONS(838), 1, + ACTIONS(570), 1, + aux_sym_sym_lit_token1, + ACTIONS(572), 1, anon_sym_LPAREN, - ACTIONS(840), 1, + ACTIONS(574), 1, anon_sym_POUND0A, - ACTIONS(842), 1, + ACTIONS(576), 1, anon_sym_POUND, - ACTIONS(844), 1, + ACTIONS(578), 1, anon_sym_POUND_QMARK, - ACTIONS(846), 1, + ACTIONS(580), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(848), 1, - anon_sym_COLON_COLON, - ACTIONS(852), 1, + ACTIONS(582), 1, + anon_sym_POUND_SQUOTE, + ACTIONS(584), 1, anon_sym_POUND_POUND, - ACTIONS(854), 1, + ACTIONS(586), 1, anon_sym_POUND_EQ, - ACTIONS(860), 1, - anon_sym_BQUOTE, - ACTIONS(866), 1, - anon_sym_COLON, - ACTIONS(870), 1, - anon_sym_POUNDC, - ACTIONS(1242), 1, - aux_sym_sym_lit_token1, - ACTIONS(1244), 1, - anon_sym_POUND_SQUOTE, - ACTIONS(1246), 1, + ACTIONS(588), 1, anon_sym_AT, - ACTIONS(1248), 1, + ACTIONS(590), 1, anon_sym_SQUOTE, - ACTIONS(1250), 1, + ACTIONS(592), 1, + anon_sym_BQUOTE, + ACTIONS(594), 1, anon_sym_COMMA_AT, - ACTIONS(1252), 1, + ACTIONS(596), 1, anon_sym_COMMA, - STATE(401), 1, + ACTIONS(600), 1, + anon_sym_POUNDC, + STATE(342), 1, aux_sym_dis_expr_repeat1, - STATE(1050), 1, + STATE(924), 1, + sym_sym_lit, + STATE(926), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, - sym_meta_lit, - STATE(1108), 1, - sym__bare_set_lit, - STATE(1109), 1, + STATE(1068), 1, sym__bare_vec_lit, - STATE(1369), 1, + STATE(1069), 1, + sym__bare_set_lit, + STATE(1162), 1, + sym_meta_lit, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1386), 1, - sym_sym_lit, - STATE(1910), 1, + STATE(1861), 1, sym_dotted_sym_lit, - ACTIONS(828), 2, + ACTIONS(558), 2, sym__ws, sym_comment, - ACTIONS(1254), 2, + ACTIONS(598), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1548), 2, + ACTIONS(1864), 2, sym_num_lit, sym_char_lit, - ACTIONS(1550), 2, + ACTIONS(1866), 2, sym_nil_lit, sym_fancy_literal, - STATE(943), 2, + STATE(902), 2, sym__gap, sym_dis_expr, - STATE(1110), 3, + STATE(1067), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1123), 18, + STATE(1081), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -43389,90 +43536,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [50619] = 38, + [50838] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(832), 1, + ACTIONS(562), 1, + anon_sym_COLON, + ACTIONS(564), 1, + anon_sym_COLON_COLON, + ACTIONS(566), 1, aux_sym_str_lit_token1, - ACTIONS(838), 1, + ACTIONS(570), 1, + aux_sym_sym_lit_token1, + ACTIONS(572), 1, anon_sym_LPAREN, - ACTIONS(840), 1, + ACTIONS(574), 1, anon_sym_POUND0A, - ACTIONS(842), 1, + ACTIONS(576), 1, anon_sym_POUND, - ACTIONS(844), 1, + ACTIONS(578), 1, anon_sym_POUND_QMARK, - ACTIONS(846), 1, + ACTIONS(580), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(848), 1, - anon_sym_COLON_COLON, - ACTIONS(852), 1, + ACTIONS(582), 1, + anon_sym_POUND_SQUOTE, + ACTIONS(584), 1, anon_sym_POUND_POUND, - ACTIONS(854), 1, + ACTIONS(586), 1, anon_sym_POUND_EQ, - ACTIONS(860), 1, - anon_sym_BQUOTE, - ACTIONS(866), 1, - anon_sym_COLON, - ACTIONS(870), 1, - anon_sym_POUNDC, - ACTIONS(1242), 1, - aux_sym_sym_lit_token1, - ACTIONS(1244), 1, - anon_sym_POUND_SQUOTE, - ACTIONS(1246), 1, + ACTIONS(588), 1, anon_sym_AT, - ACTIONS(1248), 1, + ACTIONS(590), 1, anon_sym_SQUOTE, - ACTIONS(1250), 1, + ACTIONS(592), 1, + anon_sym_BQUOTE, + ACTIONS(594), 1, anon_sym_COMMA_AT, - ACTIONS(1252), 1, + ACTIONS(596), 1, anon_sym_COMMA, - STATE(404), 1, + ACTIONS(600), 1, + anon_sym_POUNDC, + STATE(338), 1, aux_sym_dis_expr_repeat1, - STATE(1050), 1, + STATE(924), 1, + sym_sym_lit, + STATE(926), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, - sym_meta_lit, - STATE(1108), 1, - sym__bare_set_lit, - STATE(1109), 1, + STATE(1068), 1, sym__bare_vec_lit, - STATE(1369), 1, + STATE(1069), 1, + sym__bare_set_lit, + STATE(1162), 1, + sym_meta_lit, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1386), 1, - sym_sym_lit, - STATE(1910), 1, + STATE(1861), 1, sym_dotted_sym_lit, - ACTIONS(828), 2, + ACTIONS(558), 2, sym__ws, sym_comment, - ACTIONS(1254), 2, + ACTIONS(598), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1544), 2, + ACTIONS(1868), 2, sym_num_lit, sym_char_lit, - ACTIONS(1546), 2, + ACTIONS(1870), 2, sym_nil_lit, sym_fancy_literal, - STATE(943), 2, + STATE(902), 2, sym__gap, sym_dis_expr, - STATE(1110), 3, + STATE(1067), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1112), 18, + STATE(1082), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -43490,90 +43638,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [50758] = 38, + [50978] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(19), 1, - anon_sym_CARET, + ACTIONS(13), 1, + anon_sym_COLON, + ACTIONS(15), 1, + anon_sym_COLON_COLON, + ACTIONS(17), 1, + aux_sym_str_lit_token1, ACTIONS(21), 1, + aux_sym_sym_lit_token1, + ACTIONS(23), 1, + anon_sym_CARET, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(832), 1, - aux_sym_str_lit_token1, - ACTIONS(838), 1, + ACTIONS(27), 1, anon_sym_LPAREN, - ACTIONS(840), 1, + ACTIONS(29), 1, anon_sym_POUND0A, - ACTIONS(842), 1, + ACTIONS(31), 1, anon_sym_POUND, - ACTIONS(844), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(846), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(848), 1, - anon_sym_COLON_COLON, - ACTIONS(852), 1, + ACTIONS(37), 1, + anon_sym_POUND_SQUOTE, + ACTIONS(39), 1, anon_sym_POUND_POUND, - ACTIONS(854), 1, + ACTIONS(41), 1, anon_sym_POUND_EQ, - ACTIONS(860), 1, - anon_sym_BQUOTE, - ACTIONS(866), 1, - anon_sym_COLON, - ACTIONS(870), 1, - anon_sym_POUNDC, - ACTIONS(1242), 1, - aux_sym_sym_lit_token1, - ACTIONS(1244), 1, - anon_sym_POUND_SQUOTE, - ACTIONS(1246), 1, + ACTIONS(43), 1, anon_sym_AT, - ACTIONS(1248), 1, + ACTIONS(45), 1, anon_sym_SQUOTE, - ACTIONS(1250), 1, + ACTIONS(47), 1, + anon_sym_BQUOTE, + ACTIONS(49), 1, anon_sym_COMMA_AT, - ACTIONS(1252), 1, + ACTIONS(51), 1, anon_sym_COMMA, - STATE(406), 1, + ACTIONS(55), 1, + anon_sym_POUNDC, + STATE(356), 1, aux_sym_dis_expr_repeat1, - STATE(1050), 1, + STATE(780), 1, + sym_sym_lit, + STATE(786), 1, + sym__bare_vec_lit, + STATE(884), 1, + sym__bare_set_lit, + STATE(1033), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1108), 1, - sym__bare_set_lit, - STATE(1109), 1, - sym__bare_vec_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1386), 1, - sym_sym_lit, - STATE(1910), 1, + STATE(1863), 1, sym_dotted_sym_lit, - ACTIONS(828), 2, - sym__ws, - sym_comment, - ACTIONS(1254), 2, + ACTIONS(53), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1540), 2, + ACTIONS(650), 2, + sym__ws, + sym_comment, + ACTIONS(1872), 2, sym_num_lit, sym_char_lit, - ACTIONS(1542), 2, + ACTIONS(1874), 2, sym_nil_lit, sym_fancy_literal, - STATE(943), 2, + STATE(898), 2, sym__gap, sym_dis_expr, - STATE(1110), 3, + STATE(787), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1169), 18, + STATE(224), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -43591,90 +43740,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [50897] = 38, + [51118] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(13), 1, - aux_sym_str_lit_token1, ACTIONS(17), 1, - aux_sym_sym_lit_token1, - ACTIONS(19), 1, - anon_sym_CARET, + aux_sym_str_lit_token1, ACTIONS(21), 1, - anon_sym_POUND_CARET, + aux_sym_sym_lit_token1, ACTIONS(23), 1, - anon_sym_LPAREN, + anon_sym_CARET, ACTIONS(25), 1, - anon_sym_POUND0A, + anon_sym_POUND_CARET, ACTIONS(27), 1, - anon_sym_POUND, + anon_sym_LPAREN, ACTIONS(29), 1, - anon_sym_POUND_QMARK, + anon_sym_POUND0A, ACTIONS(31), 1, - anon_sym_POUND_QMARK_AT, + anon_sym_POUND, ACTIONS(33), 1, - anon_sym_COLON_COLON, + anon_sym_POUND_QMARK, ACTIONS(35), 1, - anon_sym_POUND_SQUOTE, - ACTIONS(37), 1, - anon_sym_POUND_POUND, + anon_sym_POUND_QMARK_AT, ACTIONS(39), 1, - anon_sym_POUND_EQ, + anon_sym_POUND_POUND, ACTIONS(41), 1, + anon_sym_POUND_EQ, + ACTIONS(47), 1, + anon_sym_BQUOTE, + ACTIONS(55), 1, + anon_sym_POUNDC, + ACTIONS(1248), 1, + anon_sym_COLON, + ACTIONS(1250), 1, + anon_sym_COLON_COLON, + ACTIONS(1254), 1, + anon_sym_POUND_SQUOTE, + ACTIONS(1256), 1, anon_sym_AT, - ACTIONS(43), 1, + ACTIONS(1258), 1, anon_sym_SQUOTE, - ACTIONS(45), 1, - anon_sym_BQUOTE, - ACTIONS(47), 1, + ACTIONS(1260), 1, anon_sym_COMMA_AT, - ACTIONS(49), 1, + ACTIONS(1262), 1, anon_sym_COMMA, - ACTIONS(51), 1, - anon_sym_COLON, - ACTIONS(55), 1, - anon_sym_POUNDC, - STATE(815), 1, + STATE(783), 1, sym_sym_lit, - STATE(838), 1, + STATE(786), 1, sym__bare_vec_lit, - STATE(841), 1, + STATE(884), 1, sym__bare_set_lit, - STATE(930), 1, + STATE(892), 1, aux_sym_dis_expr_repeat1, - STATE(1047), 1, + STATE(933), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1909), 1, + STATE(1867), 1, sym_dotted_sym_lit, - ACTIONS(53), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(646), 2, + ACTIONS(650), 2, sym__ws, sym_comment, - ACTIONS(1838), 2, + ACTIONS(1112), 2, sym_num_lit, sym_char_lit, - ACTIONS(1840), 2, + ACTIONS(1114), 2, sym_nil_lit, sym_fancy_literal, - STATE(942), 2, + ACTIONS(1264), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + STATE(898), 2, sym__gap, sym_dis_expr, - STATE(842), 3, + STATE(787), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(246), 18, + STATE(805), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -43692,90 +43842,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [51036] = 38, + [51258] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(13), 1, - aux_sym_str_lit_token1, ACTIONS(17), 1, - aux_sym_sym_lit_token1, - ACTIONS(19), 1, - anon_sym_CARET, + aux_sym_str_lit_token1, ACTIONS(21), 1, - anon_sym_POUND_CARET, + aux_sym_sym_lit_token1, ACTIONS(23), 1, - anon_sym_LPAREN, + anon_sym_CARET, ACTIONS(25), 1, - anon_sym_POUND0A, + anon_sym_POUND_CARET, ACTIONS(27), 1, - anon_sym_POUND, + anon_sym_LPAREN, ACTIONS(29), 1, - anon_sym_POUND_QMARK, + anon_sym_POUND0A, ACTIONS(31), 1, - anon_sym_POUND_QMARK_AT, + anon_sym_POUND, ACTIONS(33), 1, - anon_sym_COLON_COLON, + anon_sym_POUND_QMARK, ACTIONS(35), 1, - anon_sym_POUND_SQUOTE, - ACTIONS(37), 1, - anon_sym_POUND_POUND, + anon_sym_POUND_QMARK_AT, ACTIONS(39), 1, - anon_sym_POUND_EQ, + anon_sym_POUND_POUND, ACTIONS(41), 1, + anon_sym_POUND_EQ, + ACTIONS(47), 1, + anon_sym_BQUOTE, + ACTIONS(55), 1, + anon_sym_POUNDC, + ACTIONS(1248), 1, + anon_sym_COLON, + ACTIONS(1250), 1, + anon_sym_COLON_COLON, + ACTIONS(1254), 1, + anon_sym_POUND_SQUOTE, + ACTIONS(1256), 1, anon_sym_AT, - ACTIONS(43), 1, + ACTIONS(1258), 1, anon_sym_SQUOTE, - ACTIONS(45), 1, - anon_sym_BQUOTE, - ACTIONS(47), 1, + ACTIONS(1260), 1, anon_sym_COMMA_AT, - ACTIONS(49), 1, + ACTIONS(1262), 1, anon_sym_COMMA, - ACTIONS(51), 1, - anon_sym_COLON, - ACTIONS(55), 1, - anon_sym_POUNDC, - STATE(815), 1, + STATE(783), 1, sym_sym_lit, - STATE(838), 1, + STATE(786), 1, sym__bare_vec_lit, - STATE(841), 1, + STATE(884), 1, sym__bare_set_lit, - STATE(930), 1, + STATE(892), 1, aux_sym_dis_expr_repeat1, - STATE(1047), 1, + STATE(933), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1909), 1, + STATE(1867), 1, sym_dotted_sym_lit, - ACTIONS(53), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(646), 2, + ACTIONS(650), 2, sym__ws, sym_comment, - ACTIONS(1842), 2, + ACTIONS(1104), 2, sym_num_lit, sym_char_lit, - ACTIONS(1844), 2, + ACTIONS(1106), 2, sym_nil_lit, sym_fancy_literal, - STATE(942), 2, + ACTIONS(1264), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + STATE(898), 2, sym__gap, sym_dis_expr, - STATE(842), 3, + STATE(787), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(225), 18, + STATE(804), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -43793,90 +43944,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [51175] = 38, + [51398] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(19), 1, - anon_sym_CARET, + ACTIONS(17), 1, + aux_sym_str_lit_token1, ACTIONS(21), 1, + aux_sym_sym_lit_token1, + ACTIONS(23), 1, + anon_sym_CARET, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(832), 1, - aux_sym_str_lit_token1, - ACTIONS(838), 1, + ACTIONS(27), 1, anon_sym_LPAREN, - ACTIONS(840), 1, + ACTIONS(29), 1, anon_sym_POUND0A, - ACTIONS(842), 1, + ACTIONS(31), 1, anon_sym_POUND, - ACTIONS(844), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(846), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(848), 1, - anon_sym_COLON_COLON, - ACTIONS(852), 1, + ACTIONS(39), 1, anon_sym_POUND_POUND, - ACTIONS(854), 1, + ACTIONS(41), 1, anon_sym_POUND_EQ, - ACTIONS(860), 1, + ACTIONS(47), 1, anon_sym_BQUOTE, - ACTIONS(866), 1, - anon_sym_COLON, - ACTIONS(870), 1, + ACTIONS(55), 1, anon_sym_POUNDC, - ACTIONS(1242), 1, - aux_sym_sym_lit_token1, - ACTIONS(1244), 1, + ACTIONS(1248), 1, + anon_sym_COLON, + ACTIONS(1250), 1, + anon_sym_COLON_COLON, + ACTIONS(1254), 1, anon_sym_POUND_SQUOTE, - ACTIONS(1246), 1, + ACTIONS(1256), 1, anon_sym_AT, - ACTIONS(1248), 1, + ACTIONS(1258), 1, anon_sym_SQUOTE, - ACTIONS(1250), 1, + ACTIONS(1260), 1, anon_sym_COMMA_AT, - ACTIONS(1252), 1, + ACTIONS(1262), 1, anon_sym_COMMA, - STATE(364), 1, + STATE(783), 1, + sym_sym_lit, + STATE(786), 1, + sym__bare_vec_lit, + STATE(884), 1, + sym__bare_set_lit, + STATE(892), 1, aux_sym_dis_expr_repeat1, - STATE(1050), 1, + STATE(933), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1108), 1, - sym__bare_set_lit, - STATE(1109), 1, - sym__bare_vec_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1386), 1, - sym_sym_lit, - STATE(1910), 1, + STATE(1867), 1, sym_dotted_sym_lit, - ACTIONS(828), 2, + ACTIONS(650), 2, sym__ws, sym_comment, - ACTIONS(924), 2, + ACTIONS(1080), 2, sym_num_lit, sym_char_lit, - ACTIONS(926), 2, + ACTIONS(1082), 2, sym_nil_lit, sym_fancy_literal, - ACTIONS(1254), 2, + ACTIONS(1264), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - STATE(943), 2, + STATE(898), 2, sym__gap, sym_dis_expr, - STATE(1110), 3, + STATE(787), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1200), 18, + STATE(800), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -43894,90 +44046,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [51314] = 38, + [51538] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(832), 1, + ACTIONS(660), 1, + anon_sym_COLON, + ACTIONS(662), 1, + anon_sym_COLON_COLON, + ACTIONS(664), 1, aux_sym_str_lit_token1, - ACTIONS(838), 1, + ACTIONS(668), 1, + aux_sym_sym_lit_token1, + ACTIONS(670), 1, anon_sym_LPAREN, - ACTIONS(840), 1, + ACTIONS(672), 1, anon_sym_POUND0A, - ACTIONS(842), 1, + ACTIONS(674), 1, anon_sym_POUND, - ACTIONS(844), 1, + ACTIONS(676), 1, anon_sym_POUND_QMARK, - ACTIONS(846), 1, + ACTIONS(678), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(848), 1, - anon_sym_COLON_COLON, - ACTIONS(852), 1, + ACTIONS(680), 1, + anon_sym_POUND_SQUOTE, + ACTIONS(682), 1, anon_sym_POUND_POUND, - ACTIONS(854), 1, + ACTIONS(684), 1, anon_sym_POUND_EQ, - ACTIONS(860), 1, - anon_sym_BQUOTE, - ACTIONS(866), 1, - anon_sym_COLON, - ACTIONS(870), 1, - anon_sym_POUNDC, - ACTIONS(1242), 1, - aux_sym_sym_lit_token1, - ACTIONS(1244), 1, - anon_sym_POUND_SQUOTE, - ACTIONS(1246), 1, + ACTIONS(686), 1, anon_sym_AT, - ACTIONS(1248), 1, + ACTIONS(688), 1, anon_sym_SQUOTE, - ACTIONS(1250), 1, + ACTIONS(690), 1, + anon_sym_BQUOTE, + ACTIONS(692), 1, anon_sym_COMMA_AT, - ACTIONS(1252), 1, + ACTIONS(694), 1, anon_sym_COMMA, - STATE(930), 1, + ACTIONS(698), 1, + anon_sym_POUNDC, + STATE(566), 1, + sym_sym_lit, + STATE(678), 1, + sym__bare_set_lit, + STATE(679), 1, + sym__bare_vec_lit, + STATE(892), 1, aux_sym_dis_expr_repeat1, - STATE(1050), 1, + STATE(925), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1108), 1, - sym__bare_set_lit, - STATE(1109), 1, - sym__bare_vec_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1386), 1, - sym_sym_lit, - STATE(1910), 1, + STATE(1868), 1, sym_dotted_sym_lit, - ACTIONS(828), 2, + ACTIONS(656), 2, sym__ws, sym_comment, - ACTIONS(928), 2, + ACTIONS(696), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(1876), 2, sym_num_lit, sym_char_lit, - ACTIONS(930), 2, + ACTIONS(1878), 2, sym_nil_lit, sym_fancy_literal, - ACTIONS(1254), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - STATE(943), 2, + STATE(906), 2, sym__gap, sym_dis_expr, - STATE(1110), 3, + STATE(680), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1197), 18, + STATE(641), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -43995,90 +44148,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [51453] = 38, + [51678] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(19), 1, - anon_sym_CARET, - ACTIONS(21), 1, - anon_sym_POUND_CARET, - ACTIONS(1110), 1, + ACTIONS(17), 1, aux_sym_str_lit_token1, - ACTIONS(1114), 1, + ACTIONS(21), 1, aux_sym_sym_lit_token1, - ACTIONS(1116), 1, + ACTIONS(23), 1, + anon_sym_CARET, + ACTIONS(25), 1, + anon_sym_POUND_CARET, + ACTIONS(27), 1, anon_sym_LPAREN, - ACTIONS(1118), 1, + ACTIONS(29), 1, anon_sym_POUND0A, - ACTIONS(1120), 1, + ACTIONS(31), 1, anon_sym_POUND, - ACTIONS(1122), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(1124), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(1126), 1, - anon_sym_COLON_COLON, - ACTIONS(1128), 1, - anon_sym_POUND_SQUOTE, - ACTIONS(1130), 1, + ACTIONS(39), 1, anon_sym_POUND_POUND, - ACTIONS(1132), 1, + ACTIONS(41), 1, anon_sym_POUND_EQ, - ACTIONS(1134), 1, - anon_sym_AT, - ACTIONS(1136), 1, - anon_sym_SQUOTE, - ACTIONS(1138), 1, + ACTIONS(47), 1, anon_sym_BQUOTE, - ACTIONS(1140), 1, - anon_sym_COMMA_AT, - ACTIONS(1142), 1, - anon_sym_COMMA, - ACTIONS(1144), 1, - anon_sym_COLON, - ACTIONS(1148), 1, + ACTIONS(55), 1, anon_sym_POUNDC, - STATE(930), 1, + ACTIONS(1248), 1, + anon_sym_COLON, + ACTIONS(1250), 1, + anon_sym_COLON_COLON, + ACTIONS(1254), 1, + anon_sym_POUND_SQUOTE, + ACTIONS(1256), 1, + anon_sym_AT, + ACTIONS(1258), 1, + anon_sym_SQUOTE, + ACTIONS(1260), 1, + anon_sym_COMMA_AT, + ACTIONS(1262), 1, + anon_sym_COMMA, + STATE(353), 1, aux_sym_dis_expr_repeat1, - STATE(1067), 1, - aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, - sym_meta_lit, - STATE(1165), 1, + STATE(783), 1, sym_sym_lit, - STATE(1318), 1, - sym__bare_set_lit, - STATE(1320), 1, + STATE(786), 1, sym__bare_vec_lit, - STATE(1369), 1, + STATE(884), 1, + sym__bare_set_lit, + STATE(933), 1, + aux_sym_sym_lit_repeat1, + STATE(1162), 1, + sym_meta_lit, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1904), 1, + STATE(1867), 1, sym_dotted_sym_lit, - ACTIONS(1146), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(1780), 2, + ACTIONS(650), 2, sym__ws, sym_comment, - ACTIONS(1846), 2, + ACTIONS(1028), 2, sym_num_lit, sym_char_lit, - ACTIONS(1848), 2, + ACTIONS(1030), 2, sym_nil_lit, sym_fancy_literal, - STATE(941), 2, + ACTIONS(1264), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + STATE(898), 2, sym__gap, sym_dis_expr, - STATE(1323), 3, + STATE(787), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1294), 18, + STATE(797), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -44096,90 +44250,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [51592] = 38, + [51818] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(19), 1, - anon_sym_CARET, + ACTIONS(17), 1, + aux_sym_str_lit_token1, ACTIONS(21), 1, + aux_sym_sym_lit_token1, + ACTIONS(23), 1, + anon_sym_CARET, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(832), 1, - aux_sym_str_lit_token1, - ACTIONS(838), 1, + ACTIONS(27), 1, anon_sym_LPAREN, - ACTIONS(840), 1, + ACTIONS(29), 1, anon_sym_POUND0A, - ACTIONS(842), 1, + ACTIONS(31), 1, anon_sym_POUND, - ACTIONS(844), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(846), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(848), 1, - anon_sym_COLON_COLON, - ACTIONS(852), 1, + ACTIONS(39), 1, anon_sym_POUND_POUND, - ACTIONS(854), 1, + ACTIONS(41), 1, anon_sym_POUND_EQ, - ACTIONS(860), 1, + ACTIONS(47), 1, anon_sym_BQUOTE, - ACTIONS(866), 1, - anon_sym_COLON, - ACTIONS(870), 1, + ACTIONS(55), 1, anon_sym_POUNDC, - ACTIONS(1242), 1, - aux_sym_sym_lit_token1, - ACTIONS(1244), 1, + ACTIONS(1248), 1, + anon_sym_COLON, + ACTIONS(1250), 1, + anon_sym_COLON_COLON, + ACTIONS(1254), 1, anon_sym_POUND_SQUOTE, - ACTIONS(1246), 1, + ACTIONS(1256), 1, anon_sym_AT, - ACTIONS(1248), 1, + ACTIONS(1258), 1, anon_sym_SQUOTE, - ACTIONS(1250), 1, + ACTIONS(1260), 1, anon_sym_COMMA_AT, - ACTIONS(1252), 1, + ACTIONS(1262), 1, anon_sym_COMMA, - STATE(365), 1, + STATE(783), 1, + sym_sym_lit, + STATE(786), 1, + sym__bare_vec_lit, + STATE(884), 1, + sym__bare_set_lit, + STATE(892), 1, aux_sym_dis_expr_repeat1, - STATE(1050), 1, + STATE(933), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1108), 1, - sym__bare_set_lit, - STATE(1109), 1, - sym__bare_vec_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1386), 1, - sym_sym_lit, - STATE(1910), 1, + STATE(1867), 1, sym_dotted_sym_lit, - ACTIONS(828), 2, + ACTIONS(650), 2, sym__ws, sym_comment, - ACTIONS(936), 2, + ACTIONS(1024), 2, sym_num_lit, sym_char_lit, - ACTIONS(938), 2, + ACTIONS(1026), 2, sym_nil_lit, sym_fancy_literal, - ACTIONS(1254), 2, + ACTIONS(1264), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - STATE(943), 2, + STATE(898), 2, sym__gap, sym_dis_expr, - STATE(1110), 3, + STATE(787), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1195), 18, + STATE(796), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -44197,90 +44352,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [51731] = 38, + [51958] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(832), 1, + ACTIONS(562), 1, + anon_sym_COLON, + ACTIONS(564), 1, + anon_sym_COLON_COLON, + ACTIONS(566), 1, aux_sym_str_lit_token1, - ACTIONS(838), 1, + ACTIONS(570), 1, + aux_sym_sym_lit_token1, + ACTIONS(572), 1, anon_sym_LPAREN, - ACTIONS(840), 1, + ACTIONS(574), 1, anon_sym_POUND0A, - ACTIONS(842), 1, + ACTIONS(576), 1, anon_sym_POUND, - ACTIONS(844), 1, + ACTIONS(578), 1, anon_sym_POUND_QMARK, - ACTIONS(846), 1, + ACTIONS(580), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(848), 1, - anon_sym_COLON_COLON, - ACTIONS(852), 1, + ACTIONS(582), 1, + anon_sym_POUND_SQUOTE, + ACTIONS(584), 1, anon_sym_POUND_POUND, - ACTIONS(854), 1, + ACTIONS(586), 1, anon_sym_POUND_EQ, - ACTIONS(860), 1, - anon_sym_BQUOTE, - ACTIONS(866), 1, - anon_sym_COLON, - ACTIONS(870), 1, - anon_sym_POUNDC, - ACTIONS(1242), 1, - aux_sym_sym_lit_token1, - ACTIONS(1244), 1, - anon_sym_POUND_SQUOTE, - ACTIONS(1246), 1, + ACTIONS(588), 1, anon_sym_AT, - ACTIONS(1248), 1, + ACTIONS(590), 1, anon_sym_SQUOTE, - ACTIONS(1250), 1, + ACTIONS(592), 1, + anon_sym_BQUOTE, + ACTIONS(594), 1, anon_sym_COMMA_AT, - ACTIONS(1252), 1, + ACTIONS(596), 1, anon_sym_COMMA, - STATE(930), 1, + ACTIONS(600), 1, + anon_sym_POUNDC, + STATE(892), 1, aux_sym_dis_expr_repeat1, - STATE(1050), 1, + STATE(924), 1, + sym_sym_lit, + STATE(926), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, - sym_meta_lit, - STATE(1108), 1, - sym__bare_set_lit, - STATE(1109), 1, + STATE(1068), 1, sym__bare_vec_lit, - STATE(1369), 1, + STATE(1069), 1, + sym__bare_set_lit, + STATE(1162), 1, + sym_meta_lit, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1386), 1, - sym_sym_lit, - STATE(1910), 1, + STATE(1861), 1, sym_dotted_sym_lit, - ACTIONS(828), 2, + ACTIONS(558), 2, sym__ws, sym_comment, - ACTIONS(944), 2, + ACTIONS(598), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(1880), 2, sym_num_lit, sym_char_lit, - ACTIONS(946), 2, + ACTIONS(1882), 2, sym_nil_lit, sym_fancy_literal, - ACTIONS(1254), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - STATE(943), 2, + STATE(902), 2, sym__gap, sym_dis_expr, - STATE(1110), 3, + STATE(1067), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1194), 18, + STATE(1089), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -44298,90 +44454,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [51870] = 38, + [52098] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(832), 1, + ACTIONS(660), 1, + anon_sym_COLON, + ACTIONS(662), 1, + anon_sym_COLON_COLON, + ACTIONS(664), 1, aux_sym_str_lit_token1, - ACTIONS(838), 1, + ACTIONS(668), 1, + aux_sym_sym_lit_token1, + ACTIONS(670), 1, anon_sym_LPAREN, - ACTIONS(840), 1, + ACTIONS(672), 1, anon_sym_POUND0A, - ACTIONS(842), 1, + ACTIONS(674), 1, anon_sym_POUND, - ACTIONS(844), 1, + ACTIONS(676), 1, anon_sym_POUND_QMARK, - ACTIONS(846), 1, + ACTIONS(678), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(848), 1, - anon_sym_COLON_COLON, - ACTIONS(852), 1, + ACTIONS(680), 1, + anon_sym_POUND_SQUOTE, + ACTIONS(682), 1, anon_sym_POUND_POUND, - ACTIONS(854), 1, + ACTIONS(684), 1, anon_sym_POUND_EQ, - ACTIONS(860), 1, - anon_sym_BQUOTE, - ACTIONS(866), 1, - anon_sym_COLON, - ACTIONS(870), 1, - anon_sym_POUNDC, - ACTIONS(1242), 1, - aux_sym_sym_lit_token1, - ACTIONS(1244), 1, - anon_sym_POUND_SQUOTE, - ACTIONS(1246), 1, + ACTIONS(686), 1, anon_sym_AT, - ACTIONS(1248), 1, + ACTIONS(688), 1, anon_sym_SQUOTE, - ACTIONS(1250), 1, + ACTIONS(690), 1, + anon_sym_BQUOTE, + ACTIONS(692), 1, anon_sym_COMMA_AT, - ACTIONS(1252), 1, + ACTIONS(694), 1, anon_sym_COMMA, - STATE(930), 1, + ACTIONS(698), 1, + anon_sym_POUNDC, + STATE(171), 1, aux_sym_dis_expr_repeat1, - STATE(1050), 1, - aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, - sym_meta_lit, - STATE(1108), 1, + STATE(566), 1, + sym_sym_lit, + STATE(678), 1, sym__bare_set_lit, - STATE(1109), 1, + STATE(679), 1, sym__bare_vec_lit, - STATE(1369), 1, + STATE(925), 1, + aux_sym_sym_lit_repeat1, + STATE(1162), 1, + sym_meta_lit, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1386), 1, - sym_sym_lit, - STATE(1910), 1, + STATE(1868), 1, sym_dotted_sym_lit, - ACTIONS(828), 2, + ACTIONS(656), 2, sym__ws, sym_comment, - ACTIONS(1254), 2, + ACTIONS(696), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1512), 2, + ACTIONS(1884), 2, sym_num_lit, sym_char_lit, - ACTIONS(1514), 2, + ACTIONS(1886), 2, sym_nil_lit, sym_fancy_literal, - STATE(943), 2, + STATE(906), 2, sym__gap, sym_dis_expr, - STATE(1110), 3, + STATE(680), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1121), 18, + STATE(642), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -44399,90 +44556,91 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [52009] = 38, + [52238] = 38, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(1110), 1, + ACTIONS(660), 1, + anon_sym_COLON, + ACTIONS(662), 1, + anon_sym_COLON_COLON, + ACTIONS(664), 1, aux_sym_str_lit_token1, - ACTIONS(1114), 1, + ACTIONS(668), 1, aux_sym_sym_lit_token1, - ACTIONS(1116), 1, + ACTIONS(670), 1, anon_sym_LPAREN, - ACTIONS(1118), 1, + ACTIONS(672), 1, anon_sym_POUND0A, - ACTIONS(1120), 1, + ACTIONS(674), 1, anon_sym_POUND, - ACTIONS(1122), 1, + ACTIONS(676), 1, anon_sym_POUND_QMARK, - ACTIONS(1124), 1, + ACTIONS(678), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(1126), 1, - anon_sym_COLON_COLON, - ACTIONS(1128), 1, + ACTIONS(680), 1, anon_sym_POUND_SQUOTE, - ACTIONS(1130), 1, + ACTIONS(682), 1, anon_sym_POUND_POUND, - ACTIONS(1132), 1, + ACTIONS(684), 1, anon_sym_POUND_EQ, - ACTIONS(1134), 1, + ACTIONS(686), 1, anon_sym_AT, - ACTIONS(1136), 1, + ACTIONS(688), 1, anon_sym_SQUOTE, - ACTIONS(1138), 1, + ACTIONS(690), 1, anon_sym_BQUOTE, - ACTIONS(1140), 1, + ACTIONS(692), 1, anon_sym_COMMA_AT, - ACTIONS(1142), 1, + ACTIONS(694), 1, anon_sym_COMMA, - ACTIONS(1144), 1, - anon_sym_COLON, - ACTIONS(1148), 1, + ACTIONS(698), 1, anon_sym_POUNDC, - STATE(410), 1, + STATE(333), 1, aux_sym_dis_expr_repeat1, - STATE(1067), 1, - aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, - sym_meta_lit, - STATE(1165), 1, + STATE(566), 1, sym_sym_lit, - STATE(1318), 1, + STATE(678), 1, sym__bare_set_lit, - STATE(1320), 1, + STATE(679), 1, sym__bare_vec_lit, - STATE(1369), 1, + STATE(925), 1, + aux_sym_sym_lit_repeat1, + STATE(1162), 1, + sym_meta_lit, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1904), 1, + STATE(1868), 1, sym_dotted_sym_lit, - ACTIONS(1146), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(1780), 2, + ACTIONS(656), 2, sym__ws, sym_comment, - ACTIONS(1850), 2, + ACTIONS(696), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(1888), 2, sym_num_lit, sym_char_lit, - ACTIONS(1852), 2, + ACTIONS(1890), 2, sym_nil_lit, sym_fancy_literal, - STATE(941), 2, + STATE(906), 2, sym__gap, sym_dis_expr, - STATE(1323), 3, + STATE(680), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1345), 18, + STATE(613), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -44500,90 +44658,89 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [52148] = 38, + [52378] = 37, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(1110), 1, + ACTIONS(610), 1, + anon_sym_COLON, + ACTIONS(612), 1, + anon_sym_COLON_COLON, + ACTIONS(614), 1, aux_sym_str_lit_token1, - ACTIONS(1114), 1, + ACTIONS(618), 1, aux_sym_sym_lit_token1, - ACTIONS(1116), 1, + ACTIONS(620), 1, anon_sym_LPAREN, - ACTIONS(1118), 1, + ACTIONS(622), 1, anon_sym_POUND0A, - ACTIONS(1120), 1, + ACTIONS(624), 1, anon_sym_POUND, - ACTIONS(1122), 1, + ACTIONS(626), 1, anon_sym_POUND_QMARK, - ACTIONS(1124), 1, + ACTIONS(628), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(1126), 1, - anon_sym_COLON_COLON, - ACTIONS(1128), 1, + ACTIONS(630), 1, anon_sym_POUND_SQUOTE, - ACTIONS(1130), 1, + ACTIONS(632), 1, anon_sym_POUND_POUND, - ACTIONS(1132), 1, + ACTIONS(634), 1, anon_sym_POUND_EQ, - ACTIONS(1134), 1, + ACTIONS(636), 1, anon_sym_AT, - ACTIONS(1136), 1, + ACTIONS(638), 1, anon_sym_SQUOTE, - ACTIONS(1138), 1, + ACTIONS(640), 1, anon_sym_BQUOTE, - ACTIONS(1140), 1, + ACTIONS(642), 1, anon_sym_COMMA_AT, - ACTIONS(1142), 1, + ACTIONS(644), 1, anon_sym_COMMA, - ACTIONS(1144), 1, - anon_sym_COLON, - ACTIONS(1148), 1, + ACTIONS(648), 1, anon_sym_POUNDC, - STATE(411), 1, - aux_sym_dis_expr_repeat1, - STATE(1067), 1, - aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, - sym_meta_lit, - STATE(1165), 1, + STATE(545), 1, sym_sym_lit, - STATE(1318), 1, - sym__bare_set_lit, - STATE(1320), 1, + STATE(688), 1, sym__bare_vec_lit, - STATE(1369), 1, + STATE(691), 1, + sym__bare_set_lit, + STATE(1013), 1, + aux_sym_sym_lit_repeat1, + STATE(1162), 1, + sym_meta_lit, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1904), 1, + STATE(1862), 1, sym_dotted_sym_lit, - ACTIONS(1146), 2, + ACTIONS(646), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1780), 2, - sym__ws, - sym_comment, - ACTIONS(1854), 2, + ACTIONS(1608), 2, sym_num_lit, sym_char_lit, - ACTIONS(1856), 2, + ACTIONS(1610), 2, sym_nil_lit, sym_fancy_literal, - STATE(941), 2, + ACTIONS(1892), 2, + sym__ws, + sym_comment, + STATE(313), 2, sym__gap, sym_dis_expr, - STATE(1323), 3, + STATE(687), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1342), 18, + STATE(676), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -44601,90 +44758,89 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [52287] = 38, + [52515] = 37, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(1110), 1, + ACTIONS(518), 1, + anon_sym_COLON, + ACTIONS(520), 1, + anon_sym_COLON_COLON, + ACTIONS(522), 1, aux_sym_str_lit_token1, - ACTIONS(1114), 1, + ACTIONS(526), 1, aux_sym_sym_lit_token1, - ACTIONS(1116), 1, + ACTIONS(528), 1, anon_sym_LPAREN, - ACTIONS(1118), 1, + ACTIONS(530), 1, anon_sym_POUND0A, - ACTIONS(1120), 1, + ACTIONS(532), 1, anon_sym_POUND, - ACTIONS(1122), 1, + ACTIONS(534), 1, anon_sym_POUND_QMARK, - ACTIONS(1124), 1, + ACTIONS(536), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(1126), 1, - anon_sym_COLON_COLON, - ACTIONS(1128), 1, + ACTIONS(538), 1, anon_sym_POUND_SQUOTE, - ACTIONS(1130), 1, + ACTIONS(540), 1, anon_sym_POUND_POUND, - ACTIONS(1132), 1, + ACTIONS(542), 1, anon_sym_POUND_EQ, - ACTIONS(1134), 1, + ACTIONS(544), 1, anon_sym_AT, - ACTIONS(1136), 1, + ACTIONS(546), 1, anon_sym_SQUOTE, - ACTIONS(1138), 1, + ACTIONS(548), 1, anon_sym_BQUOTE, - ACTIONS(1140), 1, + ACTIONS(550), 1, anon_sym_COMMA_AT, - ACTIONS(1142), 1, + ACTIONS(552), 1, anon_sym_COMMA, - ACTIONS(1144), 1, - anon_sym_COLON, - ACTIONS(1148), 1, + ACTIONS(556), 1, anon_sym_POUNDC, - STATE(412), 1, - aux_sym_dis_expr_repeat1, - STATE(1067), 1, - aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, - sym_meta_lit, - STATE(1165), 1, + STATE(909), 1, sym_sym_lit, - STATE(1318), 1, + STATE(922), 1, sym__bare_set_lit, - STATE(1320), 1, + STATE(931), 1, sym__bare_vec_lit, - STATE(1369), 1, + STATE(936), 1, + aux_sym_sym_lit_repeat1, + STATE(1162), 1, + sym_meta_lit, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1904), 1, + STATE(1865), 1, sym_dotted_sym_lit, - ACTIONS(1146), 2, + ACTIONS(554), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1780), 2, + ACTIONS(1894), 2, sym__ws, sym_comment, - ACTIONS(1858), 2, + ACTIONS(1896), 2, sym_num_lit, sym_char_lit, - ACTIONS(1860), 2, + ACTIONS(1898), 2, sym_nil_lit, sym_fancy_literal, - STATE(941), 2, + STATE(279), 2, sym__gap, sym_dis_expr, - STATE(1323), 3, + STATE(930), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1340), 18, + STATE(1053), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -44702,90 +44858,89 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [52426] = 38, + [52652] = 37, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(1110), 1, + ACTIONS(518), 1, + anon_sym_COLON, + ACTIONS(520), 1, + anon_sym_COLON_COLON, + ACTIONS(522), 1, aux_sym_str_lit_token1, - ACTIONS(1114), 1, + ACTIONS(526), 1, aux_sym_sym_lit_token1, - ACTIONS(1116), 1, + ACTIONS(528), 1, anon_sym_LPAREN, - ACTIONS(1118), 1, + ACTIONS(530), 1, anon_sym_POUND0A, - ACTIONS(1120), 1, + ACTIONS(532), 1, anon_sym_POUND, - ACTIONS(1122), 1, + ACTIONS(534), 1, anon_sym_POUND_QMARK, - ACTIONS(1124), 1, + ACTIONS(536), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(1126), 1, - anon_sym_COLON_COLON, - ACTIONS(1128), 1, + ACTIONS(538), 1, anon_sym_POUND_SQUOTE, - ACTIONS(1130), 1, + ACTIONS(540), 1, anon_sym_POUND_POUND, - ACTIONS(1132), 1, + ACTIONS(542), 1, anon_sym_POUND_EQ, - ACTIONS(1134), 1, + ACTIONS(544), 1, anon_sym_AT, - ACTIONS(1136), 1, + ACTIONS(546), 1, anon_sym_SQUOTE, - ACTIONS(1138), 1, + ACTIONS(548), 1, anon_sym_BQUOTE, - ACTIONS(1140), 1, + ACTIONS(550), 1, anon_sym_COMMA_AT, - ACTIONS(1142), 1, + ACTIONS(552), 1, anon_sym_COMMA, - ACTIONS(1144), 1, - anon_sym_COLON, - ACTIONS(1148), 1, + ACTIONS(556), 1, anon_sym_POUNDC, - STATE(414), 1, - aux_sym_dis_expr_repeat1, - STATE(1067), 1, - aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, - sym_meta_lit, - STATE(1165), 1, + STATE(909), 1, sym_sym_lit, - STATE(1318), 1, + STATE(922), 1, sym__bare_set_lit, - STATE(1320), 1, + STATE(931), 1, sym__bare_vec_lit, - STATE(1369), 1, + STATE(936), 1, + aux_sym_sym_lit_repeat1, + STATE(1162), 1, + sym_meta_lit, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1904), 1, + STATE(1865), 1, sym_dotted_sym_lit, - ACTIONS(1146), 2, + ACTIONS(554), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1780), 2, - sym__ws, - sym_comment, - ACTIONS(1862), 2, + ACTIONS(1588), 2, sym_num_lit, sym_char_lit, - ACTIONS(1864), 2, + ACTIONS(1590), 2, sym_nil_lit, sym_fancy_literal, - STATE(941), 2, + ACTIONS(1900), 2, + sym__ws, + sym_comment, + STATE(310), 2, sym__gap, sym_dis_expr, - STATE(1323), 3, + STATE(930), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1339), 18, + STATE(1093), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -44803,90 +44958,89 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [52565] = 38, + [52789] = 37, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(1110), 1, + ACTIONS(518), 1, + anon_sym_COLON, + ACTIONS(520), 1, + anon_sym_COLON_COLON, + ACTIONS(522), 1, aux_sym_str_lit_token1, - ACTIONS(1114), 1, + ACTIONS(526), 1, aux_sym_sym_lit_token1, - ACTIONS(1116), 1, + ACTIONS(528), 1, anon_sym_LPAREN, - ACTIONS(1118), 1, + ACTIONS(530), 1, anon_sym_POUND0A, - ACTIONS(1120), 1, + ACTIONS(532), 1, anon_sym_POUND, - ACTIONS(1122), 1, + ACTIONS(534), 1, anon_sym_POUND_QMARK, - ACTIONS(1124), 1, + ACTIONS(536), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(1126), 1, - anon_sym_COLON_COLON, - ACTIONS(1128), 1, + ACTIONS(538), 1, anon_sym_POUND_SQUOTE, - ACTIONS(1130), 1, + ACTIONS(540), 1, anon_sym_POUND_POUND, - ACTIONS(1132), 1, + ACTIONS(542), 1, anon_sym_POUND_EQ, - ACTIONS(1134), 1, + ACTIONS(544), 1, anon_sym_AT, - ACTIONS(1136), 1, + ACTIONS(546), 1, anon_sym_SQUOTE, - ACTIONS(1138), 1, + ACTIONS(548), 1, anon_sym_BQUOTE, - ACTIONS(1140), 1, + ACTIONS(550), 1, anon_sym_COMMA_AT, - ACTIONS(1142), 1, + ACTIONS(552), 1, anon_sym_COMMA, - ACTIONS(1144), 1, - anon_sym_COLON, - ACTIONS(1148), 1, + ACTIONS(556), 1, anon_sym_POUNDC, - STATE(371), 1, - aux_sym_dis_expr_repeat1, - STATE(1067), 1, - aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, - sym_meta_lit, - STATE(1165), 1, + STATE(909), 1, sym_sym_lit, - STATE(1318), 1, + STATE(922), 1, sym__bare_set_lit, - STATE(1320), 1, + STATE(931), 1, sym__bare_vec_lit, - STATE(1369), 1, + STATE(936), 1, + aux_sym_sym_lit_repeat1, + STATE(1162), 1, + sym_meta_lit, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1904), 1, + STATE(1865), 1, sym_dotted_sym_lit, - ACTIONS(1146), 2, + ACTIONS(554), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1780), 2, - sym__ws, - sym_comment, - ACTIONS(1866), 2, + ACTIONS(1696), 2, sym_num_lit, sym_char_lit, - ACTIONS(1868), 2, + ACTIONS(1698), 2, sym_nil_lit, sym_fancy_literal, - STATE(941), 2, + ACTIONS(1902), 2, + sym__ws, + sym_comment, + STATE(337), 2, sym__gap, sym_dis_expr, - STATE(1323), 3, + STATE(930), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1298), 18, + STATE(1055), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -44904,90 +45058,89 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [52704] = 38, + [52926] = 37, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(1110), 1, + ACTIONS(518), 1, + anon_sym_COLON, + ACTIONS(520), 1, + anon_sym_COLON_COLON, + ACTIONS(522), 1, aux_sym_str_lit_token1, - ACTIONS(1114), 1, + ACTIONS(526), 1, aux_sym_sym_lit_token1, - ACTIONS(1116), 1, + ACTIONS(528), 1, anon_sym_LPAREN, - ACTIONS(1118), 1, + ACTIONS(530), 1, anon_sym_POUND0A, - ACTIONS(1120), 1, + ACTIONS(532), 1, anon_sym_POUND, - ACTIONS(1122), 1, + ACTIONS(534), 1, anon_sym_POUND_QMARK, - ACTIONS(1124), 1, + ACTIONS(536), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(1126), 1, - anon_sym_COLON_COLON, - ACTIONS(1128), 1, + ACTIONS(538), 1, anon_sym_POUND_SQUOTE, - ACTIONS(1130), 1, + ACTIONS(540), 1, anon_sym_POUND_POUND, - ACTIONS(1132), 1, + ACTIONS(542), 1, anon_sym_POUND_EQ, - ACTIONS(1134), 1, + ACTIONS(544), 1, anon_sym_AT, - ACTIONS(1136), 1, + ACTIONS(546), 1, anon_sym_SQUOTE, - ACTIONS(1138), 1, + ACTIONS(548), 1, anon_sym_BQUOTE, - ACTIONS(1140), 1, + ACTIONS(550), 1, anon_sym_COMMA_AT, - ACTIONS(1142), 1, + ACTIONS(552), 1, anon_sym_COMMA, - ACTIONS(1144), 1, - anon_sym_COLON, - ACTIONS(1148), 1, + ACTIONS(556), 1, anon_sym_POUNDC, - STATE(930), 1, - aux_sym_dis_expr_repeat1, - STATE(1067), 1, - aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, - sym_meta_lit, - STATE(1165), 1, + STATE(909), 1, sym_sym_lit, - STATE(1318), 1, + STATE(922), 1, sym__bare_set_lit, - STATE(1320), 1, + STATE(931), 1, sym__bare_vec_lit, - STATE(1369), 1, + STATE(936), 1, + aux_sym_sym_lit_repeat1, + STATE(1162), 1, + sym_meta_lit, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1904), 1, + STATE(1865), 1, sym_dotted_sym_lit, - ACTIONS(1146), 2, + ACTIONS(554), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1780), 2, - sym__ws, - sym_comment, - ACTIONS(1870), 2, + ACTIONS(1628), 2, sym_num_lit, sym_char_lit, - ACTIONS(1872), 2, + ACTIONS(1630), 2, sym_nil_lit, sym_fancy_literal, - STATE(941), 2, + ACTIONS(1904), 2, + sym__ws, + sym_comment, + STATE(315), 2, sym__gap, sym_dis_expr, - STATE(1323), 3, + STATE(930), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1299), 18, + STATE(1051), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -45005,90 +45158,89 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [52843] = 38, + [53063] = 37, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(832), 1, + ACTIONS(518), 1, + anon_sym_COLON, + ACTIONS(520), 1, + anon_sym_COLON_COLON, + ACTIONS(522), 1, aux_sym_str_lit_token1, - ACTIONS(838), 1, + ACTIONS(526), 1, + aux_sym_sym_lit_token1, + ACTIONS(528), 1, anon_sym_LPAREN, - ACTIONS(840), 1, + ACTIONS(530), 1, anon_sym_POUND0A, - ACTIONS(842), 1, + ACTIONS(532), 1, anon_sym_POUND, - ACTIONS(844), 1, + ACTIONS(534), 1, anon_sym_POUND_QMARK, - ACTIONS(846), 1, + ACTIONS(536), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(848), 1, - anon_sym_COLON_COLON, - ACTIONS(852), 1, + ACTIONS(538), 1, + anon_sym_POUND_SQUOTE, + ACTIONS(540), 1, anon_sym_POUND_POUND, - ACTIONS(854), 1, + ACTIONS(542), 1, anon_sym_POUND_EQ, - ACTIONS(860), 1, - anon_sym_BQUOTE, - ACTIONS(866), 1, - anon_sym_COLON, - ACTIONS(870), 1, - anon_sym_POUNDC, - ACTIONS(1242), 1, - aux_sym_sym_lit_token1, - ACTIONS(1244), 1, - anon_sym_POUND_SQUOTE, - ACTIONS(1246), 1, + ACTIONS(544), 1, anon_sym_AT, - ACTIONS(1248), 1, + ACTIONS(546), 1, anon_sym_SQUOTE, - ACTIONS(1250), 1, + ACTIONS(548), 1, + anon_sym_BQUOTE, + ACTIONS(550), 1, anon_sym_COMMA_AT, - ACTIONS(1252), 1, + ACTIONS(552), 1, anon_sym_COMMA, - STATE(930), 1, - aux_sym_dis_expr_repeat1, - STATE(1050), 1, - aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, - sym_meta_lit, - STATE(1108), 1, + ACTIONS(556), 1, + anon_sym_POUNDC, + STATE(909), 1, + sym_sym_lit, + STATE(922), 1, sym__bare_set_lit, - STATE(1109), 1, + STATE(931), 1, sym__bare_vec_lit, - STATE(1369), 1, + STATE(936), 1, + aux_sym_sym_lit_repeat1, + STATE(1162), 1, + sym_meta_lit, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1386), 1, - sym_sym_lit, - STATE(1910), 1, + STATE(1865), 1, sym_dotted_sym_lit, - ACTIONS(828), 2, - sym__ws, - sym_comment, - ACTIONS(992), 2, + ACTIONS(554), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(1716), 2, sym_num_lit, sym_char_lit, - ACTIONS(994), 2, + ACTIONS(1718), 2, sym_nil_lit, sym_fancy_literal, - ACTIONS(1254), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - STATE(943), 2, + ACTIONS(1906), 2, + sym__ws, + sym_comment, + STATE(340), 2, sym__gap, sym_dis_expr, - STATE(1110), 3, + STATE(930), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1192), 18, + STATE(1056), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -45106,90 +45258,89 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [52982] = 38, + [53200] = 37, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(1110), 1, + ACTIONS(518), 1, + anon_sym_COLON, + ACTIONS(520), 1, + anon_sym_COLON_COLON, + ACTIONS(522), 1, aux_sym_str_lit_token1, - ACTIONS(1114), 1, + ACTIONS(526), 1, aux_sym_sym_lit_token1, - ACTIONS(1116), 1, + ACTIONS(528), 1, anon_sym_LPAREN, - ACTIONS(1118), 1, + ACTIONS(530), 1, anon_sym_POUND0A, - ACTIONS(1120), 1, + ACTIONS(532), 1, anon_sym_POUND, - ACTIONS(1122), 1, + ACTIONS(534), 1, anon_sym_POUND_QMARK, - ACTIONS(1124), 1, + ACTIONS(536), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(1126), 1, - anon_sym_COLON_COLON, - ACTIONS(1128), 1, + ACTIONS(538), 1, anon_sym_POUND_SQUOTE, - ACTIONS(1130), 1, + ACTIONS(540), 1, anon_sym_POUND_POUND, - ACTIONS(1132), 1, + ACTIONS(542), 1, anon_sym_POUND_EQ, - ACTIONS(1134), 1, + ACTIONS(544), 1, anon_sym_AT, - ACTIONS(1136), 1, + ACTIONS(546), 1, anon_sym_SQUOTE, - ACTIONS(1138), 1, + ACTIONS(548), 1, anon_sym_BQUOTE, - ACTIONS(1140), 1, + ACTIONS(550), 1, anon_sym_COMMA_AT, - ACTIONS(1142), 1, + ACTIONS(552), 1, anon_sym_COMMA, - ACTIONS(1144), 1, - anon_sym_COLON, - ACTIONS(1148), 1, + ACTIONS(556), 1, anon_sym_POUNDC, - STATE(380), 1, - aux_sym_dis_expr_repeat1, - STATE(1067), 1, - aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, - sym_meta_lit, - STATE(1165), 1, + STATE(909), 1, sym_sym_lit, - STATE(1318), 1, + STATE(922), 1, sym__bare_set_lit, - STATE(1320), 1, + STATE(931), 1, sym__bare_vec_lit, - STATE(1369), 1, + STATE(936), 1, + aux_sym_sym_lit_repeat1, + STATE(1162), 1, + sym_meta_lit, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1904), 1, + STATE(1865), 1, sym_dotted_sym_lit, - ACTIONS(1146), 2, + ACTIONS(554), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1780), 2, + ACTIONS(1908), 2, sym__ws, sym_comment, - ACTIONS(1874), 2, + ACTIONS(1910), 2, sym_num_lit, sym_char_lit, - ACTIONS(1876), 2, + ACTIONS(1912), 2, sym_nil_lit, sym_fancy_literal, - STATE(941), 2, + STATE(288), 2, sym__gap, sym_dis_expr, - STATE(1323), 3, + STATE(930), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1300), 18, + STATE(1052), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -45207,90 +45358,89 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [53121] = 38, + [53337] = 37, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(1110), 1, + ACTIONS(610), 1, + anon_sym_COLON, + ACTIONS(612), 1, + anon_sym_COLON_COLON, + ACTIONS(614), 1, aux_sym_str_lit_token1, - ACTIONS(1114), 1, + ACTIONS(618), 1, aux_sym_sym_lit_token1, - ACTIONS(1116), 1, + ACTIONS(620), 1, anon_sym_LPAREN, - ACTIONS(1118), 1, + ACTIONS(622), 1, anon_sym_POUND0A, - ACTIONS(1120), 1, + ACTIONS(624), 1, anon_sym_POUND, - ACTIONS(1122), 1, + ACTIONS(626), 1, anon_sym_POUND_QMARK, - ACTIONS(1124), 1, + ACTIONS(628), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(1126), 1, - anon_sym_COLON_COLON, - ACTIONS(1128), 1, + ACTIONS(630), 1, anon_sym_POUND_SQUOTE, - ACTIONS(1130), 1, + ACTIONS(632), 1, anon_sym_POUND_POUND, - ACTIONS(1132), 1, + ACTIONS(634), 1, anon_sym_POUND_EQ, - ACTIONS(1134), 1, + ACTIONS(636), 1, anon_sym_AT, - ACTIONS(1136), 1, + ACTIONS(638), 1, anon_sym_SQUOTE, - ACTIONS(1138), 1, + ACTIONS(640), 1, anon_sym_BQUOTE, - ACTIONS(1140), 1, + ACTIONS(642), 1, anon_sym_COMMA_AT, - ACTIONS(1142), 1, + ACTIONS(644), 1, anon_sym_COMMA, - ACTIONS(1144), 1, - anon_sym_COLON, - ACTIONS(1148), 1, + ACTIONS(648), 1, anon_sym_POUNDC, - STATE(930), 1, - aux_sym_dis_expr_repeat1, - STATE(1067), 1, - aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, - sym_meta_lit, - STATE(1165), 1, + STATE(545), 1, sym_sym_lit, - STATE(1318), 1, - sym__bare_set_lit, - STATE(1320), 1, + STATE(688), 1, sym__bare_vec_lit, - STATE(1369), 1, + STATE(691), 1, + sym__bare_set_lit, + STATE(1013), 1, + aux_sym_sym_lit_repeat1, + STATE(1162), 1, + sym_meta_lit, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1904), 1, + STATE(1862), 1, sym_dotted_sym_lit, - ACTIONS(1146), 2, + ACTIONS(646), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1780), 2, + ACTIONS(1914), 2, sym__ws, sym_comment, - ACTIONS(1878), 2, + ACTIONS(1916), 2, sym_num_lit, sym_char_lit, - ACTIONS(1880), 2, + ACTIONS(1918), 2, sym_nil_lit, sym_fancy_literal, - STATE(941), 2, + STATE(283), 2, sym__gap, sym_dis_expr, - STATE(1323), 3, + STATE(687), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1301), 18, + STATE(771), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -45308,90 +45458,89 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [53260] = 38, + [53474] = 37, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(832), 1, + ACTIONS(518), 1, + anon_sym_COLON, + ACTIONS(520), 1, + anon_sym_COLON_COLON, + ACTIONS(522), 1, aux_sym_str_lit_token1, - ACTIONS(838), 1, + ACTIONS(526), 1, + aux_sym_sym_lit_token1, + ACTIONS(528), 1, anon_sym_LPAREN, - ACTIONS(840), 1, + ACTIONS(530), 1, anon_sym_POUND0A, - ACTIONS(842), 1, + ACTIONS(532), 1, anon_sym_POUND, - ACTIONS(844), 1, + ACTIONS(534), 1, anon_sym_POUND_QMARK, - ACTIONS(846), 1, + ACTIONS(536), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(848), 1, - anon_sym_COLON_COLON, - ACTIONS(852), 1, + ACTIONS(538), 1, + anon_sym_POUND_SQUOTE, + ACTIONS(540), 1, anon_sym_POUND_POUND, - ACTIONS(854), 1, + ACTIONS(542), 1, anon_sym_POUND_EQ, - ACTIONS(860), 1, - anon_sym_BQUOTE, - ACTIONS(866), 1, - anon_sym_COLON, - ACTIONS(870), 1, - anon_sym_POUNDC, - ACTIONS(1242), 1, - aux_sym_sym_lit_token1, - ACTIONS(1244), 1, - anon_sym_POUND_SQUOTE, - ACTIONS(1246), 1, + ACTIONS(544), 1, anon_sym_AT, - ACTIONS(1248), 1, + ACTIONS(546), 1, anon_sym_SQUOTE, - ACTIONS(1250), 1, + ACTIONS(548), 1, + anon_sym_BQUOTE, + ACTIONS(550), 1, anon_sym_COMMA_AT, - ACTIONS(1252), 1, + ACTIONS(552), 1, anon_sym_COMMA, - STATE(930), 1, - aux_sym_dis_expr_repeat1, - STATE(1050), 1, - aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, - sym_meta_lit, - STATE(1108), 1, + ACTIONS(556), 1, + anon_sym_POUNDC, + STATE(909), 1, + sym_sym_lit, + STATE(922), 1, sym__bare_set_lit, - STATE(1109), 1, + STATE(931), 1, sym__bare_vec_lit, - STATE(1369), 1, + STATE(936), 1, + aux_sym_sym_lit_repeat1, + STATE(1162), 1, + sym_meta_lit, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1386), 1, - sym_sym_lit, - STATE(1910), 1, + STATE(1865), 1, sym_dotted_sym_lit, - ACTIONS(828), 2, - sym__ws, - sym_comment, - ACTIONS(1254), 2, + ACTIONS(554), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1472), 2, + ACTIONS(1920), 2, + sym__ws, + sym_comment, + ACTIONS(1922), 2, sym_num_lit, sym_char_lit, - ACTIONS(1474), 2, + ACTIONS(1924), 2, sym_nil_lit, sym_fancy_literal, - STATE(943), 2, + STATE(185), 2, sym__gap, sym_dis_expr, - STATE(1110), 3, + STATE(930), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1103), 18, + STATE(921), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -45409,90 +45558,89 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [53399] = 38, + [53611] = 37, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(832), 1, + ACTIONS(1170), 1, + anon_sym_COLON, + ACTIONS(1172), 1, + anon_sym_COLON_COLON, + ACTIONS(1174), 1, aux_sym_str_lit_token1, - ACTIONS(838), 1, + ACTIONS(1178), 1, + aux_sym_sym_lit_token1, + ACTIONS(1180), 1, anon_sym_LPAREN, - ACTIONS(840), 1, + ACTIONS(1182), 1, anon_sym_POUND0A, - ACTIONS(842), 1, + ACTIONS(1184), 1, anon_sym_POUND, - ACTIONS(844), 1, + ACTIONS(1186), 1, anon_sym_POUND_QMARK, - ACTIONS(846), 1, + ACTIONS(1188), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(848), 1, - anon_sym_COLON_COLON, - ACTIONS(852), 1, + ACTIONS(1190), 1, + anon_sym_POUND_SQUOTE, + ACTIONS(1192), 1, anon_sym_POUND_POUND, - ACTIONS(854), 1, + ACTIONS(1194), 1, anon_sym_POUND_EQ, - ACTIONS(860), 1, - anon_sym_BQUOTE, - ACTIONS(866), 1, - anon_sym_COLON, - ACTIONS(870), 1, - anon_sym_POUNDC, - ACTIONS(1242), 1, - aux_sym_sym_lit_token1, - ACTIONS(1244), 1, - anon_sym_POUND_SQUOTE, - ACTIONS(1246), 1, + ACTIONS(1196), 1, anon_sym_AT, - ACTIONS(1248), 1, + ACTIONS(1198), 1, anon_sym_SQUOTE, - ACTIONS(1250), 1, + ACTIONS(1200), 1, + anon_sym_BQUOTE, + ACTIONS(1202), 1, anon_sym_COMMA_AT, - ACTIONS(1252), 1, + ACTIONS(1204), 1, anon_sym_COMMA, - STATE(379), 1, - aux_sym_dis_expr_repeat1, - STATE(1050), 1, + ACTIONS(1208), 1, + anon_sym_POUNDC, + STATE(950), 1, aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1108), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1173), 1, + sym_sym_lit, + STATE(1226), 1, sym__bare_set_lit, - STATE(1109), 1, + STATE(1230), 1, sym__bare_vec_lit, - STATE(1369), 1, + STATE(1337), 1, sym__metadata_lit, - STATE(1386), 1, - sym_sym_lit, - STATE(1910), 1, + STATE(1864), 1, sym_dotted_sym_lit, - ACTIONS(828), 2, + ACTIONS(1206), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(1926), 2, sym__ws, sym_comment, - ACTIONS(1036), 2, + ACTIONS(1928), 2, sym_num_lit, sym_char_lit, - ACTIONS(1038), 2, + ACTIONS(1930), 2, sym_nil_lit, sym_fancy_literal, - ACTIONS(1254), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - STATE(943), 2, + STATE(187), 2, sym__gap, sym_dis_expr, - STATE(1110), 3, + STATE(1231), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1188), 18, + STATE(1066), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -45510,90 +45658,89 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [53538] = 38, + [53748] = 37, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(832), 1, + ACTIONS(518), 1, + anon_sym_COLON, + ACTIONS(520), 1, + anon_sym_COLON_COLON, + ACTIONS(522), 1, aux_sym_str_lit_token1, - ACTIONS(838), 1, + ACTIONS(526), 1, + aux_sym_sym_lit_token1, + ACTIONS(528), 1, anon_sym_LPAREN, - ACTIONS(840), 1, + ACTIONS(530), 1, anon_sym_POUND0A, - ACTIONS(842), 1, + ACTIONS(532), 1, anon_sym_POUND, - ACTIONS(844), 1, + ACTIONS(534), 1, anon_sym_POUND_QMARK, - ACTIONS(846), 1, + ACTIONS(536), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(848), 1, - anon_sym_COLON_COLON, - ACTIONS(852), 1, + ACTIONS(538), 1, + anon_sym_POUND_SQUOTE, + ACTIONS(540), 1, anon_sym_POUND_POUND, - ACTIONS(854), 1, + ACTIONS(542), 1, anon_sym_POUND_EQ, - ACTIONS(860), 1, - anon_sym_BQUOTE, - ACTIONS(866), 1, - anon_sym_COLON, - ACTIONS(870), 1, - anon_sym_POUNDC, - ACTIONS(1242), 1, - aux_sym_sym_lit_token1, - ACTIONS(1244), 1, - anon_sym_POUND_SQUOTE, - ACTIONS(1246), 1, + ACTIONS(544), 1, anon_sym_AT, - ACTIONS(1248), 1, + ACTIONS(546), 1, anon_sym_SQUOTE, - ACTIONS(1250), 1, + ACTIONS(548), 1, + anon_sym_BQUOTE, + ACTIONS(550), 1, anon_sym_COMMA_AT, - ACTIONS(1252), 1, + ACTIONS(552), 1, anon_sym_COMMA, - STATE(382), 1, - aux_sym_dis_expr_repeat1, - STATE(1050), 1, - aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, - sym_meta_lit, - STATE(1108), 1, + ACTIONS(556), 1, + anon_sym_POUNDC, + STATE(909), 1, + sym_sym_lit, + STATE(922), 1, sym__bare_set_lit, - STATE(1109), 1, + STATE(931), 1, sym__bare_vec_lit, - STATE(1369), 1, + STATE(936), 1, + aux_sym_sym_lit_repeat1, + STATE(1162), 1, + sym_meta_lit, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1386), 1, - sym_sym_lit, - STATE(1910), 1, + STATE(1865), 1, sym_dotted_sym_lit, - ACTIONS(828), 2, + ACTIONS(554), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(1932), 2, sym__ws, sym_comment, - ACTIONS(1040), 2, + ACTIONS(1934), 2, sym_num_lit, sym_char_lit, - ACTIONS(1042), 2, + ACTIONS(1936), 2, sym_nil_lit, sym_fancy_literal, - ACTIONS(1254), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - STATE(943), 2, + STATE(189), 2, sym__gap, sym_dis_expr, - STATE(1110), 3, + STATE(930), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1187), 18, + STATE(1851), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -45611,90 +45758,89 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [53677] = 38, + [53885] = 37, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(832), 1, + ACTIONS(518), 1, + anon_sym_COLON, + ACTIONS(520), 1, + anon_sym_COLON_COLON, + ACTIONS(522), 1, aux_sym_str_lit_token1, - ACTIONS(838), 1, + ACTIONS(526), 1, + aux_sym_sym_lit_token1, + ACTIONS(528), 1, anon_sym_LPAREN, - ACTIONS(840), 1, + ACTIONS(530), 1, anon_sym_POUND0A, - ACTIONS(842), 1, + ACTIONS(532), 1, anon_sym_POUND, - ACTIONS(844), 1, + ACTIONS(534), 1, anon_sym_POUND_QMARK, - ACTIONS(846), 1, + ACTIONS(536), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(848), 1, - anon_sym_COLON_COLON, - ACTIONS(852), 1, + ACTIONS(538), 1, + anon_sym_POUND_SQUOTE, + ACTIONS(540), 1, anon_sym_POUND_POUND, - ACTIONS(854), 1, + ACTIONS(542), 1, anon_sym_POUND_EQ, - ACTIONS(860), 1, - anon_sym_BQUOTE, - ACTIONS(866), 1, - anon_sym_COLON, - ACTIONS(870), 1, - anon_sym_POUNDC, - ACTIONS(1242), 1, - aux_sym_sym_lit_token1, - ACTIONS(1244), 1, - anon_sym_POUND_SQUOTE, - ACTIONS(1246), 1, + ACTIONS(544), 1, anon_sym_AT, - ACTIONS(1248), 1, + ACTIONS(546), 1, anon_sym_SQUOTE, - ACTIONS(1250), 1, + ACTIONS(548), 1, + anon_sym_BQUOTE, + ACTIONS(550), 1, anon_sym_COMMA_AT, - ACTIONS(1252), 1, + ACTIONS(552), 1, anon_sym_COMMA, - STATE(930), 1, - aux_sym_dis_expr_repeat1, - STATE(1050), 1, - aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, - sym_meta_lit, - STATE(1108), 1, + ACTIONS(556), 1, + anon_sym_POUNDC, + STATE(909), 1, + sym_sym_lit, + STATE(922), 1, sym__bare_set_lit, - STATE(1109), 1, + STATE(931), 1, sym__bare_vec_lit, - STATE(1369), 1, + STATE(936), 1, + aux_sym_sym_lit_repeat1, + STATE(1162), 1, + sym_meta_lit, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1386), 1, - sym_sym_lit, - STATE(1910), 1, + STATE(1865), 1, sym_dotted_sym_lit, - ACTIONS(828), 2, + ACTIONS(554), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(1938), 2, sym__ws, sym_comment, - ACTIONS(1044), 2, + ACTIONS(1940), 2, sym_num_lit, sym_char_lit, - ACTIONS(1046), 2, + ACTIONS(1942), 2, sym_nil_lit, sym_fancy_literal, - ACTIONS(1254), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - STATE(943), 2, + STATE(194), 2, sym__gap, sym_dis_expr, - STATE(1110), 3, + STATE(930), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1185), 18, + STATE(1065), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -45712,90 +45858,89 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [53816] = 38, + [54022] = 37, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(832), 1, + ACTIONS(518), 1, + anon_sym_COLON, + ACTIONS(520), 1, + anon_sym_COLON_COLON, + ACTIONS(522), 1, aux_sym_str_lit_token1, - ACTIONS(838), 1, + ACTIONS(526), 1, + aux_sym_sym_lit_token1, + ACTIONS(528), 1, anon_sym_LPAREN, - ACTIONS(840), 1, + ACTIONS(530), 1, anon_sym_POUND0A, - ACTIONS(842), 1, + ACTIONS(532), 1, anon_sym_POUND, - ACTIONS(844), 1, + ACTIONS(534), 1, anon_sym_POUND_QMARK, - ACTIONS(846), 1, + ACTIONS(536), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(848), 1, - anon_sym_COLON_COLON, - ACTIONS(852), 1, + ACTIONS(538), 1, + anon_sym_POUND_SQUOTE, + ACTIONS(540), 1, anon_sym_POUND_POUND, - ACTIONS(854), 1, + ACTIONS(542), 1, anon_sym_POUND_EQ, - ACTIONS(860), 1, - anon_sym_BQUOTE, - ACTIONS(866), 1, - anon_sym_COLON, - ACTIONS(870), 1, - anon_sym_POUNDC, - ACTIONS(1242), 1, - aux_sym_sym_lit_token1, - ACTIONS(1244), 1, - anon_sym_POUND_SQUOTE, - ACTIONS(1246), 1, + ACTIONS(544), 1, anon_sym_AT, - ACTIONS(1248), 1, + ACTIONS(546), 1, anon_sym_SQUOTE, - ACTIONS(1250), 1, + ACTIONS(548), 1, + anon_sym_BQUOTE, + ACTIONS(550), 1, anon_sym_COMMA_AT, - ACTIONS(1252), 1, + ACTIONS(552), 1, anon_sym_COMMA, - STATE(930), 1, - aux_sym_dis_expr_repeat1, - STATE(1050), 1, - aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, - sym_meta_lit, - STATE(1108), 1, + ACTIONS(556), 1, + anon_sym_POUNDC, + STATE(909), 1, + sym_sym_lit, + STATE(922), 1, sym__bare_set_lit, - STATE(1109), 1, + STATE(931), 1, sym__bare_vec_lit, - STATE(1369), 1, + STATE(936), 1, + aux_sym_sym_lit_repeat1, + STATE(1162), 1, + sym_meta_lit, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1386), 1, - sym_sym_lit, - STATE(1910), 1, + STATE(1865), 1, sym_dotted_sym_lit, - ACTIONS(828), 2, + ACTIONS(554), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(1944), 2, sym__ws, sym_comment, - ACTIONS(1052), 2, + ACTIONS(1946), 2, sym_num_lit, sym_char_lit, - ACTIONS(1054), 2, + ACTIONS(1948), 2, sym_nil_lit, sym_fancy_literal, - ACTIONS(1254), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - STATE(943), 2, + STATE(196), 2, sym__gap, sym_dis_expr, - STATE(1110), 3, + STATE(930), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1184), 18, + STATE(1063), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -45813,90 +45958,89 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [53955] = 38, + [54159] = 37, ACTIONS(3), 1, sym_block_comment, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(832), 1, + ACTIONS(518), 1, + anon_sym_COLON, + ACTIONS(520), 1, + anon_sym_COLON_COLON, + ACTIONS(522), 1, aux_sym_str_lit_token1, - ACTIONS(838), 1, + ACTIONS(526), 1, + aux_sym_sym_lit_token1, + ACTIONS(528), 1, anon_sym_LPAREN, - ACTIONS(840), 1, + ACTIONS(530), 1, anon_sym_POUND0A, - ACTIONS(842), 1, + ACTIONS(532), 1, anon_sym_POUND, - ACTIONS(844), 1, + ACTIONS(534), 1, anon_sym_POUND_QMARK, - ACTIONS(846), 1, + ACTIONS(536), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(848), 1, - anon_sym_COLON_COLON, - ACTIONS(852), 1, + ACTIONS(538), 1, + anon_sym_POUND_SQUOTE, + ACTIONS(540), 1, anon_sym_POUND_POUND, - ACTIONS(854), 1, + ACTIONS(542), 1, anon_sym_POUND_EQ, - ACTIONS(860), 1, - anon_sym_BQUOTE, - ACTIONS(866), 1, - anon_sym_COLON, - ACTIONS(870), 1, - anon_sym_POUNDC, - ACTIONS(1242), 1, - aux_sym_sym_lit_token1, - ACTIONS(1244), 1, - anon_sym_POUND_SQUOTE, - ACTIONS(1246), 1, + ACTIONS(544), 1, anon_sym_AT, - ACTIONS(1248), 1, + ACTIONS(546), 1, anon_sym_SQUOTE, - ACTIONS(1250), 1, + ACTIONS(548), 1, + anon_sym_BQUOTE, + ACTIONS(550), 1, anon_sym_COMMA_AT, - ACTIONS(1252), 1, + ACTIONS(552), 1, anon_sym_COMMA, - STATE(930), 1, - aux_sym_dis_expr_repeat1, - STATE(1050), 1, - aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, - sym_meta_lit, - STATE(1108), 1, + ACTIONS(556), 1, + anon_sym_POUNDC, + STATE(909), 1, + sym_sym_lit, + STATE(922), 1, sym__bare_set_lit, - STATE(1109), 1, + STATE(931), 1, sym__bare_vec_lit, - STATE(1369), 1, + STATE(936), 1, + aux_sym_sym_lit_repeat1, + STATE(1162), 1, + sym_meta_lit, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1386), 1, - sym_sym_lit, - STATE(1910), 1, + STATE(1865), 1, sym_dotted_sym_lit, - ACTIONS(828), 2, + ACTIONS(554), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(1950), 2, sym__ws, sym_comment, - ACTIONS(1056), 2, + ACTIONS(1952), 2, sym_num_lit, sym_char_lit, - ACTIONS(1058), 2, + ACTIONS(1954), 2, sym_nil_lit, sym_fancy_literal, - ACTIONS(1254), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - STATE(943), 2, + STATE(198), 2, sym__gap, sym_dis_expr, - STATE(1110), 3, + STATE(930), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1183), 18, + STATE(1060), 19, sym__form, + sym_kwd_lit, sym_str_lit, sym_list_lit, sym_vec_lit, @@ -45914,3830 +46058,1902 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [54094] = 38, + [54296] = 6, ACTIONS(3), 1, sym_block_comment, - ACTIONS(9), 1, + ACTIONS(1959), 1, anon_sym_POUND_, - ACTIONS(19), 1, + ACTIONS(1956), 2, + sym__ws, + sym_comment, + STATE(403), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(1962), 20, + sym_num_lit, + anon_sym_COLON_COLON, + aux_sym_str_lit_token1, + sym_char_lit, anon_sym_CARET, - ACTIONS(21), 1, anon_sym_POUND_CARET, - ACTIONS(832), 1, - aux_sym_str_lit_token1, - ACTIONS(838), 1, anon_sym_LPAREN, - ACTIONS(840), 1, + anon_sym_RPAREN, anon_sym_POUND0A, - ACTIONS(842), 1, - anon_sym_POUND, - ACTIONS(844), 1, - anon_sym_POUND_QMARK, - ACTIONS(846), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(848), 1, - anon_sym_COLON_COLON, - ACTIONS(852), 1, + anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, - ACTIONS(854), 1, anon_sym_POUND_EQ, - ACTIONS(860), 1, - anon_sym_BQUOTE, - ACTIONS(866), 1, - anon_sym_COLON, - ACTIONS(870), 1, - anon_sym_POUNDC, - ACTIONS(1242), 1, - aux_sym_sym_lit_token1, - ACTIONS(1244), 1, - anon_sym_POUND_SQUOTE, - ACTIONS(1246), 1, anon_sym_AT, - ACTIONS(1248), 1, anon_sym_SQUOTE, - ACTIONS(1250), 1, + anon_sym_BQUOTE, anon_sym_COMMA_AT, - ACTIONS(1252), 1, - anon_sym_COMMA, - STATE(930), 1, - aux_sym_dis_expr_repeat1, - STATE(1050), 1, - aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, - sym_meta_lit, - STATE(1108), 1, - sym__bare_set_lit, - STATE(1109), 1, - sym__bare_vec_lit, - STATE(1369), 1, - sym__metadata_lit, - STATE(1386), 1, - sym_sym_lit, - STATE(1910), 1, - sym_dotted_sym_lit, - ACTIONS(828), 2, - sym__ws, - sym_comment, - ACTIONS(1254), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1424), 2, - sym_num_lit, - sym_char_lit, - ACTIONS(1426), 2, + anon_sym_POUNDC, + ACTIONS(1964), 23, + anon_sym_COLON, sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND, + anon_sym_POUND_QMARK, + anon_sym_COMMA, sym_fancy_literal, - STATE(943), 2, - sym__gap, - sym_dis_expr, - STATE(1110), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1138), 18, - sym__form, - sym_str_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, - sym_package_lit, - sym_include_reader_macro, - sym_complex_num_lit, - [54233] = 38, + sym_accumulation_verb, + anon_sym_for, + anon_sym_and, + anon_sym_as, + anon_sym_with, + anon_sym_do, + anon_sym_while, + 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, + [54359] = 6, ACTIONS(3), 1, sym_block_comment, - ACTIONS(9), 1, + ACTIONS(1969), 1, anon_sym_POUND_, - ACTIONS(19), 1, + ACTIONS(1966), 2, + sym__ws, + sym_comment, + STATE(400), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(1972), 20, + sym_num_lit, + anon_sym_COLON_COLON, + aux_sym_str_lit_token1, + sym_char_lit, anon_sym_CARET, - ACTIONS(21), 1, anon_sym_POUND_CARET, - ACTIONS(832), 1, - aux_sym_str_lit_token1, - ACTIONS(838), 1, anon_sym_LPAREN, - ACTIONS(840), 1, + anon_sym_RPAREN, anon_sym_POUND0A, - ACTIONS(842), 1, - anon_sym_POUND, - ACTIONS(844), 1, - anon_sym_POUND_QMARK, - ACTIONS(846), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(848), 1, - anon_sym_COLON_COLON, - ACTIONS(852), 1, + anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, - ACTIONS(854), 1, anon_sym_POUND_EQ, - ACTIONS(860), 1, - anon_sym_BQUOTE, - ACTIONS(866), 1, - anon_sym_COLON, - ACTIONS(870), 1, - anon_sym_POUNDC, - ACTIONS(1242), 1, - aux_sym_sym_lit_token1, - ACTIONS(1244), 1, - anon_sym_POUND_SQUOTE, - ACTIONS(1246), 1, anon_sym_AT, - ACTIONS(1248), 1, anon_sym_SQUOTE, - ACTIONS(1250), 1, + anon_sym_BQUOTE, anon_sym_COMMA_AT, - ACTIONS(1252), 1, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + ACTIONS(1974), 23, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND, + anon_sym_POUND_QMARK, anon_sym_COMMA, - STATE(930), 1, + sym_fancy_literal, + sym_accumulation_verb, + anon_sym_for, + anon_sym_and, + anon_sym_as, + anon_sym_with, + anon_sym_do, + anon_sym_while, + 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, + [54422] = 4, + ACTIONS(3), 1, + sym_block_comment, + STATE(400), 3, + sym__gap, + sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1050), 1, - aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, - sym_meta_lit, - STATE(1108), 1, - sym__bare_set_lit, - STATE(1109), 1, - sym__bare_vec_lit, - STATE(1369), 1, - sym__metadata_lit, - STATE(1386), 1, - sym_sym_lit, - STATE(1910), 1, - sym_dotted_sym_lit, - ACTIONS(828), 2, + ACTIONS(1976), 23, sym__ws, sym_comment, - ACTIONS(1088), 2, + anon_sym_POUND_, sym_num_lit, + anon_sym_COLON_COLON, + aux_sym_str_lit_token1, sym_char_lit, - ACTIONS(1090), 2, - sym_nil_lit, - sym_fancy_literal, - ACTIONS(1254), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - STATE(943), 2, - sym__gap, - sym_dis_expr, - STATE(1110), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1179), 18, - sym__form, - sym_str_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, - sym_package_lit, - sym_include_reader_macro, - sym_complex_num_lit, - [54372] = 38, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(9), 1, - anon_sym_POUND_, - ACTIONS(19), 1, anon_sym_CARET, - ACTIONS(21), 1, anon_sym_POUND_CARET, - ACTIONS(832), 1, - aux_sym_str_lit_token1, - ACTIONS(838), 1, anon_sym_LPAREN, - ACTIONS(840), 1, + anon_sym_RPAREN, anon_sym_POUND0A, - ACTIONS(842), 1, - anon_sym_POUND, - ACTIONS(844), 1, - anon_sym_POUND_QMARK, - ACTIONS(846), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(848), 1, - anon_sym_COLON_COLON, - ACTIONS(852), 1, + anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, - ACTIONS(854), 1, anon_sym_POUND_EQ, - ACTIONS(860), 1, - anon_sym_BQUOTE, - ACTIONS(866), 1, - anon_sym_COLON, - ACTIONS(870), 1, - anon_sym_POUNDC, - ACTIONS(1242), 1, - aux_sym_sym_lit_token1, - ACTIONS(1244), 1, - anon_sym_POUND_SQUOTE, - ACTIONS(1246), 1, anon_sym_AT, - ACTIONS(1248), 1, anon_sym_SQUOTE, - ACTIONS(1250), 1, + anon_sym_BQUOTE, anon_sym_COMMA_AT, - ACTIONS(1252), 1, - anon_sym_COMMA, - STATE(930), 1, - aux_sym_dis_expr_repeat1, - STATE(1050), 1, - aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, - sym_meta_lit, - STATE(1108), 1, - sym__bare_set_lit, - STATE(1109), 1, - sym__bare_vec_lit, - STATE(1369), 1, - sym__metadata_lit, - STATE(1386), 1, - sym_sym_lit, - STATE(1910), 1, - sym_dotted_sym_lit, - ACTIONS(828), 2, - sym__ws, - sym_comment, - ACTIONS(1254), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1404), 2, - sym_num_lit, - sym_char_lit, - ACTIONS(1406), 2, + anon_sym_POUNDC, + ACTIONS(1978), 23, + anon_sym_COLON, sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND, + anon_sym_POUND_QMARK, + anon_sym_COMMA, sym_fancy_literal, - STATE(943), 2, - sym__gap, - sym_dis_expr, - STATE(1110), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1141), 18, - sym__form, - sym_str_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, - sym_package_lit, - sym_include_reader_macro, - sym_complex_num_lit, - [54511] = 38, + sym_accumulation_verb, + anon_sym_for, + anon_sym_and, + anon_sym_as, + anon_sym_with, + anon_sym_do, + anon_sym_while, + 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, + [54481] = 6, ACTIONS(3), 1, sym_block_comment, - ACTIONS(9), 1, + ACTIONS(1983), 1, anon_sym_POUND_, - ACTIONS(19), 1, + ACTIONS(1980), 2, + sym__ws, + sym_comment, + STATE(401), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(90), 20, + sym_num_lit, + anon_sym_COLON_COLON, + aux_sym_str_lit_token1, + sym_char_lit, anon_sym_CARET, - ACTIONS(21), 1, anon_sym_POUND_CARET, - ACTIONS(1110), 1, - aux_sym_str_lit_token1, - ACTIONS(1114), 1, - aux_sym_sym_lit_token1, - ACTIONS(1116), 1, anon_sym_LPAREN, - ACTIONS(1118), 1, + anon_sym_RPAREN, anon_sym_POUND0A, - ACTIONS(1120), 1, - anon_sym_POUND, - ACTIONS(1122), 1, - anon_sym_POUND_QMARK, - ACTIONS(1124), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(1126), 1, - anon_sym_COLON_COLON, - ACTIONS(1128), 1, anon_sym_POUND_SQUOTE, - ACTIONS(1130), 1, anon_sym_POUND_POUND, - ACTIONS(1132), 1, anon_sym_POUND_EQ, - ACTIONS(1134), 1, anon_sym_AT, - ACTIONS(1136), 1, anon_sym_SQUOTE, - ACTIONS(1138), 1, anon_sym_BQUOTE, - ACTIONS(1140), 1, anon_sym_COMMA_AT, - ACTIONS(1142), 1, - anon_sym_COMMA, - ACTIONS(1144), 1, - anon_sym_COLON, - ACTIONS(1148), 1, - anon_sym_POUNDC, - STATE(930), 1, - aux_sym_dis_expr_repeat1, - STATE(1067), 1, - aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, - sym_meta_lit, - STATE(1165), 1, - sym_sym_lit, - STATE(1318), 1, - sym__bare_set_lit, - STATE(1320), 1, - sym__bare_vec_lit, - STATE(1369), 1, - sym__metadata_lit, - STATE(1904), 1, - sym_dotted_sym_lit, - ACTIONS(1146), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1780), 2, - sym__ws, - sym_comment, - ACTIONS(1882), 2, - sym_num_lit, - sym_char_lit, - ACTIONS(1884), 2, + anon_sym_POUNDC, + ACTIONS(128), 23, + anon_sym_COLON, sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND, + anon_sym_POUND_QMARK, + anon_sym_COMMA, sym_fancy_literal, - STATE(941), 2, - sym__gap, - sym_dis_expr, - STATE(1323), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1325), 18, - sym__form, - sym_str_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, - sym_package_lit, - sym_include_reader_macro, - sym_complex_num_lit, - [54650] = 38, + sym_accumulation_verb, + anon_sym_for, + anon_sym_and, + anon_sym_as, + anon_sym_with, + anon_sym_do, + anon_sym_while, + 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, + [54544] = 4, ACTIONS(3), 1, sym_block_comment, - ACTIONS(9), 1, + STATE(400), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(90), 23, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(19), 1, + sym_num_lit, + anon_sym_COLON_COLON, + aux_sym_str_lit_token1, + sym_char_lit, anon_sym_CARET, - ACTIONS(21), 1, anon_sym_POUND_CARET, - ACTIONS(1110), 1, - aux_sym_str_lit_token1, - ACTIONS(1114), 1, - aux_sym_sym_lit_token1, - ACTIONS(1116), 1, anon_sym_LPAREN, - ACTIONS(1118), 1, + anon_sym_RPAREN, anon_sym_POUND0A, - ACTIONS(1120), 1, - anon_sym_POUND, - ACTIONS(1122), 1, - anon_sym_POUND_QMARK, - ACTIONS(1124), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(1126), 1, - anon_sym_COLON_COLON, - ACTIONS(1128), 1, anon_sym_POUND_SQUOTE, - ACTIONS(1130), 1, anon_sym_POUND_POUND, - ACTIONS(1132), 1, anon_sym_POUND_EQ, - ACTIONS(1134), 1, anon_sym_AT, - ACTIONS(1136), 1, anon_sym_SQUOTE, - ACTIONS(1138), 1, anon_sym_BQUOTE, - ACTIONS(1140), 1, anon_sym_COMMA_AT, - ACTIONS(1142), 1, - anon_sym_COMMA, - ACTIONS(1144), 1, - anon_sym_COLON, - ACTIONS(1148), 1, - anon_sym_POUNDC, - STATE(409), 1, - aux_sym_dis_expr_repeat1, - STATE(1067), 1, - aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, - sym_meta_lit, - STATE(1165), 1, - sym_sym_lit, - STATE(1318), 1, - sym__bare_set_lit, - STATE(1320), 1, - sym__bare_vec_lit, - STATE(1369), 1, - sym__metadata_lit, - STATE(1904), 1, - sym_dotted_sym_lit, - ACTIONS(1146), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1780), 2, - sym__ws, - sym_comment, - ACTIONS(1886), 2, - sym_num_lit, - sym_char_lit, - ACTIONS(1888), 2, + anon_sym_POUNDC, + ACTIONS(128), 23, + anon_sym_COLON, sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND, + anon_sym_POUND_QMARK, + anon_sym_COMMA, sym_fancy_literal, - STATE(941), 2, - sym__gap, - sym_dis_expr, - STATE(1323), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1324), 18, - sym__form, - sym_str_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, - sym_package_lit, - sym_include_reader_macro, - sym_complex_num_lit, - [54789] = 38, + sym_accumulation_verb, + anon_sym_for, + anon_sym_and, + anon_sym_as, + anon_sym_with, + anon_sym_do, + anon_sym_while, + 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, + [54603] = 7, ACTIONS(3), 1, sym_block_comment, - ACTIONS(9), 1, + ACTIONS(1988), 1, + anon_sym_DOT, + ACTIONS(1990), 1, + anon_sym_COLON, + ACTIONS(1992), 1, + anon_sym_COLON_COLON, + STATE(782), 1, + aux_sym_dotted_sym_lit_repeat1, + ACTIONS(1986), 22, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(19), 1, + sym_num_lit, + aux_sym_str_lit_token1, + sym_char_lit, anon_sym_CARET, - ACTIONS(21), 1, anon_sym_POUND_CARET, - ACTIONS(832), 1, - aux_sym_str_lit_token1, - ACTIONS(838), 1, anon_sym_LPAREN, - ACTIONS(840), 1, + anon_sym_RPAREN, anon_sym_POUND0A, - ACTIONS(842), 1, - anon_sym_POUND, - ACTIONS(844), 1, - anon_sym_POUND_QMARK, - ACTIONS(846), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(848), 1, - anon_sym_COLON_COLON, - ACTIONS(852), 1, + anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, - ACTIONS(854), 1, anon_sym_POUND_EQ, - ACTIONS(860), 1, - anon_sym_BQUOTE, - ACTIONS(866), 1, - anon_sym_COLON, - ACTIONS(870), 1, - anon_sym_POUNDC, - ACTIONS(1242), 1, - aux_sym_sym_lit_token1, - ACTIONS(1244), 1, - anon_sym_POUND_SQUOTE, - ACTIONS(1246), 1, anon_sym_AT, - ACTIONS(1248), 1, anon_sym_SQUOTE, - ACTIONS(1250), 1, + anon_sym_BQUOTE, anon_sym_COMMA_AT, - ACTIONS(1252), 1, - anon_sym_COMMA, - STATE(930), 1, - aux_sym_dis_expr_repeat1, - STATE(1050), 1, - aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, - sym_meta_lit, - STATE(1108), 1, - sym__bare_set_lit, - STATE(1109), 1, - sym__bare_vec_lit, - STATE(1369), 1, - sym__metadata_lit, - STATE(1386), 1, - sym_sym_lit, - STATE(1910), 1, - sym_dotted_sym_lit, - ACTIONS(828), 2, - sym__ws, - sym_comment, - ACTIONS(1254), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1384), 2, - sym_num_lit, - sym_char_lit, - ACTIONS(1386), 2, + anon_sym_POUNDC, + ACTIONS(1994), 22, sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND, + anon_sym_POUND_QMARK, + anon_sym_COMMA, sym_fancy_literal, - STATE(943), 2, - sym__gap, - sym_dis_expr, - STATE(1110), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1144), 18, - sym__form, - sym_str_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, - sym_package_lit, - sym_include_reader_macro, - sym_complex_num_lit, - [54928] = 38, + sym_accumulation_verb, + anon_sym_for, + anon_sym_and, + anon_sym_as, + anon_sym_with, + anon_sym_do, + anon_sym_while, + 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, + [54667] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(9), 1, + ACTIONS(1998), 1, + anon_sym_DOT, + STATE(408), 1, + aux_sym_dotted_sym_lit_repeat1, + ACTIONS(1996), 23, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(19), 1, + sym_num_lit, + anon_sym_COLON_COLON, + aux_sym_str_lit_token1, + sym_char_lit, anon_sym_CARET, - ACTIONS(21), 1, anon_sym_POUND_CARET, - ACTIONS(832), 1, - aux_sym_str_lit_token1, - ACTIONS(838), 1, anon_sym_LPAREN, - ACTIONS(840), 1, + anon_sym_RPAREN, anon_sym_POUND0A, - ACTIONS(842), 1, - anon_sym_POUND, - ACTIONS(844), 1, - anon_sym_POUND_QMARK, - ACTIONS(846), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(848), 1, - anon_sym_COLON_COLON, - ACTIONS(852), 1, + anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, - ACTIONS(854), 1, anon_sym_POUND_EQ, - ACTIONS(860), 1, - anon_sym_BQUOTE, - ACTIONS(866), 1, - anon_sym_COLON, - ACTIONS(870), 1, - anon_sym_POUNDC, - ACTIONS(1242), 1, - aux_sym_sym_lit_token1, - ACTIONS(1244), 1, - anon_sym_POUND_SQUOTE, - ACTIONS(1246), 1, anon_sym_AT, - ACTIONS(1248), 1, anon_sym_SQUOTE, - ACTIONS(1250), 1, + anon_sym_BQUOTE, anon_sym_COMMA_AT, - ACTIONS(1252), 1, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + ACTIONS(2000), 23, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND, + anon_sym_POUND_QMARK, anon_sym_COMMA, - STATE(390), 1, - aux_sym_dis_expr_repeat1, - STATE(1050), 1, - aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, - sym_meta_lit, - STATE(1108), 1, - sym__bare_set_lit, - STATE(1109), 1, - sym__bare_vec_lit, - STATE(1369), 1, - sym__metadata_lit, - STATE(1386), 1, - sym_sym_lit, - STATE(1910), 1, - sym_dotted_sym_lit, - ACTIONS(828), 2, + sym_fancy_literal, + sym_accumulation_verb, + anon_sym_for, + anon_sym_and, + anon_sym_as, + anon_sym_with, + anon_sym_do, + anon_sym_while, + 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, + [54727] = 5, + ACTIONS(3), 1, + sym_block_comment, + ACTIONS(1998), 1, + anon_sym_DOT, + STATE(405), 1, + aux_sym_dotted_sym_lit_repeat1, + ACTIONS(2002), 23, sym__ws, sym_comment, - ACTIONS(1198), 2, + anon_sym_POUND_, sym_num_lit, + anon_sym_COLON_COLON, + aux_sym_str_lit_token1, sym_char_lit, - ACTIONS(1200), 2, - sym_nil_lit, - sym_fancy_literal, - ACTIONS(1254), 2, + 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, + anon_sym_POUND_POUND, + anon_sym_POUND_EQ, + anon_sym_AT, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA_AT, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - STATE(943), 2, - sym__gap, - sym_dis_expr, - STATE(1110), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1168), 18, - sym__form, - sym_str_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, - sym_package_lit, - sym_include_reader_macro, - sym_complex_num_lit, - [55067] = 38, + anon_sym_POUNDC, + ACTIONS(2004), 23, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + sym_accumulation_verb, + anon_sym_for, + anon_sym_and, + anon_sym_as, + anon_sym_with, + anon_sym_do, + anon_sym_while, + 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, + [54787] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(9), 1, + ACTIONS(1998), 1, + anon_sym_DOT, + STATE(405), 1, + aux_sym_dotted_sym_lit_repeat1, + ACTIONS(2006), 23, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(19), 1, + sym_num_lit, + anon_sym_COLON_COLON, + aux_sym_str_lit_token1, + sym_char_lit, anon_sym_CARET, - ACTIONS(21), 1, anon_sym_POUND_CARET, - ACTIONS(832), 1, - aux_sym_str_lit_token1, - ACTIONS(838), 1, anon_sym_LPAREN, - ACTIONS(840), 1, + anon_sym_RPAREN, anon_sym_POUND0A, - ACTIONS(842), 1, - anon_sym_POUND, - ACTIONS(844), 1, - anon_sym_POUND_QMARK, - ACTIONS(846), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(848), 1, - anon_sym_COLON_COLON, - ACTIONS(852), 1, + anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, - ACTIONS(854), 1, anon_sym_POUND_EQ, - ACTIONS(860), 1, - anon_sym_BQUOTE, - ACTIONS(866), 1, - anon_sym_COLON, - ACTIONS(870), 1, - anon_sym_POUNDC, - ACTIONS(1242), 1, - aux_sym_sym_lit_token1, - ACTIONS(1244), 1, - anon_sym_POUND_SQUOTE, - ACTIONS(1246), 1, anon_sym_AT, - ACTIONS(1248), 1, anon_sym_SQUOTE, - ACTIONS(1250), 1, + anon_sym_BQUOTE, anon_sym_COMMA_AT, - ACTIONS(1252), 1, - anon_sym_COMMA, - STATE(930), 1, - aux_sym_dis_expr_repeat1, - STATE(1050), 1, - aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, - sym_meta_lit, - STATE(1108), 1, - sym__bare_set_lit, - STATE(1109), 1, - sym__bare_vec_lit, - STATE(1369), 1, - sym__metadata_lit, - STATE(1386), 1, - sym_sym_lit, - STATE(1910), 1, - sym_dotted_sym_lit, - ACTIONS(828), 2, - sym__ws, - sym_comment, - ACTIONS(1254), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1380), 2, - sym_num_lit, - sym_char_lit, - ACTIONS(1382), 2, + anon_sym_POUNDC, + ACTIONS(2008), 23, + anon_sym_COLON, sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND, + anon_sym_POUND_QMARK, + anon_sym_COMMA, sym_fancy_literal, - STATE(943), 2, - sym__gap, - sym_dis_expr, - STATE(1110), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1145), 18, - sym__form, - sym_str_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, - sym_package_lit, - sym_include_reader_macro, - sym_complex_num_lit, - [55206] = 38, + sym_accumulation_verb, + anon_sym_for, + anon_sym_and, + anon_sym_as, + anon_sym_with, + anon_sym_do, + anon_sym_while, + 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, + [54847] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(9), 1, + ACTIONS(2012), 1, + anon_sym_DOT, + STATE(408), 1, + aux_sym_dotted_sym_lit_repeat1, + ACTIONS(2010), 23, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(19), 1, + sym_num_lit, + anon_sym_COLON_COLON, + aux_sym_str_lit_token1, + sym_char_lit, anon_sym_CARET, - ACTIONS(21), 1, anon_sym_POUND_CARET, - ACTIONS(832), 1, - aux_sym_str_lit_token1, - ACTIONS(838), 1, anon_sym_LPAREN, - ACTIONS(840), 1, + anon_sym_RPAREN, anon_sym_POUND0A, - ACTIONS(842), 1, - anon_sym_POUND, - ACTIONS(844), 1, - anon_sym_POUND_QMARK, - ACTIONS(846), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(848), 1, - anon_sym_COLON_COLON, - ACTIONS(852), 1, + anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, - ACTIONS(854), 1, anon_sym_POUND_EQ, - ACTIONS(860), 1, - anon_sym_BQUOTE, - ACTIONS(866), 1, - anon_sym_COLON, - ACTIONS(870), 1, - anon_sym_POUNDC, - ACTIONS(1242), 1, - aux_sym_sym_lit_token1, - ACTIONS(1244), 1, - anon_sym_POUND_SQUOTE, - ACTIONS(1246), 1, anon_sym_AT, - ACTIONS(1248), 1, anon_sym_SQUOTE, - ACTIONS(1250), 1, + anon_sym_BQUOTE, anon_sym_COMMA_AT, - ACTIONS(1252), 1, - anon_sym_COMMA, - STATE(408), 1, - aux_sym_dis_expr_repeat1, - STATE(1050), 1, - aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, - sym_meta_lit, - STATE(1108), 1, - sym__bare_set_lit, - STATE(1109), 1, - sym__bare_vec_lit, - STATE(1369), 1, - sym__metadata_lit, - STATE(1386), 1, - sym_sym_lit, - STATE(1910), 1, - sym_dotted_sym_lit, - ACTIONS(828), 2, - sym__ws, - sym_comment, - ACTIONS(1254), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1376), 2, - sym_num_lit, - sym_char_lit, - ACTIONS(1378), 2, + anon_sym_POUNDC, + ACTIONS(2015), 23, + anon_sym_COLON, sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND, + anon_sym_POUND_QMARK, + anon_sym_COMMA, sym_fancy_literal, - STATE(943), 2, - sym__gap, - sym_dis_expr, - STATE(1110), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1146), 18, - sym__form, - sym_str_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, - sym_package_lit, - sym_include_reader_macro, - sym_complex_num_lit, - [55345] = 38, + sym_accumulation_verb, + anon_sym_for, + anon_sym_and, + anon_sym_as, + anon_sym_with, + anon_sym_do, + anon_sym_while, + 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, + [54907] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(9), 1, + ACTIONS(2019), 23, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + sym_accumulation_verb, + anon_sym_for, + anon_sym_and, + anon_sym_as, + anon_sym_with, + anon_sym_do, + anon_sym_while, + 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, + ACTIONS(2017), 24, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(19), 1, + anon_sym_DOT, + sym_num_lit, + anon_sym_COLON_COLON, + aux_sym_str_lit_token1, + sym_char_lit, anon_sym_CARET, - ACTIONS(21), 1, anon_sym_POUND_CARET, - ACTIONS(832), 1, - aux_sym_str_lit_token1, - ACTIONS(838), 1, anon_sym_LPAREN, - ACTIONS(840), 1, + anon_sym_RPAREN, anon_sym_POUND0A, - ACTIONS(842), 1, - anon_sym_POUND, - ACTIONS(844), 1, - anon_sym_POUND_QMARK, - ACTIONS(846), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(848), 1, - anon_sym_COLON_COLON, - ACTIONS(852), 1, + anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, - ACTIONS(854), 1, anon_sym_POUND_EQ, - ACTIONS(860), 1, - anon_sym_BQUOTE, - ACTIONS(866), 1, - anon_sym_COLON, - ACTIONS(870), 1, - anon_sym_POUNDC, - ACTIONS(1242), 1, - aux_sym_sym_lit_token1, - ACTIONS(1244), 1, - anon_sym_POUND_SQUOTE, - ACTIONS(1246), 1, anon_sym_AT, - ACTIONS(1248), 1, anon_sym_SQUOTE, - ACTIONS(1250), 1, + anon_sym_BQUOTE, anon_sym_COMMA_AT, - ACTIONS(1252), 1, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + [54962] = 3, + ACTIONS(3), 1, + sym_block_comment, + ACTIONS(2023), 23, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND, + anon_sym_POUND_QMARK, anon_sym_COMMA, - STATE(930), 1, - aux_sym_dis_expr_repeat1, - STATE(1050), 1, - aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, - sym_meta_lit, - STATE(1108), 1, - sym__bare_set_lit, - STATE(1109), 1, - sym__bare_vec_lit, - STATE(1369), 1, - sym__metadata_lit, - STATE(1386), 1, - sym_sym_lit, - STATE(1910), 1, - sym_dotted_sym_lit, - ACTIONS(828), 2, + sym_fancy_literal, + sym_accumulation_verb, + anon_sym_for, + anon_sym_and, + anon_sym_as, + anon_sym_with, + anon_sym_do, + anon_sym_while, + 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, + ACTIONS(2021), 24, sym__ws, sym_comment, - ACTIONS(1202), 2, + anon_sym_POUND_, + anon_sym_DOT, sym_num_lit, + anon_sym_COLON_COLON, + aux_sym_str_lit_token1, sym_char_lit, - ACTIONS(1204), 2, - sym_nil_lit, - sym_fancy_literal, - ACTIONS(1254), 2, + 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, + anon_sym_POUND_POUND, + anon_sym_POUND_EQ, + anon_sym_AT, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA_AT, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - STATE(943), 2, - sym__gap, - sym_dis_expr, - STATE(1110), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1166), 18, - sym__form, - sym_str_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, - sym_package_lit, - sym_include_reader_macro, - sym_complex_num_lit, - [55484] = 38, + anon_sym_POUNDC, + [55017] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(9), 1, + ACTIONS(2015), 23, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + sym_accumulation_verb, + anon_sym_for, + anon_sym_and, + anon_sym_as, + anon_sym_with, + anon_sym_do, + anon_sym_while, + 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, + ACTIONS(2010), 24, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(19), 1, + anon_sym_DOT, + sym_num_lit, + anon_sym_COLON_COLON, + aux_sym_str_lit_token1, + sym_char_lit, anon_sym_CARET, - ACTIONS(21), 1, anon_sym_POUND_CARET, - ACTIONS(1110), 1, - aux_sym_str_lit_token1, - ACTIONS(1114), 1, - aux_sym_sym_lit_token1, - ACTIONS(1116), 1, anon_sym_LPAREN, - ACTIONS(1118), 1, + anon_sym_RPAREN, anon_sym_POUND0A, - ACTIONS(1120), 1, - anon_sym_POUND, - ACTIONS(1122), 1, - anon_sym_POUND_QMARK, - ACTIONS(1124), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(1126), 1, - anon_sym_COLON_COLON, - ACTIONS(1128), 1, anon_sym_POUND_SQUOTE, - ACTIONS(1130), 1, anon_sym_POUND_POUND, - ACTIONS(1132), 1, anon_sym_POUND_EQ, - ACTIONS(1134), 1, anon_sym_AT, - ACTIONS(1136), 1, anon_sym_SQUOTE, - ACTIONS(1138), 1, anon_sym_BQUOTE, - ACTIONS(1140), 1, anon_sym_COMMA_AT, - ACTIONS(1142), 1, - anon_sym_COMMA, - ACTIONS(1144), 1, - anon_sym_COLON, - ACTIONS(1148), 1, - anon_sym_POUNDC, - STATE(930), 1, - aux_sym_dis_expr_repeat1, - STATE(1067), 1, - aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, - sym_meta_lit, - STATE(1165), 1, - sym_sym_lit, - STATE(1318), 1, - sym__bare_set_lit, - STATE(1320), 1, - sym__bare_vec_lit, - STATE(1369), 1, - sym__metadata_lit, - STATE(1904), 1, - sym_dotted_sym_lit, - ACTIONS(1146), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1780), 2, + anon_sym_POUNDC, + [55072] = 3, + ACTIONS(3), 1, + sym_block_comment, + ACTIONS(2025), 23, sym__ws, sym_comment, - ACTIONS(1890), 2, + anon_sym_POUND_, sym_num_lit, + anon_sym_COLON_COLON, + aux_sym_str_lit_token1, sym_char_lit, - ACTIONS(1892), 2, - sym_nil_lit, - sym_fancy_literal, - STATE(941), 2, - sym__gap, - sym_dis_expr, - STATE(1323), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1303), 18, - sym__form, - sym_str_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, - sym_package_lit, - sym_include_reader_macro, - sym_complex_num_lit, - [55623] = 38, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(9), 1, - anon_sym_POUND_, - ACTIONS(19), 1, anon_sym_CARET, - ACTIONS(21), 1, anon_sym_POUND_CARET, - ACTIONS(1110), 1, - aux_sym_str_lit_token1, - ACTIONS(1114), 1, - aux_sym_sym_lit_token1, - ACTIONS(1116), 1, anon_sym_LPAREN, - ACTIONS(1118), 1, + anon_sym_RPAREN, anon_sym_POUND0A, - ACTIONS(1120), 1, - anon_sym_POUND, - ACTIONS(1122), 1, - anon_sym_POUND_QMARK, - ACTIONS(1124), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(1126), 1, - anon_sym_COLON_COLON, - ACTIONS(1128), 1, anon_sym_POUND_SQUOTE, - ACTIONS(1130), 1, anon_sym_POUND_POUND, - ACTIONS(1132), 1, anon_sym_POUND_EQ, - ACTIONS(1134), 1, anon_sym_AT, - ACTIONS(1136), 1, anon_sym_SQUOTE, - ACTIONS(1138), 1, anon_sym_BQUOTE, - ACTIONS(1140), 1, anon_sym_COMMA_AT, - ACTIONS(1142), 1, - anon_sym_COMMA, - ACTIONS(1144), 1, - anon_sym_COLON, - ACTIONS(1148), 1, - anon_sym_POUNDC, - STATE(930), 1, - aux_sym_dis_expr_repeat1, - STATE(1067), 1, - aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, - sym_meta_lit, - STATE(1165), 1, - sym_sym_lit, - STATE(1318), 1, - sym__bare_set_lit, - STATE(1320), 1, - sym__bare_vec_lit, - STATE(1369), 1, - sym__metadata_lit, - STATE(1904), 1, - sym_dotted_sym_lit, - ACTIONS(1146), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1780), 2, - sym__ws, - sym_comment, - ACTIONS(1894), 2, - sym_num_lit, - sym_char_lit, - ACTIONS(1896), 2, + anon_sym_POUNDC, + ACTIONS(2027), 23, + anon_sym_COLON, sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND, + anon_sym_POUND_QMARK, + anon_sym_COMMA, sym_fancy_literal, - STATE(941), 2, - sym__gap, - sym_dis_expr, - STATE(1323), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1319), 18, - sym__form, - sym_str_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, - sym_package_lit, - sym_include_reader_macro, - sym_complex_num_lit, - [55762] = 38, + sym_accumulation_verb, + anon_sym_for, + anon_sym_and, + anon_sym_as, + anon_sym_with, + anon_sym_do, + anon_sym_while, + 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, + [55126] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(9), 1, + ACTIONS(2029), 23, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(19), 1, + sym_num_lit, + anon_sym_COLON_COLON, + aux_sym_str_lit_token1, + sym_char_lit, anon_sym_CARET, - ACTIONS(21), 1, anon_sym_POUND_CARET, - ACTIONS(1110), 1, - aux_sym_str_lit_token1, - ACTIONS(1114), 1, - aux_sym_sym_lit_token1, - ACTIONS(1116), 1, anon_sym_LPAREN, - ACTIONS(1118), 1, + anon_sym_RPAREN, anon_sym_POUND0A, - ACTIONS(1120), 1, - anon_sym_POUND, - ACTIONS(1122), 1, - anon_sym_POUND_QMARK, - ACTIONS(1124), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(1126), 1, - anon_sym_COLON_COLON, - ACTIONS(1128), 1, anon_sym_POUND_SQUOTE, - ACTIONS(1130), 1, anon_sym_POUND_POUND, - ACTIONS(1132), 1, anon_sym_POUND_EQ, - ACTIONS(1134), 1, anon_sym_AT, - ACTIONS(1136), 1, anon_sym_SQUOTE, - ACTIONS(1138), 1, anon_sym_BQUOTE, - ACTIONS(1140), 1, anon_sym_COMMA_AT, - ACTIONS(1142), 1, - anon_sym_COMMA, - ACTIONS(1144), 1, - anon_sym_COLON, - ACTIONS(1148), 1, - anon_sym_POUNDC, - STATE(930), 1, - aux_sym_dis_expr_repeat1, - STATE(1067), 1, - aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, - sym_meta_lit, - STATE(1165), 1, - sym_sym_lit, - STATE(1318), 1, - sym__bare_set_lit, - STATE(1320), 1, - sym__bare_vec_lit, - STATE(1369), 1, - sym__metadata_lit, - STATE(1904), 1, - sym_dotted_sym_lit, - ACTIONS(1146), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1780), 2, - sym__ws, - sym_comment, - ACTIONS(1898), 2, - sym_num_lit, - sym_char_lit, - ACTIONS(1900), 2, + anon_sym_POUNDC, + ACTIONS(2031), 23, + anon_sym_COLON, sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND, + anon_sym_POUND_QMARK, + anon_sym_COMMA, sym_fancy_literal, - STATE(941), 2, - sym__gap, - sym_dis_expr, - STATE(1323), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1260), 18, - sym__form, - sym_str_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, - sym_package_lit, - sym_include_reader_macro, - sym_complex_num_lit, - [55901] = 38, + sym_accumulation_verb, + anon_sym_for, + anon_sym_and, + anon_sym_as, + anon_sym_with, + anon_sym_do, + anon_sym_while, + 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, + [55180] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(9), 1, + ACTIONS(2033), 23, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(19), 1, + sym_num_lit, + anon_sym_COLON_COLON, + aux_sym_str_lit_token1, + sym_char_lit, anon_sym_CARET, - ACTIONS(21), 1, anon_sym_POUND_CARET, - ACTIONS(1110), 1, - aux_sym_str_lit_token1, - ACTIONS(1114), 1, - aux_sym_sym_lit_token1, - ACTIONS(1116), 1, anon_sym_LPAREN, - ACTIONS(1118), 1, + anon_sym_RPAREN, anon_sym_POUND0A, - ACTIONS(1120), 1, - anon_sym_POUND, - ACTIONS(1122), 1, - anon_sym_POUND_QMARK, - ACTIONS(1124), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(1126), 1, - anon_sym_COLON_COLON, - ACTIONS(1128), 1, anon_sym_POUND_SQUOTE, - ACTIONS(1130), 1, anon_sym_POUND_POUND, - ACTIONS(1132), 1, anon_sym_POUND_EQ, - ACTIONS(1134), 1, anon_sym_AT, - ACTIONS(1136), 1, anon_sym_SQUOTE, - ACTIONS(1138), 1, anon_sym_BQUOTE, - ACTIONS(1140), 1, anon_sym_COMMA_AT, - ACTIONS(1142), 1, - anon_sym_COMMA, - ACTIONS(1144), 1, - anon_sym_COLON, - ACTIONS(1148), 1, - anon_sym_POUNDC, - STATE(930), 1, - aux_sym_dis_expr_repeat1, - STATE(1067), 1, - aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, - sym_meta_lit, - STATE(1165), 1, - sym_sym_lit, - STATE(1318), 1, - sym__bare_set_lit, - STATE(1320), 1, - sym__bare_vec_lit, - STATE(1369), 1, - sym__metadata_lit, - STATE(1904), 1, - sym_dotted_sym_lit, - ACTIONS(1146), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1780), 2, - sym__ws, - sym_comment, - ACTIONS(1902), 2, - sym_num_lit, - sym_char_lit, - ACTIONS(1904), 2, + anon_sym_POUNDC, + ACTIONS(2035), 23, + anon_sym_COLON, sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND, + anon_sym_POUND_QMARK, + anon_sym_COMMA, sym_fancy_literal, - STATE(941), 2, - sym__gap, - sym_dis_expr, - STATE(1323), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1309), 18, - sym__form, - sym_str_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, - sym_package_lit, - sym_include_reader_macro, - sym_complex_num_lit, - [56040] = 38, + sym_accumulation_verb, + anon_sym_for, + anon_sym_and, + anon_sym_as, + anon_sym_with, + anon_sym_do, + anon_sym_while, + 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, + [55234] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(9), 1, + ACTIONS(2037), 23, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(13), 1, + sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, - ACTIONS(17), 1, - aux_sym_sym_lit_token1, - ACTIONS(19), 1, + sym_char_lit, anon_sym_CARET, - ACTIONS(21), 1, anon_sym_POUND_CARET, - ACTIONS(23), 1, anon_sym_LPAREN, - ACTIONS(25), 1, + anon_sym_RPAREN, anon_sym_POUND0A, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(29), 1, - anon_sym_POUND_QMARK, - ACTIONS(31), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(33), 1, - anon_sym_COLON_COLON, - ACTIONS(35), 1, anon_sym_POUND_SQUOTE, - ACTIONS(37), 1, anon_sym_POUND_POUND, - ACTIONS(39), 1, anon_sym_POUND_EQ, - ACTIONS(41), 1, anon_sym_AT, - ACTIONS(43), 1, anon_sym_SQUOTE, - ACTIONS(45), 1, anon_sym_BQUOTE, - ACTIONS(47), 1, anon_sym_COMMA_AT, - ACTIONS(49), 1, - anon_sym_COMMA, - ACTIONS(51), 1, - anon_sym_COLON, - ACTIONS(55), 1, - anon_sym_POUNDC, - STATE(376), 1, - aux_sym_dis_expr_repeat1, - STATE(815), 1, - sym_sym_lit, - STATE(838), 1, - sym__bare_vec_lit, - STATE(841), 1, - sym__bare_set_lit, - STATE(1047), 1, - aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, - sym_meta_lit, - STATE(1369), 1, - sym__metadata_lit, - STATE(1909), 1, - sym_dotted_sym_lit, - ACTIONS(53), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(646), 2, - sym__ws, - sym_comment, - ACTIONS(1906), 2, - sym_num_lit, - sym_char_lit, - ACTIONS(1908), 2, + anon_sym_POUNDC, + ACTIONS(2039), 23, + anon_sym_COLON, sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND, + anon_sym_POUND_QMARK, + anon_sym_COMMA, sym_fancy_literal, - STATE(942), 2, - sym__gap, - sym_dis_expr, - STATE(842), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(209), 18, - sym__form, - sym_str_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, - sym_package_lit, - sym_include_reader_macro, - sym_complex_num_lit, - [56179] = 38, + sym_accumulation_verb, + anon_sym_for, + anon_sym_and, + anon_sym_as, + anon_sym_with, + anon_sym_do, + anon_sym_while, + 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, + [55288] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(9), 1, + ACTIONS(2041), 23, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(19), 1, + sym_num_lit, + anon_sym_COLON_COLON, + aux_sym_str_lit_token1, + sym_char_lit, anon_sym_CARET, - ACTIONS(21), 1, anon_sym_POUND_CARET, - ACTIONS(1110), 1, - aux_sym_str_lit_token1, - ACTIONS(1114), 1, - aux_sym_sym_lit_token1, - ACTIONS(1116), 1, anon_sym_LPAREN, - ACTIONS(1118), 1, + anon_sym_RPAREN, anon_sym_POUND0A, - ACTIONS(1120), 1, - anon_sym_POUND, - ACTIONS(1122), 1, - anon_sym_POUND_QMARK, - ACTIONS(1124), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(1126), 1, - anon_sym_COLON_COLON, - ACTIONS(1128), 1, anon_sym_POUND_SQUOTE, - ACTIONS(1130), 1, anon_sym_POUND_POUND, - ACTIONS(1132), 1, anon_sym_POUND_EQ, - ACTIONS(1134), 1, anon_sym_AT, - ACTIONS(1136), 1, anon_sym_SQUOTE, - ACTIONS(1138), 1, anon_sym_BQUOTE, - ACTIONS(1140), 1, anon_sym_COMMA_AT, - ACTIONS(1142), 1, - anon_sym_COMMA, - ACTIONS(1144), 1, - anon_sym_COLON, - ACTIONS(1148), 1, - anon_sym_POUNDC, - STATE(930), 1, - aux_sym_dis_expr_repeat1, - STATE(1067), 1, - aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, - sym_meta_lit, - STATE(1165), 1, - sym_sym_lit, - STATE(1318), 1, - sym__bare_set_lit, - STATE(1320), 1, - sym__bare_vec_lit, - STATE(1369), 1, - sym__metadata_lit, - STATE(1904), 1, - sym_dotted_sym_lit, - ACTIONS(1146), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1780), 2, - sym__ws, - sym_comment, - ACTIONS(1910), 2, - sym_num_lit, - sym_char_lit, - ACTIONS(1912), 2, + anon_sym_POUNDC, + ACTIONS(2043), 23, + anon_sym_COLON, sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND, + anon_sym_POUND_QMARK, + anon_sym_COMMA, sym_fancy_literal, - STATE(941), 2, - sym__gap, - sym_dis_expr, - STATE(1323), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1308), 18, - sym__form, - sym_str_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, - sym_package_lit, - sym_include_reader_macro, - sym_complex_num_lit, - [56318] = 38, + sym_accumulation_verb, + anon_sym_for, + anon_sym_and, + anon_sym_as, + anon_sym_with, + anon_sym_do, + anon_sym_while, + 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, + [55342] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(9), 1, + ACTIONS(2045), 23, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(19), 1, + sym_num_lit, + anon_sym_COLON_COLON, + aux_sym_str_lit_token1, + sym_char_lit, anon_sym_CARET, - ACTIONS(21), 1, anon_sym_POUND_CARET, - ACTIONS(832), 1, - aux_sym_str_lit_token1, - ACTIONS(838), 1, anon_sym_LPAREN, - ACTIONS(840), 1, + anon_sym_RPAREN, anon_sym_POUND0A, - ACTIONS(842), 1, - anon_sym_POUND, - ACTIONS(844), 1, - anon_sym_POUND_QMARK, - ACTIONS(846), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(848), 1, - anon_sym_COLON_COLON, - ACTIONS(852), 1, + anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, - ACTIONS(854), 1, anon_sym_POUND_EQ, - ACTIONS(860), 1, - anon_sym_BQUOTE, - ACTIONS(866), 1, - anon_sym_COLON, - ACTIONS(870), 1, - anon_sym_POUNDC, - ACTIONS(1242), 1, - aux_sym_sym_lit_token1, - ACTIONS(1244), 1, - anon_sym_POUND_SQUOTE, - ACTIONS(1246), 1, anon_sym_AT, - ACTIONS(1248), 1, anon_sym_SQUOTE, - ACTIONS(1250), 1, + anon_sym_BQUOTE, anon_sym_COMMA_AT, - ACTIONS(1252), 1, - anon_sym_COMMA, - STATE(400), 1, - aux_sym_dis_expr_repeat1, - STATE(1050), 1, - aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, - sym_meta_lit, - STATE(1108), 1, - sym__bare_set_lit, - STATE(1109), 1, - sym__bare_vec_lit, - STATE(1369), 1, - sym__metadata_lit, - STATE(1386), 1, - sym_sym_lit, - STATE(1910), 1, - sym_dotted_sym_lit, - ACTIONS(828), 2, - sym__ws, - sym_comment, - ACTIONS(1254), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1348), 2, - sym_num_lit, - sym_char_lit, - ACTIONS(1350), 2, + anon_sym_POUNDC, + ACTIONS(2047), 23, + anon_sym_COLON, sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND, + anon_sym_POUND_QMARK, + anon_sym_COMMA, sym_fancy_literal, - STATE(943), 2, - sym__gap, - sym_dis_expr, - STATE(1110), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1152), 18, - sym__form, - sym_str_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, - sym_package_lit, - sym_include_reader_macro, - sym_complex_num_lit, - [56457] = 38, + sym_accumulation_verb, + anon_sym_for, + anon_sym_and, + anon_sym_as, + anon_sym_with, + anon_sym_do, + anon_sym_while, + 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, + [55396] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(9), 1, + ACTIONS(2045), 23, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(19), 1, + sym_num_lit, + anon_sym_COLON_COLON, + aux_sym_str_lit_token1, + sym_char_lit, anon_sym_CARET, - ACTIONS(21), 1, anon_sym_POUND_CARET, - ACTIONS(1110), 1, - aux_sym_str_lit_token1, - ACTIONS(1114), 1, - aux_sym_sym_lit_token1, - ACTIONS(1116), 1, anon_sym_LPAREN, - ACTIONS(1118), 1, + anon_sym_RPAREN, anon_sym_POUND0A, - ACTIONS(1120), 1, - anon_sym_POUND, - ACTIONS(1122), 1, - anon_sym_POUND_QMARK, - ACTIONS(1124), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(1126), 1, - anon_sym_COLON_COLON, - ACTIONS(1128), 1, anon_sym_POUND_SQUOTE, - ACTIONS(1130), 1, anon_sym_POUND_POUND, - ACTIONS(1132), 1, anon_sym_POUND_EQ, - ACTIONS(1134), 1, anon_sym_AT, - ACTIONS(1136), 1, anon_sym_SQUOTE, - ACTIONS(1138), 1, anon_sym_BQUOTE, - ACTIONS(1140), 1, anon_sym_COMMA_AT, - ACTIONS(1142), 1, - anon_sym_COMMA, - ACTIONS(1144), 1, - anon_sym_COLON, - ACTIONS(1148), 1, - anon_sym_POUNDC, - STATE(392), 1, - aux_sym_dis_expr_repeat1, - STATE(1067), 1, - aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, - sym_meta_lit, - STATE(1165), 1, - sym_sym_lit, - STATE(1318), 1, - sym__bare_set_lit, - STATE(1320), 1, - sym__bare_vec_lit, - STATE(1369), 1, - sym__metadata_lit, - STATE(1904), 1, - sym_dotted_sym_lit, - ACTIONS(1146), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1780), 2, - sym__ws, - sym_comment, - ACTIONS(1914), 2, - sym_num_lit, - sym_char_lit, - ACTIONS(1916), 2, + anon_sym_POUNDC, + ACTIONS(2047), 23, + anon_sym_COLON, sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND, + anon_sym_POUND_QMARK, + anon_sym_COMMA, sym_fancy_literal, - STATE(941), 2, - sym__gap, - sym_dis_expr, - STATE(1323), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1307), 18, - sym__form, - sym_str_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, - sym_package_lit, - sym_include_reader_macro, - sym_complex_num_lit, - [56596] = 38, + sym_accumulation_verb, + anon_sym_for, + anon_sym_and, + anon_sym_as, + anon_sym_with, + anon_sym_do, + anon_sym_while, + 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, + [55450] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(9), 1, + ACTIONS(2049), 23, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(19), 1, + sym_num_lit, + anon_sym_COLON_COLON, + aux_sym_str_lit_token1, + sym_char_lit, anon_sym_CARET, - ACTIONS(21), 1, anon_sym_POUND_CARET, - ACTIONS(832), 1, - aux_sym_str_lit_token1, - ACTIONS(838), 1, anon_sym_LPAREN, - ACTIONS(840), 1, + anon_sym_RPAREN, anon_sym_POUND0A, - ACTIONS(842), 1, - anon_sym_POUND, - ACTIONS(844), 1, - anon_sym_POUND_QMARK, - ACTIONS(846), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(848), 1, - anon_sym_COLON_COLON, - ACTIONS(852), 1, + anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, - ACTIONS(854), 1, anon_sym_POUND_EQ, - ACTIONS(860), 1, - anon_sym_BQUOTE, - ACTIONS(866), 1, - anon_sym_COLON, - ACTIONS(870), 1, - anon_sym_POUNDC, - ACTIONS(1242), 1, - aux_sym_sym_lit_token1, - ACTIONS(1244), 1, - anon_sym_POUND_SQUOTE, - ACTIONS(1246), 1, anon_sym_AT, - ACTIONS(1248), 1, anon_sym_SQUOTE, - ACTIONS(1250), 1, + anon_sym_BQUOTE, anon_sym_COMMA_AT, - ACTIONS(1252), 1, - anon_sym_COMMA, - STATE(398), 1, - aux_sym_dis_expr_repeat1, - STATE(1050), 1, - aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, - sym_meta_lit, - STATE(1108), 1, - sym__bare_set_lit, - STATE(1109), 1, - sym__bare_vec_lit, - STATE(1369), 1, - sym__metadata_lit, - STATE(1386), 1, - sym_sym_lit, - STATE(1910), 1, - sym_dotted_sym_lit, - ACTIONS(828), 2, - sym__ws, - sym_comment, - ACTIONS(1254), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1340), 2, - sym_num_lit, - sym_char_lit, - ACTIONS(1342), 2, + anon_sym_POUNDC, + ACTIONS(2051), 23, + anon_sym_COLON, sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND, + anon_sym_POUND_QMARK, + anon_sym_COMMA, sym_fancy_literal, - STATE(943), 2, - sym__gap, - sym_dis_expr, - STATE(1110), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1157), 18, - sym__form, - sym_str_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, - sym_package_lit, - sym_include_reader_macro, - sym_complex_num_lit, - [56735] = 38, + sym_accumulation_verb, + anon_sym_for, + anon_sym_and, + anon_sym_as, + anon_sym_with, + anon_sym_do, + anon_sym_while, + 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, + [55504] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(9), 1, + ACTIONS(2053), 23, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(19), 1, + sym_num_lit, + anon_sym_COLON_COLON, + aux_sym_str_lit_token1, + sym_char_lit, anon_sym_CARET, - ACTIONS(21), 1, anon_sym_POUND_CARET, - ACTIONS(832), 1, - aux_sym_str_lit_token1, - ACTIONS(838), 1, anon_sym_LPAREN, - ACTIONS(840), 1, + anon_sym_RPAREN, anon_sym_POUND0A, - ACTIONS(842), 1, - anon_sym_POUND, - ACTIONS(844), 1, - anon_sym_POUND_QMARK, - ACTIONS(846), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(848), 1, - anon_sym_COLON_COLON, - ACTIONS(852), 1, + anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, - ACTIONS(854), 1, anon_sym_POUND_EQ, - ACTIONS(860), 1, - anon_sym_BQUOTE, - ACTIONS(866), 1, - anon_sym_COLON, - ACTIONS(870), 1, - anon_sym_POUNDC, - ACTIONS(1242), 1, - aux_sym_sym_lit_token1, - ACTIONS(1244), 1, - anon_sym_POUND_SQUOTE, - ACTIONS(1246), 1, anon_sym_AT, - ACTIONS(1248), 1, anon_sym_SQUOTE, - ACTIONS(1250), 1, + anon_sym_BQUOTE, anon_sym_COMMA_AT, - ACTIONS(1252), 1, - anon_sym_COMMA, - STATE(397), 1, - aux_sym_dis_expr_repeat1, - STATE(1050), 1, - aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, - sym_meta_lit, - STATE(1108), 1, - sym__bare_set_lit, - STATE(1109), 1, - sym__bare_vec_lit, - STATE(1369), 1, - sym__metadata_lit, - STATE(1386), 1, - sym_sym_lit, - STATE(1910), 1, - sym_dotted_sym_lit, - ACTIONS(828), 2, - sym__ws, - sym_comment, - ACTIONS(1254), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1324), 2, - sym_num_lit, - sym_char_lit, - ACTIONS(1326), 2, + anon_sym_POUNDC, + ACTIONS(2055), 23, + anon_sym_COLON, sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND, + anon_sym_POUND_QMARK, + anon_sym_COMMA, sym_fancy_literal, - STATE(943), 2, - sym__gap, - sym_dis_expr, - STATE(1110), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1158), 18, - sym__form, - sym_str_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, - sym_package_lit, - sym_include_reader_macro, - sym_complex_num_lit, - [56874] = 38, + sym_accumulation_verb, + anon_sym_for, + anon_sym_and, + anon_sym_as, + anon_sym_with, + anon_sym_do, + anon_sym_while, + 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, + [55558] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(9), 1, + ACTIONS(2002), 23, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(19), 1, + sym_num_lit, + anon_sym_COLON_COLON, + aux_sym_str_lit_token1, + sym_char_lit, anon_sym_CARET, - ACTIONS(21), 1, anon_sym_POUND_CARET, - ACTIONS(832), 1, - aux_sym_str_lit_token1, - ACTIONS(838), 1, anon_sym_LPAREN, - ACTIONS(840), 1, + anon_sym_RPAREN, anon_sym_POUND0A, - ACTIONS(842), 1, - anon_sym_POUND, - ACTIONS(844), 1, - anon_sym_POUND_QMARK, - ACTIONS(846), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(848), 1, - anon_sym_COLON_COLON, - ACTIONS(852), 1, + anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, - ACTIONS(854), 1, anon_sym_POUND_EQ, - ACTIONS(860), 1, - anon_sym_BQUOTE, - ACTIONS(866), 1, - anon_sym_COLON, - ACTIONS(870), 1, - anon_sym_POUNDC, - ACTIONS(1242), 1, - aux_sym_sym_lit_token1, - ACTIONS(1244), 1, - anon_sym_POUND_SQUOTE, - ACTIONS(1246), 1, anon_sym_AT, - ACTIONS(1248), 1, anon_sym_SQUOTE, - ACTIONS(1250), 1, + anon_sym_BQUOTE, anon_sym_COMMA_AT, - ACTIONS(1252), 1, - anon_sym_COMMA, - STATE(396), 1, - aux_sym_dis_expr_repeat1, - STATE(1050), 1, - aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, - sym_meta_lit, - STATE(1108), 1, - sym__bare_set_lit, - STATE(1109), 1, - sym__bare_vec_lit, - STATE(1369), 1, - sym__metadata_lit, - STATE(1386), 1, - sym_sym_lit, - STATE(1910), 1, - sym_dotted_sym_lit, - ACTIONS(828), 2, - sym__ws, - sym_comment, - ACTIONS(1254), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1296), 2, - sym_num_lit, - sym_char_lit, - ACTIONS(1298), 2, + anon_sym_POUNDC, + ACTIONS(2004), 23, + anon_sym_COLON, sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND, + anon_sym_POUND_QMARK, + anon_sym_COMMA, sym_fancy_literal, - STATE(943), 2, - sym__gap, - sym_dis_expr, - STATE(1110), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1159), 18, - sym__form, - sym_str_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, - sym_package_lit, - sym_include_reader_macro, - sym_complex_num_lit, - [57013] = 38, + sym_accumulation_verb, + anon_sym_for, + anon_sym_and, + anon_sym_as, + anon_sym_with, + anon_sym_do, + anon_sym_while, + 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, + [55612] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(9), 1, + ACTIONS(2057), 23, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(19), 1, + sym_num_lit, + anon_sym_COLON_COLON, + aux_sym_str_lit_token1, + sym_char_lit, anon_sym_CARET, - ACTIONS(21), 1, anon_sym_POUND_CARET, - ACTIONS(1110), 1, - aux_sym_str_lit_token1, - ACTIONS(1114), 1, - aux_sym_sym_lit_token1, - ACTIONS(1116), 1, anon_sym_LPAREN, - ACTIONS(1118), 1, + anon_sym_RPAREN, anon_sym_POUND0A, - ACTIONS(1120), 1, - anon_sym_POUND, - ACTIONS(1122), 1, - anon_sym_POUND_QMARK, - ACTIONS(1124), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(1126), 1, - anon_sym_COLON_COLON, - ACTIONS(1128), 1, anon_sym_POUND_SQUOTE, - ACTIONS(1130), 1, anon_sym_POUND_POUND, - ACTIONS(1132), 1, anon_sym_POUND_EQ, - ACTIONS(1134), 1, anon_sym_AT, - ACTIONS(1136), 1, anon_sym_SQUOTE, - ACTIONS(1138), 1, anon_sym_BQUOTE, - ACTIONS(1140), 1, anon_sym_COMMA_AT, - ACTIONS(1142), 1, - anon_sym_COMMA, - ACTIONS(1144), 1, - anon_sym_COLON, - ACTIONS(1148), 1, - anon_sym_POUNDC, - STATE(389), 1, - aux_sym_dis_expr_repeat1, - STATE(1067), 1, - aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, - sym_meta_lit, - STATE(1165), 1, - sym_sym_lit, - STATE(1318), 1, - sym__bare_set_lit, - STATE(1320), 1, - sym__bare_vec_lit, - STATE(1369), 1, - sym__metadata_lit, - STATE(1904), 1, - sym_dotted_sym_lit, - ACTIONS(1146), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1780), 2, - sym__ws, - sym_comment, - ACTIONS(1918), 2, - sym_num_lit, - sym_char_lit, - ACTIONS(1920), 2, + anon_sym_POUNDC, + ACTIONS(2059), 23, + anon_sym_COLON, sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND, + anon_sym_POUND_QMARK, + anon_sym_COMMA, sym_fancy_literal, - STATE(941), 2, - sym__gap, - sym_dis_expr, - STATE(1323), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1306), 18, - sym__form, - sym_str_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, - sym_package_lit, - sym_include_reader_macro, - sym_complex_num_lit, - [57152] = 38, + sym_accumulation_verb, + anon_sym_for, + anon_sym_and, + anon_sym_as, + anon_sym_with, + anon_sym_do, + anon_sym_while, + 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, + [55666] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(9), 1, + ACTIONS(2061), 23, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(13), 1, + sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, - ACTIONS(17), 1, - aux_sym_sym_lit_token1, - ACTIONS(19), 1, + sym_char_lit, anon_sym_CARET, - ACTIONS(21), 1, anon_sym_POUND_CARET, - ACTIONS(23), 1, anon_sym_LPAREN, - ACTIONS(25), 1, + anon_sym_RPAREN, anon_sym_POUND0A, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(29), 1, - anon_sym_POUND_QMARK, - ACTIONS(31), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(33), 1, - anon_sym_COLON_COLON, - ACTIONS(35), 1, anon_sym_POUND_SQUOTE, - ACTIONS(37), 1, anon_sym_POUND_POUND, - ACTIONS(39), 1, anon_sym_POUND_EQ, - ACTIONS(41), 1, anon_sym_AT, - ACTIONS(43), 1, anon_sym_SQUOTE, - ACTIONS(45), 1, anon_sym_BQUOTE, - ACTIONS(47), 1, anon_sym_COMMA_AT, - ACTIONS(49), 1, - anon_sym_COMMA, - ACTIONS(51), 1, - anon_sym_COLON, - ACTIONS(55), 1, - anon_sym_POUNDC, - STATE(815), 1, - sym_sym_lit, - STATE(838), 1, - sym__bare_vec_lit, - STATE(841), 1, - sym__bare_set_lit, - STATE(930), 1, - aux_sym_dis_expr_repeat1, - STATE(1047), 1, - aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, - sym_meta_lit, - STATE(1369), 1, - sym__metadata_lit, - STATE(1909), 1, - sym_dotted_sym_lit, - ACTIONS(53), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(646), 2, - sym__ws, - sym_comment, - ACTIONS(1922), 2, - sym_num_lit, - sym_char_lit, - ACTIONS(1924), 2, + anon_sym_POUNDC, + ACTIONS(2063), 23, + anon_sym_COLON, sym_nil_lit, - sym_fancy_literal, - STATE(942), 2, - sym__gap, - sym_dis_expr, - STATE(842), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(174), 18, - sym__form, - sym_str_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, - sym_package_lit, - sym_include_reader_macro, - sym_complex_num_lit, - [57291] = 38, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(9), 1, - anon_sym_POUND_, - ACTIONS(13), 1, - aux_sym_str_lit_token1, - ACTIONS(17), 1, aux_sym_sym_lit_token1, - ACTIONS(19), 1, - anon_sym_CARET, - ACTIONS(21), 1, - anon_sym_POUND_CARET, - ACTIONS(23), 1, - anon_sym_LPAREN, - ACTIONS(25), 1, - anon_sym_POUND0A, - ACTIONS(27), 1, anon_sym_POUND, - ACTIONS(29), 1, anon_sym_POUND_QMARK, - ACTIONS(31), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(33), 1, - anon_sym_COLON_COLON, - ACTIONS(35), 1, - anon_sym_POUND_SQUOTE, - ACTIONS(37), 1, - anon_sym_POUND_POUND, - ACTIONS(39), 1, - anon_sym_POUND_EQ, - ACTIONS(41), 1, - anon_sym_AT, - ACTIONS(43), 1, - anon_sym_SQUOTE, - ACTIONS(45), 1, - anon_sym_BQUOTE, - ACTIONS(47), 1, - anon_sym_COMMA_AT, - ACTIONS(49), 1, anon_sym_COMMA, - ACTIONS(51), 1, - anon_sym_COLON, - ACTIONS(55), 1, - anon_sym_POUNDC, - STATE(377), 1, - aux_sym_dis_expr_repeat1, - STATE(815), 1, - sym_sym_lit, - STATE(838), 1, - sym__bare_vec_lit, - STATE(841), 1, - sym__bare_set_lit, - STATE(1047), 1, - aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, - sym_meta_lit, - STATE(1369), 1, - sym__metadata_lit, - STATE(1909), 1, - sym_dotted_sym_lit, - ACTIONS(53), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(646), 2, - sym__ws, - sym_comment, - ACTIONS(1926), 2, - sym_num_lit, - sym_char_lit, - ACTIONS(1928), 2, - sym_nil_lit, sym_fancy_literal, - STATE(942), 2, - sym__gap, - sym_dis_expr, - STATE(842), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(206), 18, - sym__form, - sym_str_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, - sym_package_lit, - sym_include_reader_macro, - sym_complex_num_lit, - [57430] = 37, + sym_accumulation_verb, + anon_sym_for, + anon_sym_and, + anon_sym_as, + anon_sym_with, + anon_sym_do, + anon_sym_while, + 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, + [55720] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(9), 1, + ACTIONS(2065), 23, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(19), 1, + sym_num_lit, + anon_sym_COLON_COLON, + aux_sym_str_lit_token1, + sym_char_lit, anon_sym_CARET, - ACTIONS(21), 1, anon_sym_POUND_CARET, - ACTIONS(606), 1, - aux_sym_str_lit_token1, - ACTIONS(610), 1, - aux_sym_sym_lit_token1, - ACTIONS(612), 1, anon_sym_LPAREN, - ACTIONS(614), 1, + anon_sym_RPAREN, anon_sym_POUND0A, - ACTIONS(616), 1, - anon_sym_POUND, - ACTIONS(618), 1, - anon_sym_POUND_QMARK, - ACTIONS(620), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(622), 1, - anon_sym_COLON_COLON, - ACTIONS(624), 1, anon_sym_POUND_SQUOTE, - ACTIONS(626), 1, anon_sym_POUND_POUND, - ACTIONS(628), 1, anon_sym_POUND_EQ, - ACTIONS(630), 1, anon_sym_AT, - ACTIONS(632), 1, anon_sym_SQUOTE, - ACTIONS(634), 1, anon_sym_BQUOTE, - ACTIONS(636), 1, anon_sym_COMMA_AT, - ACTIONS(638), 1, - anon_sym_COMMA, - ACTIONS(640), 1, - anon_sym_COLON, - ACTIONS(644), 1, - anon_sym_POUNDC, - STATE(949), 1, - sym_sym_lit, - STATE(963), 1, - sym__bare_set_lit, - STATE(964), 1, - sym__bare_vec_lit, - STATE(967), 1, - aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, - sym_meta_lit, - STATE(1369), 1, - sym__metadata_lit, - STATE(1911), 1, - sym_dotted_sym_lit, - ACTIONS(642), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1930), 2, - sym__ws, - sym_comment, - ACTIONS(1932), 2, - sym_num_lit, - sym_char_lit, - ACTIONS(1934), 2, + anon_sym_POUNDC, + ACTIONS(2067), 23, + anon_sym_COLON, sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND, + anon_sym_POUND_QMARK, + anon_sym_COMMA, sym_fancy_literal, - STATE(288), 2, - sym__gap, - sym_dis_expr, - STATE(965), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1093), 18, - sym__form, - sym_str_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, - sym_package_lit, - sym_include_reader_macro, - sym_complex_num_lit, - [57566] = 37, + sym_accumulation_verb, + anon_sym_for, + anon_sym_and, + anon_sym_as, + anon_sym_with, + anon_sym_do, + anon_sym_while, + 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, + [55774] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(9), 1, + ACTIONS(2069), 23, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(19), 1, + sym_num_lit, + anon_sym_COLON_COLON, + aux_sym_str_lit_token1, + sym_char_lit, anon_sym_CARET, - ACTIONS(21), 1, anon_sym_POUND_CARET, - ACTIONS(518), 1, - aux_sym_str_lit_token1, - ACTIONS(522), 1, - aux_sym_sym_lit_token1, - ACTIONS(524), 1, anon_sym_LPAREN, - ACTIONS(526), 1, + anon_sym_RPAREN, anon_sym_POUND0A, - ACTIONS(528), 1, - anon_sym_POUND, - ACTIONS(530), 1, - anon_sym_POUND_QMARK, - ACTIONS(532), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(534), 1, - anon_sym_COLON_COLON, - ACTIONS(536), 1, anon_sym_POUND_SQUOTE, - ACTIONS(538), 1, anon_sym_POUND_POUND, - ACTIONS(540), 1, anon_sym_POUND_EQ, - ACTIONS(542), 1, anon_sym_AT, - ACTIONS(544), 1, anon_sym_SQUOTE, - ACTIONS(546), 1, anon_sym_BQUOTE, - ACTIONS(548), 1, anon_sym_COMMA_AT, - ACTIONS(550), 1, - anon_sym_COMMA, - ACTIONS(552), 1, - anon_sym_COLON, - ACTIONS(556), 1, - anon_sym_POUNDC, - STATE(575), 1, - sym_sym_lit, - STATE(654), 1, - sym__bare_vec_lit, - STATE(683), 1, - sym__bare_set_lit, - STATE(1029), 1, - aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, - sym_meta_lit, - STATE(1369), 1, - sym__metadata_lit, - STATE(1906), 1, - sym_dotted_sym_lit, - ACTIONS(554), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1500), 2, - sym_num_lit, - sym_char_lit, - ACTIONS(1502), 2, + anon_sym_POUNDC, + ACTIONS(2071), 23, + anon_sym_COLON, sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND, + anon_sym_POUND_QMARK, + anon_sym_COMMA, sym_fancy_literal, - ACTIONS(1936), 2, - sym__ws, - sym_comment, - STATE(313), 2, - sym__gap, - sym_dis_expr, - STATE(651), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(644), 18, - sym__form, - sym_str_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, - sym_package_lit, - sym_include_reader_macro, - sym_complex_num_lit, - [57702] = 37, + sym_accumulation_verb, + anon_sym_for, + anon_sym_and, + anon_sym_as, + anon_sym_with, + anon_sym_do, + anon_sym_while, + 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, + [55828] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(9), 1, + ACTIONS(2073), 23, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(19), 1, + sym_num_lit, + anon_sym_COLON_COLON, + aux_sym_str_lit_token1, + sym_char_lit, anon_sym_CARET, - ACTIONS(21), 1, anon_sym_POUND_CARET, - ACTIONS(606), 1, - aux_sym_str_lit_token1, - ACTIONS(610), 1, - aux_sym_sym_lit_token1, - ACTIONS(612), 1, anon_sym_LPAREN, - ACTIONS(614), 1, + anon_sym_RPAREN, anon_sym_POUND0A, - ACTIONS(616), 1, - anon_sym_POUND, - ACTIONS(618), 1, - anon_sym_POUND_QMARK, - ACTIONS(620), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(622), 1, - anon_sym_COLON_COLON, - ACTIONS(624), 1, anon_sym_POUND_SQUOTE, - ACTIONS(626), 1, anon_sym_POUND_POUND, - ACTIONS(628), 1, anon_sym_POUND_EQ, - ACTIONS(630), 1, anon_sym_AT, - ACTIONS(632), 1, anon_sym_SQUOTE, - ACTIONS(634), 1, anon_sym_BQUOTE, - ACTIONS(636), 1, anon_sym_COMMA_AT, - ACTIONS(638), 1, - anon_sym_COMMA, - ACTIONS(640), 1, - anon_sym_COLON, - ACTIONS(644), 1, - anon_sym_POUNDC, - STATE(949), 1, - sym_sym_lit, - STATE(963), 1, - sym__bare_set_lit, - STATE(964), 1, - sym__bare_vec_lit, - STATE(967), 1, - aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, - sym_meta_lit, - STATE(1369), 1, - sym__metadata_lit, - STATE(1911), 1, - sym_dotted_sym_lit, - ACTIONS(642), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1938), 2, - sym__ws, - sym_comment, - ACTIONS(1940), 2, - sym_num_lit, - sym_char_lit, - ACTIONS(1942), 2, + anon_sym_POUNDC, + ACTIONS(2075), 23, + anon_sym_COLON, sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND, + anon_sym_POUND_QMARK, + anon_sym_COMMA, sym_fancy_literal, - STATE(185), 2, - sym__gap, - sym_dis_expr, - STATE(965), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(957), 18, - sym__form, - sym_str_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, - sym_package_lit, - sym_include_reader_macro, - sym_complex_num_lit, - [57838] = 37, + sym_accumulation_verb, + anon_sym_for, + anon_sym_and, + anon_sym_as, + anon_sym_with, + anon_sym_do, + anon_sym_while, + 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, + [55882] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(9), 1, + ACTIONS(2077), 23, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(19), 1, + sym_num_lit, + anon_sym_COLON_COLON, + aux_sym_str_lit_token1, + sym_char_lit, anon_sym_CARET, - ACTIONS(21), 1, anon_sym_POUND_CARET, - ACTIONS(1110), 1, - aux_sym_str_lit_token1, - ACTIONS(1114), 1, - aux_sym_sym_lit_token1, - ACTIONS(1116), 1, anon_sym_LPAREN, - ACTIONS(1118), 1, + anon_sym_RPAREN, anon_sym_POUND0A, - ACTIONS(1120), 1, - anon_sym_POUND, - ACTIONS(1122), 1, - anon_sym_POUND_QMARK, - ACTIONS(1124), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(1126), 1, - anon_sym_COLON_COLON, - ACTIONS(1128), 1, anon_sym_POUND_SQUOTE, - ACTIONS(1130), 1, anon_sym_POUND_POUND, - ACTIONS(1132), 1, anon_sym_POUND_EQ, - ACTIONS(1134), 1, anon_sym_AT, - ACTIONS(1136), 1, anon_sym_SQUOTE, - ACTIONS(1138), 1, anon_sym_BQUOTE, - ACTIONS(1140), 1, anon_sym_COMMA_AT, - ACTIONS(1142), 1, - anon_sym_COMMA, - ACTIONS(1144), 1, - anon_sym_COLON, - ACTIONS(1148), 1, - anon_sym_POUNDC, - STATE(1067), 1, - aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, - sym_meta_lit, - STATE(1165), 1, - sym_sym_lit, - STATE(1318), 1, - sym__bare_set_lit, - STATE(1320), 1, - sym__bare_vec_lit, - STATE(1369), 1, - sym__metadata_lit, - STATE(1904), 1, - sym_dotted_sym_lit, - ACTIONS(1146), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1944), 2, - sym__ws, - sym_comment, - ACTIONS(1946), 2, - sym_num_lit, - sym_char_lit, - ACTIONS(1948), 2, + anon_sym_POUNDC, + ACTIONS(2079), 23, + anon_sym_COLON, sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND, + anon_sym_POUND_QMARK, + anon_sym_COMMA, sym_fancy_literal, - STATE(187), 2, - sym__gap, - sym_dis_expr, - STATE(1323), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1086), 18, - sym__form, - sym_str_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, - sym_package_lit, - sym_include_reader_macro, - sym_complex_num_lit, - [57974] = 37, + sym_accumulation_verb, + anon_sym_for, + anon_sym_and, + anon_sym_as, + anon_sym_with, + anon_sym_do, + anon_sym_while, + 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, + [55936] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(9), 1, + ACTIONS(2077), 23, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(19), 1, + sym_num_lit, + anon_sym_COLON_COLON, + aux_sym_str_lit_token1, + sym_char_lit, anon_sym_CARET, - ACTIONS(21), 1, anon_sym_POUND_CARET, - ACTIONS(606), 1, - aux_sym_str_lit_token1, - ACTIONS(610), 1, - aux_sym_sym_lit_token1, - ACTIONS(612), 1, anon_sym_LPAREN, - ACTIONS(614), 1, + anon_sym_RPAREN, anon_sym_POUND0A, - ACTIONS(616), 1, - anon_sym_POUND, - ACTIONS(618), 1, - anon_sym_POUND_QMARK, - ACTIONS(620), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(622), 1, - anon_sym_COLON_COLON, - ACTIONS(624), 1, anon_sym_POUND_SQUOTE, - ACTIONS(626), 1, anon_sym_POUND_POUND, - ACTIONS(628), 1, anon_sym_POUND_EQ, - ACTIONS(630), 1, anon_sym_AT, - ACTIONS(632), 1, anon_sym_SQUOTE, - ACTIONS(634), 1, anon_sym_BQUOTE, - ACTIONS(636), 1, anon_sym_COMMA_AT, - ACTIONS(638), 1, - anon_sym_COMMA, - ACTIONS(640), 1, - anon_sym_COLON, - ACTIONS(644), 1, - anon_sym_POUNDC, - STATE(949), 1, - sym_sym_lit, - STATE(963), 1, - sym__bare_set_lit, - STATE(964), 1, - sym__bare_vec_lit, - STATE(967), 1, - aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, - sym_meta_lit, - STATE(1369), 1, - sym__metadata_lit, - STATE(1911), 1, - sym_dotted_sym_lit, - ACTIONS(642), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1624), 2, - sym_num_lit, - sym_char_lit, - ACTIONS(1626), 2, + anon_sym_POUNDC, + ACTIONS(2079), 23, + anon_sym_COLON, sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND, + anon_sym_POUND_QMARK, + anon_sym_COMMA, sym_fancy_literal, - ACTIONS(1950), 2, - sym__ws, - sym_comment, - STATE(340), 2, - sym__gap, - sym_dis_expr, - STATE(965), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1095), 18, - sym__form, - sym_str_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, - sym_package_lit, - sym_include_reader_macro, - sym_complex_num_lit, - [58110] = 37, + sym_accumulation_verb, + anon_sym_for, + anon_sym_and, + anon_sym_as, + anon_sym_with, + anon_sym_do, + anon_sym_while, + 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, + [55990] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(9), 1, + ACTIONS(2081), 23, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(19), 1, + sym_num_lit, + anon_sym_COLON_COLON, + aux_sym_str_lit_token1, + sym_char_lit, anon_sym_CARET, - ACTIONS(21), 1, anon_sym_POUND_CARET, - ACTIONS(606), 1, - aux_sym_str_lit_token1, - ACTIONS(610), 1, - aux_sym_sym_lit_token1, - ACTIONS(612), 1, anon_sym_LPAREN, - ACTIONS(614), 1, + anon_sym_RPAREN, anon_sym_POUND0A, - ACTIONS(616), 1, - anon_sym_POUND, - ACTIONS(618), 1, - anon_sym_POUND_QMARK, - ACTIONS(620), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(622), 1, - anon_sym_COLON_COLON, - ACTIONS(624), 1, anon_sym_POUND_SQUOTE, - ACTIONS(626), 1, anon_sym_POUND_POUND, - ACTIONS(628), 1, anon_sym_POUND_EQ, - ACTIONS(630), 1, anon_sym_AT, - ACTIONS(632), 1, anon_sym_SQUOTE, - ACTIONS(634), 1, anon_sym_BQUOTE, - ACTIONS(636), 1, anon_sym_COMMA_AT, - ACTIONS(638), 1, - anon_sym_COMMA, - ACTIONS(640), 1, - anon_sym_COLON, - ACTIONS(644), 1, - anon_sym_POUNDC, - STATE(949), 1, - sym_sym_lit, - STATE(963), 1, - sym__bare_set_lit, - STATE(964), 1, - sym__bare_vec_lit, - STATE(967), 1, - aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, - sym_meta_lit, - STATE(1369), 1, - sym__metadata_lit, - STATE(1911), 1, - sym_dotted_sym_lit, - ACTIONS(642), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1952), 2, - sym__ws, - sym_comment, - ACTIONS(1954), 2, - sym_num_lit, - sym_char_lit, - ACTIONS(1956), 2, + anon_sym_POUNDC, + ACTIONS(2083), 23, + anon_sym_COLON, sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND, + anon_sym_POUND_QMARK, + anon_sym_COMMA, sym_fancy_literal, - STATE(189), 2, - sym__gap, - sym_dis_expr, - STATE(965), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1870), 18, - sym__form, - sym_str_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, - sym_package_lit, - sym_include_reader_macro, - sym_complex_num_lit, - [58246] = 37, + sym_accumulation_verb, + anon_sym_for, + anon_sym_and, + anon_sym_as, + anon_sym_with, + anon_sym_do, + anon_sym_while, + 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, + [56044] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(9), 1, + ACTIONS(2085), 23, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(19), 1, + sym_num_lit, + anon_sym_COLON_COLON, + aux_sym_str_lit_token1, + sym_char_lit, anon_sym_CARET, - ACTIONS(21), 1, anon_sym_POUND_CARET, - ACTIONS(606), 1, - aux_sym_str_lit_token1, - ACTIONS(610), 1, - aux_sym_sym_lit_token1, - ACTIONS(612), 1, anon_sym_LPAREN, - ACTIONS(614), 1, + anon_sym_RPAREN, anon_sym_POUND0A, - ACTIONS(616), 1, - anon_sym_POUND, - ACTIONS(618), 1, - anon_sym_POUND_QMARK, - ACTIONS(620), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(622), 1, - anon_sym_COLON_COLON, - ACTIONS(624), 1, anon_sym_POUND_SQUOTE, - ACTIONS(626), 1, anon_sym_POUND_POUND, - ACTIONS(628), 1, anon_sym_POUND_EQ, - ACTIONS(630), 1, anon_sym_AT, - ACTIONS(632), 1, anon_sym_SQUOTE, - ACTIONS(634), 1, anon_sym_BQUOTE, - ACTIONS(636), 1, anon_sym_COMMA_AT, - ACTIONS(638), 1, - anon_sym_COMMA, - ACTIONS(640), 1, - anon_sym_COLON, - ACTIONS(644), 1, - anon_sym_POUNDC, - STATE(949), 1, - sym_sym_lit, - STATE(963), 1, - sym__bare_set_lit, - STATE(964), 1, - sym__bare_vec_lit, - STATE(967), 1, - aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, - sym_meta_lit, - STATE(1369), 1, - sym__metadata_lit, - STATE(1911), 1, - sym_dotted_sym_lit, - ACTIONS(642), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1520), 2, - sym_num_lit, - sym_char_lit, - ACTIONS(1522), 2, + anon_sym_POUNDC, + ACTIONS(2087), 23, + anon_sym_COLON, sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND, + anon_sym_POUND_QMARK, + anon_sym_COMMA, sym_fancy_literal, - ACTIONS(1958), 2, - sym__ws, - sym_comment, - STATE(315), 2, - sym__gap, - sym_dis_expr, - STATE(965), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1100), 18, - sym__form, - sym_str_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, - sym_package_lit, - sym_include_reader_macro, - sym_complex_num_lit, - [58382] = 37, + sym_accumulation_verb, + anon_sym_for, + anon_sym_and, + anon_sym_as, + anon_sym_with, + anon_sym_do, + anon_sym_while, + 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, + [56098] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(9), 1, + ACTIONS(2089), 23, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(19), 1, + sym_num_lit, + anon_sym_COLON_COLON, + aux_sym_str_lit_token1, + sym_char_lit, anon_sym_CARET, - ACTIONS(21), 1, anon_sym_POUND_CARET, - ACTIONS(518), 1, - aux_sym_str_lit_token1, - ACTIONS(522), 1, - aux_sym_sym_lit_token1, - ACTIONS(524), 1, anon_sym_LPAREN, - ACTIONS(526), 1, + anon_sym_RPAREN, anon_sym_POUND0A, - ACTIONS(528), 1, - anon_sym_POUND, - ACTIONS(530), 1, - anon_sym_POUND_QMARK, - ACTIONS(532), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(534), 1, - anon_sym_COLON_COLON, - ACTIONS(536), 1, anon_sym_POUND_SQUOTE, - ACTIONS(538), 1, anon_sym_POUND_POUND, - ACTIONS(540), 1, anon_sym_POUND_EQ, - ACTIONS(542), 1, anon_sym_AT, - ACTIONS(544), 1, anon_sym_SQUOTE, - ACTIONS(546), 1, anon_sym_BQUOTE, - ACTIONS(548), 1, anon_sym_COMMA_AT, - ACTIONS(550), 1, - anon_sym_COMMA, - ACTIONS(552), 1, - anon_sym_COLON, - ACTIONS(556), 1, - anon_sym_POUNDC, - STATE(575), 1, - sym_sym_lit, - STATE(654), 1, - sym__bare_vec_lit, - STATE(683), 1, - sym__bare_set_lit, - STATE(1029), 1, - aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, - sym_meta_lit, - STATE(1369), 1, - sym__metadata_lit, - STATE(1906), 1, - sym_dotted_sym_lit, - ACTIONS(554), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1960), 2, - sym__ws, - sym_comment, - ACTIONS(1962), 2, - sym_num_lit, - sym_char_lit, - ACTIONS(1964), 2, + anon_sym_POUNDC, + ACTIONS(2091), 23, + anon_sym_COLON, sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND, + anon_sym_POUND_QMARK, + anon_sym_COMMA, sym_fancy_literal, - STATE(283), 2, - sym__gap, - sym_dis_expr, - STATE(651), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(695), 18, - sym__form, - sym_str_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, - sym_package_lit, - sym_include_reader_macro, - sym_complex_num_lit, - [58518] = 37, + sym_accumulation_verb, + anon_sym_for, + anon_sym_and, + anon_sym_as, + anon_sym_with, + anon_sym_do, + anon_sym_while, + 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, + [56152] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(9), 1, + ACTIONS(2093), 23, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(19), 1, + sym_num_lit, + anon_sym_COLON_COLON, + aux_sym_str_lit_token1, + sym_char_lit, anon_sym_CARET, - ACTIONS(21), 1, anon_sym_POUND_CARET, - ACTIONS(606), 1, - aux_sym_str_lit_token1, - ACTIONS(610), 1, - aux_sym_sym_lit_token1, - ACTIONS(612), 1, anon_sym_LPAREN, - ACTIONS(614), 1, + anon_sym_RPAREN, anon_sym_POUND0A, - ACTIONS(616), 1, - anon_sym_POUND, - ACTIONS(618), 1, - anon_sym_POUND_QMARK, - ACTIONS(620), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(622), 1, - anon_sym_COLON_COLON, - ACTIONS(624), 1, anon_sym_POUND_SQUOTE, - ACTIONS(626), 1, anon_sym_POUND_POUND, - ACTIONS(628), 1, anon_sym_POUND_EQ, - ACTIONS(630), 1, anon_sym_AT, - ACTIONS(632), 1, anon_sym_SQUOTE, - ACTIONS(634), 1, anon_sym_BQUOTE, - ACTIONS(636), 1, anon_sym_COMMA_AT, - ACTIONS(638), 1, - anon_sym_COMMA, - ACTIONS(640), 1, - anon_sym_COLON, - ACTIONS(644), 1, - anon_sym_POUNDC, - STATE(949), 1, - sym_sym_lit, - STATE(963), 1, - sym__bare_set_lit, - STATE(964), 1, - sym__bare_vec_lit, - STATE(967), 1, - aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, - sym_meta_lit, - STATE(1369), 1, - sym__metadata_lit, - STATE(1911), 1, - sym_dotted_sym_lit, - ACTIONS(642), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1480), 2, - sym_num_lit, - sym_char_lit, - ACTIONS(1482), 2, + anon_sym_POUNDC, + ACTIONS(2095), 23, + anon_sym_COLON, sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND, + anon_sym_POUND_QMARK, + anon_sym_COMMA, sym_fancy_literal, - ACTIONS(1966), 2, - sym__ws, - sym_comment, - STATE(310), 2, - sym__gap, - sym_dis_expr, - STATE(965), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1079), 18, - sym__form, - sym_str_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, - sym_package_lit, - sym_include_reader_macro, - sym_complex_num_lit, - [58654] = 37, + sym_accumulation_verb, + anon_sym_for, + anon_sym_and, + anon_sym_as, + anon_sym_with, + anon_sym_do, + anon_sym_while, + 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, + [56206] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(9), 1, + ACTIONS(2097), 23, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(19), 1, + sym_num_lit, + anon_sym_COLON_COLON, + aux_sym_str_lit_token1, + sym_char_lit, anon_sym_CARET, - ACTIONS(21), 1, anon_sym_POUND_CARET, - ACTIONS(606), 1, - aux_sym_str_lit_token1, - ACTIONS(610), 1, - aux_sym_sym_lit_token1, - ACTIONS(612), 1, anon_sym_LPAREN, - ACTIONS(614), 1, + anon_sym_RPAREN, anon_sym_POUND0A, - ACTIONS(616), 1, - anon_sym_POUND, - ACTIONS(618), 1, - anon_sym_POUND_QMARK, - ACTIONS(620), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(622), 1, - anon_sym_COLON_COLON, - ACTIONS(624), 1, anon_sym_POUND_SQUOTE, - ACTIONS(626), 1, anon_sym_POUND_POUND, - ACTIONS(628), 1, anon_sym_POUND_EQ, - ACTIONS(630), 1, anon_sym_AT, - ACTIONS(632), 1, anon_sym_SQUOTE, - ACTIONS(634), 1, anon_sym_BQUOTE, - ACTIONS(636), 1, anon_sym_COMMA_AT, - ACTIONS(638), 1, - anon_sym_COMMA, - ACTIONS(640), 1, - anon_sym_COLON, - ACTIONS(644), 1, - anon_sym_POUNDC, - STATE(949), 1, - sym_sym_lit, - STATE(963), 1, - sym__bare_set_lit, - STATE(964), 1, - sym__bare_vec_lit, - STATE(967), 1, - aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, - sym_meta_lit, - STATE(1369), 1, - sym__metadata_lit, - STATE(1911), 1, - sym_dotted_sym_lit, - ACTIONS(642), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1968), 2, + anon_sym_POUNDC, + ACTIONS(2099), 23, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + sym_accumulation_verb, + anon_sym_for, + anon_sym_and, + anon_sym_as, + anon_sym_with, + anon_sym_do, + anon_sym_while, + 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, + [56260] = 3, + ACTIONS(3), 1, + sym_block_comment, + ACTIONS(2101), 23, sym__ws, sym_comment, - ACTIONS(1970), 2, + anon_sym_POUND_, sym_num_lit, + anon_sym_COLON_COLON, + aux_sym_str_lit_token1, sym_char_lit, - ACTIONS(1972), 2, - sym_nil_lit, - sym_fancy_literal, - STATE(194), 2, - sym__gap, - sym_dis_expr, - STATE(965), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1087), 18, - sym__form, - sym_str_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, - sym_package_lit, - sym_include_reader_macro, - sym_complex_num_lit, - [58790] = 37, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(9), 1, - anon_sym_POUND_, - ACTIONS(19), 1, anon_sym_CARET, - ACTIONS(21), 1, anon_sym_POUND_CARET, - ACTIONS(606), 1, - aux_sym_str_lit_token1, - ACTIONS(610), 1, - aux_sym_sym_lit_token1, - ACTIONS(612), 1, anon_sym_LPAREN, - ACTIONS(614), 1, + anon_sym_RPAREN, anon_sym_POUND0A, - ACTIONS(616), 1, - anon_sym_POUND, - ACTIONS(618), 1, - anon_sym_POUND_QMARK, - ACTIONS(620), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(622), 1, - anon_sym_COLON_COLON, - ACTIONS(624), 1, anon_sym_POUND_SQUOTE, - ACTIONS(626), 1, anon_sym_POUND_POUND, - ACTIONS(628), 1, anon_sym_POUND_EQ, - ACTIONS(630), 1, anon_sym_AT, - ACTIONS(632), 1, anon_sym_SQUOTE, - ACTIONS(634), 1, anon_sym_BQUOTE, - ACTIONS(636), 1, anon_sym_COMMA_AT, - ACTIONS(638), 1, - anon_sym_COMMA, - ACTIONS(640), 1, - anon_sym_COLON, - ACTIONS(644), 1, - anon_sym_POUNDC, - STATE(949), 1, - sym_sym_lit, - STATE(963), 1, - sym__bare_set_lit, - STATE(964), 1, - sym__bare_vec_lit, - STATE(967), 1, - aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, - sym_meta_lit, - STATE(1369), 1, - sym__metadata_lit, - STATE(1911), 1, - sym_dotted_sym_lit, - ACTIONS(642), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1974), 2, - sym__ws, - sym_comment, - ACTIONS(1976), 2, - sym_num_lit, - sym_char_lit, - ACTIONS(1978), 2, - sym_nil_lit, - sym_fancy_literal, - STATE(196), 2, - sym__gap, - sym_dis_expr, - STATE(965), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1094), 18, - sym__form, - sym_str_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, - sym_package_lit, - sym_include_reader_macro, - sym_complex_num_lit, - [58926] = 37, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(9), 1, - anon_sym_POUND_, - ACTIONS(19), 1, - anon_sym_CARET, - ACTIONS(21), 1, - anon_sym_POUND_CARET, - ACTIONS(606), 1, - aux_sym_str_lit_token1, - ACTIONS(610), 1, - aux_sym_sym_lit_token1, - ACTIONS(612), 1, - anon_sym_LPAREN, - ACTIONS(614), 1, - anon_sym_POUND0A, - ACTIONS(616), 1, - anon_sym_POUND, - ACTIONS(618), 1, - anon_sym_POUND_QMARK, - ACTIONS(620), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(622), 1, - anon_sym_COLON_COLON, - ACTIONS(624), 1, - anon_sym_POUND_SQUOTE, - ACTIONS(626), 1, - anon_sym_POUND_POUND, - ACTIONS(628), 1, - anon_sym_POUND_EQ, - ACTIONS(630), 1, - anon_sym_AT, - ACTIONS(632), 1, - anon_sym_SQUOTE, - ACTIONS(634), 1, - anon_sym_BQUOTE, - ACTIONS(636), 1, - anon_sym_COMMA_AT, - ACTIONS(638), 1, - anon_sym_COMMA, - ACTIONS(640), 1, - anon_sym_COLON, - ACTIONS(644), 1, anon_sym_POUNDC, - STATE(949), 1, - sym_sym_lit, - STATE(963), 1, - sym__bare_set_lit, - STATE(964), 1, - sym__bare_vec_lit, - STATE(967), 1, - aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, - sym_meta_lit, - STATE(1369), 1, - sym__metadata_lit, - STATE(1911), 1, - sym_dotted_sym_lit, - ACTIONS(642), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(1980), 2, - sym__ws, - sym_comment, - ACTIONS(1982), 2, - sym_num_lit, - sym_char_lit, - ACTIONS(1984), 2, - sym_nil_lit, - sym_fancy_literal, - STATE(198), 2, - sym__gap, - sym_dis_expr, - STATE(965), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1088), 18, - sym__form, - sym_str_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, - sym_package_lit, - sym_include_reader_macro, - sym_complex_num_lit, - [59062] = 37, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(9), 1, - anon_sym_POUND_, - ACTIONS(19), 1, - anon_sym_CARET, - ACTIONS(21), 1, - anon_sym_POUND_CARET, - ACTIONS(606), 1, - aux_sym_str_lit_token1, - ACTIONS(610), 1, - aux_sym_sym_lit_token1, - ACTIONS(612), 1, - anon_sym_LPAREN, - ACTIONS(614), 1, - anon_sym_POUND0A, - ACTIONS(616), 1, - anon_sym_POUND, - ACTIONS(618), 1, - anon_sym_POUND_QMARK, - ACTIONS(620), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(622), 1, - anon_sym_COLON_COLON, - ACTIONS(624), 1, - anon_sym_POUND_SQUOTE, - ACTIONS(626), 1, - anon_sym_POUND_POUND, - ACTIONS(628), 1, - anon_sym_POUND_EQ, - ACTIONS(630), 1, - anon_sym_AT, - ACTIONS(632), 1, - anon_sym_SQUOTE, - ACTIONS(634), 1, - anon_sym_BQUOTE, - ACTIONS(636), 1, - anon_sym_COMMA_AT, - ACTIONS(638), 1, - anon_sym_COMMA, - ACTIONS(640), 1, + ACTIONS(2103), 23, anon_sym_COLON, - ACTIONS(644), 1, - anon_sym_POUNDC, - STATE(949), 1, - sym_sym_lit, - STATE(963), 1, - sym__bare_set_lit, - STATE(964), 1, - sym__bare_vec_lit, - STATE(967), 1, - aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, - sym_meta_lit, - STATE(1369), 1, - sym__metadata_lit, - STATE(1911), 1, - sym_dotted_sym_lit, - ACTIONS(642), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(1986), 2, - sym__ws, - sym_comment, - ACTIONS(1988), 2, - sym_num_lit, - sym_char_lit, - ACTIONS(1990), 2, sym_nil_lit, - sym_fancy_literal, - STATE(279), 2, - sym__gap, - sym_dis_expr, - STATE(965), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1099), 18, - sym__form, - sym_str_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, - sym_package_lit, - sym_include_reader_macro, - sym_complex_num_lit, - [59198] = 37, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(9), 1, - anon_sym_POUND_, - ACTIONS(19), 1, - anon_sym_CARET, - ACTIONS(21), 1, - anon_sym_POUND_CARET, - ACTIONS(606), 1, - aux_sym_str_lit_token1, - ACTIONS(610), 1, aux_sym_sym_lit_token1, - ACTIONS(612), 1, - anon_sym_LPAREN, - ACTIONS(614), 1, - anon_sym_POUND0A, - ACTIONS(616), 1, anon_sym_POUND, - ACTIONS(618), 1, anon_sym_POUND_QMARK, - ACTIONS(620), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(622), 1, - anon_sym_COLON_COLON, - ACTIONS(624), 1, - anon_sym_POUND_SQUOTE, - ACTIONS(626), 1, - anon_sym_POUND_POUND, - ACTIONS(628), 1, - anon_sym_POUND_EQ, - ACTIONS(630), 1, - anon_sym_AT, - ACTIONS(632), 1, - anon_sym_SQUOTE, - ACTIONS(634), 1, - anon_sym_BQUOTE, - ACTIONS(636), 1, - anon_sym_COMMA_AT, - ACTIONS(638), 1, anon_sym_COMMA, - ACTIONS(640), 1, - anon_sym_COLON, - ACTIONS(644), 1, - anon_sym_POUNDC, - STATE(949), 1, - sym_sym_lit, - STATE(963), 1, - sym__bare_set_lit, - STATE(964), 1, - sym__bare_vec_lit, - STATE(967), 1, - aux_sym_sym_lit_repeat1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, - sym_meta_lit, - STATE(1369), 1, - sym__metadata_lit, - STATE(1911), 1, - sym_dotted_sym_lit, - ACTIONS(642), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(1604), 2, - sym_num_lit, - sym_char_lit, - ACTIONS(1606), 2, - sym_nil_lit, sym_fancy_literal, - ACTIONS(1992), 2, - sym__ws, - sym_comment, - STATE(337), 2, - sym__gap, - sym_dis_expr, - STATE(965), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1096), 18, - sym__form, - sym_str_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, - sym_package_lit, - sym_include_reader_macro, - sym_complex_num_lit, - [59334] = 6, + sym_accumulation_verb, + anon_sym_for, + anon_sym_and, + anon_sym_as, + anon_sym_with, + anon_sym_do, + anon_sym_while, + 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, + [56314] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1997), 1, - anon_sym_POUND_, - ACTIONS(1994), 2, + ACTIONS(2105), 23, sym__ws, sym_comment, - STATE(438), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - ACTIONS(2000), 20, + anon_sym_POUND_, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -49746,7 +47962,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -49757,7 +47972,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - ACTIONS(2002), 23, + ACTIONS(2107), 23, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, @@ -49780,19 +47996,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - anon_sym_COLON, - [59397] = 4, + [56368] = 3, ACTIONS(3), 1, sym_block_comment, - STATE(441), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - ACTIONS(128), 23, + ACTIONS(2109), 23, sym__ws, sym_comment, anon_sym_POUND_, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -49801,7 +48013,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -49812,7 +48023,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - ACTIONS(169), 23, + ACTIONS(2111), 23, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, @@ -49835,21 +48047,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - anon_sym_COLON, - [59456] = 6, + [56422] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2007), 1, - anon_sym_POUND_, - ACTIONS(2004), 2, + ACTIONS(2113), 23, sym__ws, sym_comment, - STATE(440), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - ACTIONS(128), 20, + anon_sym_POUND_, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -49858,7 +48064,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -49869,7 +48074,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - ACTIONS(169), 23, + ACTIONS(2115), 23, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, @@ -49892,19 +48098,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - anon_sym_COLON, - [59519] = 4, + [56476] = 3, ACTIONS(3), 1, sym_block_comment, - STATE(441), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - ACTIONS(2010), 23, + ACTIONS(2117), 23, sym__ws, sym_comment, anon_sym_POUND_, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -49913,7 +48115,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -49924,7 +48125,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - ACTIONS(2012), 23, + ACTIONS(2119), 23, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, @@ -49947,21 +48149,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - anon_sym_COLON, - [59578] = 6, + [56530] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2017), 1, - anon_sym_POUND_, - ACTIONS(2014), 2, + ACTIONS(2121), 23, sym__ws, sym_comment, - STATE(441), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - ACTIONS(2020), 20, + anon_sym_POUND_, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -49970,7 +48166,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -49981,7 +48176,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - ACTIONS(2022), 23, + ACTIONS(2123), 23, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, @@ -50004,19 +48200,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - anon_sym_COLON, - [59641] = 5, + [56584] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2026), 1, - anon_sym_DOT, - STATE(444), 1, - aux_sym_dotted_sym_lit_repeat1, - ACTIONS(2024), 23, + ACTIONS(2125), 23, sym__ws, sym_comment, anon_sym_POUND_, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -50025,7 +48217,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -50036,7 +48227,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - ACTIONS(2028), 23, + ACTIONS(2127), 23, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, @@ -50059,19 +48251,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - anon_sym_COLON, - [59701] = 5, + [56638] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2032), 1, - anon_sym_DOT, - STATE(443), 1, - aux_sym_dotted_sym_lit_repeat1, - ACTIONS(2030), 23, + ACTIONS(2129), 23, sym__ws, sym_comment, anon_sym_POUND_, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -50080,7 +48268,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -50091,7 +48278,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - ACTIONS(2035), 23, + ACTIONS(2131), 23, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, @@ -50114,19 +48302,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - anon_sym_COLON, - [59761] = 5, + [56692] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2026), 1, - anon_sym_DOT, - STATE(443), 1, - aux_sym_dotted_sym_lit_repeat1, - ACTIONS(2037), 23, + ACTIONS(2133), 23, sym__ws, sym_comment, anon_sym_POUND_, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -50135,7 +48319,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -50146,7 +48329,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - ACTIONS(2039), 23, + ACTIONS(2135), 23, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, @@ -50169,19 +48353,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - anon_sym_COLON, - [59821] = 5, + [56746] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2026), 1, - anon_sym_DOT, - STATE(444), 1, - aux_sym_dotted_sym_lit_repeat1, - ACTIONS(2041), 23, + ACTIONS(2137), 23, sym__ws, sym_comment, anon_sym_POUND_, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -50190,7 +48370,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -50201,7 +48380,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - ACTIONS(2043), 23, + ACTIONS(2139), 23, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, @@ -50224,23 +48404,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - anon_sym_COLON, - [59881] = 7, + [56800] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2047), 1, - anon_sym_DOT, - ACTIONS(2051), 1, - anon_sym_COLON_COLON, - ACTIONS(2053), 1, - anon_sym_COLON, - STATE(816), 1, - aux_sym_dotted_sym_lit_repeat1, - ACTIONS(2045), 22, + ACTIONS(2141), 23, sym__ws, sym_comment, anon_sym_POUND_, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -50259,7 +48431,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - ACTIONS(2049), 22, + ACTIONS(2143), 23, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, @@ -50282,10 +48455,35 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [59945] = 3, + [56854] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2035), 23, + ACTIONS(2145), 23, + sym__ws, + sym_comment, + anon_sym_POUND_, + sym_num_lit, + anon_sym_COLON_COLON, + aux_sym_str_lit_token1, + sym_char_lit, + 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, + anon_sym_POUND_POUND, + anon_sym_POUND_EQ, + anon_sym_AT, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA_AT, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + ACTIONS(2147), 23, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, @@ -50308,13 +48506,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - anon_sym_COLON, - ACTIONS(2030), 24, + [56908] = 3, + ACTIONS(3), 1, + sym_block_comment, + ACTIONS(2113), 23, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_DOT, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -50323,7 +48523,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -50334,10 +48533,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [60000] = 3, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(2057), 23, + ACTIONS(2115), 23, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, @@ -50360,13 +48557,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - anon_sym_COLON, - ACTIONS(2055), 24, + [56962] = 3, + ACTIONS(3), 1, + sym_block_comment, + ACTIONS(2137), 23, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_DOT, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -50375,7 +48574,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -50386,10 +48584,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [60055] = 3, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(2061), 23, + ACTIONS(2139), 23, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, @@ -50412,13 +48608,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - anon_sym_COLON, - ACTIONS(2059), 24, + [57016] = 3, + ACTIONS(3), 1, + sym_block_comment, + ACTIONS(2149), 23, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_DOT, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -50427,7 +48625,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -50438,34 +48635,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [60110] = 3, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(2063), 23, - sym__ws, - sym_comment, - anon_sym_POUND_, - sym_num_lit, - aux_sym_str_lit_token1, - sym_char_lit, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_POUND0A, - anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, - 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, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - ACTIONS(2065), 23, + ACTIONS(2151), 23, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, @@ -50488,15 +48659,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - anon_sym_COLON, - [60164] = 3, + [57070] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2067), 23, + ACTIONS(2153), 23, sym__ws, sym_comment, anon_sym_POUND_, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -50505,7 +48676,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -50516,7 +48686,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - ACTIONS(2069), 23, + ACTIONS(2155), 23, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, @@ -50539,15 +48710,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - anon_sym_COLON, - [60218] = 3, + [57124] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2071), 23, + ACTIONS(2157), 23, sym__ws, sym_comment, anon_sym_POUND_, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -50556,7 +48727,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -50567,7 +48737,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - ACTIONS(2073), 23, + ACTIONS(2159), 23, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, @@ -50590,15 +48761,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - anon_sym_COLON, - [60272] = 3, + [57178] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2075), 23, + ACTIONS(2161), 23, sym__ws, sym_comment, anon_sym_POUND_, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -50607,7 +48778,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -50618,7 +48788,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - ACTIONS(2077), 23, + ACTIONS(2163), 23, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, @@ -50641,15 +48812,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - anon_sym_COLON, - [60326] = 3, + [57232] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2079), 23, + ACTIONS(2165), 23, sym__ws, sym_comment, anon_sym_POUND_, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -50658,7 +48829,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -50669,7 +48839,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - ACTIONS(2081), 23, + ACTIONS(2167), 23, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, @@ -50692,15 +48863,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - anon_sym_COLON, - [60380] = 3, + [57286] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2083), 23, + ACTIONS(2169), 23, sym__ws, sym_comment, anon_sym_POUND_, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -50709,7 +48880,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -50720,7 +48890,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - ACTIONS(2085), 23, + ACTIONS(2171), 23, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, @@ -50743,15 +48914,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - anon_sym_COLON, - [60434] = 3, + [57340] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2087), 23, + ACTIONS(2173), 23, sym__ws, sym_comment, anon_sym_POUND_, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -50760,7 +48931,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -50771,7 +48941,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - ACTIONS(2089), 23, + ACTIONS(2175), 23, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, @@ -50794,15 +48965,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - anon_sym_COLON, - [60488] = 3, + [57394] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2091), 23, + ACTIONS(2177), 23, sym__ws, sym_comment, anon_sym_POUND_, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -50811,7 +48982,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -50822,7 +48992,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - ACTIONS(2093), 23, + ACTIONS(2179), 23, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, @@ -50845,15 +49016,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - anon_sym_COLON, - [60542] = 3, + [57448] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2071), 23, + ACTIONS(2181), 23, sym__ws, sym_comment, anon_sym_POUND_, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -50862,7 +49033,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -50873,7 +49043,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - ACTIONS(2073), 23, + ACTIONS(2183), 23, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, @@ -50896,15 +49067,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - anon_sym_COLON, - [60596] = 3, + [57502] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2095), 23, + ACTIONS(2185), 23, sym__ws, sym_comment, anon_sym_POUND_, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -50913,7 +49084,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -50924,7 +49094,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - ACTIONS(2097), 23, + ACTIONS(2187), 23, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, @@ -50947,15 +49118,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - anon_sym_COLON, - [60650] = 3, + [57556] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2099), 23, + ACTIONS(2189), 23, sym__ws, sym_comment, anon_sym_POUND_, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -50964,7 +49135,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -50975,7 +49145,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - ACTIONS(2101), 23, + ACTIONS(2191), 23, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, @@ -50998,15 +49169,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - anon_sym_COLON, - [60704] = 3, + [57610] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2103), 23, + ACTIONS(2181), 23, sym__ws, sym_comment, anon_sym_POUND_, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -51015,7 +49186,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -51026,7 +49196,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - ACTIONS(2105), 23, + ACTIONS(2183), 23, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, @@ -51049,15 +49220,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - anon_sym_COLON, - [60758] = 3, + [57664] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2107), 23, + ACTIONS(2193), 23, sym__ws, sym_comment, anon_sym_POUND_, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -51066,7 +49237,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -51077,7 +49247,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - ACTIONS(2109), 23, + ACTIONS(2195), 23, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, @@ -51100,15 +49271,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - anon_sym_COLON, - [60812] = 3, + [57718] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2111), 23, + ACTIONS(2197), 23, sym__ws, sym_comment, anon_sym_POUND_, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -51117,7 +49288,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -51128,7 +49298,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - ACTIONS(2113), 23, + ACTIONS(2199), 23, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, @@ -51151,15 +49322,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - anon_sym_COLON, - [60866] = 3, + [57772] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2115), 23, + ACTIONS(2201), 23, sym__ws, sym_comment, anon_sym_POUND_, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -51168,7 +49339,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -51179,7 +49349,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - ACTIONS(2117), 23, + ACTIONS(2203), 23, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, @@ -51202,15 +49373,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - anon_sym_COLON, - [60920] = 3, + [57826] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2119), 23, + ACTIONS(2205), 23, sym__ws, sym_comment, anon_sym_POUND_, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -51219,7 +49390,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -51230,7 +49400,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - ACTIONS(2121), 23, + ACTIONS(2207), 23, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, @@ -51253,15 +49424,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - anon_sym_COLON, - [60974] = 3, + [57880] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2123), 23, + ACTIONS(2205), 23, sym__ws, sym_comment, anon_sym_POUND_, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -51270,7 +49441,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -51281,7 +49451,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - ACTIONS(2125), 23, + ACTIONS(2207), 23, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, @@ -51304,15 +49475,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - anon_sym_COLON, - [61028] = 3, + [57934] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2127), 23, + ACTIONS(2205), 23, sym__ws, sym_comment, anon_sym_POUND_, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -51321,7 +49492,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -51332,7 +49502,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - ACTIONS(2129), 23, + ACTIONS(2207), 23, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, @@ -51355,15 +49526,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - anon_sym_COLON, - [61082] = 3, + [57988] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2131), 23, + ACTIONS(2209), 23, sym__ws, sym_comment, anon_sym_POUND_, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -51372,7 +49543,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -51383,7 +49553,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - ACTIONS(2133), 23, + ACTIONS(2211), 23, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, @@ -51406,15 +49577,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - anon_sym_COLON, - [61136] = 3, + [58042] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2135), 23, + ACTIONS(2213), 23, sym__ws, sym_comment, anon_sym_POUND_, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -51423,7 +49594,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -51434,7 +49604,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - ACTIONS(2137), 23, + ACTIONS(2215), 23, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, @@ -51457,15 +49628,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - anon_sym_COLON, - [61190] = 3, + [58096] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2139), 23, + ACTIONS(2217), 23, sym__ws, sym_comment, anon_sym_POUND_, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -51474,7 +49645,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -51485,7 +49655,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - ACTIONS(2141), 23, + ACTIONS(2219), 23, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, @@ -51508,15 +49679,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - anon_sym_COLON, - [61244] = 3, + [58150] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2115), 23, + ACTIONS(2221), 23, sym__ws, sym_comment, anon_sym_POUND_, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -51525,7 +49696,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -51536,7 +49706,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - ACTIONS(2117), 23, + ACTIONS(2223), 23, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, @@ -51559,15 +49730,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - anon_sym_COLON, - [61298] = 3, + [58204] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2143), 23, + ACTIONS(2225), 23, sym__ws, sym_comment, anon_sym_POUND_, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -51576,7 +49747,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -51587,7 +49757,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - ACTIONS(2145), 23, + ACTIONS(2227), 23, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, @@ -51610,15 +49781,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - anon_sym_COLON, - [61352] = 3, + [58258] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2147), 23, + ACTIONS(2229), 23, sym__ws, sym_comment, anon_sym_POUND_, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -51627,7 +49798,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -51638,7 +49808,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - ACTIONS(2149), 23, + ACTIONS(2231), 23, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, @@ -51661,15 +49832,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - anon_sym_COLON, - [61406] = 3, + [58312] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2151), 23, + ACTIONS(2233), 23, sym__ws, sym_comment, anon_sym_POUND_, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -51678,7 +49849,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -51689,7 +49859,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - ACTIONS(2153), 23, + ACTIONS(2235), 23, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, @@ -51712,15 +49883,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - anon_sym_COLON, - [61460] = 3, + [58366] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2155), 23, + ACTIONS(2237), 23, sym__ws, sym_comment, anon_sym_POUND_, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -51729,7 +49900,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -51740,7 +49910,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - ACTIONS(2157), 23, + ACTIONS(2239), 23, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, @@ -51763,15 +49934,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - anon_sym_COLON, - [61514] = 3, + [58420] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2159), 23, + ACTIONS(2241), 23, sym__ws, sym_comment, anon_sym_POUND_, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -51780,7 +49951,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -51791,7 +49961,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - ACTIONS(2161), 23, + ACTIONS(2243), 23, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, @@ -51814,15 +49985,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - anon_sym_COLON, - [61568] = 3, + [58474] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2163), 23, + ACTIONS(2245), 23, sym__ws, sym_comment, anon_sym_POUND_, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -51831,7 +50002,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -51842,7 +50012,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - ACTIONS(2165), 23, + ACTIONS(2247), 23, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, @@ -51865,15 +50036,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - anon_sym_COLON, - [61622] = 3, + [58528] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2167), 23, + ACTIONS(2249), 23, sym__ws, sym_comment, anon_sym_POUND_, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -51882,7 +50053,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -51893,7 +50063,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - ACTIONS(2169), 23, + ACTIONS(2251), 23, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, @@ -51916,15 +50087,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - anon_sym_COLON, - [61676] = 3, + [58582] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2171), 23, + ACTIONS(2253), 23, sym__ws, sym_comment, anon_sym_POUND_, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -51933,7 +50104,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -51944,7 +50114,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - ACTIONS(2173), 23, + ACTIONS(2255), 23, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, @@ -51967,15 +50138,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - anon_sym_COLON, - [61730] = 3, + [58636] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2175), 23, + ACTIONS(2257), 23, sym__ws, sym_comment, anon_sym_POUND_, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -51984,7 +50155,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -51995,7 +50165,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - ACTIONS(2177), 23, + ACTIONS(2259), 23, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, @@ -52018,15 +50189,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - anon_sym_COLON, - [61784] = 3, + [58690] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2179), 23, + ACTIONS(2261), 23, sym__ws, sym_comment, anon_sym_POUND_, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -52035,7 +50206,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -52046,7 +50216,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - ACTIONS(2181), 23, + ACTIONS(2263), 23, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, @@ -52069,15 +50240,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - anon_sym_COLON, - [61838] = 3, + [58744] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2183), 23, + ACTIONS(2265), 23, sym__ws, sym_comment, anon_sym_POUND_, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -52086,7 +50257,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -52097,7 +50267,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - ACTIONS(2185), 23, + ACTIONS(2267), 23, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, @@ -52120,15 +50291,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - anon_sym_COLON, - [61892] = 3, + [58798] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2187), 23, + ACTIONS(2269), 23, sym__ws, sym_comment, anon_sym_POUND_, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -52137,7 +50308,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -52148,7 +50318,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - ACTIONS(2189), 23, + ACTIONS(2271), 23, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, @@ -52171,15 +50342,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - anon_sym_COLON, - [61946] = 3, + [58852] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2179), 23, + ACTIONS(2273), 23, sym__ws, sym_comment, anon_sym_POUND_, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -52188,7 +50359,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -52199,7 +50369,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - ACTIONS(2181), 23, + ACTIONS(2275), 23, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, @@ -52222,15 +50393,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - anon_sym_COLON, - [62000] = 3, + [58906] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2183), 23, + ACTIONS(2277), 23, sym__ws, sym_comment, anon_sym_POUND_, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -52239,7 +50410,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -52250,7 +50420,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - ACTIONS(2185), 23, + ACTIONS(2279), 23, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, @@ -52273,15 +50444,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - anon_sym_COLON, - [62054] = 3, + [58960] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2191), 23, + ACTIONS(2281), 23, sym__ws, sym_comment, anon_sym_POUND_, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -52290,7 +50461,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -52301,7 +50471,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - ACTIONS(2193), 23, + ACTIONS(2283), 23, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, @@ -52324,15 +50495,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - anon_sym_COLON, - [62108] = 3, + [59014] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2195), 23, + ACTIONS(2285), 23, sym__ws, sym_comment, anon_sym_POUND_, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -52341,7 +50512,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -52352,7 +50522,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - ACTIONS(2197), 23, + ACTIONS(2287), 23, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, @@ -52375,15 +50546,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - anon_sym_COLON, - [62162] = 3, + [59068] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2199), 23, + ACTIONS(2289), 23, sym__ws, sym_comment, anon_sym_POUND_, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -52392,7 +50563,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -52403,7 +50573,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - ACTIONS(2201), 23, + ACTIONS(2291), 23, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, @@ -52426,15 +50597,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - anon_sym_COLON, - [62216] = 3, + [59122] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2203), 23, + ACTIONS(2293), 23, sym__ws, sym_comment, anon_sym_POUND_, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -52443,7 +50614,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -52454,7 +50624,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - ACTIONS(2205), 23, + ACTIONS(2295), 23, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, @@ -52477,15 +50648,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - anon_sym_COLON, - [62270] = 3, + [59176] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2207), 23, + ACTIONS(2297), 23, sym__ws, sym_comment, anon_sym_POUND_, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -52494,7 +50665,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -52505,7 +50675,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - ACTIONS(2209), 23, + ACTIONS(2299), 23, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, @@ -52528,15 +50699,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - anon_sym_COLON, - [62324] = 3, + [59230] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2211), 23, + ACTIONS(2301), 23, sym__ws, sym_comment, anon_sym_POUND_, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -52545,7 +50716,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -52556,7 +50726,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - ACTIONS(2213), 23, + ACTIONS(2303), 23, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, @@ -52579,15 +50750,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - anon_sym_COLON, - [62378] = 3, + [59284] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2215), 23, + ACTIONS(2305), 23, sym__ws, sym_comment, anon_sym_POUND_, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -52596,7 +50767,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -52607,7 +50777,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - ACTIONS(2217), 23, + ACTIONS(2307), 23, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, @@ -52630,15 +50801,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - anon_sym_COLON, - [62432] = 3, + [59338] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2219), 23, + ACTIONS(2006), 23, sym__ws, sym_comment, anon_sym_POUND_, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -52647,7 +50818,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -52658,7 +50828,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - ACTIONS(2221), 23, + ACTIONS(2008), 23, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, @@ -52681,15 +50852,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - anon_sym_COLON, - [62486] = 3, + [59392] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2223), 23, + ACTIONS(2309), 23, sym__ws, sym_comment, anon_sym_POUND_, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -52698,7 +50869,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -52709,7 +50879,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - ACTIONS(2225), 23, + ACTIONS(2311), 23, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, @@ -52732,15 +50903,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - anon_sym_COLON, - [62540] = 3, + [59446] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2227), 23, + ACTIONS(2313), 23, sym__ws, sym_comment, anon_sym_POUND_, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -52749,7 +50920,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -52760,7 +50930,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - ACTIONS(2229), 23, + ACTIONS(2315), 23, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, @@ -52783,15 +50954,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - anon_sym_COLON, - [62594] = 3, + [59500] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2227), 23, + ACTIONS(2317), 23, sym__ws, sym_comment, anon_sym_POUND_, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -52800,7 +50971,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -52811,7 +50981,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - ACTIONS(2229), 23, + ACTIONS(2319), 23, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, @@ -52834,15 +51005,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - anon_sym_COLON, - [62648] = 3, + [59554] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2231), 23, + ACTIONS(2321), 23, sym__ws, sym_comment, anon_sym_POUND_, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -52851,7 +51022,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -52862,7 +51032,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - ACTIONS(2233), 23, + ACTIONS(2323), 23, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, @@ -52885,15 +51056,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - anon_sym_COLON, - [62702] = 3, + [59608] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2235), 23, + ACTIONS(2325), 23, sym__ws, sym_comment, anon_sym_POUND_, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -52902,7 +51073,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -52913,7 +51083,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - ACTIONS(2237), 23, + ACTIONS(2327), 23, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, @@ -52936,15 +51107,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - anon_sym_COLON, - [62756] = 3, + [59662] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2239), 23, + ACTIONS(2329), 23, sym__ws, sym_comment, anon_sym_POUND_, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -52953,7 +51124,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -52964,7 +51134,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - ACTIONS(2241), 23, + ACTIONS(2331), 23, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, @@ -52987,15 +51158,66 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, + [59716] = 3, + ACTIONS(3), 1, + sym_block_comment, + ACTIONS(2333), 23, + sym__ws, + sym_comment, + anon_sym_POUND_, + sym_num_lit, + anon_sym_COLON_COLON, + aux_sym_str_lit_token1, + sym_char_lit, + 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, + anon_sym_POUND_POUND, + anon_sym_POUND_EQ, + anon_sym_AT, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA_AT, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + ACTIONS(2335), 23, anon_sym_COLON, - [62810] = 3, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + sym_accumulation_verb, + anon_sym_for, + anon_sym_and, + anon_sym_as, + anon_sym_with, + anon_sym_do, + anon_sym_while, + 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, + [59770] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2243), 23, + ACTIONS(2337), 23, sym__ws, sym_comment, anon_sym_POUND_, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -53004,7 +51226,57 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, 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, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + ACTIONS(2339), 23, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + sym_accumulation_verb, + anon_sym_for, + anon_sym_and, + anon_sym_as, + anon_sym_with, + anon_sym_do, + anon_sym_while, + 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, + [59824] = 3, + ACTIONS(3), 1, + sym_block_comment, + ACTIONS(2025), 23, + sym__ws, + sym_comment, + anon_sym_POUND_, + sym_num_lit, anon_sym_COLON_COLON, + aux_sym_str_lit_token1, + sym_char_lit, + 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, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -53015,7 +51287,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - ACTIONS(2245), 23, + ACTIONS(2027), 23, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, @@ -53038,66 +51311,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - anon_sym_COLON, - [62864] = 3, + [59878] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2247), 23, + ACTIONS(2341), 23, sym__ws, sym_comment, anon_sym_POUND_, sym_num_lit, - aux_sym_str_lit_token1, - sym_char_lit, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_POUND0A, - anon_sym_POUND_QMARK_AT, anon_sym_COLON_COLON, - 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, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - ACTIONS(2249), 23, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - sym_accumulation_verb, - anon_sym_for, - anon_sym_and, - anon_sym_as, - anon_sym_with, - anon_sym_do, - anon_sym_while, - 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, - anon_sym_COLON, - [62918] = 3, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(2251), 23, - sym__ws, - sym_comment, - anon_sym_POUND_, - sym_num_lit, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -53106,7 +51328,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -53117,58 +51338,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - ACTIONS(2253), 23, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - sym_accumulation_verb, - anon_sym_for, - anon_sym_and, - anon_sym_as, - anon_sym_with, - anon_sym_do, - anon_sym_while, - 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, + ACTIONS(2343), 23, anon_sym_COLON, - [62972] = 3, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(2255), 23, - sym__ws, - sym_comment, - anon_sym_POUND_, - sym_num_lit, - aux_sym_str_lit_token1, - sym_char_lit, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_POUND0A, - anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, - 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, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - ACTIONS(2257), 23, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, @@ -53191,66 +51362,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - anon_sym_COLON, - [63026] = 3, + [59932] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2259), 23, + ACTIONS(2345), 23, sym__ws, sym_comment, anon_sym_POUND_, sym_num_lit, - aux_sym_str_lit_token1, - sym_char_lit, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_POUND0A, - anon_sym_POUND_QMARK_AT, anon_sym_COLON_COLON, - 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, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - ACTIONS(2261), 23, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - sym_accumulation_verb, - anon_sym_for, - anon_sym_and, - anon_sym_as, - anon_sym_with, - anon_sym_do, - anon_sym_while, - 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, - anon_sym_COLON, - [63080] = 3, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(2024), 23, - sym__ws, - sym_comment, - anon_sym_POUND_, - sym_num_lit, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -53259,7 +51379,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -53270,58 +51389,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - ACTIONS(2028), 23, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - sym_accumulation_verb, - anon_sym_for, - anon_sym_and, - anon_sym_as, - anon_sym_with, - anon_sym_do, - anon_sym_while, - 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, + ACTIONS(2347), 23, anon_sym_COLON, - [63134] = 3, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(2263), 23, - sym__ws, - sym_comment, - anon_sym_POUND_, - sym_num_lit, - aux_sym_str_lit_token1, - sym_char_lit, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_POUND0A, - anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, - 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, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - ACTIONS(2265), 23, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, @@ -53344,15 +51413,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - anon_sym_COLON, - [63188] = 3, + [59986] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2267), 23, + ACTIONS(2349), 23, sym__ws, sym_comment, anon_sym_POUND_, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -53361,7 +51430,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -53372,7 +51440,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - ACTIONS(2269), 23, + ACTIONS(2351), 23, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, @@ -53395,15 +51464,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - anon_sym_COLON, - [63242] = 3, + [60040] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2271), 23, + ACTIONS(2025), 23, sym__ws, sym_comment, anon_sym_POUND_, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -53412,7 +51481,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -53423,7 +51491,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - ACTIONS(2273), 23, + ACTIONS(2027), 23, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, @@ -53446,15 +51515,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - anon_sym_COLON, - [63296] = 3, + [60094] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2275), 23, + ACTIONS(2353), 23, sym__ws, sym_comment, anon_sym_POUND_, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -53463,7 +51532,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -53474,7 +51542,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - ACTIONS(2277), 23, + ACTIONS(2355), 23, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, @@ -53497,15 +51566,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - anon_sym_COLON, - [63350] = 3, + [60148] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2279), 23, + ACTIONS(2357), 23, sym__ws, sym_comment, anon_sym_POUND_, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -53514,7 +51583,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -53525,7 +51593,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - ACTIONS(2281), 23, + ACTIONS(2359), 23, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, @@ -53548,15 +51617,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - anon_sym_COLON, - [63404] = 3, + [60202] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2283), 23, + ACTIONS(2277), 23, sym__ws, sym_comment, anon_sym_POUND_, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -53565,7 +51634,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -53576,7 +51644,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - ACTIONS(2285), 23, + ACTIONS(2279), 23, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, @@ -53599,15 +51668,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - anon_sym_COLON, - [63458] = 3, + [60256] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2287), 23, + ACTIONS(2353), 23, sym__ws, sym_comment, anon_sym_POUND_, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -53616,7 +51685,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -53627,7 +51695,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - ACTIONS(2289), 23, + ACTIONS(2355), 23, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, @@ -53650,15 +51719,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - anon_sym_COLON, - [63512] = 3, + [60310] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2291), 23, + ACTIONS(2361), 23, sym__ws, sym_comment, anon_sym_POUND_, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -53667,7 +51736,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -53678,7 +51746,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - ACTIONS(2293), 23, + ACTIONS(2363), 23, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, @@ -53701,15 +51770,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - anon_sym_COLON, - [63566] = 3, + [60364] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2295), 23, + ACTIONS(2365), 23, sym__ws, sym_comment, anon_sym_POUND_, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -53718,7 +51787,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -53729,7 +51797,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - ACTIONS(2297), 23, + ACTIONS(2367), 23, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, @@ -53752,15 +51821,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - anon_sym_COLON, - [63620] = 3, + [60418] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2299), 23, + ACTIONS(2345), 23, sym__ws, sym_comment, anon_sym_POUND_, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -53769,7 +51838,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -53780,7 +51848,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - ACTIONS(2301), 23, + ACTIONS(2347), 23, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, @@ -53803,15 +51872,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - anon_sym_COLON, - [63674] = 3, + [60472] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2303), 23, + ACTIONS(2369), 23, sym__ws, sym_comment, anon_sym_POUND_, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -53820,7 +51889,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -53831,7 +51899,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - ACTIONS(2305), 23, + ACTIONS(2371), 23, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, @@ -53854,15 +51923,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - anon_sym_COLON, - [63728] = 3, + [60526] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2307), 23, + ACTIONS(2373), 23, sym__ws, sym_comment, anon_sym_POUND_, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -53871,7 +51940,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -53882,7 +51950,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - ACTIONS(2309), 23, + ACTIONS(2375), 23, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, @@ -53905,15 +51974,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - anon_sym_COLON, - [63782] = 3, + [60580] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2311), 23, + ACTIONS(2377), 23, sym__ws, sym_comment, anon_sym_POUND_, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -53922,7 +51991,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -53933,7 +52001,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - ACTIONS(2313), 23, + ACTIONS(2379), 23, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, @@ -53956,47 +52025,51 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - anon_sym_COLON, - [63836] = 3, + [60634] = 10, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2315), 23, + ACTIONS(2384), 1, + anon_sym_POUND_, + ACTIONS(2393), 1, + anon_sym_do, + STATE(392), 1, + sym_for_clause_word, + ACTIONS(2381), 2, sym__ws, sym_comment, - anon_sym_POUND_, - sym_num_lit, - aux_sym_str_lit_token1, - sym_char_lit, + ACTIONS(2389), 2, + anon_sym_in, + anon_sym_being, + STATE(516), 2, + sym__for_part, + aux_sym_for_clause_repeat1, + STATE(1340), 2, + sym__gap, + sym_dis_expr, + ACTIONS(2391), 13, + anon_sym_across, + anon_sym_using, + aux_sym_for_clause_word_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, + anon_sym_EQ, + ACTIONS(2387), 19, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_POUND0A, - anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, - 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, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - ACTIONS(2317), 23, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, sym_accumulation_verb, anon_sym_for, anon_sym_and, anon_sym_as, anon_sym_with, - anon_sym_do, anon_sym_while, anon_sym_when, anon_sym_if, @@ -54007,47 +52080,51 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - anon_sym_COLON, - [63890] = 3, + [60699] = 10, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2319), 23, + ACTIONS(2398), 1, + anon_sym_POUND_, + ACTIONS(2409), 1, + anon_sym_do, + STATE(392), 1, + sym_for_clause_word, + ACTIONS(2395), 2, sym__ws, sym_comment, - anon_sym_POUND_, - sym_num_lit, - aux_sym_str_lit_token1, - sym_char_lit, + ACTIONS(2403), 2, + anon_sym_in, + anon_sym_being, + STATE(516), 2, + sym__for_part, + aux_sym_for_clause_repeat1, + STATE(1340), 2, + sym__gap, + sym_dis_expr, + ACTIONS(2406), 13, + anon_sym_across, + anon_sym_using, + aux_sym_for_clause_word_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, + anon_sym_EQ, + ACTIONS(2401), 19, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_POUND0A, - anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, - 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, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - ACTIONS(2321), 23, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, sym_accumulation_verb, anon_sym_for, anon_sym_and, anon_sym_as, anon_sym_with, - anon_sym_do, anon_sym_while, anon_sym_when, anon_sym_if, @@ -54058,47 +52135,51 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - anon_sym_COLON, - [63944] = 3, + [60764] = 10, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2323), 23, + ACTIONS(2414), 1, + anon_sym_POUND_, + ACTIONS(2419), 1, + anon_sym_do, + STATE(392), 1, + sym_for_clause_word, + ACTIONS(2389), 2, + anon_sym_in, + anon_sym_being, + ACTIONS(2411), 2, sym__ws, sym_comment, - anon_sym_POUND_, - sym_num_lit, - aux_sym_str_lit_token1, - sym_char_lit, + STATE(516), 2, + sym__for_part, + aux_sym_for_clause_repeat1, + STATE(1340), 2, + sym__gap, + sym_dis_expr, + ACTIONS(2391), 13, + anon_sym_across, + anon_sym_using, + aux_sym_for_clause_word_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, + anon_sym_EQ, + ACTIONS(2417), 19, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_POUND0A, - anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, - 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, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - ACTIONS(2325), 23, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, sym_accumulation_verb, anon_sym_for, anon_sym_and, anon_sym_as, anon_sym_with, - anon_sym_do, anon_sym_while, anon_sym_when, anon_sym_if, @@ -54109,1424 +52190,1802 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - anon_sym_COLON, - [63998] = 3, + [60829] = 21, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2327), 23, - sym__ws, - sym_comment, + ACTIONS(528), 1, + anon_sym_LPAREN, + ACTIONS(2423), 1, anon_sym_POUND_, - sym_num_lit, - aux_sym_str_lit_token1, - sym_char_lit, + ACTIONS(2425), 1, anon_sym_CARET, + ACTIONS(2427), 1, anon_sym_POUND_CARET, - anon_sym_LPAREN, + ACTIONS(2429), 1, anon_sym_RPAREN, - anon_sym_POUND0A, - anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, - 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, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - ACTIONS(2329), 23, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, + ACTIONS(2431), 1, sym_accumulation_verb, - anon_sym_for, - anon_sym_and, - anon_sym_as, + ACTIONS(2435), 1, anon_sym_with, + ACTIONS(2437), 1, anon_sym_do, + ACTIONS(2439), 1, anon_sym_while, + STATE(1337), 1, + sym__metadata_lit, + STATE(1384), 1, + aux_sym_sym_lit_repeat1, + STATE(1389), 1, + sym_old_meta_lit, + STATE(1407), 1, + sym_meta_lit, + ACTIONS(2421), 2, + sym__ws, + sym_comment, + ACTIONS(2433), 3, + anon_sym_for, + anon_sym_and, + anon_sym_as, + ACTIONS(2443), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(930), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(540), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(2441), 6, 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, - anon_sym_COLON, - [64052] = 3, + STATE(1084), 8, + sym_list_lit, + sym_for_clause, + sym_with_clause, + sym_do_clause, + sym_while_clause, + sym_condition_clause, + sym_accumulation_clause, + sym_termination_clause, + [60915] = 21, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2071), 23, - sym__ws, - sym_comment, + ACTIONS(528), 1, + anon_sym_LPAREN, + ACTIONS(2423), 1, anon_sym_POUND_, - sym_num_lit, - aux_sym_str_lit_token1, - sym_char_lit, + ACTIONS(2425), 1, anon_sym_CARET, + ACTIONS(2427), 1, anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_POUND0A, - anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, - 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, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - ACTIONS(2073), 23, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, + ACTIONS(2431), 1, sym_accumulation_verb, - anon_sym_for, - anon_sym_and, - anon_sym_as, + ACTIONS(2435), 1, anon_sym_with, + ACTIONS(2437), 1, anon_sym_do, + ACTIONS(2439), 1, anon_sym_while, + ACTIONS(2447), 1, + anon_sym_RPAREN, + STATE(1337), 1, + sym__metadata_lit, + STATE(1384), 1, + aux_sym_sym_lit_repeat1, + STATE(1389), 1, + sym_old_meta_lit, + STATE(1407), 1, + sym_meta_lit, + ACTIONS(2445), 2, + sym__ws, + sym_comment, + ACTIONS(2433), 3, + anon_sym_for, + anon_sym_and, + anon_sym_as, + ACTIONS(2443), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(930), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(527), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(2441), 6, 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, - anon_sym_COLON, - [64106] = 3, + STATE(1084), 8, + sym_list_lit, + sym_for_clause, + sym_with_clause, + sym_do_clause, + sym_while_clause, + sym_condition_clause, + sym_accumulation_clause, + sym_termination_clause, + [61001] = 21, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2331), 23, - sym__ws, - sym_comment, + ACTIONS(528), 1, + anon_sym_LPAREN, + ACTIONS(2423), 1, anon_sym_POUND_, - sym_num_lit, - aux_sym_str_lit_token1, - sym_char_lit, + ACTIONS(2425), 1, anon_sym_CARET, + ACTIONS(2427), 1, anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_POUND0A, - anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, - 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, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - ACTIONS(2333), 23, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, + ACTIONS(2431), 1, sym_accumulation_verb, - anon_sym_for, - anon_sym_and, - anon_sym_as, + ACTIONS(2435), 1, anon_sym_with, + ACTIONS(2437), 1, anon_sym_do, + ACTIONS(2439), 1, anon_sym_while, + ACTIONS(2451), 1, + anon_sym_RPAREN, + STATE(1337), 1, + sym__metadata_lit, + STATE(1384), 1, + aux_sym_sym_lit_repeat1, + STATE(1389), 1, + sym_old_meta_lit, + STATE(1407), 1, + sym_meta_lit, + ACTIONS(2449), 2, + sym__ws, + sym_comment, + ACTIONS(2433), 3, + anon_sym_for, + anon_sym_and, + anon_sym_as, + ACTIONS(2443), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(930), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(525), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(2441), 6, 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, - anon_sym_COLON, - [64160] = 3, + STATE(1084), 8, + sym_list_lit, + sym_for_clause, + sym_with_clause, + sym_do_clause, + sym_while_clause, + sym_condition_clause, + sym_accumulation_clause, + sym_termination_clause, + [61087] = 21, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2335), 23, - sym__ws, - sym_comment, + ACTIONS(528), 1, + anon_sym_LPAREN, + ACTIONS(2423), 1, anon_sym_POUND_, - sym_num_lit, - aux_sym_str_lit_token1, - sym_char_lit, + ACTIONS(2425), 1, anon_sym_CARET, + ACTIONS(2427), 1, anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_POUND0A, - anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, - 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, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - ACTIONS(2337), 23, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, + ACTIONS(2431), 1, sym_accumulation_verb, - anon_sym_for, - anon_sym_and, - anon_sym_as, + ACTIONS(2435), 1, anon_sym_with, + ACTIONS(2437), 1, anon_sym_do, + ACTIONS(2439), 1, anon_sym_while, + ACTIONS(2453), 1, + anon_sym_RPAREN, + STATE(1337), 1, + sym__metadata_lit, + STATE(1384), 1, + aux_sym_sym_lit_repeat1, + STATE(1389), 1, + sym_old_meta_lit, + STATE(1407), 1, + sym_meta_lit, + ACTIONS(2445), 2, + sym__ws, + sym_comment, + ACTIONS(2433), 3, + anon_sym_for, + anon_sym_and, + anon_sym_as, + ACTIONS(2443), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(930), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(527), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(2441), 6, 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, - anon_sym_COLON, - [64214] = 3, + STATE(1084), 8, + sym_list_lit, + sym_for_clause, + sym_with_clause, + sym_do_clause, + sym_while_clause, + sym_condition_clause, + sym_accumulation_clause, + sym_termination_clause, + [61173] = 21, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2041), 23, - sym__ws, - sym_comment, + ACTIONS(528), 1, + anon_sym_LPAREN, + ACTIONS(2423), 1, anon_sym_POUND_, - sym_num_lit, - aux_sym_str_lit_token1, - sym_char_lit, + ACTIONS(2425), 1, anon_sym_CARET, + ACTIONS(2427), 1, anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_POUND0A, - anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, - 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, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - ACTIONS(2043), 23, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, + ACTIONS(2431), 1, sym_accumulation_verb, - anon_sym_for, - anon_sym_and, - anon_sym_as, + ACTIONS(2435), 1, anon_sym_with, + ACTIONS(2437), 1, anon_sym_do, + ACTIONS(2439), 1, anon_sym_while, + ACTIONS(2453), 1, + anon_sym_RPAREN, + STATE(1337), 1, + sym__metadata_lit, + STATE(1384), 1, + aux_sym_sym_lit_repeat1, + STATE(1389), 1, + sym_old_meta_lit, + STATE(1407), 1, + sym_meta_lit, + ACTIONS(2455), 2, + sym__ws, + sym_comment, + ACTIONS(2433), 3, + anon_sym_for, + anon_sym_and, + anon_sym_as, + ACTIONS(2443), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(930), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(528), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(2441), 6, 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, - anon_sym_COLON, - [64268] = 3, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(2339), 23, - sym__ws, - sym_comment, + STATE(1084), 8, + sym_list_lit, + sym_for_clause, + sym_with_clause, + sym_do_clause, + sym_while_clause, + sym_condition_clause, + sym_accumulation_clause, + sym_termination_clause, + [61259] = 21, + ACTIONS(3), 1, + sym_block_comment, + ACTIONS(528), 1, + anon_sym_LPAREN, + ACTIONS(2423), 1, anon_sym_POUND_, - sym_num_lit, - aux_sym_str_lit_token1, - sym_char_lit, + ACTIONS(2425), 1, anon_sym_CARET, + ACTIONS(2427), 1, anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_POUND0A, - anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, - 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, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - ACTIONS(2341), 23, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, + ACTIONS(2431), 1, sym_accumulation_verb, - anon_sym_for, - anon_sym_and, - anon_sym_as, + ACTIONS(2435), 1, anon_sym_with, + ACTIONS(2437), 1, anon_sym_do, + ACTIONS(2439), 1, anon_sym_while, + ACTIONS(2459), 1, + anon_sym_RPAREN, + STATE(1337), 1, + sym__metadata_lit, + STATE(1384), 1, + aux_sym_sym_lit_repeat1, + STATE(1389), 1, + sym_old_meta_lit, + STATE(1407), 1, + sym_meta_lit, + ACTIONS(2457), 2, + sym__ws, + sym_comment, + ACTIONS(2433), 3, + anon_sym_for, + anon_sym_and, + anon_sym_as, + ACTIONS(2443), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(930), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(530), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(2441), 6, 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, - anon_sym_COLON, - [64322] = 3, + STATE(1084), 8, + sym_list_lit, + sym_for_clause, + sym_with_clause, + sym_do_clause, + sym_while_clause, + sym_condition_clause, + sym_accumulation_clause, + sym_termination_clause, + [61345] = 21, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2323), 23, - sym__ws, - sym_comment, + ACTIONS(528), 1, + anon_sym_LPAREN, + ACTIONS(2423), 1, anon_sym_POUND_, - sym_num_lit, - aux_sym_str_lit_token1, - sym_char_lit, + ACTIONS(2425), 1, anon_sym_CARET, + ACTIONS(2427), 1, anon_sym_POUND_CARET, - anon_sym_LPAREN, + ACTIONS(2429), 1, anon_sym_RPAREN, - anon_sym_POUND0A, - anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, - 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, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - ACTIONS(2325), 23, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, + ACTIONS(2431), 1, sym_accumulation_verb, - anon_sym_for, - anon_sym_and, - anon_sym_as, + ACTIONS(2435), 1, anon_sym_with, + ACTIONS(2437), 1, anon_sym_do, + ACTIONS(2439), 1, anon_sym_while, + STATE(1337), 1, + sym__metadata_lit, + STATE(1384), 1, + aux_sym_sym_lit_repeat1, + STATE(1389), 1, + sym_old_meta_lit, + STATE(1407), 1, + sym_meta_lit, + ACTIONS(2445), 2, + sym__ws, + sym_comment, + ACTIONS(2433), 3, + anon_sym_for, + anon_sym_and, + anon_sym_as, + ACTIONS(2443), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(930), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(527), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(2441), 6, 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, - anon_sym_COLON, - [64376] = 3, + STATE(1084), 8, + sym_list_lit, + sym_for_clause, + sym_with_clause, + sym_do_clause, + sym_while_clause, + sym_condition_clause, + sym_accumulation_clause, + sym_termination_clause, + [61431] = 21, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2343), 23, - sym__ws, - sym_comment, + ACTIONS(528), 1, + anon_sym_LPAREN, + ACTIONS(2423), 1, anon_sym_POUND_, - sym_num_lit, - aux_sym_str_lit_token1, - sym_char_lit, + ACTIONS(2425), 1, anon_sym_CARET, + ACTIONS(2427), 1, anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_POUND0A, - anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, - 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, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - ACTIONS(2345), 23, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, + ACTIONS(2431), 1, sym_accumulation_verb, - anon_sym_for, - anon_sym_and, - anon_sym_as, + ACTIONS(2435), 1, anon_sym_with, + ACTIONS(2437), 1, anon_sym_do, + ACTIONS(2439), 1, anon_sym_while, + ACTIONS(2461), 1, + anon_sym_RPAREN, + STATE(1337), 1, + sym__metadata_lit, + STATE(1384), 1, + aux_sym_sym_lit_repeat1, + STATE(1389), 1, + sym_old_meta_lit, + STATE(1407), 1, + sym_meta_lit, + ACTIONS(2445), 2, + sym__ws, + sym_comment, + ACTIONS(2433), 3, + anon_sym_for, + anon_sym_and, + anon_sym_as, + ACTIONS(2443), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(930), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(527), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(2441), 6, 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, - anon_sym_COLON, - [64430] = 3, + STATE(1084), 8, + sym_list_lit, + sym_for_clause, + sym_with_clause, + sym_do_clause, + sym_while_clause, + sym_condition_clause, + sym_accumulation_clause, + sym_termination_clause, + [61517] = 21, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2347), 23, - sym__ws, - sym_comment, + ACTIONS(528), 1, + anon_sym_LPAREN, + ACTIONS(2423), 1, anon_sym_POUND_, - sym_num_lit, - aux_sym_str_lit_token1, - sym_char_lit, + ACTIONS(2425), 1, anon_sym_CARET, + ACTIONS(2427), 1, anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_POUND0A, - anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, - 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, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - ACTIONS(2349), 23, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, + ACTIONS(2431), 1, sym_accumulation_verb, - anon_sym_for, - anon_sym_and, - anon_sym_as, + ACTIONS(2435), 1, anon_sym_with, + ACTIONS(2437), 1, anon_sym_do, + ACTIONS(2439), 1, anon_sym_while, + ACTIONS(2463), 1, + anon_sym_RPAREN, + STATE(1337), 1, + sym__metadata_lit, + STATE(1384), 1, + aux_sym_sym_lit_repeat1, + STATE(1389), 1, + sym_old_meta_lit, + STATE(1407), 1, + sym_meta_lit, + ACTIONS(2445), 2, + sym__ws, + sym_comment, + ACTIONS(2433), 3, + anon_sym_for, + anon_sym_and, + anon_sym_as, + ACTIONS(2443), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(930), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(527), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(2441), 6, 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, - anon_sym_COLON, - [64484] = 3, + STATE(1084), 8, + sym_list_lit, + sym_for_clause, + sym_with_clause, + sym_do_clause, + sym_while_clause, + sym_condition_clause, + sym_accumulation_clause, + sym_termination_clause, + [61603] = 21, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2351), 23, - sym__ws, - sym_comment, + ACTIONS(2468), 1, anon_sym_POUND_, - sym_num_lit, - aux_sym_str_lit_token1, - sym_char_lit, + ACTIONS(2471), 1, anon_sym_CARET, + ACTIONS(2474), 1, anon_sym_POUND_CARET, + ACTIONS(2477), 1, anon_sym_LPAREN, + ACTIONS(2480), 1, anon_sym_RPAREN, - anon_sym_POUND0A, - anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, - 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, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - ACTIONS(2353), 23, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, + ACTIONS(2482), 1, sym_accumulation_verb, - anon_sym_for, - anon_sym_and, - anon_sym_as, + ACTIONS(2488), 1, anon_sym_with, + ACTIONS(2491), 1, anon_sym_do, + ACTIONS(2494), 1, anon_sym_while, + STATE(1337), 1, + sym__metadata_lit, + STATE(1384), 1, + aux_sym_sym_lit_repeat1, + STATE(1389), 1, + sym_old_meta_lit, + STATE(1407), 1, + sym_meta_lit, + ACTIONS(2465), 2, + sym__ws, + sym_comment, + ACTIONS(2485), 3, + anon_sym_for, + anon_sym_and, + anon_sym_as, + ACTIONS(2500), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(930), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(527), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(2497), 6, 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, - anon_sym_COLON, - [64538] = 3, + STATE(1084), 8, + sym_list_lit, + sym_for_clause, + sym_with_clause, + sym_do_clause, + sym_while_clause, + sym_condition_clause, + sym_accumulation_clause, + sym_termination_clause, + [61689] = 21, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2355), 23, - sym__ws, - sym_comment, + ACTIONS(528), 1, + anon_sym_LPAREN, + ACTIONS(2423), 1, anon_sym_POUND_, - sym_num_lit, - aux_sym_str_lit_token1, - sym_char_lit, + ACTIONS(2425), 1, anon_sym_CARET, + ACTIONS(2427), 1, anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_POUND0A, - anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, - 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, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - ACTIONS(2357), 23, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, + ACTIONS(2431), 1, sym_accumulation_verb, - anon_sym_for, - anon_sym_and, - anon_sym_as, + ACTIONS(2435), 1, anon_sym_with, + ACTIONS(2437), 1, anon_sym_do, + ACTIONS(2439), 1, anon_sym_while, + ACTIONS(2503), 1, + anon_sym_RPAREN, + STATE(1337), 1, + sym__metadata_lit, + STATE(1384), 1, + aux_sym_sym_lit_repeat1, + STATE(1389), 1, + sym_old_meta_lit, + STATE(1407), 1, + sym_meta_lit, + ACTIONS(2445), 2, + sym__ws, + sym_comment, + ACTIONS(2433), 3, + anon_sym_for, + anon_sym_and, + anon_sym_as, + ACTIONS(2443), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(930), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(527), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(2441), 6, 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, - anon_sym_COLON, - [64592] = 3, + STATE(1084), 8, + sym_list_lit, + sym_for_clause, + sym_with_clause, + sym_do_clause, + sym_while_clause, + sym_condition_clause, + sym_accumulation_clause, + sym_termination_clause, + [61775] = 21, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2359), 23, - sym__ws, - sym_comment, + ACTIONS(528), 1, + anon_sym_LPAREN, + ACTIONS(2423), 1, anon_sym_POUND_, - sym_num_lit, - aux_sym_str_lit_token1, - sym_char_lit, + ACTIONS(2425), 1, anon_sym_CARET, + ACTIONS(2427), 1, anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_POUND0A, - anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, - 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, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - ACTIONS(2361), 23, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, + ACTIONS(2431), 1, sym_accumulation_verb, - anon_sym_for, - anon_sym_and, - anon_sym_as, + ACTIONS(2435), 1, anon_sym_with, + ACTIONS(2437), 1, anon_sym_do, + ACTIONS(2439), 1, anon_sym_while, + ACTIONS(2507), 1, + anon_sym_RPAREN, + STATE(1337), 1, + sym__metadata_lit, + STATE(1384), 1, + aux_sym_sym_lit_repeat1, + STATE(1389), 1, + sym_old_meta_lit, + STATE(1407), 1, + sym_meta_lit, + ACTIONS(2505), 2, + sym__ws, + sym_comment, + ACTIONS(2433), 3, + anon_sym_for, + anon_sym_and, + anon_sym_as, + ACTIONS(2443), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(930), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(526), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(2441), 6, 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, - anon_sym_COLON, - [64646] = 3, + STATE(1084), 8, + sym_list_lit, + sym_for_clause, + sym_with_clause, + sym_do_clause, + sym_while_clause, + sym_condition_clause, + sym_accumulation_clause, + sym_termination_clause, + [61861] = 21, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2363), 23, - sym__ws, - sym_comment, + ACTIONS(528), 1, + anon_sym_LPAREN, + ACTIONS(2423), 1, anon_sym_POUND_, - sym_num_lit, - aux_sym_str_lit_token1, - sym_char_lit, + ACTIONS(2425), 1, anon_sym_CARET, + ACTIONS(2427), 1, anon_sym_POUND_CARET, - anon_sym_LPAREN, + ACTIONS(2431), 1, + sym_accumulation_verb, + ACTIONS(2435), 1, + anon_sym_with, + ACTIONS(2437), 1, + anon_sym_do, + ACTIONS(2439), 1, + anon_sym_while, + ACTIONS(2509), 1, anon_sym_RPAREN, - anon_sym_POUND0A, - anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, - 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, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - ACTIONS(2365), 23, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - sym_accumulation_verb, + STATE(1337), 1, + sym__metadata_lit, + STATE(1384), 1, + aux_sym_sym_lit_repeat1, + STATE(1389), 1, + sym_old_meta_lit, + STATE(1407), 1, + sym_meta_lit, + ACTIONS(2445), 2, + sym__ws, + sym_comment, + ACTIONS(2433), 3, anon_sym_for, anon_sym_and, anon_sym_as, - anon_sym_with, - anon_sym_do, - anon_sym_while, + ACTIONS(2443), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(930), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(527), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(2441), 6, 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, - anon_sym_COLON, - [64700] = 3, + STATE(1084), 8, + sym_list_lit, + sym_for_clause, + sym_with_clause, + sym_do_clause, + sym_while_clause, + sym_condition_clause, + sym_accumulation_clause, + sym_termination_clause, + [61947] = 21, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2367), 23, - sym__ws, - sym_comment, + ACTIONS(528), 1, + anon_sym_LPAREN, + ACTIONS(2423), 1, anon_sym_POUND_, - sym_num_lit, - aux_sym_str_lit_token1, - sym_char_lit, + ACTIONS(2425), 1, anon_sym_CARET, + ACTIONS(2427), 1, anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_POUND0A, - anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, - 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, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - ACTIONS(2369), 23, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, + ACTIONS(2431), 1, sym_accumulation_verb, - anon_sym_for, - anon_sym_and, - anon_sym_as, + ACTIONS(2435), 1, anon_sym_with, + ACTIONS(2437), 1, anon_sym_do, + ACTIONS(2439), 1, anon_sym_while, + ACTIONS(2507), 1, + anon_sym_RPAREN, + STATE(1337), 1, + sym__metadata_lit, + STATE(1384), 1, + aux_sym_sym_lit_repeat1, + STATE(1389), 1, + sym_old_meta_lit, + STATE(1407), 1, + sym_meta_lit, + ACTIONS(2445), 2, + sym__ws, + sym_comment, + ACTIONS(2433), 3, + anon_sym_for, + anon_sym_and, + anon_sym_as, + ACTIONS(2443), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(930), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(527), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(2441), 6, 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, - anon_sym_COLON, - [64754] = 3, + STATE(1084), 8, + sym_list_lit, + sym_for_clause, + sym_with_clause, + sym_do_clause, + sym_while_clause, + sym_condition_clause, + sym_accumulation_clause, + sym_termination_clause, + [62033] = 21, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2371), 23, - sym__ws, - sym_comment, + ACTIONS(528), 1, + anon_sym_LPAREN, + ACTIONS(2423), 1, anon_sym_POUND_, - sym_num_lit, - aux_sym_str_lit_token1, - sym_char_lit, + ACTIONS(2425), 1, anon_sym_CARET, + ACTIONS(2427), 1, anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_POUND0A, - anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, - 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, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - ACTIONS(2373), 23, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, + ACTIONS(2431), 1, sym_accumulation_verb, - anon_sym_for, - anon_sym_and, - anon_sym_as, + ACTIONS(2435), 1, anon_sym_with, + ACTIONS(2437), 1, anon_sym_do, + ACTIONS(2439), 1, anon_sym_while, + ACTIONS(2509), 1, + anon_sym_RPAREN, + STATE(1337), 1, + sym__metadata_lit, + STATE(1384), 1, + aux_sym_sym_lit_repeat1, + STATE(1389), 1, + sym_old_meta_lit, + STATE(1407), 1, + sym_meta_lit, + ACTIONS(2511), 2, + sym__ws, + sym_comment, + ACTIONS(2433), 3, + anon_sym_for, + anon_sym_and, + anon_sym_as, + ACTIONS(2443), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(930), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(537), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(2441), 6, 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, - anon_sym_COLON, - [64808] = 3, + STATE(1084), 8, + sym_list_lit, + sym_for_clause, + sym_with_clause, + sym_do_clause, + sym_while_clause, + sym_condition_clause, + sym_accumulation_clause, + sym_termination_clause, + [62119] = 21, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2375), 23, - sym__ws, - sym_comment, + ACTIONS(528), 1, + anon_sym_LPAREN, + ACTIONS(2423), 1, anon_sym_POUND_, - sym_num_lit, - aux_sym_str_lit_token1, - sym_char_lit, + ACTIONS(2425), 1, anon_sym_CARET, + ACTIONS(2427), 1, anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_POUND0A, - anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, - 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, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - ACTIONS(2377), 23, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, + ACTIONS(2431), 1, sym_accumulation_verb, - anon_sym_for, - anon_sym_and, - anon_sym_as, + ACTIONS(2435), 1, anon_sym_with, + ACTIONS(2437), 1, anon_sym_do, + ACTIONS(2439), 1, anon_sym_while, + ACTIONS(2515), 1, + anon_sym_RPAREN, + STATE(1337), 1, + sym__metadata_lit, + STATE(1384), 1, + aux_sym_sym_lit_repeat1, + STATE(1389), 1, + sym_old_meta_lit, + STATE(1407), 1, + sym_meta_lit, + ACTIONS(2513), 2, + sym__ws, + sym_comment, + ACTIONS(2433), 3, + anon_sym_for, + anon_sym_and, + anon_sym_as, + ACTIONS(2443), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(930), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(519), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(2441), 6, 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, - anon_sym_COLON, - [64862] = 3, + STATE(1084), 8, + sym_list_lit, + sym_for_clause, + sym_with_clause, + sym_do_clause, + sym_while_clause, + sym_condition_clause, + sym_accumulation_clause, + sym_termination_clause, + [62205] = 21, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2379), 23, - sym__ws, - sym_comment, + ACTIONS(528), 1, + anon_sym_LPAREN, + ACTIONS(2423), 1, anon_sym_POUND_, - sym_num_lit, - aux_sym_str_lit_token1, - sym_char_lit, + ACTIONS(2425), 1, anon_sym_CARET, + ACTIONS(2427), 1, anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_POUND0A, - anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, - 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, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - ACTIONS(2381), 23, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, + ACTIONS(2431), 1, sym_accumulation_verb, - anon_sym_for, - anon_sym_and, - anon_sym_as, + ACTIONS(2435), 1, anon_sym_with, + ACTIONS(2437), 1, anon_sym_do, + ACTIONS(2439), 1, anon_sym_while, + ACTIONS(2519), 1, + anon_sym_RPAREN, + STATE(1337), 1, + sym__metadata_lit, + STATE(1384), 1, + aux_sym_sym_lit_repeat1, + STATE(1389), 1, + sym_old_meta_lit, + STATE(1407), 1, + sym_meta_lit, + ACTIONS(2517), 2, + sym__ws, + sym_comment, + ACTIONS(2433), 3, + anon_sym_for, + anon_sym_and, + anon_sym_as, + ACTIONS(2443), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(930), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(531), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(2441), 6, 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, - anon_sym_COLON, - [64916] = 3, + STATE(1084), 8, + sym_list_lit, + sym_for_clause, + sym_with_clause, + sym_do_clause, + sym_while_clause, + sym_condition_clause, + sym_accumulation_clause, + sym_termination_clause, + [62291] = 21, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2375), 23, - sym__ws, - sym_comment, + ACTIONS(528), 1, + anon_sym_LPAREN, + ACTIONS(2423), 1, anon_sym_POUND_, - sym_num_lit, - aux_sym_str_lit_token1, - sym_char_lit, + ACTIONS(2425), 1, anon_sym_CARET, + ACTIONS(2427), 1, anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_POUND0A, - anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, - 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, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - ACTIONS(2377), 23, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, + ACTIONS(2431), 1, sym_accumulation_verb, - anon_sym_for, - anon_sym_and, - anon_sym_as, + ACTIONS(2435), 1, anon_sym_with, + ACTIONS(2437), 1, anon_sym_do, + ACTIONS(2439), 1, anon_sym_while, + ACTIONS(2451), 1, + anon_sym_RPAREN, + STATE(1337), 1, + sym__metadata_lit, + STATE(1384), 1, + aux_sym_sym_lit_repeat1, + STATE(1389), 1, + sym_old_meta_lit, + STATE(1407), 1, + sym_meta_lit, + ACTIONS(2445), 2, + sym__ws, + sym_comment, + ACTIONS(2433), 3, + anon_sym_for, + anon_sym_and, + anon_sym_as, + ACTIONS(2443), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(930), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(527), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(2441), 6, 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, - anon_sym_COLON, - [64970] = 3, + STATE(1084), 8, + sym_list_lit, + sym_for_clause, + sym_with_clause, + sym_do_clause, + sym_while_clause, + sym_condition_clause, + sym_accumulation_clause, + sym_termination_clause, + [62377] = 21, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2383), 23, - sym__ws, - sym_comment, + ACTIONS(528), 1, + anon_sym_LPAREN, + ACTIONS(2423), 1, anon_sym_POUND_, - sym_num_lit, - aux_sym_str_lit_token1, - sym_char_lit, + ACTIONS(2425), 1, anon_sym_CARET, + ACTIONS(2427), 1, anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_POUND0A, - anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, - 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, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - ACTIONS(2385), 23, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, + ACTIONS(2431), 1, sym_accumulation_verb, - anon_sym_for, - anon_sym_and, - anon_sym_as, + ACTIONS(2435), 1, anon_sym_with, + ACTIONS(2437), 1, anon_sym_do, + ACTIONS(2439), 1, anon_sym_while, + ACTIONS(2523), 1, + anon_sym_RPAREN, + STATE(1337), 1, + sym__metadata_lit, + STATE(1384), 1, + aux_sym_sym_lit_repeat1, + STATE(1389), 1, + sym_old_meta_lit, + STATE(1407), 1, + sym_meta_lit, + ACTIONS(2521), 2, + sym__ws, + sym_comment, + ACTIONS(2433), 3, + anon_sym_for, + anon_sym_and, + anon_sym_as, + ACTIONS(2443), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(930), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(535), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(2441), 6, 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, - anon_sym_COLON, - [65024] = 3, + STATE(1084), 8, + sym_list_lit, + sym_for_clause, + sym_with_clause, + sym_do_clause, + sym_while_clause, + sym_condition_clause, + sym_accumulation_clause, + sym_termination_clause, + [62463] = 21, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2387), 23, - sym__ws, - sym_comment, + ACTIONS(528), 1, + anon_sym_LPAREN, + ACTIONS(2423), 1, anon_sym_POUND_, - sym_num_lit, - aux_sym_str_lit_token1, - sym_char_lit, + ACTIONS(2425), 1, anon_sym_CARET, + ACTIONS(2427), 1, anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_POUND0A, - anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, - 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, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - ACTIONS(2389), 23, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, + ACTIONS(2431), 1, sym_accumulation_verb, - anon_sym_for, - anon_sym_and, - anon_sym_as, + ACTIONS(2435), 1, anon_sym_with, + ACTIONS(2437), 1, anon_sym_do, + ACTIONS(2439), 1, anon_sym_while, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, + ACTIONS(2525), 1, + anon_sym_RPAREN, + STATE(1337), 1, + sym__metadata_lit, + STATE(1384), 1, + aux_sym_sym_lit_repeat1, + STATE(1389), 1, + sym_old_meta_lit, + STATE(1407), 1, + sym_meta_lit, + ACTIONS(2445), 2, + sym__ws, + sym_comment, + ACTIONS(2433), 3, + anon_sym_for, + anon_sym_and, + anon_sym_as, + ACTIONS(2443), 3, anon_sym_finally, anon_sym_return, anon_sym_initially, - anon_sym_COLON, - [65078] = 3, + STATE(930), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(527), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(2441), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(1084), 8, + sym_list_lit, + sym_for_clause, + sym_with_clause, + sym_do_clause, + sym_while_clause, + sym_condition_clause, + sym_accumulation_clause, + sym_termination_clause, + [62549] = 21, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2391), 23, - sym__ws, - sym_comment, + ACTIONS(528), 1, + anon_sym_LPAREN, + ACTIONS(2423), 1, anon_sym_POUND_, - sym_num_lit, - aux_sym_str_lit_token1, - sym_char_lit, + ACTIONS(2425), 1, anon_sym_CARET, + ACTIONS(2427), 1, anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_POUND0A, - anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, - 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, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - ACTIONS(2393), 23, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, + ACTIONS(2431), 1, sym_accumulation_verb, - anon_sym_for, - anon_sym_and, - anon_sym_as, + ACTIONS(2435), 1, anon_sym_with, + ACTIONS(2437), 1, anon_sym_do, + ACTIONS(2439), 1, anon_sym_while, + ACTIONS(2527), 1, + anon_sym_RPAREN, + STATE(1337), 1, + sym__metadata_lit, + STATE(1384), 1, + aux_sym_sym_lit_repeat1, + STATE(1389), 1, + sym_old_meta_lit, + STATE(1407), 1, + sym_meta_lit, + ACTIONS(2445), 2, + sym__ws, + sym_comment, + ACTIONS(2433), 3, + anon_sym_for, + anon_sym_and, + anon_sym_as, + ACTIONS(2443), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(930), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(527), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(2441), 6, 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, - anon_sym_COLON, - [65132] = 3, + STATE(1084), 8, + sym_list_lit, + sym_for_clause, + sym_with_clause, + sym_do_clause, + sym_while_clause, + sym_condition_clause, + sym_accumulation_clause, + sym_termination_clause, + [62635] = 21, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2395), 23, - sym__ws, - sym_comment, + ACTIONS(528), 1, + anon_sym_LPAREN, + ACTIONS(2423), 1, anon_sym_POUND_, - sym_num_lit, - aux_sym_str_lit_token1, - sym_char_lit, + ACTIONS(2425), 1, anon_sym_CARET, + ACTIONS(2427), 1, anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_POUND0A, - anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, - 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, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - ACTIONS(2397), 23, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, + ACTIONS(2431), 1, sym_accumulation_verb, - anon_sym_for, - anon_sym_and, - anon_sym_as, + ACTIONS(2435), 1, anon_sym_with, + ACTIONS(2437), 1, anon_sym_do, + ACTIONS(2439), 1, anon_sym_while, + ACTIONS(2531), 1, + anon_sym_RPAREN, + STATE(1337), 1, + sym__metadata_lit, + STATE(1384), 1, + aux_sym_sym_lit_repeat1, + STATE(1389), 1, + sym_old_meta_lit, + STATE(1407), 1, + sym_meta_lit, + ACTIONS(2529), 2, + sym__ws, + sym_comment, + ACTIONS(2433), 3, + anon_sym_for, + anon_sym_and, + anon_sym_as, + ACTIONS(2443), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(930), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(521), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(2441), 6, 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, - anon_sym_COLON, - [65186] = 3, + STATE(1084), 8, + sym_list_lit, + sym_for_clause, + sym_with_clause, + sym_do_clause, + sym_while_clause, + sym_condition_clause, + sym_accumulation_clause, + sym_termination_clause, + [62721] = 21, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2399), 23, - sym__ws, - sym_comment, + ACTIONS(528), 1, + anon_sym_LPAREN, + ACTIONS(2423), 1, anon_sym_POUND_, - sym_num_lit, - aux_sym_str_lit_token1, - sym_char_lit, + ACTIONS(2425), 1, anon_sym_CARET, + ACTIONS(2427), 1, anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_POUND0A, - anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, - 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, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - ACTIONS(2401), 23, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, + ACTIONS(2431), 1, sym_accumulation_verb, - anon_sym_for, - anon_sym_and, - anon_sym_as, + ACTIONS(2435), 1, anon_sym_with, + ACTIONS(2437), 1, anon_sym_do, + ACTIONS(2439), 1, anon_sym_while, + ACTIONS(2533), 1, + anon_sym_RPAREN, + STATE(1337), 1, + sym__metadata_lit, + STATE(1384), 1, + aux_sym_sym_lit_repeat1, + STATE(1389), 1, + sym_old_meta_lit, + STATE(1407), 1, + sym_meta_lit, + ACTIONS(2445), 2, + sym__ws, + sym_comment, + ACTIONS(2433), 3, + anon_sym_for, + anon_sym_and, + anon_sym_as, + ACTIONS(2443), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(930), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(527), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(2441), 6, 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, - anon_sym_COLON, - [65240] = 3, + STATE(1084), 8, + sym_list_lit, + sym_for_clause, + sym_with_clause, + sym_do_clause, + sym_while_clause, + sym_condition_clause, + sym_accumulation_clause, + sym_termination_clause, + [62807] = 21, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2403), 23, - sym__ws, - sym_comment, + ACTIONS(528), 1, + anon_sym_LPAREN, + ACTIONS(2423), 1, anon_sym_POUND_, - sym_num_lit, - aux_sym_str_lit_token1, - sym_char_lit, + ACTIONS(2425), 1, anon_sym_CARET, + ACTIONS(2427), 1, anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_POUND0A, - anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, - 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, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - ACTIONS(2405), 23, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, + ACTIONS(2431), 1, sym_accumulation_verb, - anon_sym_for, - anon_sym_and, - anon_sym_as, + ACTIONS(2435), 1, anon_sym_with, + ACTIONS(2437), 1, anon_sym_do, + ACTIONS(2439), 1, anon_sym_while, + ACTIONS(2527), 1, + anon_sym_RPAREN, + STATE(1337), 1, + sym__metadata_lit, + STATE(1384), 1, + aux_sym_sym_lit_repeat1, + STATE(1389), 1, + sym_old_meta_lit, + STATE(1407), 1, + sym_meta_lit, + ACTIONS(2535), 2, + sym__ws, + sym_comment, + ACTIONS(2433), 3, + anon_sym_for, + anon_sym_and, + anon_sym_as, + ACTIONS(2443), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(930), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(546), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(2441), 6, 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, - anon_sym_COLON, - [65294] = 3, + STATE(1084), 8, + sym_list_lit, + sym_for_clause, + sym_with_clause, + sym_do_clause, + sym_while_clause, + sym_condition_clause, + sym_accumulation_clause, + sym_termination_clause, + [62893] = 21, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2407), 23, - sym__ws, - sym_comment, + ACTIONS(528), 1, + anon_sym_LPAREN, + ACTIONS(2423), 1, anon_sym_POUND_, - sym_num_lit, - aux_sym_str_lit_token1, - sym_char_lit, + ACTIONS(2425), 1, anon_sym_CARET, + ACTIONS(2427), 1, anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_POUND0A, - anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, - 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, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - ACTIONS(2409), 23, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, + ACTIONS(2431), 1, sym_accumulation_verb, - anon_sym_for, - anon_sym_and, - anon_sym_as, + ACTIONS(2435), 1, anon_sym_with, + ACTIONS(2437), 1, anon_sym_do, + ACTIONS(2439), 1, anon_sym_while, + ACTIONS(2539), 1, + anon_sym_RPAREN, + STATE(1337), 1, + sym__metadata_lit, + STATE(1384), 1, + aux_sym_sym_lit_repeat1, + STATE(1389), 1, + sym_old_meta_lit, + STATE(1407), 1, + sym_meta_lit, + ACTIONS(2537), 2, + sym__ws, + sym_comment, + ACTIONS(2433), 3, + anon_sym_for, + anon_sym_and, + anon_sym_as, + ACTIONS(2443), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(930), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(538), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(2441), 6, 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, - anon_sym_COLON, - [65348] = 3, + STATE(1084), 8, + sym_list_lit, + sym_for_clause, + sym_with_clause, + sym_do_clause, + sym_while_clause, + sym_condition_clause, + sym_accumulation_clause, + sym_termination_clause, + [62979] = 21, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2407), 23, - sym__ws, - sym_comment, + ACTIONS(528), 1, + anon_sym_LPAREN, + ACTIONS(2423), 1, anon_sym_POUND_, - sym_num_lit, - aux_sym_str_lit_token1, - sym_char_lit, + ACTIONS(2425), 1, anon_sym_CARET, + ACTIONS(2427), 1, anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_POUND0A, - anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, - 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, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - ACTIONS(2409), 23, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, + ACTIONS(2431), 1, sym_accumulation_verb, - anon_sym_for, - anon_sym_and, - anon_sym_as, + ACTIONS(2435), 1, anon_sym_with, + ACTIONS(2437), 1, anon_sym_do, + ACTIONS(2439), 1, anon_sym_while, + ACTIONS(2447), 1, + anon_sym_RPAREN, + STATE(1337), 1, + sym__metadata_lit, + STATE(1384), 1, + aux_sym_sym_lit_repeat1, + STATE(1389), 1, + sym_old_meta_lit, + STATE(1407), 1, + sym_meta_lit, + ACTIONS(2541), 2, + sym__ws, + sym_comment, + ACTIONS(2433), 3, + anon_sym_for, + anon_sym_and, + anon_sym_as, + ACTIONS(2443), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(930), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(544), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(2441), 6, 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, - anon_sym_COLON, - [65402] = 3, + STATE(1084), 8, + sym_list_lit, + sym_for_clause, + sym_with_clause, + sym_do_clause, + sym_while_clause, + sym_condition_clause, + sym_accumulation_clause, + sym_termination_clause, + [63065] = 21, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2395), 23, - sym__ws, - sym_comment, + ACTIONS(528), 1, + anon_sym_LPAREN, + ACTIONS(2423), 1, anon_sym_POUND_, - sym_num_lit, - aux_sym_str_lit_token1, - sym_char_lit, + ACTIONS(2425), 1, anon_sym_CARET, + ACTIONS(2427), 1, anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_POUND0A, - anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, - 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, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - ACTIONS(2397), 23, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, + ACTIONS(2431), 1, sym_accumulation_verb, - anon_sym_for, - anon_sym_and, - anon_sym_as, + ACTIONS(2435), 1, anon_sym_with, + ACTIONS(2437), 1, anon_sym_do, + ACTIONS(2439), 1, anon_sym_while, + ACTIONS(2543), 1, + anon_sym_RPAREN, + STATE(1337), 1, + sym__metadata_lit, + STATE(1384), 1, + aux_sym_sym_lit_repeat1, + STATE(1389), 1, + sym_old_meta_lit, + STATE(1407), 1, + sym_meta_lit, + ACTIONS(2445), 2, + sym__ws, + sym_comment, + ACTIONS(2433), 3, + anon_sym_for, + anon_sym_and, + anon_sym_as, + ACTIONS(2443), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(930), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(527), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(2441), 6, 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, - anon_sym_COLON, - [65456] = 3, + STATE(1084), 8, + sym_list_lit, + sym_for_clause, + sym_with_clause, + sym_do_clause, + sym_while_clause, + sym_condition_clause, + sym_accumulation_clause, + sym_termination_clause, + [63151] = 7, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2411), 23, + ACTIONS(1988), 1, + anon_sym_DOT, + ACTIONS(2545), 1, + anon_sym_COLON, + ACTIONS(2547), 1, + anon_sym_COLON_COLON, + STATE(782), 1, + aux_sym_dotted_sym_lit_repeat1, + ACTIONS(1994), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(1986), 35, sym__ws, sym_comment, anon_sym_POUND_, - sym_num_lit, - aux_sym_str_lit_token1, - sym_char_lit, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_POUND0A, - anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, - 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, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - ACTIONS(2413), 23, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, + anon_sym_across, + anon_sym_using, + aux_sym_for_clause_word_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, + anon_sym_EQ, sym_accumulation_verb, anon_sym_for, anon_sym_and, anon_sym_as, anon_sym_with, - anon_sym_do, anon_sym_while, anon_sym_when, anon_sym_if, @@ -55537,149 +53996,172 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - anon_sym_COLON, - [65510] = 3, + [63209] = 21, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2415), 23, - sym__ws, - sym_comment, + ACTIONS(528), 1, + anon_sym_LPAREN, + ACTIONS(2423), 1, anon_sym_POUND_, - sym_num_lit, - aux_sym_str_lit_token1, - sym_char_lit, + ACTIONS(2425), 1, anon_sym_CARET, + ACTIONS(2427), 1, anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_POUND0A, - anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, - 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, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - ACTIONS(2417), 23, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, + ACTIONS(2431), 1, sym_accumulation_verb, - anon_sym_for, - anon_sym_and, - anon_sym_as, + ACTIONS(2435), 1, anon_sym_with, + ACTIONS(2437), 1, anon_sym_do, + ACTIONS(2439), 1, anon_sym_while, + ACTIONS(2549), 1, + anon_sym_RPAREN, + STATE(1337), 1, + sym__metadata_lit, + STATE(1384), 1, + aux_sym_sym_lit_repeat1, + STATE(1389), 1, + sym_old_meta_lit, + STATE(1407), 1, + sym_meta_lit, + ACTIONS(2445), 2, + sym__ws, + sym_comment, + ACTIONS(2433), 3, + anon_sym_for, + anon_sym_and, + anon_sym_as, + ACTIONS(2443), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(930), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(527), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(2441), 6, 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, - anon_sym_COLON, - [65564] = 3, + STATE(1084), 8, + sym_list_lit, + sym_for_clause, + sym_with_clause, + sym_do_clause, + sym_while_clause, + sym_condition_clause, + sym_accumulation_clause, + sym_termination_clause, + [63295] = 21, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2383), 23, - sym__ws, - sym_comment, + ACTIONS(528), 1, + anon_sym_LPAREN, + ACTIONS(2423), 1, anon_sym_POUND_, - sym_num_lit, - aux_sym_str_lit_token1, - sym_char_lit, + ACTIONS(2425), 1, anon_sym_CARET, + ACTIONS(2427), 1, anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_POUND0A, - anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, - 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, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - ACTIONS(2385), 23, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, + ACTIONS(2431), 1, sym_accumulation_verb, - anon_sym_for, - anon_sym_and, - anon_sym_as, + ACTIONS(2435), 1, anon_sym_with, + ACTIONS(2437), 1, anon_sym_do, + ACTIONS(2439), 1, anon_sym_while, + ACTIONS(2553), 1, + anon_sym_RPAREN, + STATE(1337), 1, + sym__metadata_lit, + STATE(1384), 1, + aux_sym_sym_lit_repeat1, + STATE(1389), 1, + sym_old_meta_lit, + STATE(1407), 1, + sym_meta_lit, + ACTIONS(2551), 2, + sym__ws, + sym_comment, + ACTIONS(2433), 3, + anon_sym_for, + anon_sym_and, + anon_sym_as, + ACTIONS(2443), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(930), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(524), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(2441), 6, 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, - anon_sym_COLON, - [65618] = 3, + STATE(1084), 8, + sym_list_lit, + sym_for_clause, + sym_with_clause, + sym_do_clause, + sym_while_clause, + sym_condition_clause, + sym_accumulation_clause, + sym_termination_clause, + [63381] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2407), 23, + ACTIONS(2023), 4, + anon_sym_COLON, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(2021), 37, sym__ws, sym_comment, anon_sym_POUND_, - sym_num_lit, - aux_sym_str_lit_token1, - sym_char_lit, + anon_sym_DOT, + anon_sym_COLON_COLON, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_POUND0A, - anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, - 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, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - ACTIONS(2409), 23, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, + anon_sym_across, + anon_sym_using, + aux_sym_for_clause_word_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, + anon_sym_EQ, sym_accumulation_verb, anon_sym_for, anon_sym_and, anon_sym_as, anon_sym_with, - anon_sym_do, anon_sym_while, anon_sym_when, anon_sym_if, @@ -55690,29 +54172,24 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - anon_sym_COLON, - [65672] = 10, + [63430] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2422), 1, - anon_sym_POUND_, - ACTIONS(2431), 1, + ACTIONS(2019), 4, + anon_sym_COLON, + anon_sym_in, + anon_sym_being, anon_sym_do, - STATE(430), 1, - sym_for_clause_word, - ACTIONS(2419), 2, + ACTIONS(2017), 37, sym__ws, sym_comment, - ACTIONS(2427), 2, - anon_sym_in, - anon_sym_being, - STATE(554), 2, - sym__for_part, - aux_sym_for_clause_repeat1, - STATE(1381), 2, - sym__gap, - sym_dis_expr, - ACTIONS(2429), 13, + anon_sym_POUND_, + anon_sym_DOT, + anon_sym_COLON_COLON, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_across, anon_sym_using, aux_sym_for_clause_word_token1, @@ -55726,11 +54203,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - ACTIONS(2425), 19, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_RPAREN, sym_accumulation_verb, anon_sym_for, anon_sym_and, @@ -55746,28 +54218,25 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [65737] = 10, + [63479] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2436), 1, - anon_sym_POUND_, - ACTIONS(2447), 1, + ACTIONS(2555), 1, + anon_sym_DOT, + STATE(552), 1, + aux_sym_dotted_sym_lit_repeat1, + ACTIONS(2008), 3, + anon_sym_in, + anon_sym_being, anon_sym_do, - STATE(430), 1, - sym_for_clause_word, - ACTIONS(2433), 2, + ACTIONS(2006), 35, sym__ws, sym_comment, - ACTIONS(2441), 2, - anon_sym_in, - anon_sym_being, - STATE(554), 2, - sym__for_part, - aux_sym_for_clause_repeat1, - STATE(1381), 2, - sym__gap, - sym_dis_expr, - ACTIONS(2444), 13, + anon_sym_POUND_, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_across, anon_sym_using, aux_sym_for_clause_word_token1, @@ -55781,11 +54250,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - ACTIONS(2439), 19, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_RPAREN, sym_accumulation_verb, anon_sym_for, anon_sym_and, @@ -55801,28 +54265,25 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [65802] = 10, + [63531] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2452), 1, - anon_sym_POUND_, - ACTIONS(2457), 1, - anon_sym_do, - STATE(430), 1, - sym_for_clause_word, - ACTIONS(2427), 2, + ACTIONS(2555), 1, + anon_sym_DOT, + STATE(552), 1, + aux_sym_dotted_sym_lit_repeat1, + ACTIONS(2004), 3, anon_sym_in, anon_sym_being, - ACTIONS(2449), 2, + anon_sym_do, + ACTIONS(2002), 35, sym__ws, sym_comment, - STATE(554), 2, - sym__for_part, - aux_sym_for_clause_repeat1, - STATE(1381), 2, - sym__gap, - sym_dis_expr, - ACTIONS(2429), 13, + anon_sym_POUND_, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_across, anon_sym_using, aux_sym_for_clause_word_token1, @@ -55836,11 +54297,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - ACTIONS(2455), 19, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_RPAREN, sym_accumulation_verb, anon_sym_for, anon_sym_and, @@ -55856,1257 +54312,789 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [65867] = 21, + [63583] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(612), 1, - anon_sym_LPAREN, - ACTIONS(2461), 1, + ACTIONS(2555), 1, + anon_sym_DOT, + STATE(560), 1, + aux_sym_dotted_sym_lit_repeat1, + ACTIONS(2000), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(1996), 35, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(2463), 1, anon_sym_CARET, - ACTIONS(2465), 1, anon_sym_POUND_CARET, - ACTIONS(2467), 1, + anon_sym_LPAREN, anon_sym_RPAREN, - ACTIONS(2469), 1, + anon_sym_across, + anon_sym_using, + aux_sym_for_clause_word_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, + anon_sym_EQ, sym_accumulation_verb, - ACTIONS(2473), 1, - anon_sym_with, - ACTIONS(2475), 1, - anon_sym_do, - ACTIONS(2477), 1, - anon_sym_while, - STATE(1369), 1, - sym__metadata_lit, - STATE(1424), 1, - aux_sym_sym_lit_repeat1, - STATE(1437), 1, - sym_meta_lit, - STATE(1439), 1, - sym_old_meta_lit, - ACTIONS(2459), 2, - sym__ws, - sym_comment, - ACTIONS(2471), 3, anon_sym_for, anon_sym_and, anon_sym_as, - ACTIONS(2481), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(965), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(570), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(2479), 6, + anon_sym_with, + anon_sym_while, anon_sym_when, anon_sym_if, anon_sym_unless, anon_sym_always, anon_sym_thereis, anon_sym_never, - STATE(1085), 8, - sym_list_lit, - sym_for_clause, - sym_with_clause, - sym_do_clause, - sym_while_clause, - sym_condition_clause, - sym_accumulation_clause, - sym_termination_clause, - [65953] = 21, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(612), 1, - anon_sym_LPAREN, - ACTIONS(2461), 1, - anon_sym_POUND_, - ACTIONS(2463), 1, - anon_sym_CARET, - ACTIONS(2465), 1, - anon_sym_POUND_CARET, - ACTIONS(2469), 1, - sym_accumulation_verb, - ACTIONS(2473), 1, - anon_sym_with, - ACTIONS(2475), 1, - anon_sym_do, - ACTIONS(2477), 1, - anon_sym_while, - ACTIONS(2483), 1, - anon_sym_RPAREN, - STATE(1369), 1, - sym__metadata_lit, - STATE(1424), 1, - aux_sym_sym_lit_repeat1, - STATE(1437), 1, - sym_meta_lit, - STATE(1439), 1, - sym_old_meta_lit, - ACTIONS(2459), 2, - sym__ws, - sym_comment, - ACTIONS(2471), 3, - anon_sym_for, - anon_sym_and, - anon_sym_as, - ACTIONS(2481), 3, anon_sym_finally, anon_sym_return, anon_sym_initially, - STATE(965), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(570), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(2479), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(1085), 8, - sym_list_lit, - sym_for_clause, - sym_with_clause, - sym_do_clause, - sym_while_clause, - sym_condition_clause, - sym_accumulation_clause, - sym_termination_clause, - [66039] = 21, + [63635] = 10, ACTIONS(3), 1, sym_block_comment, - ACTIONS(612), 1, - anon_sym_LPAREN, - ACTIONS(2461), 1, + ACTIONS(196), 1, + anon_sym_lambda, + ACTIONS(2559), 1, + anon_sym_DOT, + ACTIONS(2563), 1, + anon_sym_loop, + ACTIONS(2565), 1, + anon_sym_cl_COLONloop, + STATE(18), 1, + sym_defun_header, + STATE(70), 1, + sym_defun_keyword, + ACTIONS(194), 4, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + ACTIONS(2561), 7, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + ACTIONS(2557), 23, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(2463), 1, + sym_num_lit, + anon_sym_COLON_COLON, + aux_sym_str_lit_token1, + sym_char_lit, anon_sym_CARET, - ACTIONS(2465), 1, anon_sym_POUND_CARET, - ACTIONS(2469), 1, - sym_accumulation_verb, - ACTIONS(2473), 1, - anon_sym_with, - ACTIONS(2475), 1, - anon_sym_do, - ACTIONS(2477), 1, - anon_sym_while, - ACTIONS(2487), 1, + anon_sym_LPAREN, anon_sym_RPAREN, - STATE(1369), 1, - sym__metadata_lit, - STATE(1424), 1, - aux_sym_sym_lit_repeat1, - STATE(1437), 1, - sym_meta_lit, - STATE(1439), 1, - sym_old_meta_lit, - ACTIONS(2485), 2, - sym__ws, - sym_comment, - ACTIONS(2471), 3, - anon_sym_for, - anon_sym_and, - anon_sym_as, - ACTIONS(2481), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(965), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(572), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(2479), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(1085), 8, - sym_list_lit, - sym_for_clause, - sym_with_clause, - sym_do_clause, - sym_while_clause, - sym_condition_clause, - sym_accumulation_clause, - sym_termination_clause, - [66125] = 21, + 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, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + [63697] = 10, ACTIONS(3), 1, sym_block_comment, - ACTIONS(612), 1, - anon_sym_LPAREN, - ACTIONS(2461), 1, + ACTIONS(196), 1, + anon_sym_lambda, + ACTIONS(2559), 1, + anon_sym_DOT, + ACTIONS(2567), 1, + anon_sym_loop, + ACTIONS(2569), 1, + anon_sym_cl_COLONloop, + STATE(47), 1, + sym_defun_header, + STATE(70), 1, + sym_defun_keyword, + ACTIONS(194), 4, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + ACTIONS(2561), 7, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + ACTIONS(2557), 23, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(2463), 1, + sym_num_lit, + anon_sym_COLON_COLON, + aux_sym_str_lit_token1, + sym_char_lit, anon_sym_CARET, - ACTIONS(2465), 1, anon_sym_POUND_CARET, - ACTIONS(2469), 1, - sym_accumulation_verb, - ACTIONS(2473), 1, - anon_sym_with, - ACTIONS(2475), 1, - anon_sym_do, - ACTIONS(2477), 1, - anon_sym_while, - ACTIONS(2491), 1, + anon_sym_LPAREN, anon_sym_RPAREN, - STATE(1369), 1, - sym__metadata_lit, - STATE(1424), 1, - aux_sym_sym_lit_repeat1, - STATE(1437), 1, - sym_meta_lit, - STATE(1439), 1, - sym_old_meta_lit, - ACTIONS(2489), 2, - sym__ws, - sym_comment, - ACTIONS(2471), 3, - anon_sym_for, - anon_sym_and, - anon_sym_as, - ACTIONS(2481), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(965), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(571), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(2479), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(1085), 8, - sym_list_lit, - sym_for_clause, - sym_with_clause, - sym_do_clause, - sym_while_clause, - sym_condition_clause, - sym_accumulation_clause, - sym_termination_clause, - [66211] = 21, + 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, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + [63759] = 10, ACTIONS(3), 1, sym_block_comment, - ACTIONS(612), 1, - anon_sym_LPAREN, - ACTIONS(2461), 1, - anon_sym_POUND_, - ACTIONS(2463), 1, - anon_sym_CARET, - ACTIONS(2465), 1, - anon_sym_POUND_CARET, - ACTIONS(2467), 1, - anon_sym_RPAREN, - ACTIONS(2469), 1, - sym_accumulation_verb, - ACTIONS(2473), 1, - anon_sym_with, - ACTIONS(2475), 1, - anon_sym_do, - ACTIONS(2477), 1, - anon_sym_while, - STATE(1369), 1, - sym__metadata_lit, - STATE(1424), 1, - aux_sym_sym_lit_repeat1, - STATE(1437), 1, - sym_meta_lit, - STATE(1439), 1, - sym_old_meta_lit, - ACTIONS(2493), 2, + ACTIONS(196), 1, + anon_sym_lambda, + ACTIONS(2559), 1, + anon_sym_DOT, + ACTIONS(2571), 1, + anon_sym_loop, + ACTIONS(2573), 1, + anon_sym_cl_COLONloop, + STATE(49), 1, + sym_defun_header, + STATE(70), 1, + sym_defun_keyword, + ACTIONS(194), 4, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + ACTIONS(2561), 7, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + ACTIONS(2557), 23, sym__ws, sym_comment, - ACTIONS(2471), 3, - anon_sym_for, - anon_sym_and, - anon_sym_as, - ACTIONS(2481), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(965), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(576), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(2479), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(1085), 8, - sym_list_lit, - sym_for_clause, - sym_with_clause, - sym_do_clause, - sym_while_clause, - sym_condition_clause, - sym_accumulation_clause, - sym_termination_clause, - [66297] = 21, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(612), 1, - anon_sym_LPAREN, - ACTIONS(2461), 1, anon_sym_POUND_, - ACTIONS(2463), 1, + sym_num_lit, + anon_sym_COLON_COLON, + aux_sym_str_lit_token1, + sym_char_lit, anon_sym_CARET, - ACTIONS(2465), 1, anon_sym_POUND_CARET, - ACTIONS(2469), 1, - sym_accumulation_verb, - ACTIONS(2473), 1, - anon_sym_with, - ACTIONS(2475), 1, - anon_sym_do, - ACTIONS(2477), 1, - anon_sym_while, - ACTIONS(2497), 1, + anon_sym_LPAREN, anon_sym_RPAREN, - STATE(1369), 1, - sym__metadata_lit, - STATE(1424), 1, - aux_sym_sym_lit_repeat1, - STATE(1437), 1, - sym_meta_lit, - STATE(1439), 1, - sym_old_meta_lit, - ACTIONS(2495), 2, - sym__ws, - sym_comment, - ACTIONS(2471), 3, - anon_sym_for, - anon_sym_and, - anon_sym_as, - ACTIONS(2481), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(965), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(562), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(2479), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(1085), 8, - sym_list_lit, - sym_for_clause, - sym_with_clause, - sym_do_clause, - sym_while_clause, - sym_condition_clause, - sym_accumulation_clause, - sym_termination_clause, - [66383] = 21, + 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, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + [63821] = 10, ACTIONS(3), 1, sym_block_comment, - ACTIONS(612), 1, - anon_sym_LPAREN, - ACTIONS(2461), 1, - anon_sym_POUND_, - ACTIONS(2463), 1, - anon_sym_CARET, - ACTIONS(2465), 1, - anon_sym_POUND_CARET, - ACTIONS(2469), 1, - sym_accumulation_verb, - ACTIONS(2473), 1, - anon_sym_with, - ACTIONS(2475), 1, - anon_sym_do, - ACTIONS(2477), 1, - anon_sym_while, - ACTIONS(2499), 1, - anon_sym_RPAREN, - STATE(1369), 1, - sym__metadata_lit, - STATE(1424), 1, - aux_sym_sym_lit_repeat1, - STATE(1437), 1, - sym_meta_lit, - STATE(1439), 1, - sym_old_meta_lit, - ACTIONS(2459), 2, + ACTIONS(196), 1, + anon_sym_lambda, + ACTIONS(2559), 1, + anon_sym_DOT, + ACTIONS(2575), 1, + anon_sym_loop, + ACTIONS(2577), 1, + anon_sym_cl_COLONloop, + STATE(25), 1, + sym_defun_header, + STATE(70), 1, + sym_defun_keyword, + ACTIONS(194), 4, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + ACTIONS(2561), 7, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + ACTIONS(2557), 23, sym__ws, sym_comment, - ACTIONS(2471), 3, - anon_sym_for, - anon_sym_and, - anon_sym_as, - ACTIONS(2481), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(965), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(570), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(2479), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(1085), 8, - sym_list_lit, - sym_for_clause, - sym_with_clause, - sym_do_clause, - sym_while_clause, - sym_condition_clause, - sym_accumulation_clause, - sym_termination_clause, - [66469] = 21, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(612), 1, - anon_sym_LPAREN, - ACTIONS(2461), 1, anon_sym_POUND_, - ACTIONS(2463), 1, + sym_num_lit, + anon_sym_COLON_COLON, + aux_sym_str_lit_token1, + sym_char_lit, anon_sym_CARET, - ACTIONS(2465), 1, anon_sym_POUND_CARET, - ACTIONS(2469), 1, - sym_accumulation_verb, - ACTIONS(2473), 1, - anon_sym_with, - ACTIONS(2475), 1, - anon_sym_do, - ACTIONS(2477), 1, - anon_sym_while, - ACTIONS(2503), 1, + anon_sym_LPAREN, anon_sym_RPAREN, - STATE(1369), 1, - sym__metadata_lit, - STATE(1424), 1, - aux_sym_sym_lit_repeat1, - STATE(1437), 1, - sym_meta_lit, - STATE(1439), 1, - sym_old_meta_lit, - ACTIONS(2501), 2, - sym__ws, - sym_comment, - ACTIONS(2471), 3, - anon_sym_for, - anon_sym_and, - anon_sym_as, - ACTIONS(2481), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(965), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(557), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(2479), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(1085), 8, - sym_list_lit, - sym_for_clause, - sym_with_clause, - sym_do_clause, - sym_while_clause, - sym_condition_clause, - sym_accumulation_clause, - sym_termination_clause, - [66555] = 21, + 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, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + [63883] = 10, ACTIONS(3), 1, sym_block_comment, - ACTIONS(612), 1, - anon_sym_LPAREN, - ACTIONS(2461), 1, - anon_sym_POUND_, - ACTIONS(2463), 1, - anon_sym_CARET, - ACTIONS(2465), 1, - anon_sym_POUND_CARET, - ACTIONS(2469), 1, - sym_accumulation_verb, - ACTIONS(2473), 1, - anon_sym_with, - ACTIONS(2475), 1, - anon_sym_do, - ACTIONS(2477), 1, - anon_sym_while, - ACTIONS(2507), 1, - anon_sym_RPAREN, - STATE(1369), 1, - sym__metadata_lit, - STATE(1424), 1, - aux_sym_sym_lit_repeat1, - STATE(1437), 1, - sym_meta_lit, - STATE(1439), 1, - sym_old_meta_lit, - ACTIONS(2505), 2, + ACTIONS(196), 1, + anon_sym_lambda, + ACTIONS(2559), 1, + anon_sym_DOT, + ACTIONS(2579), 1, + anon_sym_loop, + ACTIONS(2581), 1, + anon_sym_cl_COLONloop, + STATE(35), 1, + sym_defun_header, + STATE(70), 1, + sym_defun_keyword, + ACTIONS(194), 4, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + ACTIONS(2561), 7, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + ACTIONS(2557), 23, sym__ws, sym_comment, - ACTIONS(2471), 3, - anon_sym_for, - anon_sym_and, - anon_sym_as, - ACTIONS(2481), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(965), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(573), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(2479), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(1085), 8, - sym_list_lit, - sym_for_clause, - sym_with_clause, - sym_do_clause, - sym_while_clause, - sym_condition_clause, - sym_accumulation_clause, - sym_termination_clause, - [66641] = 21, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(612), 1, - anon_sym_LPAREN, - ACTIONS(2461), 1, anon_sym_POUND_, - ACTIONS(2463), 1, + sym_num_lit, + anon_sym_COLON_COLON, + aux_sym_str_lit_token1, + sym_char_lit, anon_sym_CARET, - ACTIONS(2465), 1, anon_sym_POUND_CARET, - ACTIONS(2469), 1, - sym_accumulation_verb, - ACTIONS(2473), 1, - anon_sym_with, - ACTIONS(2475), 1, - anon_sym_do, - ACTIONS(2477), 1, - anon_sym_while, - ACTIONS(2503), 1, + anon_sym_LPAREN, anon_sym_RPAREN, - STATE(1369), 1, - sym__metadata_lit, - STATE(1424), 1, - aux_sym_sym_lit_repeat1, - STATE(1437), 1, - sym_meta_lit, - STATE(1439), 1, - sym_old_meta_lit, - ACTIONS(2459), 2, - sym__ws, - sym_comment, - ACTIONS(2471), 3, - anon_sym_for, - anon_sym_and, - anon_sym_as, - ACTIONS(2481), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(965), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(570), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(2479), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(1085), 8, - sym_list_lit, - sym_for_clause, - sym_with_clause, - sym_do_clause, - sym_while_clause, - sym_condition_clause, - sym_accumulation_clause, - sym_termination_clause, - [66727] = 21, + 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, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + [63945] = 10, ACTIONS(3), 1, sym_block_comment, - ACTIONS(612), 1, - anon_sym_LPAREN, - ACTIONS(2461), 1, - anon_sym_POUND_, - ACTIONS(2463), 1, - anon_sym_CARET, - ACTIONS(2465), 1, - anon_sym_POUND_CARET, - ACTIONS(2469), 1, - sym_accumulation_verb, - ACTIONS(2473), 1, - anon_sym_with, - ACTIONS(2475), 1, - anon_sym_do, - ACTIONS(2477), 1, - anon_sym_while, - ACTIONS(2509), 1, - anon_sym_RPAREN, - STATE(1369), 1, - sym__metadata_lit, - STATE(1424), 1, - aux_sym_sym_lit_repeat1, - STATE(1437), 1, - sym_meta_lit, - STATE(1439), 1, - sym_old_meta_lit, - ACTIONS(2459), 2, + ACTIONS(196), 1, + anon_sym_lambda, + ACTIONS(2559), 1, + anon_sym_DOT, + ACTIONS(2583), 1, + anon_sym_loop, + ACTIONS(2585), 1, + anon_sym_cl_COLONloop, + STATE(65), 1, + sym_defun_header, + STATE(70), 1, + sym_defun_keyword, + ACTIONS(194), 4, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + ACTIONS(2561), 7, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + ACTIONS(2557), 23, sym__ws, sym_comment, - ACTIONS(2471), 3, - anon_sym_for, - anon_sym_and, - anon_sym_as, - ACTIONS(2481), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(965), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(570), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(2479), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(1085), 8, - sym_list_lit, - sym_for_clause, - sym_with_clause, - sym_do_clause, - sym_while_clause, - sym_condition_clause, - sym_accumulation_clause, - sym_termination_clause, - [66813] = 21, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(612), 1, - anon_sym_LPAREN, - ACTIONS(2461), 1, anon_sym_POUND_, - ACTIONS(2463), 1, + sym_num_lit, + anon_sym_COLON_COLON, + aux_sym_str_lit_token1, + sym_char_lit, anon_sym_CARET, - ACTIONS(2465), 1, anon_sym_POUND_CARET, - ACTIONS(2469), 1, - sym_accumulation_verb, - ACTIONS(2473), 1, - anon_sym_with, - ACTIONS(2475), 1, - anon_sym_do, - ACTIONS(2477), 1, - anon_sym_while, - ACTIONS(2513), 1, + anon_sym_LPAREN, anon_sym_RPAREN, - STATE(1369), 1, - sym__metadata_lit, - STATE(1424), 1, - aux_sym_sym_lit_repeat1, - STATE(1437), 1, - sym_meta_lit, - STATE(1439), 1, - sym_old_meta_lit, - ACTIONS(2511), 2, + 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, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + [64007] = 10, + ACTIONS(3), 1, + sym_block_comment, + ACTIONS(196), 1, + anon_sym_lambda, + ACTIONS(2559), 1, + anon_sym_DOT, + ACTIONS(2587), 1, + anon_sym_loop, + ACTIONS(2589), 1, + anon_sym_cl_COLONloop, + STATE(60), 1, + sym_defun_header, + STATE(70), 1, + sym_defun_keyword, + ACTIONS(194), 4, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + ACTIONS(2561), 7, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + ACTIONS(2557), 23, sym__ws, sym_comment, - ACTIONS(2471), 3, - anon_sym_for, - anon_sym_and, - anon_sym_as, - ACTIONS(2481), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(965), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(583), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(2479), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(1085), 8, - sym_list_lit, - sym_for_clause, - sym_with_clause, - sym_do_clause, - sym_while_clause, - sym_condition_clause, - sym_accumulation_clause, - sym_termination_clause, - [66899] = 21, + anon_sym_POUND_, + sym_num_lit, + anon_sym_COLON_COLON, + aux_sym_str_lit_token1, + sym_char_lit, + 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, + anon_sym_POUND_POUND, + anon_sym_POUND_EQ, + anon_sym_AT, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA_AT, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + [64069] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(612), 1, - anon_sym_LPAREN, - ACTIONS(2461), 1, + ACTIONS(2591), 1, + anon_sym_DOT, + STATE(560), 1, + aux_sym_dotted_sym_lit_repeat1, + ACTIONS(2015), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(2010), 35, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(2463), 1, anon_sym_CARET, - ACTIONS(2465), 1, anon_sym_POUND_CARET, - ACTIONS(2469), 1, - sym_accumulation_verb, - ACTIONS(2473), 1, - anon_sym_with, - ACTIONS(2475), 1, - anon_sym_do, - ACTIONS(2477), 1, - anon_sym_while, - ACTIONS(2517), 1, + anon_sym_LPAREN, anon_sym_RPAREN, - STATE(1369), 1, - sym__metadata_lit, - STATE(1424), 1, - aux_sym_sym_lit_repeat1, - STATE(1437), 1, - sym_meta_lit, - STATE(1439), 1, - sym_old_meta_lit, - ACTIONS(2515), 2, - sym__ws, - sym_comment, - ACTIONS(2471), 3, + anon_sym_across, + anon_sym_using, + aux_sym_for_clause_word_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, + anon_sym_EQ, + sym_accumulation_verb, anon_sym_for, anon_sym_and, anon_sym_as, - ACTIONS(2481), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(965), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(556), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(2479), 6, + anon_sym_with, + anon_sym_while, anon_sym_when, anon_sym_if, anon_sym_unless, anon_sym_always, anon_sym_thereis, anon_sym_never, - STATE(1085), 8, - sym_list_lit, - sym_for_clause, - sym_with_clause, - sym_do_clause, - sym_while_clause, - sym_condition_clause, - sym_accumulation_clause, - sym_termination_clause, - [66985] = 21, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + [64121] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(612), 1, - anon_sym_LPAREN, - ACTIONS(2461), 1, + ACTIONS(2594), 1, + anon_sym_DOT, + STATE(562), 1, + aux_sym_dotted_sym_lit_repeat1, + ACTIONS(2004), 13, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(2002), 24, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(2463), 1, + sym_num_lit, + anon_sym_COLON_COLON, + aux_sym_str_lit_token1, + sym_char_lit, anon_sym_CARET, - ACTIONS(2465), 1, anon_sym_POUND_CARET, - ACTIONS(2469), 1, - sym_accumulation_verb, - ACTIONS(2473), 1, - anon_sym_with, - ACTIONS(2475), 1, - anon_sym_do, - ACTIONS(2477), 1, - anon_sym_while, - ACTIONS(2521), 1, + anon_sym_LPAREN, anon_sym_RPAREN, - STATE(1369), 1, - sym__metadata_lit, - STATE(1424), 1, - aux_sym_sym_lit_repeat1, - STATE(1437), 1, - sym_meta_lit, - STATE(1439), 1, - sym_old_meta_lit, - ACTIONS(2519), 2, - sym__ws, - sym_comment, - ACTIONS(2471), 3, - anon_sym_for, - anon_sym_and, - anon_sym_as, - ACTIONS(2481), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(965), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(582), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(2479), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(1085), 8, - sym_list_lit, - sym_for_clause, - sym_with_clause, - sym_do_clause, - sym_while_clause, - sym_condition_clause, - sym_accumulation_clause, - sym_termination_clause, - [67071] = 21, + 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, + anon_sym_cl_COLONloop, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + [64172] = 4, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2526), 1, + STATE(563), 1, + aux_sym_dotted_sym_lit_repeat1, + ACTIONS(2000), 13, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(1996), 25, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(2529), 1, + anon_sym_DOT, + sym_num_lit, + anon_sym_COLON_COLON, + aux_sym_str_lit_token1, + sym_char_lit, anon_sym_CARET, - ACTIONS(2532), 1, anon_sym_POUND_CARET, - ACTIONS(2535), 1, anon_sym_LPAREN, - ACTIONS(2538), 1, anon_sym_RPAREN, - ACTIONS(2540), 1, - sym_accumulation_verb, - ACTIONS(2546), 1, - anon_sym_with, - ACTIONS(2549), 1, - anon_sym_do, - ACTIONS(2552), 1, - anon_sym_while, - STATE(1369), 1, - sym__metadata_lit, - STATE(1424), 1, - aux_sym_sym_lit_repeat1, - STATE(1437), 1, - sym_meta_lit, - STATE(1439), 1, - sym_old_meta_lit, - ACTIONS(2523), 2, - sym__ws, - sym_comment, - ACTIONS(2543), 3, - anon_sym_for, - anon_sym_and, - anon_sym_as, - ACTIONS(2558), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(965), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(570), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(2555), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(1085), 8, - sym_list_lit, - sym_for_clause, - sym_with_clause, - sym_do_clause, - sym_while_clause, - sym_condition_clause, - sym_accumulation_clause, - sym_termination_clause, - [67157] = 21, + 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, + anon_sym_cl_COLONloop, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + [64221] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(612), 1, - anon_sym_LPAREN, - ACTIONS(2461), 1, + ACTIONS(2596), 1, + anon_sym_DOT, + STATE(563), 1, + aux_sym_dotted_sym_lit_repeat1, + ACTIONS(2015), 13, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(2010), 24, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(2463), 1, + sym_num_lit, + anon_sym_COLON_COLON, + aux_sym_str_lit_token1, + sym_char_lit, anon_sym_CARET, - ACTIONS(2465), 1, anon_sym_POUND_CARET, - ACTIONS(2469), 1, - sym_accumulation_verb, - ACTIONS(2473), 1, - anon_sym_with, - ACTIONS(2475), 1, - anon_sym_do, - ACTIONS(2477), 1, - anon_sym_while, - ACTIONS(2561), 1, + anon_sym_LPAREN, anon_sym_RPAREN, - STATE(1369), 1, - sym__metadata_lit, - STATE(1424), 1, - aux_sym_sym_lit_repeat1, - STATE(1437), 1, - sym_meta_lit, - STATE(1439), 1, - sym_old_meta_lit, - ACTIONS(2459), 2, - sym__ws, - sym_comment, - ACTIONS(2471), 3, - anon_sym_for, - anon_sym_and, - anon_sym_as, - ACTIONS(2481), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(965), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(570), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(2479), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(1085), 8, - sym_list_lit, - sym_for_clause, - sym_with_clause, - sym_do_clause, - sym_while_clause, - sym_condition_clause, - sym_accumulation_clause, - sym_termination_clause, - [67243] = 21, + 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, + anon_sym_cl_COLONloop, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + [64272] = 4, ACTIONS(3), 1, sym_block_comment, - ACTIONS(612), 1, - anon_sym_LPAREN, - ACTIONS(2461), 1, + STATE(562), 1, + aux_sym_dotted_sym_lit_repeat1, + ACTIONS(2008), 13, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(2006), 25, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(2463), 1, + anon_sym_DOT, + sym_num_lit, + anon_sym_COLON_COLON, + aux_sym_str_lit_token1, + sym_char_lit, anon_sym_CARET, - ACTIONS(2465), 1, anon_sym_POUND_CARET, - ACTIONS(2469), 1, - sym_accumulation_verb, - ACTIONS(2473), 1, - anon_sym_with, - ACTIONS(2475), 1, - anon_sym_do, - ACTIONS(2477), 1, - anon_sym_while, - ACTIONS(2497), 1, + anon_sym_LPAREN, anon_sym_RPAREN, - STATE(1369), 1, - sym__metadata_lit, - STATE(1424), 1, - aux_sym_sym_lit_repeat1, - STATE(1437), 1, - sym_meta_lit, - STATE(1439), 1, - sym_old_meta_lit, - ACTIONS(2459), 2, - sym__ws, - sym_comment, - ACTIONS(2471), 3, - anon_sym_for, - anon_sym_and, - anon_sym_as, - ACTIONS(2481), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(965), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(570), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(2479), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(1085), 8, - sym_list_lit, - sym_for_clause, - sym_with_clause, - sym_do_clause, - sym_while_clause, - sym_condition_clause, - sym_accumulation_clause, - sym_termination_clause, - [67329] = 21, + 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, + anon_sym_cl_COLONloop, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + [64321] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(612), 1, - anon_sym_LPAREN, - ACTIONS(2461), 1, + ACTIONS(2015), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(2010), 36, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(2463), 1, + anon_sym_DOT, anon_sym_CARET, - ACTIONS(2465), 1, anon_sym_POUND_CARET, - ACTIONS(2469), 1, - sym_accumulation_verb, - ACTIONS(2473), 1, - anon_sym_with, - ACTIONS(2475), 1, - anon_sym_do, - ACTIONS(2477), 1, - anon_sym_while, - ACTIONS(2513), 1, + anon_sym_LPAREN, anon_sym_RPAREN, - STATE(1369), 1, - sym__metadata_lit, - STATE(1424), 1, - aux_sym_sym_lit_repeat1, - STATE(1437), 1, - sym_meta_lit, - STATE(1439), 1, - sym_old_meta_lit, - ACTIONS(2459), 2, - sym__ws, - sym_comment, - ACTIONS(2471), 3, + anon_sym_across, + anon_sym_using, + aux_sym_for_clause_word_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, + anon_sym_EQ, + sym_accumulation_verb, anon_sym_for, anon_sym_and, anon_sym_as, - ACTIONS(2481), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(965), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(570), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(2479), 6, + anon_sym_with, + anon_sym_while, anon_sym_when, anon_sym_if, anon_sym_unless, anon_sym_always, anon_sym_thereis, anon_sym_never, - STATE(1085), 8, - sym_list_lit, - sym_for_clause, - sym_with_clause, - sym_do_clause, - sym_while_clause, - sym_condition_clause, - sym_accumulation_clause, - sym_termination_clause, - [67415] = 21, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + [64368] = 7, ACTIONS(3), 1, sym_block_comment, - ACTIONS(612), 1, - anon_sym_LPAREN, - ACTIONS(2461), 1, + ACTIONS(1988), 1, + anon_sym_DOT, + ACTIONS(2599), 1, + anon_sym_COLON, + ACTIONS(2601), 1, + anon_sym_COLON_COLON, + STATE(782), 1, + aux_sym_dotted_sym_lit_repeat1, + ACTIONS(1994), 12, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(1986), 23, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(2463), 1, + sym_num_lit, + aux_sym_str_lit_token1, + sym_char_lit, anon_sym_CARET, - ACTIONS(2465), 1, anon_sym_POUND_CARET, - ACTIONS(2469), 1, - sym_accumulation_verb, - ACTIONS(2473), 1, - anon_sym_with, - ACTIONS(2475), 1, - anon_sym_do, - ACTIONS(2477), 1, - anon_sym_while, - ACTIONS(2491), 1, + anon_sym_LPAREN, anon_sym_RPAREN, - STATE(1369), 1, - sym__metadata_lit, - STATE(1424), 1, - aux_sym_sym_lit_repeat1, - STATE(1437), 1, - sym_meta_lit, - STATE(1439), 1, - sym_old_meta_lit, - ACTIONS(2459), 2, - sym__ws, - sym_comment, - ACTIONS(2471), 3, - anon_sym_for, - anon_sym_and, - anon_sym_as, - ACTIONS(2481), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(965), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(570), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(2479), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(1085), 8, - sym_list_lit, - sym_for_clause, - sym_with_clause, - sym_do_clause, - sym_while_clause, - sym_condition_clause, - sym_accumulation_clause, - sym_termination_clause, - [67501] = 7, + 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, + anon_sym_cl_COLONloop, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + [64423] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2047), 1, + ACTIONS(2275), 13, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(2273), 25, + sym__ws, + sym_comment, + anon_sym_POUND_, anon_sym_DOT, - ACTIONS(2563), 1, + sym_num_lit, anon_sym_COLON_COLON, - ACTIONS(2565), 1, - anon_sym_COLON, - STATE(816), 1, - aux_sym_dotted_sym_lit_repeat1, - ACTIONS(2049), 3, + aux_sym_str_lit_token1, + sym_char_lit, + 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, + anon_sym_POUND_POUND, + anon_sym_POUND_EQ, + anon_sym_AT, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA_AT, + anon_sym_cl_COLONloop, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + [64469] = 3, + ACTIONS(3), 1, + sym_block_comment, + ACTIONS(2079), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(2045), 35, + ACTIONS(2077), 35, sym__ws, sym_comment, anon_sym_POUND_, @@ -57142,674 +55130,408 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [67559] = 21, + [64515] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(612), 1, - anon_sym_LPAREN, - ACTIONS(2461), 1, - anon_sym_POUND_, - ACTIONS(2463), 1, - anon_sym_CARET, - ACTIONS(2465), 1, - anon_sym_POUND_CARET, - ACTIONS(2469), 1, - sym_accumulation_verb, - ACTIONS(2473), 1, - anon_sym_with, - ACTIONS(2475), 1, - anon_sym_do, - ACTIONS(2477), 1, - anon_sym_while, - ACTIONS(2567), 1, - anon_sym_RPAREN, - STATE(1369), 1, - sym__metadata_lit, - STATE(1424), 1, - aux_sym_sym_lit_repeat1, - STATE(1437), 1, - sym_meta_lit, - STATE(1439), 1, - sym_old_meta_lit, - ACTIONS(2459), 2, + ACTIONS(2008), 13, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(2006), 25, sym__ws, sym_comment, - ACTIONS(2471), 3, - anon_sym_for, - anon_sym_and, - anon_sym_as, - ACTIONS(2481), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(965), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(570), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(2479), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(1085), 8, - sym_list_lit, - sym_for_clause, - sym_with_clause, - sym_do_clause, - sym_while_clause, - sym_condition_clause, - sym_accumulation_clause, - sym_termination_clause, - [67645] = 21, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(612), 1, - anon_sym_LPAREN, - ACTIONS(2461), 1, anon_sym_POUND_, - ACTIONS(2463), 1, + anon_sym_DOT, + sym_num_lit, + anon_sym_COLON_COLON, + aux_sym_str_lit_token1, + sym_char_lit, anon_sym_CARET, - ACTIONS(2465), 1, anon_sym_POUND_CARET, - ACTIONS(2469), 1, - sym_accumulation_verb, - ACTIONS(2473), 1, - anon_sym_with, - ACTIONS(2475), 1, - anon_sym_do, - ACTIONS(2477), 1, - anon_sym_while, - ACTIONS(2571), 1, + anon_sym_LPAREN, anon_sym_RPAREN, - STATE(1369), 1, - sym__metadata_lit, - STATE(1424), 1, - aux_sym_sym_lit_repeat1, - STATE(1437), 1, - sym_meta_lit, - STATE(1439), 1, - sym_old_meta_lit, - ACTIONS(2569), 2, - sym__ws, - sym_comment, - ACTIONS(2471), 3, - anon_sym_for, - anon_sym_and, - anon_sym_as, - ACTIONS(2481), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(965), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(574), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(2479), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(1085), 8, - sym_list_lit, - sym_for_clause, - sym_with_clause, - sym_do_clause, - sym_while_clause, - sym_condition_clause, - sym_accumulation_clause, - sym_termination_clause, - [67731] = 21, + 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, + anon_sym_cl_COLONloop, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + [64561] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(612), 1, - anon_sym_LPAREN, - ACTIONS(2461), 1, + ACTIONS(2311), 13, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(2309), 25, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(2463), 1, + anon_sym_DOT, + sym_num_lit, + anon_sym_COLON_COLON, + aux_sym_str_lit_token1, + sym_char_lit, anon_sym_CARET, - ACTIONS(2465), 1, anon_sym_POUND_CARET, - ACTIONS(2469), 1, - sym_accumulation_verb, - ACTIONS(2473), 1, - anon_sym_with, - ACTIONS(2475), 1, - anon_sym_do, - ACTIONS(2477), 1, - anon_sym_while, - ACTIONS(2575), 1, + anon_sym_LPAREN, anon_sym_RPAREN, - STATE(1369), 1, - sym__metadata_lit, - STATE(1424), 1, - aux_sym_sym_lit_repeat1, - STATE(1437), 1, - sym_meta_lit, - STATE(1439), 1, - sym_old_meta_lit, - ACTIONS(2573), 2, - sym__ws, - sym_comment, - ACTIONS(2471), 3, - anon_sym_for, - anon_sym_and, - anon_sym_as, - ACTIONS(2481), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(965), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(581), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(2479), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(1085), 8, - sym_list_lit, - sym_for_clause, - sym_with_clause, - sym_do_clause, - sym_while_clause, - sym_condition_clause, - sym_accumulation_clause, - sym_termination_clause, - [67817] = 21, + 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, + anon_sym_cl_COLONloop, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + [64607] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(612), 1, - anon_sym_LPAREN, - ACTIONS(2461), 1, + ACTIONS(2315), 13, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(2313), 25, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(2463), 1, + anon_sym_DOT, + sym_num_lit, + anon_sym_COLON_COLON, + aux_sym_str_lit_token1, + sym_char_lit, anon_sym_CARET, - ACTIONS(2465), 1, anon_sym_POUND_CARET, - ACTIONS(2469), 1, - sym_accumulation_verb, - ACTIONS(2473), 1, - anon_sym_with, - ACTIONS(2475), 1, - anon_sym_do, - ACTIONS(2477), 1, - anon_sym_while, - ACTIONS(2579), 1, + anon_sym_LPAREN, anon_sym_RPAREN, - STATE(1369), 1, - sym__metadata_lit, - STATE(1424), 1, - aux_sym_sym_lit_repeat1, - STATE(1437), 1, - sym_meta_lit, - STATE(1439), 1, - sym_old_meta_lit, - ACTIONS(2577), 2, - sym__ws, - sym_comment, - ACTIONS(2471), 3, - anon_sym_for, - anon_sym_and, - anon_sym_as, - ACTIONS(2481), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(965), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(584), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(2479), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(1085), 8, - sym_list_lit, - sym_for_clause, - sym_with_clause, - sym_do_clause, - sym_while_clause, - sym_condition_clause, - sym_accumulation_clause, - sym_termination_clause, - [67903] = 21, + 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, + anon_sym_cl_COLONloop, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + [64653] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(612), 1, - anon_sym_LPAREN, - ACTIONS(2461), 1, + ACTIONS(2319), 13, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(2317), 25, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(2463), 1, + anon_sym_DOT, + sym_num_lit, + anon_sym_COLON_COLON, + aux_sym_str_lit_token1, + sym_char_lit, anon_sym_CARET, - ACTIONS(2465), 1, anon_sym_POUND_CARET, - ACTIONS(2469), 1, - sym_accumulation_verb, - ACTIONS(2473), 1, - anon_sym_with, - ACTIONS(2475), 1, - anon_sym_do, - ACTIONS(2477), 1, - anon_sym_while, - ACTIONS(2583), 1, + anon_sym_LPAREN, anon_sym_RPAREN, - STATE(1369), 1, - sym__metadata_lit, - STATE(1424), 1, - aux_sym_sym_lit_repeat1, - STATE(1437), 1, - sym_meta_lit, - STATE(1439), 1, - sym_old_meta_lit, - ACTIONS(2581), 2, - sym__ws, - sym_comment, - ACTIONS(2471), 3, - anon_sym_for, - anon_sym_and, - anon_sym_as, - ACTIONS(2481), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(965), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(565), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(2479), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(1085), 8, - sym_list_lit, - sym_for_clause, - sym_with_clause, - sym_do_clause, - sym_while_clause, - sym_condition_clause, - sym_accumulation_clause, - sym_termination_clause, - [67989] = 21, + 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, + anon_sym_cl_COLONloop, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + [64699] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(612), 1, - anon_sym_LPAREN, - ACTIONS(2461), 1, + ACTIONS(2323), 13, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(2321), 25, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(2463), 1, + anon_sym_DOT, + sym_num_lit, + anon_sym_COLON_COLON, + aux_sym_str_lit_token1, + sym_char_lit, anon_sym_CARET, - ACTIONS(2465), 1, anon_sym_POUND_CARET, - ACTIONS(2469), 1, - sym_accumulation_verb, - ACTIONS(2473), 1, - anon_sym_with, - ACTIONS(2475), 1, - anon_sym_do, - ACTIONS(2477), 1, - anon_sym_while, - ACTIONS(2585), 1, + anon_sym_LPAREN, anon_sym_RPAREN, - STATE(1369), 1, - sym__metadata_lit, - STATE(1424), 1, - aux_sym_sym_lit_repeat1, - STATE(1437), 1, - sym_meta_lit, - STATE(1439), 1, - sym_old_meta_lit, - ACTIONS(2459), 2, - sym__ws, - sym_comment, - ACTIONS(2471), 3, - anon_sym_for, - anon_sym_and, - anon_sym_as, - ACTIONS(2481), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(965), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(570), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(2479), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(1085), 8, - sym_list_lit, - sym_for_clause, - sym_with_clause, - sym_do_clause, - sym_while_clause, - sym_condition_clause, - sym_accumulation_clause, - sym_termination_clause, - [68075] = 21, + 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, + anon_sym_cl_COLONloop, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + [64745] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(612), 1, - anon_sym_LPAREN, - ACTIONS(2461), 1, + ACTIONS(2327), 13, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(2325), 25, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(2463), 1, + anon_sym_DOT, + sym_num_lit, + anon_sym_COLON_COLON, + aux_sym_str_lit_token1, + sym_char_lit, anon_sym_CARET, - ACTIONS(2465), 1, anon_sym_POUND_CARET, - ACTIONS(2469), 1, - sym_accumulation_verb, - ACTIONS(2473), 1, - anon_sym_with, - ACTIONS(2475), 1, - anon_sym_do, - ACTIONS(2477), 1, - anon_sym_while, - ACTIONS(2575), 1, + anon_sym_LPAREN, anon_sym_RPAREN, - STATE(1369), 1, - sym__metadata_lit, - STATE(1424), 1, - aux_sym_sym_lit_repeat1, - STATE(1437), 1, - sym_meta_lit, - STATE(1439), 1, - sym_old_meta_lit, - ACTIONS(2459), 2, - sym__ws, - sym_comment, - ACTIONS(2471), 3, - anon_sym_for, - anon_sym_and, - anon_sym_as, - ACTIONS(2481), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(965), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(570), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(2479), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(1085), 8, - sym_list_lit, - sym_for_clause, - sym_with_clause, - sym_do_clause, - sym_while_clause, - sym_condition_clause, - sym_accumulation_clause, - sym_termination_clause, - [68161] = 21, + 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, + anon_sym_cl_COLONloop, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + [64791] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(612), 1, - anon_sym_LPAREN, - ACTIONS(2461), 1, + ACTIONS(2331), 13, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(2329), 25, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(2463), 1, + anon_sym_DOT, + sym_num_lit, + anon_sym_COLON_COLON, + aux_sym_str_lit_token1, + sym_char_lit, anon_sym_CARET, - ACTIONS(2465), 1, anon_sym_POUND_CARET, - ACTIONS(2469), 1, - sym_accumulation_verb, - ACTIONS(2473), 1, - anon_sym_with, - ACTIONS(2475), 1, - anon_sym_do, - ACTIONS(2477), 1, - anon_sym_while, - ACTIONS(2587), 1, + anon_sym_LPAREN, anon_sym_RPAREN, - STATE(1369), 1, - sym__metadata_lit, - STATE(1424), 1, - aux_sym_sym_lit_repeat1, - STATE(1437), 1, - sym_meta_lit, - STATE(1439), 1, - sym_old_meta_lit, - ACTIONS(2459), 2, - sym__ws, - sym_comment, - ACTIONS(2471), 3, - anon_sym_for, - anon_sym_and, - anon_sym_as, - ACTIONS(2481), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(965), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(570), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(2479), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(1085), 8, - sym_list_lit, - sym_for_clause, - sym_with_clause, - sym_do_clause, - sym_while_clause, - sym_condition_clause, - sym_accumulation_clause, - sym_termination_clause, - [68247] = 21, + 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, + anon_sym_cl_COLONloop, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + [64837] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(612), 1, - anon_sym_LPAREN, - ACTIONS(2461), 1, + ACTIONS(2287), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(2285), 35, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(2463), 1, anon_sym_CARET, - ACTIONS(2465), 1, anon_sym_POUND_CARET, - ACTIONS(2469), 1, - sym_accumulation_verb, - ACTIONS(2473), 1, - anon_sym_with, - ACTIONS(2475), 1, - anon_sym_do, - ACTIONS(2477), 1, - anon_sym_while, - ACTIONS(2589), 1, + anon_sym_LPAREN, anon_sym_RPAREN, - STATE(1369), 1, - sym__metadata_lit, - STATE(1424), 1, - aux_sym_sym_lit_repeat1, - STATE(1437), 1, - sym_meta_lit, - STATE(1439), 1, - sym_old_meta_lit, - ACTIONS(2459), 2, - sym__ws, - sym_comment, - ACTIONS(2471), 3, + anon_sym_across, + anon_sym_using, + aux_sym_for_clause_word_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, + anon_sym_EQ, + sym_accumulation_verb, anon_sym_for, anon_sym_and, anon_sym_as, - ACTIONS(2481), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(965), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(570), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(2479), 6, + anon_sym_with, + anon_sym_while, anon_sym_when, anon_sym_if, anon_sym_unless, anon_sym_always, anon_sym_thereis, anon_sym_never, - STATE(1085), 8, - sym_list_lit, - sym_for_clause, - sym_with_clause, - sym_do_clause, - sym_while_clause, - sym_condition_clause, - sym_accumulation_clause, - sym_termination_clause, - [68333] = 21, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + [64883] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(612), 1, - anon_sym_LPAREN, - ACTIONS(2461), 1, + ACTIONS(2339), 13, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(2337), 25, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(2463), 1, + anon_sym_DOT, + sym_num_lit, + anon_sym_COLON_COLON, + aux_sym_str_lit_token1, + sym_char_lit, anon_sym_CARET, - ACTIONS(2465), 1, anon_sym_POUND_CARET, - ACTIONS(2469), 1, - sym_accumulation_verb, - ACTIONS(2473), 1, - anon_sym_with, - ACTIONS(2475), 1, - anon_sym_do, - ACTIONS(2477), 1, - anon_sym_while, - ACTIONS(2589), 1, + anon_sym_LPAREN, anon_sym_RPAREN, - STATE(1369), 1, - sym__metadata_lit, - STATE(1424), 1, - aux_sym_sym_lit_repeat1, - STATE(1437), 1, - sym_meta_lit, - STATE(1439), 1, - sym_old_meta_lit, - ACTIONS(2591), 2, - sym__ws, - sym_comment, - ACTIONS(2471), 3, - anon_sym_for, - anon_sym_and, - anon_sym_as, - ACTIONS(2481), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(965), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(566), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(2479), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(1085), 8, - sym_list_lit, - sym_for_clause, - sym_with_clause, - sym_do_clause, - sym_while_clause, - sym_condition_clause, - sym_accumulation_clause, - sym_termination_clause, - [68419] = 3, + 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, + anon_sym_cl_COLONloop, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + [64929] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2061), 4, + ACTIONS(2307), 3, anon_sym_in, anon_sym_being, anon_sym_do, - anon_sym_COLON, - ACTIONS(2059), 37, + ACTIONS(2305), 35, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_DOT, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COLON_COLON, anon_sym_across, anon_sym_using, aux_sym_for_clause_word_token1, @@ -57838,24 +55560,279 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [68468] = 3, + [64975] = 3, + ACTIONS(3), 1, + sym_block_comment, + ACTIONS(2159), 13, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(2157), 25, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_DOT, + sym_num_lit, + anon_sym_COLON_COLON, + aux_sym_str_lit_token1, + sym_char_lit, + 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, + anon_sym_POUND_POUND, + anon_sym_POUND_EQ, + anon_sym_AT, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA_AT, + anon_sym_cl_COLONloop, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + [65021] = 3, + ACTIONS(3), 1, + sym_block_comment, + ACTIONS(2351), 13, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(2349), 25, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_DOT, + sym_num_lit, + anon_sym_COLON_COLON, + aux_sym_str_lit_token1, + sym_char_lit, + 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, + anon_sym_POUND_POUND, + anon_sym_POUND_EQ, + anon_sym_AT, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA_AT, + anon_sym_cl_COLONloop, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + [65067] = 3, + ACTIONS(3), 1, + sym_block_comment, + ACTIONS(2379), 13, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(2377), 25, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_DOT, + sym_num_lit, + anon_sym_COLON_COLON, + aux_sym_str_lit_token1, + sym_char_lit, + 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, + anon_sym_POUND_POUND, + anon_sym_POUND_EQ, + anon_sym_AT, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA_AT, + anon_sym_cl_COLONloop, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + [65113] = 3, + ACTIONS(3), 1, + sym_block_comment, + ACTIONS(2375), 13, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(2373), 25, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_DOT, + sym_num_lit, + anon_sym_COLON_COLON, + aux_sym_str_lit_token1, + sym_char_lit, + 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, + anon_sym_POUND_POUND, + anon_sym_POUND_EQ, + anon_sym_AT, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA_AT, + anon_sym_cl_COLONloop, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + [65159] = 3, + ACTIONS(3), 1, + sym_block_comment, + ACTIONS(2371), 13, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(2369), 25, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_DOT, + sym_num_lit, + anon_sym_COLON_COLON, + aux_sym_str_lit_token1, + sym_char_lit, + 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, + anon_sym_POUND_POUND, + anon_sym_POUND_EQ, + anon_sym_AT, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA_AT, + anon_sym_cl_COLONloop, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + [65205] = 3, + ACTIONS(3), 1, + sym_block_comment, + ACTIONS(2359), 13, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(2357), 25, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_DOT, + sym_num_lit, + anon_sym_COLON_COLON, + aux_sym_str_lit_token1, + sym_char_lit, + 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, + anon_sym_POUND_POUND, + anon_sym_POUND_EQ, + anon_sym_AT, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA_AT, + anon_sym_cl_COLONloop, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + [65251] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2057), 4, + ACTIONS(2343), 3, anon_sym_in, anon_sym_being, anon_sym_do, - anon_sym_COLON, - ACTIONS(2055), 37, + ACTIONS(2341), 35, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_DOT, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COLON_COLON, anon_sym_across, anon_sym_using, aux_sym_for_clause_word_token1, @@ -57884,18 +55861,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [68517] = 5, + [65297] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2593), 1, - anon_sym_DOT, - STATE(590), 1, - aux_sym_dotted_sym_lit_repeat1, - ACTIONS(2039), 3, + ACTIONS(2605), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(2037), 35, + ACTIONS(2603), 35, sym__ws, sym_comment, anon_sym_POUND_, @@ -57931,39 +55904,30 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [68569] = 10, + [65343] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(196), 1, - anon_sym_lambda, - ACTIONS(2597), 1, - anon_sym_DOT, - ACTIONS(2601), 1, - anon_sym_loop, - ACTIONS(2603), 1, - anon_sym_cl_COLONloop, - STATE(50), 1, - sym_defun_header, - STATE(265), 1, - sym_defun_keyword, - ACTIONS(194), 4, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - ACTIONS(2599), 7, + ACTIONS(2023), 13, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - anon_sym_COLON, - ACTIONS(2595), 23, + anon_sym_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(2021), 25, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_DOT, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -57972,7 +55936,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -57980,21 +55943,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_COMMA_AT, + anon_sym_cl_COLONloop, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [68631] = 5, + [65389] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2605), 1, - anon_sym_DOT, - STATE(590), 1, - aux_sym_dotted_sym_lit_repeat1, - ACTIONS(2035), 3, + ACTIONS(2004), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(2030), 35, + ACTIONS(2002), 35, sym__ws, sym_comment, anon_sym_POUND_, @@ -58030,86 +55990,73 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [68683] = 5, + [65435] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2593), 1, - anon_sym_DOT, - STATE(588), 1, - aux_sym_dotted_sym_lit_repeat1, - ACTIONS(2043), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(2041), 35, + ACTIONS(2267), 13, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(2265), 25, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_DOT, + sym_num_lit, + anon_sym_COLON_COLON, + aux_sym_str_lit_token1, + sym_char_lit, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_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, - anon_sym_EQ, - sym_accumulation_verb, - anon_sym_for, - anon_sym_and, - anon_sym_as, - anon_sym_with, - anon_sym_while, - 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, - [68735] = 10, + 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, + anon_sym_cl_COLONloop, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + [65481] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(196), 1, - anon_sym_lambda, - ACTIONS(2597), 1, - anon_sym_DOT, - ACTIONS(2608), 1, - anon_sym_loop, - ACTIONS(2610), 1, - anon_sym_cl_COLONloop, - STATE(46), 1, - sym_defun_header, - STATE(265), 1, - sym_defun_keyword, - ACTIONS(194), 4, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - ACTIONS(2599), 7, + ACTIONS(2259), 13, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - anon_sym_COLON, - ACTIONS(2595), 23, + anon_sym_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(2257), 25, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_DOT, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -58118,7 +56065,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -58126,42 +56072,34 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_COMMA_AT, + anon_sym_cl_COLONloop, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [68797] = 10, + [65527] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(196), 1, - anon_sym_lambda, - ACTIONS(2597), 1, - anon_sym_DOT, - ACTIONS(2612), 1, - anon_sym_loop, - ACTIONS(2614), 1, - anon_sym_cl_COLONloop, - STATE(12), 1, - sym_defun_header, - STATE(265), 1, - sym_defun_keyword, - ACTIONS(194), 4, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - ACTIONS(2599), 7, + ACTIONS(2255), 13, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - anon_sym_COLON, - ACTIONS(2595), 23, + anon_sym_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(2253), 25, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_DOT, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -58170,7 +56108,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -58178,42 +56115,77 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_COMMA_AT, + anon_sym_cl_COLONloop, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [68859] = 10, + [65573] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(196), 1, - anon_sym_lambda, - ACTIONS(2597), 1, - anon_sym_DOT, - ACTIONS(2616), 1, + ACTIONS(2243), 13, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, anon_sym_loop, - ACTIONS(2618), 1, - anon_sym_cl_COLONloop, - STATE(19), 1, - sym_defun_header, - STATE(265), 1, - sym_defun_keyword, - ACTIONS(194), 4, anon_sym_defun, anon_sym_defmacro, anon_sym_defgeneric, anon_sym_defmethod, - ACTIONS(2599), 7, + anon_sym_lambda, + ACTIONS(2241), 25, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_DOT, + sym_num_lit, + anon_sym_COLON_COLON, + aux_sym_str_lit_token1, + sym_char_lit, + 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, + anon_sym_POUND_POUND, + anon_sym_POUND_EQ, + anon_sym_AT, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA_AT, + anon_sym_cl_COLONloop, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + [65619] = 3, + ACTIONS(3), 1, + sym_block_comment, + ACTIONS(2239), 13, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - anon_sym_COLON, - ACTIONS(2595), 23, + anon_sym_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(2237), 25, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_DOT, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -58222,7 +56194,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -58230,42 +56201,77 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_COMMA_AT, + anon_sym_cl_COLONloop, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [68921] = 10, + [65665] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(196), 1, - anon_sym_lambda, - ACTIONS(2597), 1, - anon_sym_DOT, - ACTIONS(2620), 1, + ACTIONS(2191), 13, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, anon_sym_loop, - ACTIONS(2622), 1, - anon_sym_cl_COLONloop, - STATE(64), 1, - sym_defun_header, - STATE(265), 1, - sym_defun_keyword, - ACTIONS(194), 4, anon_sym_defun, anon_sym_defmacro, anon_sym_defgeneric, anon_sym_defmethod, - ACTIONS(2599), 7, + anon_sym_lambda, + ACTIONS(2189), 25, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_DOT, + sym_num_lit, + anon_sym_COLON_COLON, + aux_sym_str_lit_token1, + sym_char_lit, + 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, + anon_sym_POUND_POUND, + anon_sym_POUND_EQ, + anon_sym_AT, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA_AT, + anon_sym_cl_COLONloop, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + [65711] = 3, + ACTIONS(3), 1, + sym_block_comment, + ACTIONS(2187), 13, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - anon_sym_COLON, - ACTIONS(2595), 23, + anon_sym_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(2185), 25, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_DOT, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -58274,7 +56280,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -58282,89 +56287,120 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_COMMA_AT, + anon_sym_cl_COLONloop, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [68983] = 5, + [65757] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2593), 1, - anon_sym_DOT, - STATE(588), 1, - aux_sym_dotted_sym_lit_repeat1, - ACTIONS(2028), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(2024), 35, + ACTIONS(2179), 13, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(2177), 25, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_DOT, + sym_num_lit, + anon_sym_COLON_COLON, + aux_sym_str_lit_token1, + sym_char_lit, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_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, - anon_sym_EQ, - sym_accumulation_verb, - anon_sym_for, - anon_sym_and, - anon_sym_as, - anon_sym_with, - anon_sym_while, - 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, - [69035] = 10, + 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, + anon_sym_cl_COLONloop, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + [65803] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(196), 1, - anon_sym_lambda, - ACTIONS(2597), 1, - anon_sym_DOT, - ACTIONS(2624), 1, + ACTIONS(2175), 13, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, anon_sym_loop, - ACTIONS(2626), 1, - anon_sym_cl_COLONloop, - STATE(26), 1, - sym_defun_header, - STATE(265), 1, - sym_defun_keyword, - ACTIONS(194), 4, anon_sym_defun, anon_sym_defmacro, anon_sym_defgeneric, anon_sym_defmethod, - ACTIONS(2599), 7, + anon_sym_lambda, + ACTIONS(2173), 25, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_DOT, + sym_num_lit, + anon_sym_COLON_COLON, + aux_sym_str_lit_token1, + sym_char_lit, + 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, + anon_sym_POUND_POUND, + anon_sym_POUND_EQ, + anon_sym_AT, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA_AT, + anon_sym_cl_COLONloop, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + [65849] = 3, + ACTIONS(3), 1, + sym_block_comment, + ACTIONS(2155), 13, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - anon_sym_COLON, - ACTIONS(2595), 23, + anon_sym_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(2153), 25, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_DOT, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -58373,7 +56409,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -58381,42 +56416,77 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_COMMA_AT, + anon_sym_cl_COLONloop, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [69097] = 10, + [65895] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(196), 1, - anon_sym_lambda, - ACTIONS(2597), 1, - anon_sym_DOT, - ACTIONS(2628), 1, + ACTIONS(2151), 13, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, anon_sym_loop, - ACTIONS(2630), 1, - anon_sym_cl_COLONloop, - STATE(42), 1, - sym_defun_header, - STATE(265), 1, - sym_defun_keyword, - ACTIONS(194), 4, anon_sym_defun, anon_sym_defmacro, anon_sym_defgeneric, anon_sym_defmethod, - ACTIONS(2599), 7, + anon_sym_lambda, + ACTIONS(2149), 25, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_DOT, + sym_num_lit, + anon_sym_COLON_COLON, + aux_sym_str_lit_token1, + sym_char_lit, + 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, + anon_sym_POUND_POUND, + anon_sym_POUND_EQ, + anon_sym_AT, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA_AT, + anon_sym_cl_COLONloop, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + [65941] = 3, + ACTIONS(3), 1, + sym_block_comment, + ACTIONS(2143), 13, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - anon_sym_COLON, - ACTIONS(2595), 23, + anon_sym_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(2141), 25, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_DOT, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -58425,7 +56495,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -58433,21 +56502,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_COMMA_AT, + anon_sym_cl_COLONloop, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [69159] = 7, + [65987] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2047), 1, - anon_sym_DOT, - ACTIONS(2632), 1, - anon_sym_COLON_COLON, - ACTIONS(2634), 1, + ACTIONS(2135), 13, anon_sym_COLON, - STATE(816), 1, - aux_sym_dotted_sym_lit_repeat1, - ACTIONS(2049), 12, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, @@ -58460,11 +56523,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(2045), 23, + ACTIONS(2133), 25, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_DOT, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -58484,58 +56549,54 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [69214] = 3, + [66033] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2035), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(2030), 36, + ACTIONS(2131), 13, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(2129), 25, sym__ws, sym_comment, anon_sym_POUND_, anon_sym_DOT, + sym_num_lit, + anon_sym_COLON_COLON, + aux_sym_str_lit_token1, + sym_char_lit, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_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, - anon_sym_EQ, - sym_accumulation_verb, - anon_sym_for, - anon_sym_and, - anon_sym_as, - anon_sym_with, - anon_sym_while, - 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, - [69261] = 5, + 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, + anon_sym_cl_COLONloop, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + [66079] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2636), 1, - anon_sym_DOT, - STATE(602), 1, - aux_sym_dotted_sym_lit_repeat1, - ACTIONS(2028), 13, + ACTIONS(2123), 13, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, @@ -58548,12 +56609,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - anon_sym_COLON, - ACTIONS(2024), 24, + ACTIONS(2121), 25, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_DOT, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -58562,7 +56624,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -58574,12 +56635,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [69312] = 4, + [66125] = 3, ACTIONS(3), 1, sym_block_comment, - STATE(604), 1, - aux_sym_dotted_sym_lit_repeat1, - ACTIONS(2039), 13, + ACTIONS(2119), 13, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, @@ -58592,13 +56652,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - anon_sym_COLON, - ACTIONS(2037), 25, + ACTIONS(2117), 25, sym__ws, sym_comment, anon_sym_POUND_, anon_sym_DOT, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -58607,7 +56667,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -58619,14 +56678,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [69361] = 5, + [66171] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2636), 1, - anon_sym_DOT, - STATE(602), 1, - aux_sym_dotted_sym_lit_repeat1, - ACTIONS(2043), 13, + ACTIONS(2111), 13, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, @@ -58639,12 +56695,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - anon_sym_COLON, - ACTIONS(2041), 24, + ACTIONS(2109), 25, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_DOT, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -58653,7 +56710,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -58665,14 +56721,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [69412] = 5, + [66217] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2638), 1, - anon_sym_DOT, - STATE(604), 1, - aux_sym_dotted_sym_lit_repeat1, - ACTIONS(2035), 13, + ACTIONS(2099), 13, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, @@ -58685,12 +56738,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - anon_sym_COLON, - ACTIONS(2030), 24, + ACTIONS(2097), 25, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_DOT, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -58699,7 +56753,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -58711,53 +56764,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [69463] = 3, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(2233), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(2231), 35, - sym__ws, - sym_comment, - anon_sym_POUND_, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_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, - anon_sym_EQ, - sym_accumulation_verb, - anon_sym_for, - anon_sym_and, - anon_sym_as, - anon_sym_with, - anon_sym_while, - 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, - [69509] = 3, + [66263] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2113), 13, + ACTIONS(2091), 13, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, @@ -58770,13 +56781,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - anon_sym_COLON, - ACTIONS(2111), 25, + ACTIONS(2089), 25, sym__ws, sym_comment, anon_sym_POUND_, anon_sym_DOT, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -58785,7 +56796,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -58797,10 +56807,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [69555] = 3, + [66309] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2085), 13, + ACTIONS(2087), 13, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, @@ -58813,13 +56824,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - anon_sym_COLON, - ACTIONS(2083), 25, + ACTIONS(2085), 25, sym__ws, sym_comment, anon_sym_POUND_, anon_sym_DOT, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -58828,7 +56839,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -58840,10 +56850,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [69601] = 3, + [66355] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2081), 13, + ACTIONS(2015), 13, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, @@ -58856,13 +56867,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - anon_sym_COLON, - ACTIONS(2079), 25, + ACTIONS(2010), 25, sym__ws, sym_comment, anon_sym_POUND_, anon_sym_DOT, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -58871,7 +56882,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -58883,10 +56893,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [69647] = 3, + [66401] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2077), 13, + ACTIONS(2004), 13, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, @@ -58899,13 +56910,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - anon_sym_COLON, - ACTIONS(2075), 25, + ACTIONS(2002), 25, sym__ws, sym_comment, anon_sym_POUND_, anon_sym_DOT, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -58914,7 +56925,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -58926,10 +56936,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [69693] = 3, + [66447] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2309), 13, + ACTIONS(2343), 13, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, @@ -58942,13 +56953,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - anon_sym_COLON, - ACTIONS(2307), 25, + ACTIONS(2341), 25, sym__ws, sym_comment, anon_sym_POUND_, anon_sym_DOT, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -58957,7 +56968,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -58969,10 +56979,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [69739] = 3, + [66493] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2321), 13, + ACTIONS(2307), 13, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, @@ -58985,13 +56996,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - anon_sym_COLON, - ACTIONS(2319), 25, + ACTIONS(2305), 25, sym__ws, sym_comment, anon_sym_POUND_, anon_sym_DOT, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -59000,7 +57011,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -59012,10 +57022,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [69785] = 3, + [66539] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2035), 13, + ACTIONS(2287), 13, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, @@ -59028,13 +57039,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - anon_sym_COLON, - ACTIONS(2030), 25, + ACTIONS(2285), 25, sym__ws, sym_comment, anon_sym_POUND_, anon_sym_DOT, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -59043,7 +57054,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -59055,10 +57065,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [69831] = 3, + [66585] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2043), 13, + ACTIONS(2027), 13, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, @@ -59071,13 +57082,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - anon_sym_COLON, - ACTIONS(2041), 25, + ACTIONS(2025), 25, sym__ws, sym_comment, anon_sym_POUND_, anon_sym_DOT, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -59086,7 +57097,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -59098,10 +57108,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [69877] = 3, + [66631] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2349), 13, + ACTIONS(2027), 13, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, @@ -59114,13 +57125,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - anon_sym_COLON, - ACTIONS(2347), 25, + ACTIONS(2025), 25, sym__ws, sym_comment, anon_sym_POUND_, anon_sym_DOT, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -59129,7 +57140,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -59141,10 +57151,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [69923] = 3, + [66677] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2401), 13, + ACTIONS(2027), 13, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, @@ -59157,13 +57168,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - anon_sym_COLON, - ACTIONS(2399), 25, + ACTIONS(2025), 25, sym__ws, sym_comment, anon_sym_POUND_, anon_sym_DOT, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -59172,7 +57183,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -59184,10 +57194,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [69969] = 3, + [66723] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2413), 13, + ACTIONS(2335), 13, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, @@ -59200,13 +57211,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - anon_sym_COLON, - ACTIONS(2411), 25, + ACTIONS(2333), 25, sym__ws, sym_comment, anon_sym_POUND_, anon_sym_DOT, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -59215,7 +57226,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -59227,10 +57237,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [70015] = 3, + [66769] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2409), 13, + ACTIONS(2283), 13, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, @@ -59243,13 +57254,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - anon_sym_COLON, - ACTIONS(2407), 25, + ACTIONS(2281), 25, sym__ws, sym_comment, anon_sym_POUND_, anon_sym_DOT, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -59258,7 +57269,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -59270,10 +57280,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [70061] = 3, + [66815] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2409), 13, + ACTIONS(2271), 13, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, @@ -59286,13 +57297,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - anon_sym_COLON, - ACTIONS(2407), 25, + ACTIONS(2269), 25, sym__ws, sym_comment, anon_sym_POUND_, anon_sym_DOT, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -59301,7 +57312,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -59313,10 +57323,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [70107] = 3, + [66861] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2409), 13, + ACTIONS(2251), 13, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, @@ -59329,13 +57340,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - anon_sym_COLON, - ACTIONS(2407), 25, + ACTIONS(2249), 25, sym__ws, sym_comment, anon_sym_POUND_, anon_sym_DOT, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -59344,7 +57355,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -59356,53 +57366,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [70153] = 3, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(2201), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(2199), 35, - sym__ws, - sym_comment, - anon_sym_POUND_, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_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, - anon_sym_EQ, - sym_accumulation_verb, - anon_sym_for, - anon_sym_and, - anon_sym_as, - anon_sym_with, - anon_sym_while, - 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, - [70199] = 3, + [66907] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2405), 13, + ACTIONS(2247), 13, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, @@ -59415,13 +57383,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - anon_sym_COLON, - ACTIONS(2403), 25, + ACTIONS(2245), 25, sym__ws, sym_comment, anon_sym_POUND_, anon_sym_DOT, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -59430,7 +57398,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -59442,53 +57409,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [70245] = 3, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(2333), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(2331), 35, - sym__ws, - sym_comment, - anon_sym_POUND_, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_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, - anon_sym_EQ, - sym_accumulation_verb, - anon_sym_for, - anon_sym_and, - anon_sym_as, - anon_sym_with, - anon_sym_while, - 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, - [70291] = 3, + [66953] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2381), 13, + ACTIONS(2235), 13, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, @@ -59501,13 +57426,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - anon_sym_COLON, - ACTIONS(2379), 25, + ACTIONS(2233), 25, sym__ws, sym_comment, anon_sym_POUND_, anon_sym_DOT, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -59516,7 +57441,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -59528,10 +57452,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [70337] = 3, + [66999] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2369), 13, + ACTIONS(2231), 13, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, @@ -59544,13 +57469,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - anon_sym_COLON, - ACTIONS(2367), 25, + ACTIONS(2229), 25, sym__ws, sym_comment, anon_sym_POUND_, anon_sym_DOT, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -59559,7 +57484,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -59571,53 +57495,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [70383] = 3, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(2353), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(2351), 35, - sym__ws, - sym_comment, - anon_sym_POUND_, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_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, - anon_sym_EQ, - sym_accumulation_verb, - anon_sym_for, - anon_sym_and, - anon_sym_as, - anon_sym_with, - anon_sym_while, - 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, - [70429] = 3, + [67045] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2265), 13, + ACTIONS(2227), 13, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, @@ -59630,13 +57512,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - anon_sym_COLON, - ACTIONS(2263), 25, + ACTIONS(2225), 25, sym__ws, sym_comment, anon_sym_POUND_, anon_sym_DOT, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -59645,7 +57527,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -59657,10 +57538,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [70475] = 3, + [67091] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2417), 13, + ACTIONS(2223), 13, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, @@ -59673,13 +57555,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - anon_sym_COLON, - ACTIONS(2415), 25, + ACTIONS(2221), 25, sym__ws, sym_comment, anon_sym_POUND_, anon_sym_DOT, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -59688,7 +57570,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -59700,10 +57581,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [70521] = 3, + [67137] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2189), 13, + ACTIONS(2219), 13, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, @@ -59716,13 +57598,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - anon_sym_COLON, - ACTIONS(2187), 25, + ACTIONS(2217), 25, sym__ws, sym_comment, anon_sym_POUND_, anon_sym_DOT, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -59731,7 +57613,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -59743,10 +57624,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [70567] = 3, + [67183] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2249), 13, + ACTIONS(2215), 13, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, @@ -59759,13 +57641,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - anon_sym_COLON, - ACTIONS(2247), 25, + ACTIONS(2213), 25, sym__ws, sym_comment, anon_sym_POUND_, anon_sym_DOT, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -59774,7 +57656,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -59786,10 +57667,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [70613] = 3, + [67229] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2257), 13, + ACTIONS(2211), 13, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, @@ -59802,13 +57684,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - anon_sym_COLON, - ACTIONS(2255), 25, + ACTIONS(2209), 25, sym__ws, sym_comment, anon_sym_POUND_, anon_sym_DOT, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -59817,7 +57699,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -59829,10 +57710,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [70659] = 3, + [67275] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2329), 13, + ACTIONS(2207), 13, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, @@ -59845,13 +57727,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - anon_sym_COLON, - ACTIONS(2327), 25, + ACTIONS(2205), 25, sym__ws, sym_comment, anon_sym_POUND_, anon_sym_DOT, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -59860,7 +57742,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -59872,53 +57753,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [70705] = 3, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(2325), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(2323), 35, - sym__ws, - sym_comment, - anon_sym_POUND_, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_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, - anon_sym_EQ, - sym_accumulation_verb, - anon_sym_for, - anon_sym_and, - anon_sym_as, - anon_sym_with, - anon_sym_while, - 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, - [70751] = 3, + [67321] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2345), 13, + ACTIONS(2207), 13, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, @@ -59931,13 +57770,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - anon_sym_COLON, - ACTIONS(2343), 25, + ACTIONS(2205), 25, sym__ws, sym_comment, anon_sym_POUND_, anon_sym_DOT, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -59946,7 +57785,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -59958,10 +57796,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [70797] = 3, + [67367] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2341), 13, + ACTIONS(2207), 13, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, @@ -59974,13 +57813,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - anon_sym_COLON, - ACTIONS(2339), 25, + ACTIONS(2205), 25, sym__ws, sym_comment, anon_sym_POUND_, anon_sym_DOT, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -59989,7 +57828,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -60001,10 +57839,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [70843] = 3, + [67413] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2337), 13, + ACTIONS(2203), 13, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, @@ -60017,13 +57856,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - anon_sym_COLON, - ACTIONS(2335), 25, + ACTIONS(2201), 25, sym__ws, sym_comment, anon_sym_POUND_, anon_sym_DOT, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -60032,7 +57871,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -60044,10 +57882,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [70889] = 3, + [67459] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2073), 13, + ACTIONS(2199), 13, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, @@ -60060,13 +57899,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - anon_sym_COLON, - ACTIONS(2071), 25, + ACTIONS(2197), 25, sym__ws, sym_comment, anon_sym_POUND_, anon_sym_DOT, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -60075,7 +57914,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -60087,10 +57925,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [70935] = 3, + [67505] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2073), 13, + ACTIONS(2195), 13, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, @@ -60103,13 +57942,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - anon_sym_COLON, - ACTIONS(2071), 25, + ACTIONS(2193), 25, sym__ws, sym_comment, anon_sym_POUND_, anon_sym_DOT, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -60118,7 +57957,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -60130,10 +57968,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [70981] = 3, + [67551] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2073), 13, + ACTIONS(2183), 13, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, @@ -60146,13 +57985,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - anon_sym_COLON, - ACTIONS(2071), 25, + ACTIONS(2181), 25, sym__ws, sym_comment, anon_sym_POUND_, anon_sym_DOT, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -60161,7 +58000,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -60173,10 +58011,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [71027] = 3, + [67597] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2101), 13, + ACTIONS(2183), 13, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, @@ -60189,13 +58028,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - anon_sym_COLON, - ACTIONS(2099), 25, + ACTIONS(2181), 25, sym__ws, sym_comment, anon_sym_POUND_, anon_sym_DOT, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -60204,7 +58043,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -60216,10 +58054,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [71073] = 3, + [67643] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2109), 13, + ACTIONS(2171), 13, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, @@ -60232,13 +58071,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - anon_sym_COLON, - ACTIONS(2107), 25, + ACTIONS(2169), 25, sym__ws, sym_comment, anon_sym_POUND_, anon_sym_DOT, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -60247,7 +58086,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -60259,53 +58097,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [71119] = 3, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(2313), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(2311), 35, - sym__ws, - sym_comment, - anon_sym_POUND_, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_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, - anon_sym_EQ, - sym_accumulation_verb, - anon_sym_for, - anon_sym_and, - anon_sym_as, - anon_sym_with, - anon_sym_while, - 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, - [71165] = 3, + [67689] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2117), 13, + ACTIONS(2167), 13, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, @@ -60318,13 +58114,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - anon_sym_COLON, - ACTIONS(2115), 25, + ACTIONS(2165), 25, sym__ws, sym_comment, anon_sym_POUND_, anon_sym_DOT, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -60333,7 +58129,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -60345,10 +58140,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [71211] = 3, + [67735] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2117), 13, + ACTIONS(2163), 13, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, @@ -60361,13 +58157,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - anon_sym_COLON, - ACTIONS(2115), 25, + ACTIONS(2161), 25, sym__ws, sym_comment, anon_sym_POUND_, anon_sym_DOT, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -60376,7 +58172,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -60388,53 +58183,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [71257] = 3, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(2643), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(2641), 35, - sym__ws, - sym_comment, - anon_sym_POUND_, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_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, - anon_sym_EQ, - sym_accumulation_verb, - anon_sym_for, - anon_sym_and, - anon_sym_as, - anon_sym_with, - anon_sym_while, - 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, - [71303] = 3, + [67781] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2165), 13, + ACTIONS(2147), 13, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, @@ -60447,13 +58200,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - anon_sym_COLON, - ACTIONS(2163), 25, + ACTIONS(2145), 25, sym__ws, sym_comment, anon_sym_POUND_, anon_sym_DOT, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -60462,7 +58215,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -60474,10 +58226,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [71349] = 3, + [67827] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2169), 13, + ACTIONS(2139), 13, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, @@ -60490,13 +58243,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - anon_sym_COLON, - ACTIONS(2167), 25, + ACTIONS(2137), 25, sym__ws, sym_comment, anon_sym_POUND_, anon_sym_DOT, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -60505,7 +58258,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -60517,10 +58269,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [71395] = 3, + [67873] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2173), 13, + ACTIONS(2115), 13, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, @@ -60533,13 +58286,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - anon_sym_COLON, - ACTIONS(2171), 25, + ACTIONS(2113), 25, sym__ws, sym_comment, anon_sym_POUND_, anon_sym_DOT, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -60548,7 +58301,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -60560,10 +58312,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [71441] = 3, + [67919] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2177), 13, + ACTIONS(2139), 13, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, @@ -60576,13 +58329,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - anon_sym_COLON, - ACTIONS(2175), 25, + ACTIONS(2137), 25, sym__ws, sym_comment, anon_sym_POUND_, anon_sym_DOT, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -60591,7 +58344,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -60603,10 +58355,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [71487] = 3, + [67965] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2181), 13, + ACTIONS(2115), 13, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, @@ -60619,13 +58372,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - anon_sym_COLON, - ACTIONS(2179), 25, + ACTIONS(2113), 25, sym__ws, sym_comment, anon_sym_POUND_, anon_sym_DOT, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -60634,7 +58387,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -60646,10 +58398,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [71533] = 3, + [68011] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2185), 13, + ACTIONS(2031), 13, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, @@ -60662,13 +58415,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - anon_sym_COLON, - ACTIONS(2183), 25, + ACTIONS(2029), 25, sym__ws, sym_comment, anon_sym_POUND_, anon_sym_DOT, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -60677,7 +58430,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -60689,53 +58441,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [71579] = 3, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(2301), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(2299), 35, - sym__ws, - sym_comment, - anon_sym_POUND_, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_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, - anon_sym_EQ, - sym_accumulation_verb, - anon_sym_for, - anon_sym_and, - anon_sym_as, - anon_sym_with, - anon_sym_while, - 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, - [71625] = 3, + [68057] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2181), 13, + ACTIONS(2107), 13, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, @@ -60748,13 +58458,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - anon_sym_COLON, - ACTIONS(2179), 25, + ACTIONS(2105), 25, sym__ws, sym_comment, anon_sym_POUND_, anon_sym_DOT, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -60763,7 +58473,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -60775,10 +58484,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [71671] = 3, + [68103] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2185), 13, + ACTIONS(2103), 13, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, @@ -60791,13 +58501,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - anon_sym_COLON, - ACTIONS(2183), 25, + ACTIONS(2101), 25, sym__ws, sym_comment, anon_sym_POUND_, anon_sym_DOT, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -60806,7 +58516,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -60818,53 +58527,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [71717] = 3, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(2297), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(2295), 35, - sym__ws, - sym_comment, - anon_sym_POUND_, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_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, - anon_sym_EQ, - sym_accumulation_verb, - anon_sym_for, - anon_sym_and, - anon_sym_as, - anon_sym_with, - anon_sym_while, - 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, - [71763] = 3, + [68149] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2205), 13, + ACTIONS(2095), 13, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, @@ -60877,13 +58544,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - anon_sym_COLON, - ACTIONS(2203), 25, + ACTIONS(2093), 25, sym__ws, sym_comment, anon_sym_POUND_, anon_sym_DOT, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -60892,7 +58559,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -60904,10 +58570,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [71809] = 3, + [68195] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2213), 13, + ACTIONS(2079), 13, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, @@ -60920,13 +58587,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - anon_sym_COLON, - ACTIONS(2211), 25, + ACTIONS(2077), 25, sym__ws, sym_comment, anon_sym_POUND_, anon_sym_DOT, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -60935,7 +58602,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -60947,10 +58613,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [71855] = 3, + [68241] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2217), 13, + ACTIONS(2079), 13, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, @@ -60963,13 +58630,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - anon_sym_COLON, - ACTIONS(2215), 25, + ACTIONS(2077), 25, sym__ws, sym_comment, anon_sym_POUND_, anon_sym_DOT, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -60978,7 +58645,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -60990,10 +58656,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [71901] = 3, + [68287] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2229), 13, + ACTIONS(2075), 13, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, @@ -61006,13 +58673,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - anon_sym_COLON, - ACTIONS(2227), 25, + ACTIONS(2073), 25, sym__ws, sym_comment, anon_sym_POUND_, anon_sym_DOT, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -61021,7 +58688,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -61033,10 +58699,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [71947] = 3, + [68333] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2229), 13, + ACTIONS(2071), 13, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, @@ -61049,13 +58716,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - anon_sym_COLON, - ACTIONS(2227), 25, + ACTIONS(2069), 25, sym__ws, sym_comment, anon_sym_POUND_, anon_sym_DOT, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -61064,7 +58731,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -61076,10 +58742,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [71993] = 3, + [68379] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2237), 13, + ACTIONS(2067), 13, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, @@ -61092,13 +58759,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - anon_sym_COLON, - ACTIONS(2235), 25, + ACTIONS(2065), 25, sym__ws, sym_comment, anon_sym_POUND_, anon_sym_DOT, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -61107,7 +58774,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -61119,10 +58785,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [72039] = 3, + [68425] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2065), 13, + ACTIONS(2063), 13, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, @@ -61135,13 +58802,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - anon_sym_COLON, - ACTIONS(2063), 25, + ACTIONS(2061), 25, sym__ws, sym_comment, anon_sym_POUND_, anon_sym_DOT, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -61150,7 +58817,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -61162,10 +58828,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [72085] = 3, + [68471] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2285), 13, + ACTIONS(2059), 13, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, @@ -61178,13 +58845,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - anon_sym_COLON, - ACTIONS(2283), 25, + ACTIONS(2057), 25, sym__ws, sym_comment, anon_sym_POUND_, anon_sym_DOT, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -61193,7 +58860,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -61205,10 +58871,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [72131] = 3, + [68517] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2305), 13, + ACTIONS(2055), 13, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, @@ -61221,13 +58888,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - anon_sym_COLON, - ACTIONS(2303), 25, + ACTIONS(2053), 25, sym__ws, sym_comment, anon_sym_POUND_, anon_sym_DOT, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -61236,7 +58903,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -61248,10 +58914,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [72177] = 3, + [68563] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2069), 13, + ACTIONS(2051), 13, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, @@ -61264,13 +58931,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - anon_sym_COLON, - ACTIONS(2067), 25, + ACTIONS(2049), 25, sym__ws, sym_comment, anon_sym_POUND_, anon_sym_DOT, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -61279,7 +58946,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -61291,10 +58957,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [72223] = 3, + [68609] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2313), 13, + ACTIONS(2047), 13, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, @@ -61307,13 +58974,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - anon_sym_COLON, - ACTIONS(2311), 25, + ACTIONS(2045), 25, sym__ws, sym_comment, anon_sym_POUND_, anon_sym_DOT, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -61322,7 +58989,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -61334,10 +59000,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [72269] = 3, + [68655] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2317), 13, + ACTIONS(2047), 13, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, @@ -61350,13 +59017,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - anon_sym_COLON, - ACTIONS(2315), 25, + ACTIONS(2045), 25, sym__ws, sym_comment, anon_sym_POUND_, anon_sym_DOT, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -61365,7 +59032,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -61377,10 +59043,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [72315] = 3, + [68701] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2325), 13, + ACTIONS(2043), 13, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, @@ -61393,13 +59060,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - anon_sym_COLON, - ACTIONS(2323), 25, + ACTIONS(2041), 25, sym__ws, sym_comment, anon_sym_POUND_, anon_sym_DOT, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -61408,7 +59075,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -61420,10 +59086,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [72361] = 3, + [68747] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2325), 13, + ACTIONS(2039), 13, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, @@ -61436,13 +59103,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - anon_sym_COLON, - ACTIONS(2323), 25, + ACTIONS(2037), 25, sym__ws, sym_comment, anon_sym_POUND_, anon_sym_DOT, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -61451,7 +59118,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -61463,10 +59129,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [72407] = 3, + [68793] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2333), 13, + ACTIONS(2035), 13, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, @@ -61479,13 +59146,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - anon_sym_COLON, - ACTIONS(2331), 25, + ACTIONS(2033), 25, sym__ws, sym_comment, anon_sym_POUND_, anon_sym_DOT, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -61494,7 +59161,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -61506,53 +59172,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [72453] = 3, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(2305), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(2303), 35, - sym__ws, - sym_comment, - anon_sym_POUND_, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_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, - anon_sym_EQ, - sym_accumulation_verb, - anon_sym_for, - anon_sym_and, - anon_sym_as, - anon_sym_with, - anon_sym_while, - 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, - [72499] = 3, + [68839] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2365), 13, + ACTIONS(2303), 13, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, @@ -61565,13 +59189,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - anon_sym_COLON, - ACTIONS(2363), 25, + ACTIONS(2301), 25, sym__ws, sym_comment, anon_sym_POUND_, anon_sym_DOT, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -61580,7 +59204,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -61592,10 +59215,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [72545] = 3, + [68885] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2385), 13, + ACTIONS(2279), 13, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, @@ -61608,13 +59232,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - anon_sym_COLON, - ACTIONS(2383), 25, + ACTIONS(2277), 25, sym__ws, sym_comment, anon_sym_POUND_, anon_sym_DOT, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -61623,7 +59247,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -61635,10 +59258,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [72591] = 3, + [68931] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2397), 13, + ACTIONS(2355), 13, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, @@ -61651,13 +59275,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - anon_sym_COLON, - ACTIONS(2395), 25, + ACTIONS(2353), 25, sym__ws, sym_comment, anon_sym_POUND_, anon_sym_DOT, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -61666,7 +59290,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -61678,10 +59301,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [72637] = 3, + [68977] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2385), 13, + ACTIONS(2279), 13, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, @@ -61694,13 +59318,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - anon_sym_COLON, - ACTIONS(2383), 25, + ACTIONS(2277), 25, sym__ws, sym_comment, anon_sym_POUND_, anon_sym_DOT, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -61709,7 +59333,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -61721,10 +59344,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [72683] = 3, + [69023] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2397), 13, + ACTIONS(2355), 13, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, @@ -61737,13 +59361,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - anon_sym_COLON, - ACTIONS(2395), 25, + ACTIONS(2353), 25, sym__ws, sym_comment, anon_sym_POUND_, anon_sym_DOT, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -61752,7 +59376,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -61764,10 +59387,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [72729] = 3, + [69069] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2393), 13, + ACTIONS(2363), 13, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, @@ -61780,13 +59404,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - anon_sym_COLON, - ACTIONS(2391), 25, + ACTIONS(2361), 25, sym__ws, sym_comment, anon_sym_POUND_, anon_sym_DOT, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -61795,7 +59419,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -61807,10 +59430,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [72775] = 3, + [69115] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2389), 13, + ACTIONS(2367), 13, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, @@ -61823,13 +59447,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - anon_sym_COLON, - ACTIONS(2387), 25, + ACTIONS(2365), 25, sym__ws, sym_comment, anon_sym_POUND_, anon_sym_DOT, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -61838,7 +59462,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -61850,10 +59473,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [72821] = 3, + [69161] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2377), 13, + ACTIONS(2347), 13, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, @@ -61866,13 +59490,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - anon_sym_COLON, - ACTIONS(2375), 25, + ACTIONS(2345), 25, sym__ws, sym_comment, anon_sym_POUND_, anon_sym_DOT, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -61881,7 +59505,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -61893,10 +59516,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [72867] = 3, + [69207] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2377), 13, + ACTIONS(2347), 13, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, @@ -61909,13 +59533,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - anon_sym_COLON, - ACTIONS(2375), 25, + ACTIONS(2345), 25, sym__ws, sym_comment, anon_sym_POUND_, anon_sym_DOT, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -61924,7 +59548,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -61936,10 +59559,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [72913] = 3, + [69253] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2373), 13, + ACTIONS(2127), 13, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, @@ -61952,13 +59576,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - anon_sym_COLON, - ACTIONS(2371), 25, + ACTIONS(2125), 25, sym__ws, sym_comment, anon_sym_POUND_, anon_sym_DOT, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -61967,7 +59591,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -61979,10 +59602,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [72959] = 3, + [69299] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2193), 13, + ACTIONS(2083), 13, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, @@ -61995,13 +59619,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - anon_sym_COLON, - ACTIONS(2191), 25, + ACTIONS(2081), 25, sym__ws, sym_comment, anon_sym_POUND_, anon_sym_DOT, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -62010,7 +59634,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -62022,10 +59645,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [73005] = 3, + [69345] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2201), 13, + ACTIONS(2263), 13, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, @@ -62038,13 +59662,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - anon_sym_COLON, - ACTIONS(2199), 25, + ACTIONS(2261), 25, sym__ws, sym_comment, anon_sym_POUND_, anon_sym_DOT, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -62053,7 +59677,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -62065,14 +59688,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [73051] = 3, + [69391] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2293), 3, + ACTIONS(2275), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(2291), 35, + ACTIONS(2273), 35, sym__ws, sym_comment, anon_sym_POUND_, @@ -62108,14 +59731,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [73097] = 3, + [69437] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2357), 3, + ACTIONS(2609), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(2355), 35, + ACTIONS(2607), 35, sym__ws, sym_comment, anon_sym_POUND_, @@ -62151,14 +59774,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [73143] = 3, + [69483] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2277), 3, + ACTIONS(2271), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(2275), 35, + ACTIONS(2269), 35, sym__ws, sym_comment, anon_sym_POUND_, @@ -62194,14 +59817,143 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [73189] = 3, + [69529] = 3, + ACTIONS(3), 1, + sym_block_comment, + ACTIONS(2299), 13, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(2297), 25, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_DOT, + sym_num_lit, + anon_sym_COLON_COLON, + aux_sym_str_lit_token1, + sym_char_lit, + 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, + anon_sym_POUND_POUND, + anon_sym_POUND_EQ, + anon_sym_AT, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA_AT, + anon_sym_cl_COLONloop, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + [69575] = 3, + ACTIONS(3), 1, + sym_block_comment, + ACTIONS(2295), 13, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(2293), 25, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_DOT, + sym_num_lit, + anon_sym_COLON_COLON, + aux_sym_str_lit_token1, + sym_char_lit, + 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, + anon_sym_POUND_POUND, + anon_sym_POUND_EQ, + anon_sym_AT, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA_AT, + anon_sym_cl_COLONloop, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + [69621] = 3, + ACTIONS(3), 1, + sym_block_comment, + ACTIONS(2291), 13, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(2289), 25, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_DOT, + sym_num_lit, + anon_sym_COLON_COLON, + aux_sym_str_lit_token1, + sym_char_lit, + 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, + anon_sym_POUND_POUND, + anon_sym_POUND_EQ, + anon_sym_AT, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA_AT, + anon_sym_cl_COLONloop, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + [69667] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2273), 3, + ACTIONS(2027), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(2271), 35, + ACTIONS(2025), 35, sym__ws, sym_comment, anon_sym_POUND_, @@ -62237,14 +59989,57 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [73235] = 3, + [69713] = 3, + ACTIONS(3), 1, + sym_block_comment, + ACTIONS(2019), 13, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(2017), 25, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_DOT, + sym_num_lit, + anon_sym_COLON_COLON, + aux_sym_str_lit_token1, + sym_char_lit, + 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, + anon_sym_POUND_POUND, + anon_sym_POUND_EQ, + anon_sym_AT, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA_AT, + anon_sym_cl_COLONloop, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + [69759] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2269), 3, + ACTIONS(2027), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(2267), 35, + ACTIONS(2025), 35, sym__ws, sym_comment, anon_sym_POUND_, @@ -62280,14 +60075,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [73281] = 3, + [69805] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2028), 3, + ACTIONS(2263), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(2024), 35, + ACTIONS(2261), 35, sym__ws, sym_comment, anon_sym_POUND_, @@ -62323,14 +60118,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [73327] = 3, + [69851] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2261), 3, + ACTIONS(2083), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(2259), 35, + ACTIONS(2081), 35, sym__ws, sym_comment, anon_sym_POUND_, @@ -62366,14 +60161,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [73373] = 3, + [69897] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2647), 3, + ACTIONS(2127), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(2645), 35, + ACTIONS(2125), 35, sym__ws, sym_comment, anon_sym_POUND_, @@ -62409,57 +60204,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [73419] = 3, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(2153), 13, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - anon_sym_COLON, - ACTIONS(2151), 25, - sym__ws, - sym_comment, - anon_sym_POUND_, - anon_sym_DOT, - sym_num_lit, - aux_sym_str_lit_token1, - sym_char_lit, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_POUND0A, - anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, - 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, - anon_sym_cl_COLONloop, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - [73465] = 3, + [69943] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2253), 3, + ACTIONS(2291), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(2251), 35, + ACTIONS(2289), 35, sym__ws, sym_comment, anon_sym_POUND_, @@ -62495,100 +60247,100 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [73511] = 3, + [69989] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2157), 13, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - anon_sym_COLON, - ACTIONS(2155), 25, + ACTIONS(2295), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(2293), 35, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_DOT, - sym_num_lit, - aux_sym_str_lit_token1, - sym_char_lit, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_POUND0A, - anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, - 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, - anon_sym_cl_COLONloop, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - [73557] = 3, + anon_sym_across, + anon_sym_using, + aux_sym_for_clause_word_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, + anon_sym_EQ, + sym_accumulation_verb, + anon_sym_for, + anon_sym_and, + anon_sym_as, + anon_sym_with, + anon_sym_while, + 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, + [70035] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2161), 13, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - anon_sym_COLON, - ACTIONS(2159), 25, + ACTIONS(2027), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(2025), 35, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_DOT, - sym_num_lit, - aux_sym_str_lit_token1, - sym_char_lit, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_POUND0A, - anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, - 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, - anon_sym_cl_COLONloop, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - [73603] = 3, + anon_sym_across, + anon_sym_using, + aux_sym_for_clause_word_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, + anon_sym_EQ, + sym_accumulation_verb, + anon_sym_for, + anon_sym_and, + anon_sym_as, + anon_sym_with, + anon_sym_while, + 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, + [70081] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2651), 3, + ACTIONS(2335), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(2649), 35, + ACTIONS(2333), 35, sym__ws, sym_comment, anon_sym_POUND_, @@ -62624,57 +60376,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [73649] = 3, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(2209), 13, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - anon_sym_COLON, - ACTIONS(2207), 25, - sym__ws, - sym_comment, - anon_sym_POUND_, - anon_sym_DOT, - sym_num_lit, - aux_sym_str_lit_token1, - sym_char_lit, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_POUND0A, - anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, - 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, - anon_sym_cl_COLONloop, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - [73695] = 3, + [70127] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2193), 3, + ACTIONS(2299), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(2191), 35, + ACTIONS(2297), 35, sym__ws, sym_comment, anon_sym_POUND_, @@ -62710,14 +60419,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [73741] = 3, + [70173] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2325), 3, + ACTIONS(2347), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(2323), 35, + ACTIONS(2345), 35, sym__ws, sym_comment, anon_sym_POUND_, @@ -62753,14 +60462,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [73787] = 3, + [70219] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2245), 3, + ACTIONS(2008), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(2243), 35, + ACTIONS(2006), 35, sym__ws, sym_comment, anon_sym_POUND_, @@ -62796,57 +60505,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [73833] = 3, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(2061), 13, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - anon_sym_COLON, - ACTIONS(2059), 25, - sym__ws, - sym_comment, - anon_sym_POUND_, - anon_sym_DOT, - sym_num_lit, - aux_sym_str_lit_token1, - sym_char_lit, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_POUND0A, - anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, - 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, - anon_sym_cl_COLONloop, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - [73879] = 3, + [70265] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2373), 3, + ACTIONS(2311), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(2371), 35, + ACTIONS(2309), 35, sym__ws, sym_comment, anon_sym_POUND_, @@ -62882,14 +60548,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [73925] = 3, + [70311] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2377), 3, + ACTIONS(2315), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(2375), 35, + ACTIONS(2313), 35, sym__ws, sym_comment, anon_sym_POUND_, @@ -62925,14 +60591,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [73971] = 3, + [70357] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2241), 3, + ACTIONS(2319), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(2239), 35, + ACTIONS(2317), 35, sym__ws, sym_comment, anon_sym_POUND_, @@ -62968,57 +60634,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [74017] = 3, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(2149), 13, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - anon_sym_COLON, - ACTIONS(2147), 25, - sym__ws, - sym_comment, - anon_sym_POUND_, - anon_sym_DOT, - sym_num_lit, - aux_sym_str_lit_token1, - sym_char_lit, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_POUND0A, - anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, - 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, - anon_sym_cl_COLONloop, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - [74063] = 3, + [70403] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2225), 3, + ACTIONS(2283), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(2223), 35, + ACTIONS(2281), 35, sym__ws, sym_comment, anon_sym_POUND_, @@ -63054,57 +60677,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [74109] = 3, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(2145), 13, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - anon_sym_COLON, - ACTIONS(2143), 25, - sym__ws, - sym_comment, - anon_sym_POUND_, - anon_sym_DOT, - sym_num_lit, - aux_sym_str_lit_token1, - sym_char_lit, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_POUND0A, - anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, - 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, - anon_sym_cl_COLONloop, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - [74155] = 3, + [70449] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2221), 3, + ACTIONS(2323), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(2219), 35, + ACTIONS(2321), 35, sym__ws, sym_comment, anon_sym_POUND_, @@ -63140,57 +60720,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [74201] = 3, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(2197), 13, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - anon_sym_COLON, - ACTIONS(2195), 25, - sym__ws, - sym_comment, - anon_sym_POUND_, - anon_sym_DOT, - sym_num_lit, - aux_sym_str_lit_token1, - sym_char_lit, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_POUND0A, - anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, - 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, - anon_sym_cl_COLONloop, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - [74247] = 3, + [70495] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2209), 3, + ACTIONS(2115), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(2207), 35, + ACTIONS(2113), 35, sym__ws, sym_comment, anon_sym_POUND_, @@ -63226,14 +60763,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [74293] = 3, + [70541] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2197), 3, + ACTIONS(2327), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(2195), 35, + ACTIONS(2325), 35, sym__ws, sym_comment, anon_sym_POUND_, @@ -63269,14 +60806,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [74339] = 3, + [70587] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2317), 3, + ACTIONS(2087), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(2315), 35, + ACTIONS(2085), 35, sym__ws, sym_comment, anon_sym_POUND_, @@ -63312,14 +60849,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [74385] = 3, + [70633] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2069), 3, + ACTIONS(2347), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(2067), 35, + ACTIONS(2345), 35, sym__ws, sym_comment, anon_sym_POUND_, @@ -63355,14 +60892,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [74431] = 3, + [70679] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2321), 3, + ACTIONS(2251), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(2319), 35, + ACTIONS(2249), 35, sym__ws, sym_comment, anon_sym_POUND_, @@ -63398,57 +60935,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [74477] = 3, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(2089), 13, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - anon_sym_COLON, - ACTIONS(2087), 25, - sym__ws, - sym_comment, - anon_sym_POUND_, - anon_sym_DOT, - sym_num_lit, - aux_sym_str_lit_token1, - sym_char_lit, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_POUND0A, - anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, - 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, - anon_sym_cl_COLONloop, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - [74523] = 3, + [70725] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2281), 3, + ACTIONS(2331), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(2279), 35, + ACTIONS(2329), 35, sym__ws, sym_comment, anon_sym_POUND_, @@ -63484,229 +60978,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [74569] = 3, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(2221), 13, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - anon_sym_COLON, - ACTIONS(2219), 25, - sym__ws, - sym_comment, - anon_sym_POUND_, - anon_sym_DOT, - sym_num_lit, - aux_sym_str_lit_token1, - sym_char_lit, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_POUND0A, - anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, - 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, - anon_sym_cl_COLONloop, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - [74615] = 3, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(2225), 13, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - anon_sym_COLON, - ACTIONS(2223), 25, - sym__ws, - sym_comment, - anon_sym_POUND_, - anon_sym_DOT, - sym_num_lit, - aux_sym_str_lit_token1, - sym_char_lit, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_POUND0A, - anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, - 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, - anon_sym_cl_COLONloop, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - [74661] = 3, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(2093), 13, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - anon_sym_COLON, - ACTIONS(2091), 25, - sym__ws, - sym_comment, - anon_sym_POUND_, - anon_sym_DOT, - sym_num_lit, - aux_sym_str_lit_token1, - sym_char_lit, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_POUND0A, - anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, - 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, - anon_sym_cl_COLONloop, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - [74707] = 3, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(2233), 13, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - anon_sym_COLON, - ACTIONS(2231), 25, - sym__ws, - sym_comment, - anon_sym_POUND_, - anon_sym_DOT, - sym_num_lit, - aux_sym_str_lit_token1, - sym_char_lit, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_POUND0A, - anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, - 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, - anon_sym_cl_COLONloop, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - [74753] = 3, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(2241), 13, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - anon_sym_COLON, - ACTIONS(2239), 25, - sym__ws, - sym_comment, - anon_sym_POUND_, - anon_sym_DOT, - sym_num_lit, - aux_sym_str_lit_token1, - sym_char_lit, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_POUND0A, - anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, - 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, - anon_sym_cl_COLONloop, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - [74799] = 3, + [70771] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2377), 3, + ACTIONS(2247), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(2375), 35, + ACTIONS(2245), 35, sym__ws, sym_comment, anon_sym_POUND_, @@ -63742,57 +61021,57 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [74845] = 3, + [70817] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2245), 13, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - anon_sym_COLON, - ACTIONS(2243), 25, + ACTIONS(2339), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(2337), 35, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_DOT, - sym_num_lit, - aux_sym_str_lit_token1, - sym_char_lit, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_POUND0A, - anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, - 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, - anon_sym_cl_COLONloop, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - [74891] = 3, + anon_sym_across, + anon_sym_using, + aux_sym_for_clause_word_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, + anon_sym_EQ, + sym_accumulation_verb, + anon_sym_for, + anon_sym_and, + anon_sym_as, + anon_sym_with, + anon_sym_while, + 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, + [70863] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2389), 3, + ACTIONS(2159), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(2387), 35, + ACTIONS(2157), 35, sym__ws, sym_comment, anon_sym_POUND_, @@ -63828,14 +61107,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [74937] = 3, + [70909] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2161), 3, + ACTIONS(2235), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(2159), 35, + ACTIONS(2233), 35, sym__ws, sym_comment, anon_sym_POUND_, @@ -63871,14 +61150,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [74983] = 3, + [70955] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2157), 3, + ACTIONS(2367), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(2155), 35, + ACTIONS(2365), 35, sym__ws, sym_comment, anon_sym_POUND_, @@ -63914,14 +61193,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [75029] = 3, + [71001] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2153), 3, + ACTIONS(2231), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(2151), 35, + ACTIONS(2229), 35, sym__ws, sym_comment, anon_sym_POUND_, @@ -63957,14 +61236,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [75075] = 3, + [71047] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2145), 3, + ACTIONS(2227), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(2143), 35, + ACTIONS(2225), 35, sym__ws, sym_comment, anon_sym_POUND_, @@ -64000,14 +61279,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [75121] = 3, + [71093] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2141), 3, + ACTIONS(2363), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(2139), 35, + ACTIONS(2361), 35, sym__ws, sym_comment, anon_sym_POUND_, @@ -64043,14 +61322,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [75167] = 3, + [71139] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2137), 3, + ACTIONS(2091), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(2135), 35, + ACTIONS(2089), 35, sym__ws, sym_comment, anon_sym_POUND_, @@ -64086,14 +61365,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [75213] = 3, + [71185] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2133), 3, + ACTIONS(2099), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(2131), 35, + ACTIONS(2097), 35, sym__ws, sym_comment, anon_sym_POUND_, @@ -64129,14 +61408,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [75259] = 3, + [71231] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2129), 3, + ACTIONS(2223), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(2127), 35, + ACTIONS(2221), 35, sym__ws, sym_comment, anon_sym_POUND_, @@ -64172,14 +61451,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [75305] = 3, + [71277] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2125), 3, + ACTIONS(2351), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(2123), 35, + ACTIONS(2349), 35, sym__ws, sym_comment, anon_sym_POUND_, @@ -64215,14 +61494,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [75351] = 3, + [71323] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2121), 3, + ACTIONS(2219), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(2119), 35, + ACTIONS(2217), 35, sym__ws, sym_comment, anon_sym_POUND_, @@ -64258,14 +61537,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [75397] = 3, + [71369] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2105), 3, + ACTIONS(2111), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(2103), 35, + ACTIONS(2109), 35, sym__ws, sym_comment, anon_sym_POUND_, @@ -64301,14 +61580,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [75443] = 3, + [71415] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2097), 3, + ACTIONS(2215), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(2095), 35, + ACTIONS(2213), 35, sym__ws, sym_comment, anon_sym_POUND_, @@ -64344,14 +61623,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [75489] = 3, + [71461] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2093), 3, + ACTIONS(2211), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(2091), 35, + ACTIONS(2209), 35, sym__ws, sym_comment, anon_sym_POUND_, @@ -64387,57 +61666,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [75535] = 3, + [71507] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2253), 13, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - anon_sym_COLON, - ACTIONS(2251), 25, - sym__ws, - sym_comment, - anon_sym_POUND_, - anon_sym_DOT, - sym_num_lit, - aux_sym_str_lit_token1, - sym_char_lit, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_POUND0A, - anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, - 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, - anon_sym_cl_COLONloop, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - [75581] = 3, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(2285), 3, + ACTIONS(2207), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(2283), 35, + ACTIONS(2205), 35, sym__ws, sym_comment, anon_sym_POUND_, @@ -64473,14 +61709,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [75627] = 3, + [71553] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2089), 3, + ACTIONS(2355), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(2087), 35, + ACTIONS(2353), 35, sym__ws, sym_comment, anon_sym_POUND_, @@ -64516,14 +61752,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [75673] = 3, + [71599] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2085), 3, + ACTIONS(2379), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(2083), 35, + ACTIONS(2377), 35, sym__ws, sym_comment, anon_sym_POUND_, @@ -64559,57 +61795,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [75719] = 3, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(2097), 13, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - anon_sym_COLON, - ACTIONS(2095), 25, - sym__ws, - sym_comment, - anon_sym_POUND_, - anon_sym_DOT, - sym_num_lit, - aux_sym_str_lit_token1, - sym_char_lit, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_POUND0A, - anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, - 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, - anon_sym_cl_COLONloop, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - [75765] = 3, + [71645] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2081), 3, + ACTIONS(2375), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(2079), 35, + ACTIONS(2373), 35, sym__ws, sym_comment, anon_sym_POUND_, @@ -64645,57 +61838,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [75811] = 3, + [71691] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2261), 13, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - anon_sym_COLON, - ACTIONS(2259), 25, - sym__ws, - sym_comment, - anon_sym_POUND_, - anon_sym_DOT, - sym_num_lit, - aux_sym_str_lit_token1, - sym_char_lit, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_POUND0A, - anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, - 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, - anon_sym_cl_COLONloop, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - [75857] = 3, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(2077), 3, + ACTIONS(2279), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(2075), 35, + ACTIONS(2277), 35, sym__ws, sym_comment, anon_sym_POUND_, @@ -64731,57 +61881,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [75903] = 3, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(2028), 13, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - anon_sym_COLON, - ACTIONS(2024), 25, - sym__ws, - sym_comment, - anon_sym_POUND_, - anon_sym_DOT, - sym_num_lit, - aux_sym_str_lit_token1, - sym_char_lit, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_POUND0A, - anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, - 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, - anon_sym_cl_COLONloop, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - [75949] = 3, + [71737] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2309), 3, + ACTIONS(2355), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(2307), 35, + ACTIONS(2353), 35, sym__ws, sym_comment, anon_sym_POUND_, @@ -64817,315 +61924,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [75995] = 3, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(2361), 13, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - anon_sym_COLON, - ACTIONS(2359), 25, - sym__ws, - sym_comment, - anon_sym_POUND_, - anon_sym_DOT, - sym_num_lit, - aux_sym_str_lit_token1, - sym_char_lit, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_POUND0A, - anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, - 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, - anon_sym_cl_COLONloop, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - [76041] = 3, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(2105), 13, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - anon_sym_COLON, - ACTIONS(2103), 25, - sym__ws, - sym_comment, - anon_sym_POUND_, - anon_sym_DOT, - sym_num_lit, - aux_sym_str_lit_token1, - sym_char_lit, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_POUND0A, - anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, - 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, - anon_sym_cl_COLONloop, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - [76087] = 3, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(2269), 13, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - anon_sym_COLON, - ACTIONS(2267), 25, - sym__ws, - sym_comment, - anon_sym_POUND_, - anon_sym_DOT, - sym_num_lit, - aux_sym_str_lit_token1, - sym_char_lit, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_POUND0A, - anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, - 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, - anon_sym_cl_COLONloop, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - [76133] = 3, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(2273), 13, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - anon_sym_COLON, - ACTIONS(2271), 25, - sym__ws, - sym_comment, - anon_sym_POUND_, - anon_sym_DOT, - sym_num_lit, - aux_sym_str_lit_token1, - sym_char_lit, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_POUND0A, - anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, - 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, - anon_sym_cl_COLONloop, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - [76179] = 3, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(2121), 13, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - anon_sym_COLON, - ACTIONS(2119), 25, - sym__ws, - sym_comment, - anon_sym_POUND_, - anon_sym_DOT, - sym_num_lit, - aux_sym_str_lit_token1, - sym_char_lit, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_POUND0A, - anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, - 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, - anon_sym_cl_COLONloop, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - [76225] = 3, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(2125), 13, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - anon_sym_COLON, - ACTIONS(2123), 25, - sym__ws, - sym_comment, - anon_sym_POUND_, - anon_sym_DOT, - sym_num_lit, - aux_sym_str_lit_token1, - sym_char_lit, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_POUND0A, - anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, - 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, - anon_sym_cl_COLONloop, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - [76271] = 3, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(2129), 13, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - anon_sym_COLON, - ACTIONS(2127), 25, - sym__ws, - sym_comment, - anon_sym_POUND_, - anon_sym_DOT, - sym_num_lit, - aux_sym_str_lit_token1, - sym_char_lit, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_POUND0A, - anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, - 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, - anon_sym_cl_COLONloop, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - [76317] = 3, + [71783] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2043), 3, + ACTIONS(2279), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(2041), 35, + ACTIONS(2277), 35, sym__ws, sym_comment, anon_sym_POUND_, @@ -65161,14 +61967,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [76363] = 3, + [71829] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2065), 3, + ACTIONS(2371), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(2063), 35, + ACTIONS(2369), 35, sym__ws, sym_comment, anon_sym_POUND_, @@ -65204,57 +62010,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [76409] = 3, + [71875] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2133), 13, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - anon_sym_COLON, - ACTIONS(2131), 25, - sym__ws, - sym_comment, - anon_sym_POUND_, - anon_sym_DOT, - sym_num_lit, - aux_sym_str_lit_token1, - sym_char_lit, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_POUND0A, - anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, - 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, - anon_sym_cl_COLONloop, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - [76455] = 3, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(2349), 3, + ACTIONS(2303), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(2347), 35, + ACTIONS(2301), 35, sym__ws, sym_comment, anon_sym_POUND_, @@ -65290,14 +62053,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [76501] = 3, + [71921] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2401), 3, + ACTIONS(2035), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(2399), 35, + ACTIONS(2033), 35, sym__ws, sym_comment, anon_sym_POUND_, @@ -65333,14 +62096,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [76547] = 3, + [71967] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2413), 3, + ACTIONS(2039), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(2411), 35, + ACTIONS(2037), 35, sym__ws, sym_comment, anon_sym_POUND_, @@ -65376,14 +62139,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [76593] = 3, + [72013] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2409), 3, + ACTIONS(2043), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(2407), 35, + ACTIONS(2041), 35, sym__ws, sym_comment, anon_sym_POUND_, @@ -65419,57 +62182,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [76639] = 3, + [72059] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2277), 13, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - anon_sym_COLON, - ACTIONS(2275), 25, - sym__ws, - sym_comment, - anon_sym_POUND_, - anon_sym_DOT, - sym_num_lit, - aux_sym_str_lit_token1, - sym_char_lit, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_POUND0A, - anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, - 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, - anon_sym_cl_COLONloop, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - [76685] = 3, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(2409), 3, + ACTIONS(2359), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(2407), 35, + ACTIONS(2357), 35, sym__ws, sym_comment, anon_sym_POUND_, @@ -65505,14 +62225,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [76731] = 3, + [72105] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2409), 3, + ACTIONS(2047), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(2407), 35, + ACTIONS(2045), 35, sym__ws, sym_comment, anon_sym_POUND_, @@ -65548,57 +62268,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [76777] = 3, + [72151] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2357), 13, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - anon_sym_COLON, - ACTIONS(2355), 25, - sym__ws, - sym_comment, - anon_sym_POUND_, - anon_sym_DOT, - sym_num_lit, - aux_sym_str_lit_token1, - sym_char_lit, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_POUND0A, - anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, - 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, - anon_sym_cl_COLONloop, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - [76823] = 3, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(2405), 3, + ACTIONS(2047), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(2403), 35, + ACTIONS(2045), 35, sym__ws, sym_comment, anon_sym_POUND_, @@ -65634,14 +62311,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [76869] = 3, + [72197] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2237), 3, + ACTIONS(2051), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(2235), 35, + ACTIONS(2049), 35, sym__ws, sym_comment, anon_sym_POUND_, @@ -65677,14 +62354,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [76915] = 3, + [72243] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2229), 3, + ACTIONS(2055), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(2227), 35, + ACTIONS(2053), 35, sym__ws, sym_comment, anon_sym_POUND_, @@ -65720,14 +62397,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [76961] = 3, + [72289] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2381), 3, + ACTIONS(2059), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(2379), 35, + ACTIONS(2057), 35, sym__ws, sym_comment, anon_sym_POUND_, @@ -65763,14 +62440,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [77007] = 3, + [72335] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2369), 3, + ACTIONS(2063), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(2367), 35, + ACTIONS(2061), 35, sym__ws, sym_comment, anon_sym_POUND_, @@ -65806,57 +62483,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [77053] = 3, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(2281), 13, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - anon_sym_COLON, - ACTIONS(2279), 25, - sym__ws, - sym_comment, - anon_sym_POUND_, - anon_sym_DOT, - sym_num_lit, - aux_sym_str_lit_token1, - sym_char_lit, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_POUND0A, - anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, - 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, - anon_sym_cl_COLONloop, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - [77099] = 3, + [72381] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2265), 3, + ACTIONS(2067), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(2263), 35, + ACTIONS(2065), 35, sym__ws, sym_comment, anon_sym_POUND_, @@ -65892,14 +62526,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [77145] = 3, + [72427] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2417), 3, + ACTIONS(2071), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(2415), 35, + ACTIONS(2069), 35, sym__ws, sym_comment, anon_sym_POUND_, @@ -65935,14 +62569,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [77191] = 3, + [72473] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2189), 3, + ACTIONS(2207), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(2187), 35, + ACTIONS(2205), 35, sym__ws, sym_comment, anon_sym_POUND_, @@ -65978,14 +62612,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [77237] = 3, + [72519] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2249), 3, + ACTIONS(2207), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(2247), 35, + ACTIONS(2205), 35, sym__ws, sym_comment, anon_sym_POUND_, @@ -66021,14 +62655,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [77283] = 3, + [72565] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2257), 3, + ACTIONS(2267), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(2255), 35, + ACTIONS(2265), 35, sym__ws, sym_comment, anon_sym_POUND_, @@ -66064,14 +62698,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [77329] = 3, + [72611] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2329), 3, + ACTIONS(2259), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(2327), 35, + ACTIONS(2257), 35, sym__ws, sym_comment, anon_sym_POUND_, @@ -66107,14 +62741,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [77375] = 3, + [72657] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2345), 3, + ACTIONS(2255), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(2343), 35, + ACTIONS(2253), 35, sym__ws, sym_comment, anon_sym_POUND_, @@ -66150,100 +62784,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [77421] = 3, + [72703] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2289), 13, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - anon_sym_COLON, - ACTIONS(2287), 25, - sym__ws, - sym_comment, - anon_sym_POUND_, - anon_sym_DOT, - sym_num_lit, - aux_sym_str_lit_token1, - sym_char_lit, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_POUND0A, - anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, - 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, - anon_sym_cl_COLONloop, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - [77467] = 3, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(2293), 13, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - anon_sym_COLON, - ACTIONS(2291), 25, - sym__ws, - sym_comment, - anon_sym_POUND_, - anon_sym_DOT, - sym_num_lit, - aux_sym_str_lit_token1, - sym_char_lit, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_POUND0A, - anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, - 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, - anon_sym_cl_COLONloop, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - [77513] = 3, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(2341), 3, + ACTIONS(2239), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(2339), 35, + ACTIONS(2237), 35, sym__ws, sym_comment, anon_sym_POUND_, @@ -66279,14 +62827,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [77559] = 3, + [72749] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2337), 3, + ACTIONS(2191), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(2335), 35, + ACTIONS(2189), 35, sym__ws, sym_comment, anon_sym_POUND_, @@ -66322,14 +62870,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [77605] = 3, + [72795] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2073), 3, + ACTIONS(2075), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(2071), 35, + ACTIONS(2073), 35, sym__ws, sym_comment, anon_sym_POUND_, @@ -66365,14 +62913,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [77651] = 3, + [72841] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2073), 3, + ACTIONS(2187), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(2071), 35, + ACTIONS(2185), 35, sym__ws, sym_comment, anon_sym_POUND_, @@ -66408,57 +62956,57 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [77697] = 3, + [72887] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2297), 13, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - anon_sym_COLON, - ACTIONS(2295), 25, + ACTIONS(2203), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(2201), 35, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_DOT, - sym_num_lit, - aux_sym_str_lit_token1, - sym_char_lit, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_POUND0A, - anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, - 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, - anon_sym_cl_COLONloop, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - [77743] = 3, + anon_sym_across, + anon_sym_using, + aux_sym_for_clause_word_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, + anon_sym_EQ, + sym_accumulation_verb, + anon_sym_for, + anon_sym_and, + anon_sym_as, + anon_sym_with, + anon_sym_while, + 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, + [72933] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2073), 3, + ACTIONS(2179), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(2071), 35, + ACTIONS(2177), 35, sym__ws, sym_comment, anon_sym_POUND_, @@ -66494,57 +63042,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [77789] = 3, + [72979] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2301), 13, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - anon_sym_COLON, - ACTIONS(2299), 25, - sym__ws, - sym_comment, - anon_sym_POUND_, - anon_sym_DOT, - sym_num_lit, - aux_sym_str_lit_token1, - sym_char_lit, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_POUND0A, - anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, - 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, - anon_sym_cl_COLONloop, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - [77835] = 3, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(2101), 3, + ACTIONS(2175), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(2099), 35, + ACTIONS(2173), 35, sym__ws, sym_comment, anon_sym_POUND_, @@ -66580,57 +63085,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [77881] = 3, + [73025] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2137), 13, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - anon_sym_COLON, - ACTIONS(2135), 25, - sym__ws, - sym_comment, - anon_sym_POUND_, - anon_sym_DOT, - sym_num_lit, - aux_sym_str_lit_token1, - sym_char_lit, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_POUND0A, - anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, - 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, - anon_sym_cl_COLONloop, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - [77927] = 3, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(2393), 3, + ACTIONS(2155), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(2391), 35, + ACTIONS(2153), 35, sym__ws, sym_comment, anon_sym_POUND_, @@ -66666,14 +63128,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [77973] = 3, + [73071] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2397), 3, + ACTIONS(2119), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(2395), 35, + ACTIONS(2117), 35, sym__ws, sym_comment, anon_sym_POUND_, @@ -66709,14 +63171,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [78019] = 3, + [73117] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2385), 3, + ACTIONS(2151), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(2383), 35, + ACTIONS(2149), 35, sym__ws, sym_comment, anon_sym_POUND_, @@ -66752,100 +63214,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [78065] = 3, + [73163] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2057), 13, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - anon_sym_COLON, - ACTIONS(2055), 25, - sym__ws, - sym_comment, - anon_sym_POUND_, - anon_sym_DOT, - sym_num_lit, - aux_sym_str_lit_token1, - sym_char_lit, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_POUND0A, - anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, - 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, - anon_sym_cl_COLONloop, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - [78111] = 3, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(2353), 13, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - anon_sym_COLON, - ACTIONS(2351), 25, - sym__ws, - sym_comment, - anon_sym_POUND_, - anon_sym_DOT, - sym_num_lit, - aux_sym_str_lit_token1, - sym_char_lit, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_POUND0A, - anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, - 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, - anon_sym_cl_COLONloop, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - [78157] = 3, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(2397), 3, + ACTIONS(2199), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(2395), 35, + ACTIONS(2197), 35, sym__ws, sym_comment, anon_sym_POUND_, @@ -66881,14 +63257,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [78203] = 3, + [73209] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2109), 3, + ACTIONS(2079), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(2107), 35, + ACTIONS(2077), 35, sym__ws, sym_comment, anon_sym_POUND_, @@ -66924,14 +63300,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [78249] = 3, + [73255] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2113), 3, + ACTIONS(2195), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(2111), 35, + ACTIONS(2193), 35, sym__ws, sym_comment, anon_sym_POUND_, @@ -66967,14 +63343,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [78295] = 3, + [73301] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2117), 3, + ACTIONS(2095), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(2115), 35, + ACTIONS(2093), 35, sym__ws, sym_comment, anon_sym_POUND_, @@ -67010,14 +63386,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [78341] = 3, + [73347] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2117), 3, + ACTIONS(2183), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(2115), 35, + ACTIONS(2181), 35, sym__ws, sym_comment, anon_sym_POUND_, @@ -67053,14 +63429,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [78387] = 3, + [73393] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2165), 3, + ACTIONS(2183), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(2163), 35, + ACTIONS(2181), 35, sym__ws, sym_comment, anon_sym_POUND_, @@ -67096,14 +63472,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [78433] = 3, + [73439] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2229), 3, + ACTIONS(2171), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(2227), 35, + ACTIONS(2169), 35, sym__ws, sym_comment, anon_sym_POUND_, @@ -67139,14 +63515,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [78479] = 3, + [73485] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2169), 3, + ACTIONS(2103), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(2167), 35, + ACTIONS(2101), 35, sym__ws, sym_comment, anon_sym_POUND_, @@ -67182,14 +63558,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [78525] = 3, + [73531] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2173), 3, + ACTIONS(2143), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(2171), 35, + ACTIONS(2141), 35, sym__ws, sym_comment, anon_sym_POUND_, @@ -67225,14 +63601,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [78571] = 3, + [73577] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2177), 3, + ACTIONS(2135), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(2175), 35, + ACTIONS(2133), 35, sym__ws, sym_comment, anon_sym_POUND_, @@ -67268,14 +63644,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [78617] = 3, + [73623] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2385), 3, + ACTIONS(2107), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(2383), 35, + ACTIONS(2105), 35, sym__ws, sym_comment, anon_sym_POUND_, @@ -67311,14 +63687,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [78663] = 3, + [73669] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2181), 3, + ACTIONS(2131), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(2179), 35, + ACTIONS(2129), 35, sym__ws, sym_comment, anon_sym_POUND_, @@ -67354,14 +63730,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [78709] = 3, + [73715] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2185), 3, + ACTIONS(2123), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(2183), 35, + ACTIONS(2121), 35, sym__ws, sym_comment, anon_sym_POUND_, @@ -67397,14 +63773,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [78755] = 3, + [73761] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2181), 3, + ACTIONS(2167), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(2179), 35, + ACTIONS(2165), 35, sym__ws, sym_comment, anon_sym_POUND_, @@ -67440,14 +63816,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [78801] = 3, + [73807] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2217), 3, + ACTIONS(2613), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(2215), 35, + ACTIONS(2611), 35, sym__ws, sym_comment, anon_sym_POUND_, @@ -67483,14 +63859,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [78847] = 3, + [73853] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2185), 3, + ACTIONS(2139), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(2183), 35, + ACTIONS(2137), 35, sym__ws, sym_comment, anon_sym_POUND_, @@ -67526,14 +63902,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [78893] = 3, + [73899] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2205), 3, + ACTIONS(2115), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(2203), 35, + ACTIONS(2113), 35, sym__ws, sym_comment, anon_sym_POUND_, @@ -67569,14 +63945,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [78939] = 3, + [73945] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2365), 3, + ACTIONS(2139), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(2363), 35, + ACTIONS(2137), 35, sym__ws, sym_comment, anon_sym_POUND_, @@ -67612,14 +63988,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [78985] = 3, + [73991] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2213), 3, + ACTIONS(2147), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(2211), 35, + ACTIONS(2145), 35, sym__ws, sym_comment, anon_sym_POUND_, @@ -67655,14 +64031,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [79031] = 3, + [74037] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2361), 3, + ACTIONS(2163), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(2359), 35, + ACTIONS(2161), 35, sym__ws, sym_comment, anon_sym_POUND_, @@ -67698,38 +64074,77 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [79077] = 3, + [74083] = 4, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2141), 13, + STATE(785), 1, + aux_sym_dotted_sym_lit_repeat1, + ACTIONS(2000), 7, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - anon_sym_COLON, - ACTIONS(2139), 25, + ACTIONS(1996), 26, + ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, anon_sym_DOT, sym_num_lit, + anon_sym_COLON_COLON, 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, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + [74127] = 5, + ACTIONS(3), 1, + sym_block_comment, + ACTIONS(1988), 1, + anon_sym_DOT, + STATE(777), 1, + aux_sym_dotted_sym_lit_repeat1, + ACTIONS(2004), 7, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + ACTIONS(2002), 25, + ts_builtin_sym_end, + sym__ws, + sym_comment, + anon_sym_POUND_, + sym_num_lit, anon_sym_COLON_COLON, + 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, @@ -67737,29 +64152,68 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_COMMA_AT, - anon_sym_cl_COLONloop, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [79123] = 7, + [74173] = 4, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2047), 1, + STATE(777), 1, + aux_sym_dotted_sym_lit_repeat1, + ACTIONS(2008), 7, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + ACTIONS(2006), 26, + ts_builtin_sym_end, + sym__ws, + sym_comment, + anon_sym_POUND_, anon_sym_DOT, - ACTIONS(2653), 1, + sym_num_lit, anon_sym_COLON_COLON, - ACTIONS(2655), 1, + 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, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + [74217] = 7, + ACTIONS(3), 1, + sym_block_comment, + ACTIONS(1988), 1, + anon_sym_DOT, + ACTIONS(2615), 1, anon_sym_COLON, - STATE(816), 1, + ACTIONS(2617), 1, + anon_sym_COLON_COLON, + STATE(782), 1, aux_sym_dotted_sym_lit_repeat1, - ACTIONS(2049), 6, + ACTIONS(1994), 6, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - ACTIONS(2045), 24, + ACTIONS(1986), 24, ts_builtin_sym_end, sym__ws, sym_comment, @@ -67784,27 +64238,28 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [79173] = 5, + [74267] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2047), 1, + ACTIONS(1988), 1, anon_sym_DOT, - STATE(819), 1, + STATE(782), 1, aux_sym_dotted_sym_lit_repeat1, - ACTIONS(2039), 7, + ACTIONS(2008), 7, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - anon_sym_COLON, - ACTIONS(2037), 25, + ACTIONS(2006), 25, ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -67814,7 +64269,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -67825,30 +64279,28 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [79219] = 7, + [74313] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2047), 1, + ACTIONS(1988), 1, anon_sym_DOT, - ACTIONS(2657), 1, - anon_sym_COLON_COLON, - ACTIONS(2659), 1, - anon_sym_COLON, - STATE(816), 1, + STATE(785), 1, aux_sym_dotted_sym_lit_repeat1, - ACTIONS(2049), 6, + ACTIONS(2000), 7, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - ACTIONS(2045), 24, + ACTIONS(1996), 25, ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -67868,63 +64320,25 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [79269] = 5, + [74359] = 7, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2047), 1, + ACTIONS(1988), 1, anon_sym_DOT, - STATE(816), 1, - aux_sym_dotted_sym_lit_repeat1, - ACTIONS(2043), 7, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, + ACTIONS(2619), 1, anon_sym_COLON, - ACTIONS(2041), 25, - ts_builtin_sym_end, - sym__ws, - sym_comment, - anon_sym_POUND_, - sym_num_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, + ACTIONS(2621), 1, anon_sym_COLON_COLON, - 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, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - [79315] = 5, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(2661), 1, - anon_sym_DOT, - STATE(819), 1, + STATE(782), 1, aux_sym_dotted_sym_lit_repeat1, - ACTIONS(2035), 7, + ACTIONS(1994), 6, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - anon_sym_COLON, - ACTIONS(2030), 25, + ACTIONS(1986), 24, ts_builtin_sym_end, sym__ws, sym_comment, @@ -67939,7 +64353,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -67950,108 +64363,28 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [79361] = 5, + [74409] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2047), 1, + ACTIONS(1988), 1, anon_sym_DOT, - STATE(822), 1, + STATE(782), 1, aux_sym_dotted_sym_lit_repeat1, - ACTIONS(2043), 7, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, + ACTIONS(2004), 7, anon_sym_COLON, - ACTIONS(2041), 25, - ts_builtin_sym_end, - sym__ws, - sym_comment, - anon_sym_POUND_, - sym_num_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_COLON_COLON, - 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, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - [79407] = 5, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(2047), 1, - anon_sym_DOT, - STATE(822), 1, - aux_sym_dotted_sym_lit_repeat1, - ACTIONS(2028), 7, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - anon_sym_COLON, - ACTIONS(2024), 25, + ACTIONS(2002), 25, ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, sym_num_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_COLON_COLON, - 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, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - [79453] = 4, - ACTIONS(3), 1, - sym_block_comment, - STATE(819), 1, - aux_sym_dotted_sym_lit_repeat1, - ACTIONS(2039), 7, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - anon_sym_COLON, - ACTIONS(2037), 26, - ts_builtin_sym_end, - sym__ws, - sym_comment, - anon_sym_POUND_, - anon_sym_DOT, - sym_num_lit, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -68061,7 +64394,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -68072,27 +64404,28 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [79497] = 5, + [74455] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2047), 1, + ACTIONS(2623), 1, anon_sym_DOT, - STATE(816), 1, + STATE(785), 1, aux_sym_dotted_sym_lit_repeat1, - ACTIONS(2028), 7, + ACTIONS(2015), 7, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - anon_sym_COLON, - ACTIONS(2024), 25, + ACTIONS(2010), 25, ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -68102,7 +64435,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -68113,24 +64445,25 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [79543] = 3, + [74501] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2401), 7, + ACTIONS(2295), 7, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - anon_sym_COLON, - ACTIONS(2399), 26, + ACTIONS(2293), 26, ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, anon_sym_DOT, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -68140,7 +64473,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -68151,24 +64483,25 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [79584] = 3, + [74542] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2073), 7, + ACTIONS(2291), 7, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - anon_sym_COLON, - ACTIONS(2071), 26, + ACTIONS(2289), 26, ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, anon_sym_DOT, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -68178,7 +64511,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -68189,24 +64521,25 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [79625] = 3, + [74583] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2261), 7, + ACTIONS(2307), 7, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - anon_sym_COLON, - ACTIONS(2259), 26, + ACTIONS(2305), 26, ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, anon_sym_DOT, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -68216,7 +64549,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -68227,24 +64559,25 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [79666] = 3, + [74624] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2253), 7, + ACTIONS(2251), 7, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - anon_sym_COLON, - ACTIONS(2251), 26, + ACTIONS(2249), 26, ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, anon_sym_DOT, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -68254,7 +64587,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -68265,24 +64597,25 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [79707] = 3, + [74665] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2245), 7, + ACTIONS(2163), 7, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - anon_sym_COLON, - ACTIONS(2243), 26, + ACTIONS(2161), 26, ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, anon_sym_DOT, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -68292,7 +64625,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -68303,24 +64635,25 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [79748] = 3, + [74706] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2241), 7, + ACTIONS(2247), 7, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - anon_sym_COLON, - ACTIONS(2239), 26, + ACTIONS(2245), 26, ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, anon_sym_DOT, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -68330,7 +64663,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -68341,24 +64673,25 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [79789] = 3, + [74747] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2233), 7, + ACTIONS(2047), 7, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - anon_sym_COLON, - ACTIONS(2231), 26, + ACTIONS(2045), 26, ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, anon_sym_DOT, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -68368,7 +64701,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -68379,24 +64711,25 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [79830] = 3, + [74788] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2225), 7, + ACTIONS(2235), 7, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - anon_sym_COLON, - ACTIONS(2223), 26, + ACTIONS(2233), 26, ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, anon_sym_DOT, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -68406,7 +64739,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -68417,24 +64749,25 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [79871] = 3, + [74829] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2221), 7, + ACTIONS(2231), 7, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - anon_sym_COLON, - ACTIONS(2219), 26, + ACTIONS(2229), 26, ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, anon_sym_DOT, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -68444,7 +64777,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -68455,24 +64787,25 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [79912] = 3, + [74870] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2209), 7, + ACTIONS(2343), 7, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - anon_sym_COLON, - ACTIONS(2207), 26, + ACTIONS(2341), 26, ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, anon_sym_DOT, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -68482,7 +64815,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -68493,24 +64825,25 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [79953] = 3, + [74911] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2197), 7, + ACTIONS(2227), 7, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - anon_sym_COLON, - ACTIONS(2195), 26, + ACTIONS(2225), 26, ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, anon_sym_DOT, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -68520,7 +64853,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -68531,24 +64863,25 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [79994] = 3, + [74952] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2061), 7, + ACTIONS(2223), 7, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - anon_sym_COLON, - ACTIONS(2059), 26, + ACTIONS(2221), 26, ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, anon_sym_DOT, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -68558,7 +64891,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -68569,24 +64901,25 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [80035] = 3, + [74993] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2161), 7, + ACTIONS(2219), 7, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - anon_sym_COLON, - ACTIONS(2159), 26, + ACTIONS(2217), 26, ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, anon_sym_DOT, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -68596,7 +64929,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -68607,24 +64939,25 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [80076] = 3, + [75034] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2157), 7, + ACTIONS(2215), 7, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - anon_sym_COLON, - ACTIONS(2155), 26, + ACTIONS(2213), 26, ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, anon_sym_DOT, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -68634,7 +64967,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -68645,24 +64977,25 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [80117] = 3, + [75075] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2297), 7, + ACTIONS(2211), 7, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - anon_sym_COLON, - ACTIONS(2295), 26, + ACTIONS(2209), 26, ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, anon_sym_DOT, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -68672,7 +65005,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -68683,24 +65015,25 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [80158] = 3, + [75116] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2153), 7, + ACTIONS(2207), 7, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - anon_sym_COLON, - ACTIONS(2151), 26, + ACTIONS(2205), 26, ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, anon_sym_DOT, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -68710,7 +65043,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -68721,24 +65053,25 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [80199] = 3, + [75157] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2149), 7, + ACTIONS(2207), 7, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - anon_sym_COLON, - ACTIONS(2147), 26, + ACTIONS(2205), 26, ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, anon_sym_DOT, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -68748,7 +65081,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -68759,24 +65091,25 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [80240] = 3, + [75198] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2293), 7, + ACTIONS(2207), 7, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - anon_sym_COLON, - ACTIONS(2291), 26, + ACTIONS(2205), 26, ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, anon_sym_DOT, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -68786,7 +65119,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -68797,24 +65129,25 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [80281] = 3, + [75239] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2301), 7, + ACTIONS(2203), 7, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - anon_sym_COLON, - ACTIONS(2299), 26, + ACTIONS(2201), 26, ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, anon_sym_DOT, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -68824,7 +65157,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -68835,24 +65167,25 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [80322] = 3, + [75280] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2145), 7, + ACTIONS(2199), 7, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - anon_sym_COLON, - ACTIONS(2143), 26, + ACTIONS(2197), 26, ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, anon_sym_DOT, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -68862,7 +65195,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -68873,24 +65205,25 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [80363] = 3, + [75321] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2325), 7, + ACTIONS(2195), 7, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - anon_sym_COLON, - ACTIONS(2323), 26, + ACTIONS(2193), 26, ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, anon_sym_DOT, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -68900,7 +65233,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -68911,24 +65243,25 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [80404] = 3, + [75362] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2141), 7, + ACTIONS(2183), 7, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - anon_sym_COLON, - ACTIONS(2139), 26, + ACTIONS(2181), 26, ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, anon_sym_DOT, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -68938,7 +65271,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -68949,24 +65281,25 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [80445] = 3, + [75403] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2273), 7, + ACTIONS(2183), 7, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - anon_sym_COLON, - ACTIONS(2271), 26, + ACTIONS(2181), 26, ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, anon_sym_DOT, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -68976,7 +65309,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -68987,24 +65319,25 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [80486] = 3, + [75444] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2137), 7, + ACTIONS(2275), 7, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - anon_sym_COLON, - ACTIONS(2135), 26, + ACTIONS(2273), 26, ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, anon_sym_DOT, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -69014,7 +65347,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -69025,24 +65357,25 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [80527] = 3, + [75485] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2133), 7, + ACTIONS(2043), 7, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - anon_sym_COLON, - ACTIONS(2131), 26, + ACTIONS(2041), 26, ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, anon_sym_DOT, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -69052,7 +65385,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -69063,24 +65395,25 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [80568] = 3, + [75526] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2289), 7, + ACTIONS(2039), 7, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - anon_sym_COLON, - ACTIONS(2287), 26, + ACTIONS(2037), 26, ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, anon_sym_DOT, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -69090,7 +65423,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -69101,24 +65433,25 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [80609] = 3, + [75567] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2269), 7, + ACTIONS(2171), 7, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - anon_sym_COLON, - ACTIONS(2267), 26, + ACTIONS(2169), 26, ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, anon_sym_DOT, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -69128,7 +65461,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -69139,24 +65471,25 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [80650] = 3, + [75608] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2129), 7, + ACTIONS(2167), 7, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - anon_sym_COLON, - ACTIONS(2127), 26, + ACTIONS(2165), 26, ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, anon_sym_DOT, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -69166,7 +65499,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -69177,24 +65509,25 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [80691] = 3, + [75649] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2125), 7, + ACTIONS(2035), 7, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - anon_sym_COLON, - ACTIONS(2123), 26, + ACTIONS(2033), 26, ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, anon_sym_DOT, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -69204,7 +65537,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -69215,24 +65547,25 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [80732] = 3, + [75690] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2121), 7, + ACTIONS(2303), 7, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - anon_sym_COLON, - ACTIONS(2119), 26, + ACTIONS(2301), 26, ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, anon_sym_DOT, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -69242,7 +65575,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -69253,24 +65585,25 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [80773] = 3, + [75731] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2201), 7, + ACTIONS(2191), 7, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - anon_sym_COLON, - ACTIONS(2199), 26, + ACTIONS(2189), 26, ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, anon_sym_DOT, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -69280,7 +65613,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -69291,24 +65623,25 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [80814] = 3, + [75772] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2105), 7, + ACTIONS(2147), 7, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - anon_sym_COLON, - ACTIONS(2103), 26, + ACTIONS(2145), 26, ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, anon_sym_DOT, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -69318,7 +65651,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -69329,24 +65661,25 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [80855] = 3, + [75813] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2097), 7, + ACTIONS(2139), 7, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - anon_sym_COLON, - ACTIONS(2095), 26, + ACTIONS(2137), 26, ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, anon_sym_DOT, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -69356,7 +65689,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -69367,24 +65699,25 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [80896] = 3, + [75854] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2093), 7, + ACTIONS(2115), 7, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - anon_sym_COLON, - ACTIONS(2091), 26, + ACTIONS(2113), 26, ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, anon_sym_DOT, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -69394,7 +65727,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -69405,24 +65737,25 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [80937] = 3, + [75895] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2089), 7, + ACTIONS(2139), 7, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - anon_sym_COLON, - ACTIONS(2087), 26, + ACTIONS(2137), 26, ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, anon_sym_DOT, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -69432,7 +65765,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -69443,24 +65775,25 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [80978] = 3, + [75936] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2085), 7, + ACTIONS(2115), 7, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - anon_sym_COLON, - ACTIONS(2083), 26, + ACTIONS(2113), 26, ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, anon_sym_DOT, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -69470,7 +65803,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -69481,24 +65813,25 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [81019] = 3, + [75977] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2081), 7, + ACTIONS(2279), 7, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - anon_sym_COLON, - ACTIONS(2079), 26, + ACTIONS(2277), 26, ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, anon_sym_DOT, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -69508,7 +65841,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -69519,24 +65851,25 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [81060] = 3, + [76018] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2077), 7, + ACTIONS(2355), 7, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - anon_sym_COLON, - ACTIONS(2075), 26, + ACTIONS(2353), 26, ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, anon_sym_DOT, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -69546,7 +65879,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -69557,24 +65889,25 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [81101] = 3, + [76059] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2309), 7, + ACTIONS(2107), 7, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - anon_sym_COLON, - ACTIONS(2307), 26, + ACTIONS(2105), 26, ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, anon_sym_DOT, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -69584,7 +65917,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -69595,24 +65927,25 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [81142] = 3, + [76100] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2321), 7, + ACTIONS(2103), 7, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - anon_sym_COLON, - ACTIONS(2319), 26, + ACTIONS(2101), 26, ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, anon_sym_DOT, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -69622,7 +65955,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -69633,24 +65965,25 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [81183] = 3, + [76141] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2035), 7, + ACTIONS(2004), 7, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - anon_sym_COLON, - ACTIONS(2030), 26, + ACTIONS(2002), 26, ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, anon_sym_DOT, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -69660,7 +65993,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -69671,24 +66003,25 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [81224] = 3, + [76182] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2043), 7, + ACTIONS(2015), 7, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - anon_sym_COLON, - ACTIONS(2041), 26, + ACTIONS(2010), 26, ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, anon_sym_DOT, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -69698,7 +66031,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -69709,24 +66041,25 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [81265] = 3, + [76223] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2349), 7, + ACTIONS(2279), 7, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - anon_sym_COLON, - ACTIONS(2347), 26, + ACTIONS(2277), 26, ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, anon_sym_DOT, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -69736,7 +66069,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -69747,24 +66079,25 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [81306] = 3, + [76264] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2413), 7, + ACTIONS(2087), 7, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - anon_sym_COLON, - ACTIONS(2411), 26, + ACTIONS(2085), 26, ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, anon_sym_DOT, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -69774,7 +66107,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -69785,24 +66117,25 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [81347] = 3, + [76305] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2409), 7, + ACTIONS(2091), 7, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - anon_sym_COLON, - ACTIONS(2407), 26, + ACTIONS(2089), 26, ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, anon_sym_DOT, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -69812,7 +66145,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -69823,24 +66155,25 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [81388] = 3, + [76346] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2193), 7, + ACTIONS(2099), 7, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - anon_sym_COLON, - ACTIONS(2191), 26, + ACTIONS(2097), 26, ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, anon_sym_DOT, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -69850,7 +66183,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -69861,24 +66193,25 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [81429] = 3, + [76387] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2409), 7, + ACTIONS(2355), 7, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - anon_sym_COLON, - ACTIONS(2407), 26, + ACTIONS(2353), 26, ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, anon_sym_DOT, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -69888,7 +66221,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -69899,24 +66231,25 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [81470] = 3, + [76428] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2409), 7, + ACTIONS(2111), 7, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - anon_sym_COLON, - ACTIONS(2407), 26, + ACTIONS(2109), 26, ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, anon_sym_DOT, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -69926,7 +66259,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -69937,24 +66269,25 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [81511] = 3, + [76469] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2405), 7, + ACTIONS(2119), 7, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - anon_sym_COLON, - ACTIONS(2403), 26, + ACTIONS(2117), 26, ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, anon_sym_DOT, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -69964,7 +66297,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -69975,24 +66307,25 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [81552] = 3, + [76510] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2381), 7, + ACTIONS(2123), 7, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - anon_sym_COLON, - ACTIONS(2379), 26, + ACTIONS(2121), 26, ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, anon_sym_DOT, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -70002,7 +66335,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -70013,24 +66345,25 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [81593] = 3, + [76551] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2369), 7, + ACTIONS(2131), 7, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - anon_sym_COLON, - ACTIONS(2367), 26, + ACTIONS(2129), 26, ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, anon_sym_DOT, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -70040,7 +66373,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -70051,24 +66383,25 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [81634] = 3, + [76592] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2373), 7, + ACTIONS(2135), 7, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - anon_sym_COLON, - ACTIONS(2371), 26, + ACTIONS(2133), 26, ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, anon_sym_DOT, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -70078,7 +66411,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -70089,24 +66421,25 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [81675] = 3, + [76633] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2028), 7, + ACTIONS(2143), 7, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - anon_sym_COLON, - ACTIONS(2024), 26, + ACTIONS(2141), 26, ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, anon_sym_DOT, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -70116,7 +66449,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -70127,24 +66459,25 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [81716] = 3, + [76674] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2265), 7, + ACTIONS(2151), 7, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - anon_sym_COLON, - ACTIONS(2263), 26, + ACTIONS(2149), 26, ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, anon_sym_DOT, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -70154,7 +66487,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -70165,24 +66497,25 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [81757] = 3, + [76715] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2377), 7, + ACTIONS(2255), 7, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - anon_sym_COLON, - ACTIONS(2375), 26, + ACTIONS(2253), 26, ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, anon_sym_DOT, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -70192,7 +66525,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -70203,24 +66535,25 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [81798] = 3, + [76756] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2417), 7, + ACTIONS(2155), 7, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - anon_sym_COLON, - ACTIONS(2415), 26, + ACTIONS(2153), 26, ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, anon_sym_DOT, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -70230,7 +66563,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -70241,24 +66573,25 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [81839] = 3, + [76797] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2377), 7, + ACTIONS(2363), 7, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - anon_sym_COLON, - ACTIONS(2375), 26, + ACTIONS(2361), 26, ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, anon_sym_DOT, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -70268,7 +66601,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -70279,24 +66611,25 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [81880] = 3, + [76838] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2189), 7, + ACTIONS(2175), 7, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - anon_sym_COLON, - ACTIONS(2187), 26, + ACTIONS(2173), 26, ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, anon_sym_DOT, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -70306,7 +66639,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -70317,24 +66649,25 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [81921] = 3, + [76879] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2249), 7, + ACTIONS(2367), 7, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - anon_sym_COLON, - ACTIONS(2247), 26, + ACTIONS(2365), 26, ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, anon_sym_DOT, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -70344,7 +66677,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -70355,24 +66687,25 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [81962] = 3, + [76920] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2257), 7, + ACTIONS(2347), 7, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - anon_sym_COLON, - ACTIONS(2255), 26, + ACTIONS(2345), 26, ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, anon_sym_DOT, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -70382,7 +66715,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -70393,24 +66725,25 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [82003] = 3, + [76961] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2329), 7, + ACTIONS(2179), 7, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - anon_sym_COLON, - ACTIONS(2327), 26, + ACTIONS(2177), 26, ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, anon_sym_DOT, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -70420,7 +66753,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -70431,24 +66763,25 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [82044] = 3, + [77002] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2345), 7, + ACTIONS(2187), 7, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - anon_sym_COLON, - ACTIONS(2343), 26, + ACTIONS(2185), 26, ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, anon_sym_DOT, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -70458,7 +66791,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -70469,24 +66801,25 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [82085] = 3, + [77043] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2341), 7, + ACTIONS(2335), 7, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - anon_sym_COLON, - ACTIONS(2339), 26, + ACTIONS(2333), 26, ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, anon_sym_DOT, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -70496,7 +66829,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -70507,24 +66839,25 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [82126] = 3, + [77084] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2337), 7, + ACTIONS(2347), 7, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - anon_sym_COLON, - ACTIONS(2335), 26, + ACTIONS(2345), 26, ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, anon_sym_DOT, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -70534,7 +66867,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -70545,24 +66877,25 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [82167] = 3, + [77125] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2389), 7, + ACTIONS(2239), 7, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - anon_sym_COLON, - ACTIONS(2387), 26, + ACTIONS(2237), 26, ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, anon_sym_DOT, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -70572,7 +66905,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -70583,24 +66915,25 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [82208] = 3, + [77166] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2073), 7, + ACTIONS(2127), 7, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - anon_sym_COLON, - ACTIONS(2071), 26, + ACTIONS(2125), 26, ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, anon_sym_DOT, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -70610,7 +66943,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -70621,24 +66953,25 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [82249] = 3, + [77207] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2073), 7, + ACTIONS(2083), 7, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - anon_sym_COLON, - ACTIONS(2071), 26, + ACTIONS(2081), 26, ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, anon_sym_DOT, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -70648,7 +66981,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -70659,24 +66991,25 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [82290] = 3, + [77248] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2393), 7, + ACTIONS(2159), 7, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - anon_sym_COLON, - ACTIONS(2391), 26, + ACTIONS(2157), 26, ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, anon_sym_DOT, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -70686,7 +67019,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -70697,24 +67029,25 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [82331] = 3, + [77289] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2101), 7, + ACTIONS(2263), 7, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - anon_sym_COLON, - ACTIONS(2099), 26, + ACTIONS(2261), 26, ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, anon_sym_DOT, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -70724,7 +67057,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -70735,24 +67067,25 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [82372] = 3, + [77330] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2109), 7, + ACTIONS(2259), 7, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - anon_sym_COLON, - ACTIONS(2107), 26, + ACTIONS(2257), 26, ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, anon_sym_DOT, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -70762,7 +67095,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -70773,24 +67105,25 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [82413] = 3, + [77371] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2113), 7, + ACTIONS(2267), 7, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - anon_sym_COLON, - ACTIONS(2111), 26, + ACTIONS(2265), 26, ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, anon_sym_DOT, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -70800,7 +67133,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -70811,24 +67143,25 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [82454] = 3, + [77412] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2117), 7, + ACTIONS(2023), 7, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - anon_sym_COLON, - ACTIONS(2115), 26, + ACTIONS(2021), 26, ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, anon_sym_DOT, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -70838,7 +67171,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -70849,24 +67181,25 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [82495] = 3, + [77453] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2117), 7, + ACTIONS(2047), 7, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - anon_sym_COLON, - ACTIONS(2115), 26, + ACTIONS(2045), 26, ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, anon_sym_DOT, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -70876,7 +67209,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -70887,24 +67219,25 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [82536] = 3, + [77494] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2397), 7, + ACTIONS(2051), 7, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - anon_sym_COLON, - ACTIONS(2395), 26, + ACTIONS(2049), 26, ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, anon_sym_DOT, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -70914,7 +67247,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -70925,24 +67257,25 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [82577] = 3, + [77535] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2385), 7, + ACTIONS(2359), 7, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - anon_sym_COLON, - ACTIONS(2383), 26, + ACTIONS(2357), 26, ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, anon_sym_DOT, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -70952,7 +67285,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -70963,24 +67295,25 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [82618] = 3, + [77576] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2165), 7, + ACTIONS(2371), 7, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - anon_sym_COLON, - ACTIONS(2163), 26, + ACTIONS(2369), 26, ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, anon_sym_DOT, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -70990,7 +67323,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -71001,24 +67333,25 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [82659] = 3, + [77617] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2169), 7, + ACTIONS(2375), 7, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - anon_sym_COLON, - ACTIONS(2167), 26, + ACTIONS(2373), 26, ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, anon_sym_DOT, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -71028,7 +67361,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -71039,24 +67371,25 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [82700] = 3, + [77658] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2397), 7, + ACTIONS(2379), 7, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - anon_sym_COLON, - ACTIONS(2395), 26, + ACTIONS(2377), 26, ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, anon_sym_DOT, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -71066,7 +67399,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -71077,24 +67409,25 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [82741] = 3, + [77699] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2385), 7, + ACTIONS(2351), 7, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - anon_sym_COLON, - ACTIONS(2383), 26, + ACTIONS(2349), 26, ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, anon_sym_DOT, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -71104,7 +67437,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -71115,24 +67447,25 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [82782] = 3, + [77740] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2173), 7, + ACTIONS(2055), 7, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - anon_sym_COLON, - ACTIONS(2171), 26, + ACTIONS(2053), 26, ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, anon_sym_DOT, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -71142,7 +67475,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -71153,24 +67485,25 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [82823] = 3, + [77781] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2177), 7, + ACTIONS(2095), 7, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - anon_sym_COLON, - ACTIONS(2175), 26, + ACTIONS(2093), 26, ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, anon_sym_DOT, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -71180,7 +67513,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -71191,24 +67523,25 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [82864] = 3, + [77822] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2277), 7, + ACTIONS(2243), 7, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - anon_sym_COLON, - ACTIONS(2275), 26, + ACTIONS(2241), 26, ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, anon_sym_DOT, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -71218,7 +67551,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -71229,24 +67561,25 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [82905] = 3, + [77863] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2181), 7, + ACTIONS(2059), 7, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - anon_sym_COLON, - ACTIONS(2179), 26, + ACTIONS(2057), 26, ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, anon_sym_DOT, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -71256,7 +67589,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -71267,24 +67599,25 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [82946] = 3, + [77904] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2185), 7, + ACTIONS(2079), 7, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - anon_sym_COLON, - ACTIONS(2183), 26, + ACTIONS(2077), 26, ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, anon_sym_DOT, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -71294,7 +67627,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -71305,24 +67637,25 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [82987] = 3, + [77945] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2365), 7, + ACTIONS(2079), 7, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - anon_sym_COLON, - ACTIONS(2363), 26, + ACTIONS(2077), 26, ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, anon_sym_DOT, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -71332,7 +67665,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -71343,24 +67675,25 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [83028] = 3, + [77986] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2181), 7, + ACTIONS(2339), 7, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - anon_sym_COLON, - ACTIONS(2179), 26, + ACTIONS(2337), 26, ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, anon_sym_DOT, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -71370,7 +67703,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -71381,24 +67713,25 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [83069] = 3, + [78027] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2185), 7, + ACTIONS(2331), 7, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - anon_sym_COLON, - ACTIONS(2183), 26, + ACTIONS(2329), 26, ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, anon_sym_DOT, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -71408,7 +67741,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -71419,24 +67751,25 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [83110] = 3, + [78068] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2361), 7, + ACTIONS(2327), 7, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - anon_sym_COLON, - ACTIONS(2359), 26, + ACTIONS(2325), 26, ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, anon_sym_DOT, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -71446,7 +67779,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -71457,24 +67789,25 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [83151] = 3, + [78109] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2357), 7, + ACTIONS(2323), 7, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - anon_sym_COLON, - ACTIONS(2355), 26, + ACTIONS(2321), 26, ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, anon_sym_DOT, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -71484,7 +67817,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -71495,24 +67827,25 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [83192] = 3, + [78150] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2353), 7, + ACTIONS(2319), 7, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - anon_sym_COLON, - ACTIONS(2351), 26, + ACTIONS(2317), 26, ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, anon_sym_DOT, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -71522,7 +67855,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -71533,24 +67865,25 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [83233] = 3, + [78191] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2325), 7, + ACTIONS(2315), 7, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - anon_sym_COLON, - ACTIONS(2323), 26, + ACTIONS(2313), 26, ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, anon_sym_DOT, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -71560,7 +67893,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -71571,24 +67903,25 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [83274] = 3, + [78232] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2205), 7, + ACTIONS(2283), 7, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - anon_sym_COLON, - ACTIONS(2203), 26, + ACTIONS(2281), 26, ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, anon_sym_DOT, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -71598,7 +67931,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -71609,24 +67941,25 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [83315] = 3, + [78273] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2213), 7, + ACTIONS(2271), 7, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - anon_sym_COLON, - ACTIONS(2211), 26, + ACTIONS(2269), 26, ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, anon_sym_DOT, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -71636,7 +67969,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -71647,24 +67979,25 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [83356] = 3, + [78314] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2217), 7, + ACTIONS(2311), 7, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - anon_sym_COLON, - ACTIONS(2215), 26, + ACTIONS(2309), 26, ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, anon_sym_DOT, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -71674,7 +68007,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -71685,24 +68017,25 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [83397] = 3, + [78355] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2313), 7, + ACTIONS(2008), 7, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - anon_sym_COLON, - ACTIONS(2311), 26, + ACTIONS(2006), 26, ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, anon_sym_DOT, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -71712,7 +68045,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -71723,24 +68055,25 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [83438] = 3, + [78396] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2229), 7, + ACTIONS(2027), 7, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - anon_sym_COLON, - ACTIONS(2227), 26, + ACTIONS(2025), 26, ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, anon_sym_DOT, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -71750,7 +68083,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -71761,24 +68093,25 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [83479] = 3, + [78437] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2229), 7, + ACTIONS(2031), 7, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - anon_sym_COLON, - ACTIONS(2227), 26, + ACTIONS(2029), 26, ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, anon_sym_DOT, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -71788,7 +68121,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -71799,24 +68131,25 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [83520] = 3, + [78478] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2057), 7, + ACTIONS(2063), 7, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - anon_sym_COLON, - ACTIONS(2055), 26, + ACTIONS(2061), 26, ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, anon_sym_DOT, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -71826,7 +68159,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -71837,24 +68169,25 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [83561] = 3, + [78519] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2237), 7, + ACTIONS(2299), 7, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - anon_sym_COLON, - ACTIONS(2235), 26, + ACTIONS(2297), 26, ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, anon_sym_DOT, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -71864,7 +68197,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -71875,24 +68207,25 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [83602] = 3, + [78560] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2317), 7, + ACTIONS(2027), 7, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - anon_sym_COLON, - ACTIONS(2315), 26, + ACTIONS(2025), 26, ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, anon_sym_DOT, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -71902,7 +68235,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -71913,24 +68245,25 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [83643] = 3, + [78601] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2069), 7, + ACTIONS(2287), 7, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - anon_sym_COLON, - ACTIONS(2067), 26, + ACTIONS(2285), 26, ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, anon_sym_DOT, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -71940,7 +68273,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -71951,24 +68283,25 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [83684] = 3, + [78642] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2281), 7, + ACTIONS(2027), 7, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - anon_sym_COLON, - ACTIONS(2279), 26, + ACTIONS(2025), 26, ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, anon_sym_DOT, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -71978,7 +68311,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -71989,24 +68321,25 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [83725] = 3, + [78683] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2065), 7, + ACTIONS(2019), 7, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - anon_sym_COLON, - ACTIONS(2063), 26, + ACTIONS(2017), 26, ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, anon_sym_DOT, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -72016,7 +68349,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -72027,24 +68359,25 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [83766] = 3, + [78724] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2333), 7, + ACTIONS(2067), 7, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - anon_sym_COLON, - ACTIONS(2331), 26, + ACTIONS(2065), 26, ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, anon_sym_DOT, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -72054,7 +68387,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -72065,24 +68397,25 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [83807] = 3, + [78765] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2285), 7, + ACTIONS(2071), 7, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - anon_sym_COLON, - ACTIONS(2283), 26, + ACTIONS(2069), 26, ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, anon_sym_DOT, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -72092,7 +68425,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -72103,24 +68435,25 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [83848] = 3, + [78806] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2305), 7, + ACTIONS(2075), 7, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - anon_sym_COLON, - ACTIONS(2303), 26, + ACTIONS(2073), 26, ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, anon_sym_DOT, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -72130,7 +68463,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -72141,28 +68473,29 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [83889] = 6, + [78847] = 6, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2667), 1, + ACTIONS(2629), 1, anon_sym_POUND_, - ACTIONS(2664), 2, + ACTIONS(2626), 2, sym__ws, sym_comment, - STATE(930), 3, + STATE(892), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(2022), 7, + ACTIONS(1974), 7, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - anon_sym_COLON, - ACTIONS(2020), 19, + ACTIONS(1972), 19, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -72170,7 +68503,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -72181,24 +68513,25 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [83935] = 4, + [78893] = 4, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2597), 1, + ACTIONS(2559), 1, anon_sym_DOT, - ACTIONS(2599), 7, + ACTIONS(2561), 7, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - anon_sym_COLON, - ACTIONS(2595), 24, + ACTIONS(2557), 24, sym__ws, sym_comment, anon_sym_POUND_, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -72208,7 +68541,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -72219,32 +68551,33 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [83977] = 3, + [78935] = 4, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2672), 7, + ACTIONS(2559), 1, + anon_sym_DOT, + ACTIONS(2634), 7, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - anon_sym_COLON, - ACTIONS(2670), 24, + ACTIONS(2632), 23, + ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, sym_num_lit, + anon_sym_COLON_COLON, 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_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -72255,33 +68588,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [84016] = 4, + [78976] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2597), 1, - anon_sym_DOT, - ACTIONS(2676), 7, + ACTIONS(2638), 7, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - anon_sym_COLON, - ACTIONS(2674), 23, - ts_builtin_sym_end, + ACTIONS(2636), 24, sym__ws, sym_comment, anon_sym_POUND_, sym_num_lit, + anon_sym_COLON_COLON, 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_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -72292,24 +68624,25 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [84057] = 4, + [79015] = 4, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2680), 1, + ACTIONS(1606), 1, anon_sym_DOT, - ACTIONS(2682), 7, + ACTIONS(2642), 7, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - anon_sym_COLON, - ACTIONS(2678), 22, + ACTIONS(2640), 22, sym__ws, sym_comment, anon_sym_POUND_, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -72317,7 +68650,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -72328,31 +68660,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [84097] = 3, + [79055] = 4, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2686), 7, + ACTIONS(1154), 1, + anon_sym_DOT, + ACTIONS(2642), 7, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - anon_sym_COLON, - ACTIONS(2684), 23, + ACTIONS(2640), 22, sym__ws, sym_comment, anon_sym_POUND_, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -72363,24 +68696,25 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [84135] = 4, + [79095] = 4, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1498), 1, + ACTIONS(2559), 1, anon_sym_DOT, - ACTIONS(2682), 7, + ACTIONS(2642), 7, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - anon_sym_COLON, - ACTIONS(2678), 22, + ACTIONS(2640), 22, sym__ws, sym_comment, anon_sym_POUND_, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -72388,7 +68722,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -72399,22 +68732,23 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [84175] = 3, + [79135] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2690), 7, + ACTIONS(2646), 7, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - anon_sym_COLON, - ACTIONS(2688), 23, + ACTIONS(2644), 23, sym__ws, sym_comment, anon_sym_POUND_, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -72423,7 +68757,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -72434,22 +68767,23 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [84213] = 3, + [79173] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2694), 7, + ACTIONS(2650), 7, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - anon_sym_COLON, - ACTIONS(2692), 23, + ACTIONS(2648), 23, sym__ws, sym_comment, anon_sym_POUND_, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -72458,7 +68792,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -72469,22 +68802,23 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [84251] = 3, + [79211] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2698), 7, + ACTIONS(2654), 7, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - anon_sym_COLON, - ACTIONS(2696), 23, + ACTIONS(2652), 23, sym__ws, sym_comment, anon_sym_POUND_, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -72493,7 +68827,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -72504,31 +68837,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [84289] = 3, + [79249] = 4, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2702), 7, + ACTIONS(2656), 1, + anon_sym_DOT, + ACTIONS(2642), 7, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - anon_sym_COLON, - ACTIONS(2700), 23, + ACTIONS(2640), 22, sym__ws, sym_comment, anon_sym_POUND_, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -72539,24 +68873,25 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [84327] = 4, + [79289] = 4, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1106), 1, + ACTIONS(2658), 1, anon_sym_DOT, - ACTIONS(2682), 7, + ACTIONS(2642), 7, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - anon_sym_COLON, - ACTIONS(2678), 22, + ACTIONS(2640), 22, sym__ws, sym_comment, anon_sym_POUND_, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -72564,7 +68899,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -72575,32 +68909,31 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [84367] = 4, + [79329] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2597), 1, - anon_sym_DOT, - ACTIONS(2682), 7, + ACTIONS(2662), 7, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - anon_sym_COLON, - ACTIONS(2678), 22, + ACTIONS(2660), 23, sym__ws, sym_comment, anon_sym_POUND_, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -72611,32 +68944,31 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [84407] = 4, + [79367] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2704), 1, - anon_sym_DOT, - ACTIONS(2682), 7, + ACTIONS(2666), 7, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - anon_sym_COLON, - ACTIONS(2678), 22, + ACTIONS(2664), 23, sym__ws, sym_comment, anon_sym_POUND_, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -72647,24 +68979,25 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [84447] = 4, + [79405] = 4, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1094), 1, + ACTIONS(2668), 1, anon_sym_DOT, - ACTIONS(2682), 7, + ACTIONS(2642), 7, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - anon_sym_COLON, - ACTIONS(2678), 22, + ACTIONS(2640), 22, sym__ws, sym_comment, anon_sym_POUND_, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -72672,7 +69005,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -72683,24 +69015,25 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [84487] = 4, + [79445] = 4, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2706), 1, + ACTIONS(1166), 1, anon_sym_DOT, - ACTIONS(2682), 7, + ACTIONS(2642), 7, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - anon_sym_COLON, - ACTIONS(2678), 22, + ACTIONS(2640), 22, sym__ws, sym_comment, anon_sym_POUND_, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -72708,7 +69041,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -72719,22 +69051,23 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [84527] = 3, + [79485] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2710), 7, + ACTIONS(2672), 7, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - anon_sym_COLON, - ACTIONS(2708), 23, + ACTIONS(2670), 23, sym__ws, sym_comment, anon_sym_POUND_, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -72743,7 +69076,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -72754,22 +69086,60 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [84565] = 3, + [79523] = 6, + ACTIONS(3), 1, + sym_block_comment, + ACTIONS(1988), 1, + anon_sym_DOT, + ACTIONS(2674), 1, + anon_sym_COLON, + ACTIONS(2676), 1, + anon_sym_COLON_COLON, + STATE(782), 1, + aux_sym_dotted_sym_lit_repeat1, + ACTIONS(1986), 25, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_EQ, + sym_accumulation_verb, + anon_sym_for, + anon_sym_and, + anon_sym_as, + anon_sym_with, + anon_sym_do, + anon_sym_while, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + anon_sym_into, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + [79566] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2714), 7, + ACTIONS(2680), 7, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - anon_sym_COLON, - ACTIONS(2712), 22, + ACTIONS(2678), 22, sym__ws, sym_comment, anon_sym_POUND_, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -72777,7 +69147,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -72788,22 +69157,23 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [84602] = 3, + [79603] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2718), 7, + ACTIONS(2684), 7, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - anon_sym_COLON, - ACTIONS(2716), 22, + ACTIONS(2682), 22, sym__ws, sym_comment, anon_sym_POUND_, sym_num_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, anon_sym_CARET, @@ -72811,7 +69181,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_POUND, anon_sym_POUND_EQ, @@ -72822,21 +69191,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [84639] = 6, + [79640] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2047), 1, - anon_sym_DOT, - ACTIONS(2720), 1, - anon_sym_COLON_COLON, - ACTIONS(2722), 1, + ACTIONS(2023), 1, anon_sym_COLON, - STATE(816), 1, - aux_sym_dotted_sym_lit_repeat1, - ACTIONS(2045), 25, + ACTIONS(2021), 27, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_DOT, + anon_sym_COLON_COLON, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -72859,21 +69224,21 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [84682] = 3, + [79676] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2061), 1, + ACTIONS(2019), 1, anon_sym_COLON, - ACTIONS(2059), 27, + ACTIONS(2017), 27, sym__ws, sym_comment, anon_sym_POUND_, anon_sym_DOT, + anon_sym_COLON_COLON, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COLON_COLON, anon_sym_EQ, sym_accumulation_verb, anon_sym_for, @@ -72892,21 +69257,21 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [84718] = 3, + [79712] = 4, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2057), 1, - anon_sym_COLON, - ACTIONS(2055), 27, + ACTIONS(2686), 1, + anon_sym_DOT, + STATE(915), 1, + aux_sym_dotted_sym_lit_repeat1, + ACTIONS(2002), 25, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_DOT, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COLON_COLON, anon_sym_EQ, sym_accumulation_verb, anon_sym_for, @@ -72925,14 +69290,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [84754] = 4, + [79749] = 4, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2724), 1, + ACTIONS(2686), 1, anon_sym_DOT, - STATE(953), 1, + STATE(916), 1, aux_sym_dotted_sym_lit_repeat1, - ACTIONS(2037), 25, + ACTIONS(1996), 25, sym__ws, sym_comment, anon_sym_POUND_, @@ -72958,14 +69323,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [84791] = 4, + [79786] = 4, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2726), 1, + ACTIONS(2688), 1, anon_sym_DOT, - STATE(953), 1, + STATE(916), 1, aux_sym_dotted_sym_lit_repeat1, - ACTIONS(2030), 25, + ACTIONS(2010), 25, sym__ws, sym_comment, anon_sym_POUND_, @@ -72991,14 +69356,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [84828] = 4, + [79823] = 4, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2724), 1, + ACTIONS(2686), 1, anon_sym_DOT, - STATE(952), 1, + STATE(915), 1, aux_sym_dotted_sym_lit_repeat1, - ACTIONS(2024), 25, + ACTIONS(2006), 25, sym__ws, sym_comment, anon_sym_POUND_, @@ -73024,52 +69389,58 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [84865] = 4, + [79860] = 6, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2724), 1, - anon_sym_DOT, - STATE(952), 1, - aux_sym_dotted_sym_lit_repeat1, - ACTIONS(2041), 25, + ACTIONS(2694), 1, + anon_sym_POUND_, + ACTIONS(2691), 2, sym__ws, sym_comment, - anon_sym_POUND_, + ACTIONS(1974), 3, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_POUND_QMARK, + STATE(918), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(1972), 17, + anon_sym_COLON_COLON, + aux_sym_str_lit_token1, + aux_sym_sym_lit_token1, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_EQ, - sym_accumulation_verb, - anon_sym_for, - anon_sym_and, - anon_sym_as, - anon_sym_with, - anon_sym_do, - anon_sym_while, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - anon_sym_into, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - [84902] = 2, + 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_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + [79900] = 6, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2030), 26, + ACTIONS(2700), 1, + anon_sym_POUND_, + ACTIONS(2705), 1, + anon_sym_into, + ACTIONS(2697), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_DOT, + STATE(1878), 2, + sym__gap, + sym_dis_expr, + ACTIONS(2703), 20, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_EQ, sym_accumulation_verb, anon_sym_for, anon_sym_and, @@ -73083,28 +69454,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_always, anon_sym_thereis, anon_sym_never, - anon_sym_into, anon_sym_finally, anon_sym_return, anon_sym_initially, - [84934] = 6, + [79940] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2732), 1, - anon_sym_POUND_, - ACTIONS(2737), 1, - anon_sym_into, - ACTIONS(2729), 2, + ACTIONS(2010), 26, sym__ws, sym_comment, - STATE(1916), 2, - sym__gap, - sym_dis_expr, - ACTIONS(2735), 20, + anon_sym_POUND_, + anon_sym_DOT, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_EQ, sym_accumulation_verb, anon_sym_for, anon_sym_and, @@ -73118,23 +69483,24 @@ static uint16_t ts_small_parse_table[] = { anon_sym_always, anon_sym_thereis, anon_sym_never, + anon_sym_into, anon_sym_finally, anon_sym_return, anon_sym_initially, - [84974] = 6, + [79972] = 6, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2742), 1, + ACTIONS(2710), 1, anon_sym_POUND_, - ACTIONS(2747), 1, + ACTIONS(2715), 1, anon_sym_into, - ACTIONS(2739), 2, + ACTIONS(2707), 2, sym__ws, sym_comment, - STATE(1921), 2, + STATE(1873), 2, sym__gap, sym_dis_expr, - ACTIONS(2745), 20, + ACTIONS(2713), 20, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -73155,10 +69521,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [85014] = 2, + [80012] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2139), 25, + ACTIONS(2297), 25, sym__ws, sym_comment, anon_sym_POUND_, @@ -73184,10 +69550,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [85045] = 2, + [80043] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2343), 25, + ACTIONS(2221), 25, sym__ws, sym_comment, anon_sym_POUND_, @@ -73213,10 +69579,178 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [85076] = 2, + [80074] = 7, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2279), 25, + ACTIONS(1988), 1, + anon_sym_DOT, + ACTIONS(2717), 1, + anon_sym_COLON, + ACTIONS(2719), 1, + anon_sym_COLON_COLON, + STATE(782), 1, + aux_sym_dotted_sym_lit_repeat1, + ACTIONS(1994), 2, + anon_sym_POUND, + anon_sym_POUND_QMARK, + ACTIONS(1986), 19, + sym__ws, + sym_comment, + anon_sym_POUND_, + aux_sym_str_lit_token1, + 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_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + [80115] = 24, + ACTIONS(3), 1, + sym_block_comment, + ACTIONS(23), 1, + anon_sym_CARET, + ACTIONS(25), 1, + anon_sym_POUND_CARET, + ACTIONS(670), 1, + anon_sym_LPAREN, + ACTIONS(672), 1, + anon_sym_POUND0A, + ACTIONS(674), 1, + anon_sym_POUND, + ACTIONS(2721), 1, + aux_sym_sym_lit_token1, + ACTIONS(2723), 1, + anon_sym_POUND_QMARK, + ACTIONS(2725), 1, + anon_sym_POUND_QMARK_AT, + ACTIONS(2727), 1, + anon_sym_POUND_SQUOTE, + ACTIONS(2729), 1, + anon_sym_POUND_EQ, + ACTIONS(2731), 1, + anon_sym_AT, + ACTIONS(2733), 1, + anon_sym_SQUOTE, + ACTIONS(2735), 1, + anon_sym_COMMA_AT, + ACTIONS(2737), 1, + anon_sym_POUND_PLUS, + ACTIONS(2739), 1, + anon_sym_POUND_DASH, + ACTIONS(2741), 1, + anon_sym_POUNDC, + STATE(590), 1, + sym__bare_vec_lit, + STATE(591), 1, + sym__bare_set_lit, + STATE(1162), 1, + sym_meta_lit, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1199), 1, + aux_sym_sym_lit_repeat1, + STATE(1337), 1, + sym__metadata_lit, + STATE(589), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + [80190] = 24, + ACTIONS(3), 1, + sym_block_comment, + ACTIONS(23), 1, + anon_sym_CARET, + ACTIONS(25), 1, + anon_sym_POUND_CARET, + ACTIONS(572), 1, + anon_sym_LPAREN, + ACTIONS(574), 1, + anon_sym_POUND0A, + ACTIONS(576), 1, + anon_sym_POUND, + ACTIONS(2743), 1, + aux_sym_sym_lit_token1, + ACTIONS(2745), 1, + anon_sym_POUND_QMARK, + ACTIONS(2747), 1, + anon_sym_POUND_QMARK_AT, + ACTIONS(2749), 1, + anon_sym_POUND_SQUOTE, + ACTIONS(2751), 1, + anon_sym_POUND_EQ, + ACTIONS(2753), 1, + anon_sym_AT, + ACTIONS(2755), 1, + anon_sym_SQUOTE, + ACTIONS(2757), 1, + anon_sym_COMMA_AT, + ACTIONS(2759), 1, + anon_sym_POUND_PLUS, + ACTIONS(2761), 1, + anon_sym_POUND_DASH, + ACTIONS(2763), 1, + anon_sym_POUNDC, + STATE(1087), 1, + sym__bare_vec_lit, + STATE(1088), 1, + sym__bare_set_lit, + STATE(1162), 1, + sym_meta_lit, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1199), 1, + aux_sym_sym_lit_repeat1, + STATE(1337), 1, + sym__metadata_lit, + STATE(1086), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + [80265] = 5, + ACTIONS(3), 1, + sym_block_comment, + ACTIONS(2765), 1, + anon_sym_DOT, + STATE(1021), 1, + aux_sym_dotted_sym_lit_repeat1, + ACTIONS(2004), 3, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_POUND_QMARK, + ACTIONS(2002), 20, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON_COLON, + aux_sym_str_lit_token1, + 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_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + [80302] = 2, + ACTIONS(3), 1, + sym_block_comment, + ACTIONS(2265), 25, sym__ws, sym_comment, anon_sym_POUND_, @@ -73242,10 +69776,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [85107] = 2, + [80333] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2287), 25, + ACTIONS(2273), 25, sym__ws, sym_comment, anon_sym_POUND_, @@ -73271,10 +69805,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [85138] = 2, + [80364] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2291), 25, + ACTIONS(2289), 25, sym__ws, sym_comment, anon_sym_POUND_, @@ -73300,10 +69834,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [85169] = 2, + [80395] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2295), 25, + ACTIONS(2293), 25, sym__ws, sym_comment, anon_sym_POUND_, @@ -73329,10 +69863,93 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [85200] = 2, + [80426] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2299), 25, + ACTIONS(2765), 1, + anon_sym_DOT, + STATE(1021), 1, + aux_sym_dotted_sym_lit_repeat1, + ACTIONS(2008), 3, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_POUND_QMARK, + ACTIONS(2006), 20, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON_COLON, + aux_sym_str_lit_token1, + 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_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + [80463] = 24, + ACTIONS(3), 1, + sym_block_comment, + ACTIONS(23), 1, + anon_sym_CARET, + ACTIONS(25), 1, + anon_sym_POUND_CARET, + ACTIONS(27), 1, + anon_sym_LPAREN, + ACTIONS(29), 1, + anon_sym_POUND0A, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(2767), 1, + aux_sym_sym_lit_token1, + ACTIONS(2769), 1, + anon_sym_POUND_QMARK, + ACTIONS(2771), 1, + anon_sym_POUND_QMARK_AT, + ACTIONS(2773), 1, + anon_sym_POUND_SQUOTE, + ACTIONS(2775), 1, + anon_sym_POUND_EQ, + ACTIONS(2777), 1, + anon_sym_AT, + ACTIONS(2779), 1, + anon_sym_SQUOTE, + ACTIONS(2781), 1, + anon_sym_COMMA_AT, + ACTIONS(2783), 1, + anon_sym_POUND_PLUS, + ACTIONS(2785), 1, + anon_sym_POUND_DASH, + ACTIONS(2787), 1, + anon_sym_POUNDC, + STATE(840), 1, + sym__bare_set_lit, + STATE(855), 1, + sym__bare_vec_lit, + STATE(1162), 1, + sym_meta_lit, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1199), 1, + aux_sym_sym_lit_repeat1, + STATE(1337), 1, + sym__metadata_lit, + STATE(856), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + [80538] = 2, + ACTIONS(3), 1, + sym_block_comment, + ACTIONS(2261), 25, sym__ws, sym_comment, anon_sym_POUND_, @@ -73358,10 +69975,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [85231] = 2, + [80569] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2391), 25, + ACTIONS(2081), 25, sym__ws, sym_comment, anon_sym_POUND_, @@ -73387,61 +70004,61 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [85262] = 24, + [80600] = 24, ACTIONS(3), 1, sym_block_comment, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(612), 1, + ACTIONS(528), 1, anon_sym_LPAREN, - ACTIONS(614), 1, + ACTIONS(530), 1, anon_sym_POUND0A, - ACTIONS(616), 1, + ACTIONS(532), 1, anon_sym_POUND, - ACTIONS(2749), 1, + ACTIONS(2789), 1, aux_sym_sym_lit_token1, - ACTIONS(2751), 1, + ACTIONS(2791), 1, anon_sym_POUND_QMARK, - ACTIONS(2753), 1, + ACTIONS(2793), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(2755), 1, + ACTIONS(2795), 1, anon_sym_POUND_SQUOTE, - ACTIONS(2757), 1, + ACTIONS(2797), 1, anon_sym_POUND_EQ, - ACTIONS(2759), 1, + ACTIONS(2799), 1, anon_sym_AT, - ACTIONS(2761), 1, + ACTIONS(2801), 1, anon_sym_SQUOTE, - ACTIONS(2763), 1, + ACTIONS(2803), 1, anon_sym_COMMA_AT, - ACTIONS(2765), 1, + ACTIONS(2805), 1, anon_sym_POUND_PLUS, - ACTIONS(2767), 1, + ACTIONS(2807), 1, anon_sym_POUND_DASH, - ACTIONS(2769), 1, + ACTIONS(2809), 1, anon_sym_POUNDC, - STATE(1061), 1, + STATE(1019), 1, sym__bare_set_lit, - STATE(1062), 1, + STATE(1020), 1, sym__bare_vec_lit, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1241), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1199), 1, aux_sym_sym_lit_repeat1, - STATE(1369), 1, + STATE(1337), 1, sym__metadata_lit, - STATE(1063), 3, + STATE(928), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [85337] = 2, + [80675] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2331), 25, + ACTIONS(2125), 25, sym__ws, sym_comment, anon_sym_POUND_, @@ -73467,10 +70084,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [85368] = 2, + [80706] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2387), 25, + ACTIONS(2345), 25, sym__ws, sym_comment, anon_sym_POUND_, @@ -73496,10 +70113,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [85399] = 2, + [80737] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2375), 25, + ACTIONS(2345), 25, sym__ws, sym_comment, anon_sym_POUND_, @@ -73525,10 +70142,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [85430] = 2, + [80768] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2375), 25, + ACTIONS(2365), 25, sym__ws, sym_comment, anon_sym_POUND_, @@ -73554,10 +70171,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [85461] = 2, + [80799] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2371), 25, + ACTIONS(2361), 25, sym__ws, sym_comment, anon_sym_POUND_, @@ -73583,10 +70200,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [85492] = 2, + [80830] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2191), 25, + ACTIONS(2353), 25, sym__ws, sym_comment, anon_sym_POUND_, @@ -73612,10 +70229,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [85523] = 2, + [80861] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2199), 25, + ACTIONS(2277), 25, sym__ws, sym_comment, anon_sym_POUND_, @@ -73641,10 +70258,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [85554] = 2, + [80892] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2024), 25, + ACTIONS(2353), 25, sym__ws, sym_comment, anon_sym_POUND_, @@ -73670,10 +70287,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [85585] = 2, + [80923] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2115), 25, + ACTIONS(2277), 25, sym__ws, sym_comment, anon_sym_POUND_, @@ -73699,10 +70316,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [85616] = 2, + [80954] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2267), 25, + ACTIONS(2301), 25, sym__ws, sym_comment, anon_sym_POUND_, @@ -73728,10 +70345,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [85647] = 2, + [80985] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2395), 25, + ACTIONS(2033), 25, sym__ws, sym_comment, anon_sym_POUND_, @@ -73757,10 +70374,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [85678] = 2, + [81016] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2383), 25, + ACTIONS(2037), 25, sym__ws, sym_comment, anon_sym_POUND_, @@ -73786,10 +70403,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [85709] = 2, + [81047] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2363), 25, + ACTIONS(2041), 25, sym__ws, sym_comment, anon_sym_POUND_, @@ -73815,10 +70432,61 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [85740] = 2, + [81078] = 24, + ACTIONS(3), 1, + sym_block_comment, + ACTIONS(23), 1, + anon_sym_CARET, + ACTIONS(25), 1, + anon_sym_POUND_CARET, + ACTIONS(1180), 1, + anon_sym_LPAREN, + ACTIONS(1182), 1, + anon_sym_POUND0A, + ACTIONS(1184), 1, + anon_sym_POUND, + ACTIONS(2811), 1, + aux_sym_sym_lit_token1, + ACTIONS(2813), 1, + anon_sym_POUND_QMARK, + ACTIONS(2815), 1, + anon_sym_POUND_QMARK_AT, + ACTIONS(2817), 1, + anon_sym_POUND_SQUOTE, + ACTIONS(2819), 1, + anon_sym_POUND_EQ, + ACTIONS(2821), 1, + anon_sym_AT, + ACTIONS(2823), 1, + anon_sym_SQUOTE, + ACTIONS(2825), 1, + anon_sym_COMMA_AT, + ACTIONS(2827), 1, + anon_sym_POUND_PLUS, + ACTIONS(2829), 1, + anon_sym_POUND_DASH, + ACTIONS(2831), 1, + anon_sym_POUNDC, + STATE(1162), 1, + sym_meta_lit, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1199), 1, + aux_sym_sym_lit_repeat1, + STATE(1228), 1, + sym__bare_vec_lit, + STATE(1229), 1, + sym__bare_set_lit, + STATE(1337), 1, + sym__metadata_lit, + STATE(1227), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + [81153] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2359), 25, + ACTIONS(2045), 25, sym__ws, sym_comment, anon_sym_POUND_, @@ -73844,10 +70512,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [85771] = 2, + [81184] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2355), 25, + ACTIONS(2045), 25, sym__ws, sym_comment, anon_sym_POUND_, @@ -73873,10 +70541,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [85802] = 2, + [81215] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2351), 25, + ACTIONS(2049), 25, sym__ws, sym_comment, anon_sym_POUND_, @@ -73902,10 +70570,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [85833] = 2, + [81246] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2323), 25, + ACTIONS(2053), 25, sym__ws, sym_comment, anon_sym_POUND_, @@ -73931,10 +70599,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [85864] = 2, + [81277] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2323), 25, + ACTIONS(2057), 25, sym__ws, sym_comment, anon_sym_POUND_, @@ -73960,10 +70628,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [85895] = 2, + [81308] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2315), 25, + ACTIONS(2061), 25, sym__ws, sym_comment, anon_sym_POUND_, @@ -73989,10 +70657,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [85926] = 2, + [81339] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2311), 25, + ACTIONS(2065), 25, sym__ws, sym_comment, anon_sym_POUND_, @@ -74018,10 +70686,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [85957] = 2, + [81370] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2067), 25, + ACTIONS(2069), 25, sym__ws, sym_comment, anon_sym_POUND_, @@ -74047,10 +70715,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [85988] = 2, + [81401] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2303), 25, + ACTIONS(2073), 25, sym__ws, sym_comment, anon_sym_POUND_, @@ -74076,10 +70744,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [86019] = 2, + [81432] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2283), 25, + ACTIONS(2077), 25, sym__ws, sym_comment, anon_sym_POUND_, @@ -74105,10 +70773,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [86050] = 2, + [81463] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2063), 25, + ACTIONS(2077), 25, sym__ws, sym_comment, anon_sym_POUND_, @@ -74134,61 +70802,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [86081] = 24, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(19), 1, - anon_sym_CARET, - ACTIONS(21), 1, - anon_sym_POUND_CARET, - ACTIONS(838), 1, - anon_sym_LPAREN, - ACTIONS(840), 1, - anon_sym_POUND0A, - ACTIONS(842), 1, - anon_sym_POUND, - ACTIONS(2771), 1, - aux_sym_sym_lit_token1, - ACTIONS(2773), 1, - anon_sym_POUND_QMARK, - ACTIONS(2775), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(2777), 1, - anon_sym_POUND_SQUOTE, - ACTIONS(2779), 1, - anon_sym_POUND_EQ, - ACTIONS(2781), 1, - anon_sym_AT, - ACTIONS(2783), 1, - anon_sym_SQUOTE, - ACTIONS(2785), 1, - anon_sym_COMMA_AT, - ACTIONS(2787), 1, - anon_sym_POUND_PLUS, - ACTIONS(2789), 1, - anon_sym_POUND_DASH, - ACTIONS(2791), 1, - anon_sym_POUNDC, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, - sym_meta_lit, - STATE(1118), 1, - sym__bare_vec_lit, - STATE(1119), 1, - sym__bare_set_lit, - STATE(1241), 1, - aux_sym_sym_lit_repeat1, - STATE(1369), 1, - sym__metadata_lit, - STATE(1117), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - [86156] = 2, + [81494] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2235), 25, + ACTIONS(2093), 25, sym__ws, sym_comment, anon_sym_POUND_, @@ -74214,10 +70831,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [86187] = 2, + [81525] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2227), 25, + ACTIONS(2101), 25, sym__ws, sym_comment, anon_sym_POUND_, @@ -74243,10 +70860,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [86218] = 2, + [81556] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2227), 25, + ACTIONS(2105), 25, sym__ws, sym_comment, anon_sym_POUND_, @@ -74272,10 +70889,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [86249] = 2, + [81587] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2215), 25, + ACTIONS(2113), 25, sym__ws, sym_comment, anon_sym_POUND_, @@ -74301,10 +70918,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [86280] = 2, + [81618] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2211), 25, + ACTIONS(2137), 25, sym__ws, sym_comment, anon_sym_POUND_, @@ -74330,10 +70947,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [86311] = 2, + [81649] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2203), 25, + ACTIONS(2113), 25, sym__ws, sym_comment, anon_sym_POUND_, @@ -74359,61 +70976,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [86342] = 24, + [81680] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(19), 1, - anon_sym_CARET, - ACTIONS(21), 1, - anon_sym_POUND_CARET, - ACTIONS(23), 1, - anon_sym_LPAREN, - ACTIONS(25), 1, - anon_sym_POUND0A, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(2793), 1, - aux_sym_sym_lit_token1, - ACTIONS(2795), 1, - anon_sym_POUND_QMARK, - ACTIONS(2797), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(2799), 1, - anon_sym_POUND_SQUOTE, - ACTIONS(2801), 1, - anon_sym_POUND_EQ, - ACTIONS(2803), 1, - anon_sym_AT, - ACTIONS(2805), 1, - anon_sym_SQUOTE, - ACTIONS(2807), 1, - anon_sym_COMMA_AT, - ACTIONS(2809), 1, - anon_sym_POUND_PLUS, - ACTIONS(2811), 1, - anon_sym_POUND_DASH, - ACTIONS(2813), 1, - anon_sym_POUNDC, - STATE(837), 1, - sym__bare_vec_lit, - STATE(839), 1, - sym__bare_set_lit, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, - sym_meta_lit, - STATE(1241), 1, - aux_sym_sym_lit_repeat1, - STATE(1369), 1, - sym__metadata_lit, - STATE(836), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - [86417] = 2, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(2183), 25, + ACTIONS(2137), 25, sym__ws, sym_comment, anon_sym_POUND_, @@ -74439,10 +71005,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [86448] = 2, + [81711] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2179), 25, + ACTIONS(2145), 25, sym__ws, sym_comment, anon_sym_POUND_, @@ -74468,10 +71034,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [86479] = 2, + [81742] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2183), 25, + ACTIONS(2161), 25, sym__ws, sym_comment, anon_sym_POUND_, @@ -74497,10 +71063,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [86510] = 2, + [81773] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2179), 25, + ACTIONS(2165), 25, sym__ws, sym_comment, anon_sym_POUND_, @@ -74526,10 +71092,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [86541] = 2, + [81804] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2175), 25, + ACTIONS(2169), 25, sym__ws, sym_comment, anon_sym_POUND_, @@ -74555,10 +71121,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [86572] = 2, + [81835] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2171), 25, + ACTIONS(2181), 25, sym__ws, sym_comment, anon_sym_POUND_, @@ -74584,10 +71150,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [86603] = 2, + [81866] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2167), 25, + ACTIONS(2181), 25, sym__ws, sym_comment, anon_sym_POUND_, @@ -74613,10 +71179,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [86634] = 2, + [81897] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2163), 25, + ACTIONS(2193), 25, sym__ws, sym_comment, anon_sym_POUND_, @@ -74642,10 +71208,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [86665] = 2, + [81928] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2223), 25, + ACTIONS(2197), 25, sym__ws, sym_comment, anon_sym_POUND_, @@ -74671,10 +71237,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [86696] = 2, + [81959] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2115), 25, + ACTIONS(2201), 25, sym__ws, sym_comment, anon_sym_POUND_, @@ -74700,10 +71266,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [86727] = 2, + [81990] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2111), 25, + ACTIONS(2205), 25, sym__ws, sym_comment, anon_sym_POUND_, @@ -74729,10 +71295,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [86758] = 2, + [82021] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2107), 25, + ACTIONS(2205), 25, sym__ws, sym_comment, anon_sym_POUND_, @@ -74758,10 +71324,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [86789] = 2, + [82052] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2099), 25, + ACTIONS(2205), 25, sym__ws, sym_comment, anon_sym_POUND_, @@ -74787,10 +71353,61 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [86820] = 2, + [82083] = 24, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2071), 25, + ACTIONS(23), 1, + anon_sym_CARET, + ACTIONS(25), 1, + anon_sym_POUND_CARET, + ACTIONS(150), 1, + anon_sym_POUND0A, + ACTIONS(152), 1, + anon_sym_POUND, + ACTIONS(413), 1, + anon_sym_LPAREN, + ACTIONS(2833), 1, + aux_sym_sym_lit_token1, + ACTIONS(2835), 1, + anon_sym_POUND_QMARK, + ACTIONS(2837), 1, + anon_sym_POUND_QMARK_AT, + ACTIONS(2839), 1, + anon_sym_POUND_SQUOTE, + ACTIONS(2841), 1, + anon_sym_POUND_EQ, + ACTIONS(2843), 1, + anon_sym_AT, + ACTIONS(2845), 1, + anon_sym_SQUOTE, + ACTIONS(2847), 1, + anon_sym_COMMA_AT, + ACTIONS(2849), 1, + anon_sym_POUND_PLUS, + ACTIONS(2851), 1, + anon_sym_POUND_DASH, + ACTIONS(2853), 1, + anon_sym_POUNDC, + STATE(477), 1, + sym__bare_set_lit, + STATE(478), 1, + sym__bare_vec_lit, + STATE(1162), 1, + sym_meta_lit, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1199), 1, + aux_sym_sym_lit_repeat1, + STATE(1337), 1, + sym__metadata_lit, + STATE(480), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + [82158] = 2, + ACTIONS(3), 1, + sym_block_comment, + ACTIONS(2209), 25, sym__ws, sym_comment, anon_sym_POUND_, @@ -74816,10 +71433,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [86851] = 2, + [82189] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2071), 25, + ACTIONS(2213), 25, sym__ws, sym_comment, anon_sym_POUND_, @@ -74845,10 +71462,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [86882] = 2, + [82220] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2071), 25, + ACTIONS(2217), 25, sym__ws, sym_comment, anon_sym_POUND_, @@ -74874,10 +71491,42 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [86913] = 2, + [82251] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2335), 25, + ACTIONS(2855), 1, + anon_sym_DOT, + STATE(985), 1, + aux_sym_dotted_sym_lit_repeat1, + ACTIONS(2015), 3, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_POUND_QMARK, + ACTIONS(2010), 20, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON_COLON, + aux_sym_str_lit_token1, + 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_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + [82288] = 2, + ACTIONS(3), 1, + sym_block_comment, + ACTIONS(2225), 25, sym__ws, sym_comment, anon_sym_POUND_, @@ -74903,10 +71552,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [86944] = 2, + [82319] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2339), 25, + ACTIONS(2229), 25, sym__ws, sym_comment, anon_sym_POUND_, @@ -74932,10 +71581,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [86975] = 2, + [82350] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2275), 25, + ACTIONS(2233), 25, sym__ws, sym_comment, anon_sym_POUND_, @@ -74961,10 +71610,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [87006] = 2, + [82381] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2327), 25, + ACTIONS(2245), 25, sym__ws, sym_comment, anon_sym_POUND_, @@ -74990,10 +71639,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [87037] = 2, + [82412] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2255), 25, + ACTIONS(2249), 25, sym__ws, sym_comment, anon_sym_POUND_, @@ -75019,61 +71668,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [87068] = 24, + [82443] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(19), 1, - anon_sym_CARET, - ACTIONS(21), 1, - anon_sym_POUND_CARET, - ACTIONS(568), 1, - anon_sym_LPAREN, - ACTIONS(570), 1, - anon_sym_POUND0A, - ACTIONS(572), 1, - anon_sym_POUND, - ACTIONS(2815), 1, - aux_sym_sym_lit_token1, - ACTIONS(2817), 1, - anon_sym_POUND_QMARK, - ACTIONS(2819), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(2821), 1, - anon_sym_POUND_SQUOTE, - ACTIONS(2823), 1, - anon_sym_POUND_EQ, - ACTIONS(2825), 1, - anon_sym_AT, - ACTIONS(2827), 1, - anon_sym_SQUOTE, - ACTIONS(2829), 1, - anon_sym_COMMA_AT, - ACTIONS(2831), 1, - anon_sym_POUND_PLUS, - ACTIONS(2833), 1, - anon_sym_POUND_DASH, - ACTIONS(2835), 1, - anon_sym_POUNDC, - STATE(691), 1, - sym__bare_set_lit, - STATE(693), 1, - sym__bare_vec_lit, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, - sym_meta_lit, - STATE(1241), 1, - aux_sym_sym_lit_repeat1, - STATE(1369), 1, - sym__metadata_lit, - STATE(694), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - [87143] = 2, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(2247), 25, + ACTIONS(2269), 25, sym__ws, sym_comment, anon_sym_POUND_, @@ -75099,10 +71697,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [87174] = 2, + [82474] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2187), 25, + ACTIONS(2281), 25, sym__ws, sym_comment, anon_sym_POUND_, @@ -75128,10 +71726,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [87205] = 2, + [82505] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2415), 25, + ACTIONS(2333), 25, sym__ws, sym_comment, anon_sym_POUND_, @@ -75157,10 +71755,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [87236] = 2, + [82536] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2263), 25, + ACTIONS(2025), 25, sym__ws, sym_comment, anon_sym_POUND_, @@ -75186,10 +71784,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [87267] = 2, + [82567] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2367), 25, + ACTIONS(2025), 25, sym__ws, sym_comment, anon_sym_POUND_, @@ -75215,10 +71813,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [87298] = 2, + [82598] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2379), 25, + ACTIONS(2025), 25, sym__ws, sym_comment, anon_sym_POUND_, @@ -75244,10 +71842,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [87329] = 2, + [82629] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2403), 25, + ACTIONS(2285), 25, sym__ws, sym_comment, anon_sym_POUND_, @@ -75273,61 +71871,39 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [87360] = 24, + [82660] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(19), 1, + ACTIONS(2305), 25, + sym__ws, + sym_comment, + anon_sym_POUND_, anon_sym_CARET, - ACTIONS(21), 1, anon_sym_POUND_CARET, - ACTIONS(524), 1, anon_sym_LPAREN, - ACTIONS(526), 1, - anon_sym_POUND0A, - ACTIONS(528), 1, - anon_sym_POUND, - ACTIONS(2837), 1, - aux_sym_sym_lit_token1, - ACTIONS(2839), 1, - anon_sym_POUND_QMARK, - ACTIONS(2841), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(2843), 1, - anon_sym_POUND_SQUOTE, - ACTIONS(2845), 1, - anon_sym_POUND_EQ, - ACTIONS(2847), 1, - anon_sym_AT, - ACTIONS(2849), 1, - anon_sym_SQUOTE, - ACTIONS(2851), 1, - anon_sym_COMMA_AT, - ACTIONS(2853), 1, - anon_sym_POUND_PLUS, - ACTIONS(2855), 1, - anon_sym_POUND_DASH, - ACTIONS(2857), 1, - anon_sym_POUNDC, - STATE(725), 1, - sym__bare_vec_lit, - STATE(726), 1, - sym__bare_set_lit, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, - sym_meta_lit, - STATE(1241), 1, - aux_sym_sym_lit_repeat1, - STATE(1369), 1, - sym__metadata_lit, - STATE(724), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - [87435] = 2, + anon_sym_RPAREN, + anon_sym_EQ, + sym_accumulation_verb, + anon_sym_for, + anon_sym_and, + anon_sym_as, + anon_sym_with, + anon_sym_do, + anon_sym_while, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + anon_sym_into, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + [82691] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2407), 25, + ACTIONS(2341), 25, sym__ws, sym_comment, anon_sym_POUND_, @@ -75353,10 +71929,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [87466] = 2, + [82722] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2407), 25, + ACTIONS(2002), 25, sym__ws, sym_comment, anon_sym_POUND_, @@ -75382,10 +71958,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [87497] = 2, + [82753] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2407), 25, + ACTIONS(2085), 25, sym__ws, sym_comment, anon_sym_POUND_, @@ -75411,10 +71987,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [87528] = 2, + [82784] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2411), 25, + ACTIONS(2089), 25, sym__ws, sym_comment, anon_sym_POUND_, @@ -75440,10 +72016,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [87559] = 2, + [82815] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2399), 25, + ACTIONS(2097), 25, sym__ws, sym_comment, anon_sym_POUND_, @@ -75469,10 +72045,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [87590] = 2, + [82846] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2347), 25, + ACTIONS(2109), 25, sym__ws, sym_comment, anon_sym_POUND_, @@ -75498,10 +72074,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [87621] = 2, + [82877] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2041), 25, + ACTIONS(2117), 25, sym__ws, sym_comment, anon_sym_POUND_, @@ -75527,10 +72103,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [87652] = 2, + [82908] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2319), 25, + ACTIONS(2121), 25, sym__ws, sym_comment, anon_sym_POUND_, @@ -75556,10 +72132,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [87683] = 2, + [82939] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2307), 25, + ACTIONS(2129), 25, sym__ws, sym_comment, anon_sym_POUND_, @@ -75585,10 +72161,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [87714] = 2, + [82970] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2075), 25, + ACTIONS(2133), 25, sym__ws, sym_comment, anon_sym_POUND_, @@ -75614,10 +72190,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [87745] = 2, + [83001] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2079), 25, + ACTIONS(2141), 25, sym__ws, sym_comment, anon_sym_POUND_, @@ -75643,10 +72219,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [87776] = 2, + [83032] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2083), 25, + ACTIONS(2149), 25, sym__ws, sym_comment, anon_sym_POUND_, @@ -75672,10 +72248,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [87807] = 2, + [83063] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2087), 25, + ACTIONS(2153), 25, sym__ws, sym_comment, anon_sym_POUND_, @@ -75701,10 +72277,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [87838] = 2, + [83094] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2383), 25, + ACTIONS(2173), 25, sym__ws, sym_comment, anon_sym_POUND_, @@ -75730,90 +72306,61 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [87869] = 24, + [83125] = 24, ACTIONS(3), 1, sym_block_comment, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(67), 1, + ACTIONS(620), 1, + anon_sym_LPAREN, + ACTIONS(622), 1, anon_sym_POUND0A, - ACTIONS(69), 1, + ACTIONS(624), 1, anon_sym_POUND, - ACTIONS(381), 1, - anon_sym_LPAREN, - ACTIONS(2859), 1, + ACTIONS(2858), 1, aux_sym_sym_lit_token1, - ACTIONS(2861), 1, + ACTIONS(2860), 1, anon_sym_POUND_QMARK, - ACTIONS(2863), 1, + ACTIONS(2862), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(2865), 1, + ACTIONS(2864), 1, anon_sym_POUND_SQUOTE, - ACTIONS(2867), 1, + ACTIONS(2866), 1, anon_sym_POUND_EQ, - ACTIONS(2869), 1, + ACTIONS(2868), 1, anon_sym_AT, - ACTIONS(2871), 1, + ACTIONS(2870), 1, anon_sym_SQUOTE, - ACTIONS(2873), 1, + ACTIONS(2872), 1, anon_sym_COMMA_AT, - ACTIONS(2875), 1, + ACTIONS(2874), 1, anon_sym_POUND_PLUS, - ACTIONS(2877), 1, + ACTIONS(2876), 1, anon_sym_POUND_DASH, - ACTIONS(2879), 1, + ACTIONS(2878), 1, anon_sym_POUNDC, - STATE(474), 1, - sym__bare_set_lit, - STATE(475), 1, + STATE(745), 1, sym__bare_vec_lit, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(746), 1, + sym__bare_set_lit, + STATE(1162), 1, sym_meta_lit, - STATE(1241), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1199), 1, aux_sym_sym_lit_repeat1, - STATE(1369), 1, + STATE(1337), 1, sym__metadata_lit, - STATE(476), 3, + STATE(744), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [87944] = 2, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(2091), 25, - sym__ws, - sym_comment, - anon_sym_POUND_, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_EQ, - sym_accumulation_verb, - anon_sym_for, - anon_sym_and, - anon_sym_as, - anon_sym_with, - anon_sym_do, - anon_sym_while, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - anon_sym_into, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - [87975] = 2, + [83200] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2095), 25, + ACTIONS(2177), 25, sym__ws, sym_comment, anon_sym_POUND_, @@ -75839,91 +72386,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [88006] = 24, + [83231] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(19), 1, - anon_sym_CARET, - ACTIONS(21), 1, - anon_sym_POUND_CARET, - ACTIONS(23), 1, - anon_sym_LPAREN, - ACTIONS(25), 1, - anon_sym_POUND0A, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(2793), 1, - aux_sym_sym_lit_token1, - ACTIONS(2795), 1, - anon_sym_POUND_QMARK, - ACTIONS(2797), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(2801), 1, - anon_sym_POUND_EQ, - ACTIONS(2813), 1, - anon_sym_POUNDC, - ACTIONS(2881), 1, - anon_sym_POUND_SQUOTE, - ACTIONS(2883), 1, - anon_sym_AT, - ACTIONS(2885), 1, - anon_sym_SQUOTE, - ACTIONS(2887), 1, - anon_sym_COMMA_AT, - ACTIONS(2889), 1, - anon_sym_POUND_PLUS, - ACTIONS(2891), 1, - anon_sym_POUND_DASH, - STATE(837), 1, - sym__bare_vec_lit, - STATE(839), 1, - sym__bare_set_lit, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, - sym_meta_lit, - STATE(1241), 1, - aux_sym_sym_lit_repeat1, - STATE(1369), 1, - sym__metadata_lit, - STATE(836), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - [88081] = 3, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(2061), 4, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_COLON_COLON, - anon_sym_COLON, - ACTIONS(2059), 21, - sym__ws, - sym_comment, - anon_sym_POUND_, - anon_sym_DOT, - sym_kwd_lit, - aux_sym_str_lit_token1, - 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_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - [88114] = 2, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(2259), 25, + ACTIONS(2185), 25, sym__ws, sym_comment, anon_sym_POUND_, @@ -75949,91 +72415,39 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [88145] = 24, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(19), 1, - anon_sym_CARET, - ACTIONS(21), 1, - anon_sym_POUND_CARET, - ACTIONS(838), 1, - anon_sym_LPAREN, - ACTIONS(840), 1, - anon_sym_POUND0A, - ACTIONS(842), 1, - anon_sym_POUND, - ACTIONS(2773), 1, - anon_sym_POUND_QMARK, - ACTIONS(2775), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(2779), 1, - anon_sym_POUND_EQ, - ACTIONS(2791), 1, - anon_sym_POUNDC, - ACTIONS(2893), 1, - aux_sym_sym_lit_token1, - ACTIONS(2895), 1, - anon_sym_POUND_SQUOTE, - ACTIONS(2897), 1, - anon_sym_AT, - ACTIONS(2899), 1, - anon_sym_SQUOTE, - ACTIONS(2901), 1, - anon_sym_COMMA_AT, - ACTIONS(2903), 1, - anon_sym_POUND_PLUS, - ACTIONS(2905), 1, - anon_sym_POUND_DASH, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, - sym_meta_lit, - STATE(1118), 1, - sym__bare_vec_lit, - STATE(1119), 1, - sym__bare_set_lit, - STATE(1241), 1, - aux_sym_sym_lit_repeat1, - STATE(1369), 1, - sym__metadata_lit, - STATE(1117), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - [88220] = 3, + [83262] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2057), 4, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_COLON_COLON, - anon_sym_COLON, - ACTIONS(2055), 21, + ACTIONS(2189), 25, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_DOT, - sym_kwd_lit, - aux_sym_str_lit_token1, - 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_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - [88253] = 2, + anon_sym_RPAREN, + anon_sym_EQ, + sym_accumulation_verb, + anon_sym_for, + anon_sym_and, + anon_sym_as, + anon_sym_with, + anon_sym_do, + anon_sym_while, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + anon_sym_into, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + [83293] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2103), 25, + ACTIONS(2237), 25, sym__ws, sym_comment, anon_sym_POUND_, @@ -76059,10 +72473,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [88284] = 2, + [83324] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2119), 25, + ACTIONS(2241), 25, sym__ws, sym_comment, anon_sym_POUND_, @@ -76088,10 +72502,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [88315] = 2, + [83355] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2123), 25, + ACTIONS(2253), 25, sym__ws, sym_comment, anon_sym_POUND_, @@ -76117,10 +72531,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [88346] = 2, + [83386] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2127), 25, + ACTIONS(2257), 25, sym__ws, sym_comment, anon_sym_POUND_, @@ -76146,10 +72560,42 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [88377] = 2, + [83417] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2131), 25, + ACTIONS(2765), 1, + anon_sym_DOT, + STATE(985), 1, + aux_sym_dotted_sym_lit_repeat1, + ACTIONS(2000), 3, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_POUND_QMARK, + ACTIONS(1996), 20, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON_COLON, + aux_sym_str_lit_token1, + 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_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + [83454] = 2, + ACTIONS(3), 1, + sym_block_comment, + ACTIONS(2357), 25, sym__ws, sym_comment, anon_sym_POUND_, @@ -76175,10 +72621,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [88408] = 2, + [83485] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2135), 25, + ACTIONS(2369), 25, sym__ws, sym_comment, anon_sym_POUND_, @@ -76204,10 +72650,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [88439] = 2, + [83516] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2395), 25, + ACTIONS(2373), 25, sym__ws, sym_comment, anon_sym_POUND_, @@ -76233,10 +72679,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [88470] = 2, + [83547] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2143), 25, + ACTIONS(2377), 25, sym__ws, sym_comment, anon_sym_POUND_, @@ -76262,10 +72708,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [88501] = 2, + [83578] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2147), 25, + ACTIONS(2349), 25, sym__ws, sym_comment, anon_sym_POUND_, @@ -76291,10 +72737,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [88532] = 2, + [83609] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2151), 25, + ACTIONS(2157), 25, sym__ws, sym_comment, anon_sym_POUND_, @@ -76320,10 +72766,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [88563] = 2, + [83640] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2155), 25, + ACTIONS(2337), 25, sym__ws, sym_comment, anon_sym_POUND_, @@ -76349,10 +72795,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [88594] = 2, + [83671] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2159), 25, + ACTIONS(2329), 25, sym__ws, sym_comment, anon_sym_POUND_, @@ -76378,10 +72824,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [88625] = 2, + [83702] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2195), 25, + ACTIONS(2029), 25, sym__ws, sym_comment, anon_sym_POUND_, @@ -76407,10 +72853,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [88656] = 2, + [83733] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2207), 25, + ACTIONS(2006), 25, sym__ws, sym_comment, anon_sym_POUND_, @@ -76436,10 +72882,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [88687] = 2, + [83764] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2219), 25, + ACTIONS(2309), 25, sym__ws, sym_comment, anon_sym_POUND_, @@ -76465,61 +72911,61 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [88718] = 24, + [83795] = 24, ACTIONS(3), 1, sym_block_comment, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(1116), 1, + ACTIONS(27), 1, anon_sym_LPAREN, - ACTIONS(1118), 1, + ACTIONS(29), 1, anon_sym_POUND0A, - ACTIONS(1120), 1, + ACTIONS(31), 1, anon_sym_POUND, - ACTIONS(2907), 1, + ACTIONS(2767), 1, aux_sym_sym_lit_token1, - ACTIONS(2909), 1, + ACTIONS(2769), 1, anon_sym_POUND_QMARK, - ACTIONS(2911), 1, + ACTIONS(2771), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(2913), 1, - anon_sym_POUND_SQUOTE, - ACTIONS(2915), 1, + ACTIONS(2775), 1, anon_sym_POUND_EQ, - ACTIONS(2917), 1, + ACTIONS(2787), 1, + anon_sym_POUNDC, + ACTIONS(2880), 1, + anon_sym_POUND_SQUOTE, + ACTIONS(2882), 1, anon_sym_AT, - ACTIONS(2919), 1, + ACTIONS(2884), 1, anon_sym_SQUOTE, - ACTIONS(2921), 1, + ACTIONS(2886), 1, anon_sym_COMMA_AT, - ACTIONS(2923), 1, + ACTIONS(2888), 1, anon_sym_POUND_PLUS, - ACTIONS(2925), 1, + ACTIONS(2890), 1, anon_sym_POUND_DASH, - ACTIONS(2927), 1, - anon_sym_POUNDC, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(840), 1, + sym__bare_set_lit, + STATE(855), 1, + sym__bare_vec_lit, + STATE(1162), 1, sym_meta_lit, - STATE(1241), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1199), 1, aux_sym_sym_lit_repeat1, - STATE(1330), 1, - sym__bare_vec_lit, - STATE(1331), 1, - sym__bare_set_lit, - STATE(1369), 1, + STATE(1337), 1, sym__metadata_lit, - STATE(1329), 3, + STATE(856), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [88793] = 2, + [83870] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2231), 25, + ACTIONS(2325), 25, sym__ws, sym_comment, anon_sym_POUND_, @@ -76545,10 +72991,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [88824] = 2, + [83901] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2239), 25, + ACTIONS(2321), 25, sym__ws, sym_comment, anon_sym_POUND_, @@ -76574,10 +73020,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [88855] = 2, + [83932] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2243), 25, + ACTIONS(2317), 25, sym__ws, sym_comment, anon_sym_POUND_, @@ -76603,10 +73049,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [88886] = 2, + [83963] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2271), 25, + ACTIONS(2313), 25, sym__ws, sym_comment, anon_sym_POUND_, @@ -76632,81 +73078,107 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [88917] = 2, + [83994] = 18, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2251), 25, - sym__ws, - sym_comment, - anon_sym_POUND_, + ACTIONS(23), 1, anon_sym_CARET, + ACTIONS(25), 1, anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_EQ, - sym_accumulation_verb, - anon_sym_for, - anon_sym_and, - anon_sym_as, - anon_sym_with, - anon_sym_do, - anon_sym_while, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - anon_sym_into, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - [88948] = 5, + ACTIONS(562), 1, + anon_sym_COLON, + ACTIONS(564), 1, + anon_sym_COLON_COLON, + ACTIONS(566), 1, + aux_sym_str_lit_token1, + ACTIONS(2894), 1, + anon_sym_POUND_, + ACTIONS(2896), 1, + aux_sym_sym_lit_token1, + ACTIONS(2898), 1, + anon_sym_LBRACE, + ACTIONS(2900), 1, + anon_sym_POUND_QMARK, + STATE(1162), 1, + sym_meta_lit, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1215), 1, + sym__bare_map_lit, + STATE(1337), 1, + sym__metadata_lit, + STATE(1381), 1, + aux_sym_sym_lit_repeat1, + ACTIONS(2892), 2, + sym__ws, + sym_comment, + STATE(918), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1208), 5, + sym_kwd_lit, + sym_str_lit, + sym_sym_lit, + sym_map_lit, + sym_read_cond_lit, + [84056] = 18, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2929), 1, - anon_sym_DOT, - STATE(1075), 1, - aux_sym_dotted_sym_lit_repeat1, - ACTIONS(2043), 2, - anon_sym_POUND, + ACTIONS(23), 1, + anon_sym_CARET, + ACTIONS(25), 1, + anon_sym_POUND_CARET, + ACTIONS(562), 1, + anon_sym_COLON, + ACTIONS(564), 1, + anon_sym_COLON_COLON, + ACTIONS(566), 1, + aux_sym_str_lit_token1, + ACTIONS(2894), 1, + anon_sym_POUND_, + ACTIONS(2896), 1, + aux_sym_sym_lit_token1, + ACTIONS(2898), 1, + anon_sym_LBRACE, + ACTIONS(2900), 1, anon_sym_POUND_QMARK, - ACTIONS(2041), 20, + STATE(1162), 1, + sym_meta_lit, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1215), 1, + sym__bare_map_lit, + STATE(1337), 1, + sym__metadata_lit, + STATE(1381), 1, + aux_sym_sym_lit_repeat1, + ACTIONS(2892), 2, sym__ws, sym_comment, - anon_sym_POUND_, + STATE(918), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1207), 5, sym_kwd_lit, - aux_sym_str_lit_token1, - 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_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - [88984] = 5, + sym_str_lit, + sym_sym_lit, + sym_map_lit, + sym_read_cond_lit, + [84118] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2931), 1, - anon_sym_DOT, - STATE(1074), 1, - aux_sym_dotted_sym_lit_repeat1, - ACTIONS(2035), 2, + ACTIONS(2015), 3, + anon_sym_COLON, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(2030), 20, + ACTIONS(2010), 21, sym__ws, sym_comment, anon_sym_POUND_, - sym_kwd_lit, + anon_sym_DOT, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, aux_sym_sym_lit_token1, anon_sym_CARET, @@ -76723,21 +73195,19 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [89020] = 5, + [84150] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2929), 1, - anon_sym_DOT, - STATE(1074), 1, - aux_sym_dotted_sym_lit_repeat1, - ACTIONS(2039), 2, + ACTIONS(2023), 3, + anon_sym_COLON, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(2037), 20, + ACTIONS(2021), 21, sym__ws, sym_comment, anon_sym_POUND_, - sym_kwd_lit, + anon_sym_DOT, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, aux_sym_sym_lit_token1, anon_sym_CARET, @@ -76754,195 +73224,284 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [89056] = 7, + [84182] = 18, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2047), 1, - anon_sym_DOT, - ACTIONS(2934), 1, - anon_sym_COLON_COLON, - ACTIONS(2936), 1, + ACTIONS(13), 1, anon_sym_COLON, - STATE(816), 1, - aux_sym_dotted_sym_lit_repeat1, - ACTIONS(2049), 2, - anon_sym_POUND, + ACTIONS(15), 1, + anon_sym_COLON_COLON, + ACTIONS(17), 1, + aux_sym_str_lit_token1, + ACTIONS(23), 1, + anon_sym_CARET, + ACTIONS(25), 1, + anon_sym_POUND_CARET, + ACTIONS(2894), 1, + anon_sym_POUND_, + ACTIONS(2898), 1, + anon_sym_LBRACE, + ACTIONS(2902), 1, + aux_sym_sym_lit_token1, + ACTIONS(2904), 1, anon_sym_POUND_QMARK, - ACTIONS(2045), 18, + STATE(1162), 1, + sym_meta_lit, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1215), 1, + sym__bare_map_lit, + STATE(1337), 1, + sym__metadata_lit, + STATE(1385), 1, + aux_sym_sym_lit_repeat1, + ACTIONS(2892), 2, sym__ws, sym_comment, - anon_sym_POUND_, - aux_sym_sym_lit_token1, + STATE(918), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1207), 5, + sym_kwd_lit, + sym_str_lit, + sym_sym_lit, + sym_map_lit, + sym_read_cond_lit, + [84244] = 18, + ACTIONS(3), 1, + sym_block_comment, + ACTIONS(13), 1, + anon_sym_COLON, + ACTIONS(15), 1, + anon_sym_COLON_COLON, + ACTIONS(17), 1, + aux_sym_str_lit_token1, + ACTIONS(23), 1, anon_sym_CARET, + ACTIONS(25), 1, anon_sym_POUND_CARET, - anon_sym_LPAREN, + ACTIONS(2894), 1, + anon_sym_POUND_, + ACTIONS(2898), 1, 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_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - [89096] = 5, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(2929), 1, - anon_sym_DOT, - STATE(1075), 1, - aux_sym_dotted_sym_lit_repeat1, - ACTIONS(2028), 2, - anon_sym_POUND, + ACTIONS(2902), 1, + aux_sym_sym_lit_token1, + ACTIONS(2904), 1, anon_sym_POUND_QMARK, - ACTIONS(2024), 20, + STATE(1162), 1, + sym_meta_lit, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1215), 1, + sym__bare_map_lit, + STATE(1337), 1, + sym__metadata_lit, + STATE(1385), 1, + aux_sym_sym_lit_repeat1, + ACTIONS(2892), 2, sym__ws, sym_comment, - anon_sym_POUND_, + STATE(918), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1208), 5, sym_kwd_lit, + sym_str_lit, + sym_sym_lit, + sym_map_lit, + sym_read_cond_lit, + [84306] = 18, + ACTIONS(3), 1, + sym_block_comment, + ACTIONS(13), 1, + anon_sym_COLON, + ACTIONS(15), 1, + anon_sym_COLON_COLON, + ACTIONS(17), 1, aux_sym_str_lit_token1, - aux_sym_sym_lit_token1, + ACTIONS(23), 1, anon_sym_CARET, + ACTIONS(25), 1, anon_sym_POUND_CARET, - anon_sym_LPAREN, + ACTIONS(2894), 1, + anon_sym_POUND_, + ACTIONS(2898), 1, 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_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - [89132] = 6, + ACTIONS(2902), 1, + aux_sym_sym_lit_token1, + ACTIONS(2904), 1, + anon_sym_POUND_QMARK, + STATE(1162), 1, + sym_meta_lit, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1215), 1, + sym__bare_map_lit, + STATE(1337), 1, + sym__metadata_lit, + STATE(1385), 1, + aux_sym_sym_lit_repeat1, + ACTIONS(2906), 2, + sym__ws, + sym_comment, + STATE(1042), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1213), 5, + sym_kwd_lit, + sym_str_lit, + sym_sym_lit, + sym_map_lit, + sym_read_cond_lit, + [84368] = 18, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2940), 1, + ACTIONS(23), 1, + anon_sym_CARET, + ACTIONS(25), 1, + anon_sym_POUND_CARET, + ACTIONS(562), 1, + anon_sym_COLON, + ACTIONS(564), 1, + anon_sym_COLON_COLON, + ACTIONS(566), 1, + aux_sym_str_lit_token1, + ACTIONS(2894), 1, anon_sym_POUND_, - ACTIONS(2938), 2, + ACTIONS(2896), 1, + aux_sym_sym_lit_token1, + ACTIONS(2898), 1, + anon_sym_LBRACE, + ACTIONS(2900), 1, + anon_sym_POUND_QMARK, + STATE(1162), 1, + sym_meta_lit, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1215), 1, + sym__bare_map_lit, + STATE(1337), 1, + sym__metadata_lit, + STATE(1381), 1, + aux_sym_sym_lit_repeat1, + ACTIONS(2908), 2, sym__ws, sym_comment, - ACTIONS(2944), 2, - anon_sym_POUND, - anon_sym_POUND_QMARK, - STATE(1084), 3, + STATE(1039), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(2942), 15, - aux_sym_sym_lit_token1, + STATE(1213), 5, + sym_kwd_lit, + sym_str_lit, + sym_sym_lit, + sym_map_lit, + sym_read_cond_lit, + [84430] = 18, + ACTIONS(3), 1, + sym_block_comment, + ACTIONS(23), 1, anon_sym_CARET, + ACTIONS(25), 1, anon_sym_POUND_CARET, - anon_sym_LPAREN, + ACTIONS(562), 1, + anon_sym_COLON, + ACTIONS(564), 1, + anon_sym_COLON_COLON, + ACTIONS(566), 1, + aux_sym_str_lit_token1, + ACTIONS(2894), 1, + anon_sym_POUND_, + ACTIONS(2896), 1, + aux_sym_sym_lit_token1, + ACTIONS(2898), 1, 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_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - [89169] = 2, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(2946), 23, + ACTIONS(2900), 1, + anon_sym_POUND_QMARK, + STATE(1162), 1, + sym_meta_lit, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1215), 1, + sym__bare_map_lit, + STATE(1337), 1, + sym__metadata_lit, + STATE(1381), 1, + aux_sym_sym_lit_repeat1, + ACTIONS(2910), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym_accumulation_verb, - anon_sym_for, - anon_sym_and, - anon_sym_as, - anon_sym_with, - anon_sym_do, - anon_sym_while, - 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, - [89198] = 3, + STATE(1038), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1214), 5, + sym_kwd_lit, + sym_str_lit, + sym_sym_lit, + sym_map_lit, + sym_read_cond_lit, + [84492] = 18, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2057), 3, - anon_sym_POUND, - anon_sym_POUND_QMARK, + ACTIONS(13), 1, anon_sym_COLON, - ACTIONS(2055), 20, - sym__ws, - sym_comment, - anon_sym_POUND_, - anon_sym_DOT, - aux_sym_sym_lit_token1, + ACTIONS(15), 1, + anon_sym_COLON_COLON, + ACTIONS(17), 1, + aux_sym_str_lit_token1, + ACTIONS(23), 1, anon_sym_CARET, + ACTIONS(25), 1, anon_sym_POUND_CARET, - anon_sym_LPAREN, + ACTIONS(2894), 1, + anon_sym_POUND_, + ACTIONS(2898), 1, anon_sym_LBRACE, - anon_sym_POUND0A, - anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, - anon_sym_POUND_SQUOTE, - anon_sym_POUND_EQ, - anon_sym_AT, - anon_sym_SQUOTE, - anon_sym_COMMA_AT, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - [89229] = 2, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(2948), 23, + ACTIONS(2902), 1, + aux_sym_sym_lit_token1, + ACTIONS(2904), 1, + anon_sym_POUND_QMARK, + STATE(1162), 1, + sym_meta_lit, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1215), 1, + sym__bare_map_lit, + STATE(1337), 1, + sym__metadata_lit, + STATE(1385), 1, + aux_sym_sym_lit_repeat1, + ACTIONS(2912), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym_accumulation_verb, - anon_sym_for, - anon_sym_and, - anon_sym_as, - anon_sym_with, - anon_sym_do, - anon_sym_while, - 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, - [89258] = 3, + STATE(1043), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1214), 5, + sym_kwd_lit, + sym_str_lit, + sym_sym_lit, + sym_map_lit, + sym_read_cond_lit, + [84554] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2061), 3, + ACTIONS(2019), 3, + anon_sym_COLON, anon_sym_POUND, anon_sym_POUND_QMARK, - anon_sym_COLON, - ACTIONS(2059), 20, + ACTIONS(2017), 21, sym__ws, sym_comment, anon_sym_POUND_, anon_sym_DOT, + anon_sym_COLON_COLON, + aux_sym_str_lit_token1, aux_sym_sym_lit_token1, anon_sym_CARET, anon_sym_POUND_CARET, @@ -76950,7 +73509,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND0A, anon_sym_POUND_QMARK_AT, - anon_sym_COLON_COLON, anon_sym_POUND_SQUOTE, anon_sym_POUND_EQ, anon_sym_AT, @@ -76959,22 +73517,19 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [89289] = 6, + [84586] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2940), 1, - anon_sym_POUND_, - ACTIONS(2950), 2, - sym__ws, - sym_comment, - ACTIONS(2954), 2, + ACTIONS(2215), 3, + anon_sym_COLON, anon_sym_POUND, anon_sym_POUND_QMARK, - STATE(1090), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - ACTIONS(2952), 15, + ACTIONS(2213), 20, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON_COLON, + aux_sym_str_lit_token1, aux_sym_sym_lit_token1, anon_sym_CARET, anon_sym_POUND_CARET, @@ -76990,22 +73545,19 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [89326] = 6, + [84617] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2940), 1, - anon_sym_POUND_, - ACTIONS(2950), 2, - sym__ws, - sym_comment, - ACTIONS(2958), 2, + ACTIONS(2187), 3, + anon_sym_COLON, anon_sym_POUND, anon_sym_POUND_QMARK, - STATE(1090), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - ACTIONS(2956), 15, + ACTIONS(2185), 20, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON_COLON, + aux_sym_str_lit_token1, aux_sym_sym_lit_token1, anon_sym_CARET, anon_sym_POUND_CARET, @@ -77021,10 +73573,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [89363] = 2, + [84648] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2960), 23, + ACTIONS(2914), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -77048,43 +73600,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [89392] = 8, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(2427), 1, - anon_sym_being, - ACTIONS(2964), 1, - anon_sym_POUND_, - STATE(430), 1, - sym_for_clause_word, - ACTIONS(2962), 2, - sym__ws, - sym_comment, - STATE(555), 2, - sym__for_part, - aux_sym_for_clause_repeat1, - STATE(1381), 2, - sym__gap, - sym_dis_expr, - ACTIONS(2429), 14, - anon_sym_in, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_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, - anon_sym_EQ, - [89433] = 2, + [84677] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2966), 23, + ACTIONS(2916), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -77108,10 +73627,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [89462] = 2, + [84706] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2968), 23, + ACTIONS(2918), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -77135,74 +73654,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [89491] = 8, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(2427), 1, - anon_sym_being, - ACTIONS(2964), 1, - anon_sym_POUND_, - STATE(430), 1, - sym_for_clause_word, - ACTIONS(2962), 2, - sym__ws, - sym_comment, - STATE(553), 2, - sym__for_part, - aux_sym_for_clause_repeat1, - STATE(1381), 2, - sym__gap, - sym_dis_expr, - ACTIONS(2429), 14, - anon_sym_in, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_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, - anon_sym_EQ, - [89532] = 6, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(2973), 1, - anon_sym_POUND_, - ACTIONS(2022), 2, - anon_sym_POUND, - anon_sym_POUND_QMARK, - ACTIONS(2970), 2, - sym__ws, - sym_comment, - STATE(1090), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - ACTIONS(2020), 15, - 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_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - [89569] = 2, + [84735] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2976), 23, + ACTIONS(2920), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -77226,10 +73681,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [89598] = 2, + [84764] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2978), 23, + ACTIONS(2922), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -77253,10 +73708,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [89627] = 2, + [84793] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2980), 23, + ACTIONS(2924), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -77280,10 +73735,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [89656] = 2, + [84822] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2982), 23, + ACTIONS(2926), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -77307,10 +73762,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [89685] = 2, + [84851] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2984), 23, + ACTIONS(2928), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -77334,10 +73789,43 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [89714] = 2, + [84880] = 8, + ACTIONS(3), 1, + sym_block_comment, + ACTIONS(2389), 1, + anon_sym_being, + ACTIONS(2932), 1, + anon_sym_POUND_, + STATE(392), 1, + sym_for_clause_word, + ACTIONS(2930), 2, + sym__ws, + sym_comment, + STATE(517), 2, + sym__for_part, + aux_sym_for_clause_repeat1, + STATE(1340), 2, + sym__gap, + sym_dis_expr, + ACTIONS(2391), 14, + anon_sym_in, + anon_sym_across, + anon_sym_using, + aux_sym_for_clause_word_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, + anon_sym_EQ, + [84921] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2986), 23, + ACTIONS(2934), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -77361,69 +73849,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [89743] = 3, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(2035), 2, - anon_sym_POUND, - anon_sym_POUND_QMARK, - ACTIONS(2030), 21, - sym__ws, - sym_comment, - anon_sym_POUND_, - anon_sym_DOT, - sym_kwd_lit, - aux_sym_str_lit_token1, - 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_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - [89774] = 6, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(2940), 1, - anon_sym_POUND_, - ACTIONS(2988), 2, - sym__ws, - sym_comment, - ACTIONS(2992), 2, - anon_sym_POUND, - anon_sym_POUND_QMARK, - STATE(1083), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - ACTIONS(2990), 15, - 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_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - [89811] = 2, + [84950] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2994), 23, + ACTIONS(2936), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -77447,10 +73876,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [89840] = 2, + [84979] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2996), 23, + ACTIONS(2938), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -77474,10 +73903,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [89869] = 2, + [85008] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2998), 23, + ACTIONS(2940), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -77501,10 +73930,38 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [89898] = 2, + [85037] = 3, + ACTIONS(3), 1, + sym_block_comment, + ACTIONS(2275), 3, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_POUND_QMARK, + ACTIONS(2273), 20, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON_COLON, + aux_sym_str_lit_token1, + 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_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + [85068] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3000), 23, + ACTIONS(2942), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -77528,17 +73985,51 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [89927] = 3, + [85097] = 8, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2105), 2, + ACTIONS(2389), 1, + anon_sym_being, + ACTIONS(2932), 1, + anon_sym_POUND_, + STATE(392), 1, + sym_for_clause_word, + ACTIONS(2930), 2, + sym__ws, + sym_comment, + STATE(515), 2, + sym__for_part, + aux_sym_for_clause_repeat1, + STATE(1340), 2, + sym__gap, + sym_dis_expr, + ACTIONS(2391), 14, + anon_sym_in, + anon_sym_across, + anon_sym_using, + aux_sym_for_clause_word_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, + anon_sym_EQ, + [85138] = 3, + ACTIONS(3), 1, + sym_block_comment, + ACTIONS(2291), 3, + anon_sym_COLON, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(2103), 20, + ACTIONS(2289), 20, sym__ws, sym_comment, anon_sym_POUND_, - sym_kwd_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, aux_sym_sym_lit_token1, anon_sym_CARET, @@ -77555,17 +74046,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [89957] = 3, + [85169] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2073), 2, + ACTIONS(2295), 3, + anon_sym_COLON, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(2071), 20, + ACTIONS(2293), 20, sym__ws, sym_comment, anon_sym_POUND_, - sym_kwd_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, aux_sym_sym_lit_token1, anon_sym_CARET, @@ -77582,99 +74074,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [89987] = 17, + [85200] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(13), 1, - aux_sym_str_lit_token1, - ACTIONS(19), 1, - anon_sym_CARET, - ACTIONS(21), 1, - anon_sym_POUND_CARET, - ACTIONS(3004), 1, - anon_sym_POUND_, - ACTIONS(3006), 1, - sym_kwd_lit, - ACTIONS(3008), 1, - aux_sym_sym_lit_token1, - ACTIONS(3010), 1, - anon_sym_LBRACE, - ACTIONS(3012), 1, - anon_sym_POUND_QMARK, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, - sym_meta_lit, - STATE(1246), 1, - sym__bare_map_lit, - STATE(1369), 1, - sym__metadata_lit, - STATE(1428), 1, - aux_sym_sym_lit_repeat1, - ACTIONS(3002), 2, - sym__ws, - sym_comment, - STATE(1406), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1249), 4, - sym_str_lit, - sym_sym_lit, - sym_map_lit, - sym_read_cond_lit, - [90045] = 17, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(13), 1, - aux_sym_str_lit_token1, - ACTIONS(19), 1, - anon_sym_CARET, - ACTIONS(21), 1, - anon_sym_POUND_CARET, - ACTIONS(3004), 1, - anon_sym_POUND_, - ACTIONS(3008), 1, - aux_sym_sym_lit_token1, - ACTIONS(3010), 1, - anon_sym_LBRACE, - ACTIONS(3012), 1, - anon_sym_POUND_QMARK, - ACTIONS(3014), 1, - sym_kwd_lit, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, - sym_meta_lit, - STATE(1246), 1, - sym__bare_map_lit, - STATE(1369), 1, - sym__metadata_lit, - STATE(1428), 1, - aux_sym_sym_lit_repeat1, - ACTIONS(3002), 2, - sym__ws, - sym_comment, - STATE(1406), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1250), 4, - sym_str_lit, - sym_sym_lit, - sym_map_lit, - sym_read_cond_lit, - [90103] = 3, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(2289), 2, + ACTIONS(2299), 3, + anon_sym_COLON, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(2287), 20, + ACTIONS(2297), 20, sym__ws, sym_comment, anon_sym_POUND_, - sym_kwd_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, aux_sym_sym_lit_token1, anon_sym_CARET, @@ -77691,17 +74102,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [90133] = 3, + [85231] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2293), 2, + ACTIONS(2031), 3, + anon_sym_COLON, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(2291), 20, + ACTIONS(2029), 20, sym__ws, sym_comment, anon_sym_POUND_, - sym_kwd_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, aux_sym_sym_lit_token1, anon_sym_CARET, @@ -77718,17 +74130,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [90163] = 3, + [85262] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2297), 2, + ACTIONS(2008), 3, + anon_sym_COLON, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(2295), 20, + ACTIONS(2006), 20, sym__ws, sym_comment, anon_sym_POUND_, - sym_kwd_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, aux_sym_sym_lit_token1, anon_sym_CARET, @@ -77745,17 +74158,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [90193] = 3, + [85293] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2301), 2, + ACTIONS(2315), 3, + anon_sym_COLON, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(2299), 20, + ACTIONS(2313), 20, sym__ws, sym_comment, anon_sym_POUND_, - sym_kwd_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, aux_sym_sym_lit_token1, anon_sym_CARET, @@ -77772,17 +74186,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [90223] = 3, + [85324] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2093), 2, + ACTIONS(2319), 3, + anon_sym_COLON, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(2091), 20, + ACTIONS(2317), 20, sym__ws, sym_comment, anon_sym_POUND_, - sym_kwd_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, aux_sym_sym_lit_token1, anon_sym_CARET, @@ -77799,17 +74214,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [90253] = 3, + [85355] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2221), 2, + ACTIONS(2323), 3, + anon_sym_COLON, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(2219), 20, + ACTIONS(2321), 20, sym__ws, sym_comment, anon_sym_POUND_, - sym_kwd_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, aux_sym_sym_lit_token1, anon_sym_CARET, @@ -77826,99 +74242,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [90283] = 17, + [85386] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(13), 1, - aux_sym_str_lit_token1, - ACTIONS(19), 1, - anon_sym_CARET, - ACTIONS(21), 1, - anon_sym_POUND_CARET, - ACTIONS(3004), 1, - anon_sym_POUND_, - ACTIONS(3008), 1, - aux_sym_sym_lit_token1, - ACTIONS(3010), 1, - anon_sym_LBRACE, - ACTIONS(3012), 1, - anon_sym_POUND_QMARK, - ACTIONS(3018), 1, - sym_kwd_lit, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, - sym_meta_lit, - STATE(1246), 1, - sym__bare_map_lit, - STATE(1369), 1, - sym__metadata_lit, - STATE(1428), 1, - aux_sym_sym_lit_repeat1, - ACTIONS(3016), 2, - sym__ws, - sym_comment, - STATE(1105), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1247), 4, - sym_str_lit, - sym_sym_lit, - sym_map_lit, - sym_read_cond_lit, - [90341] = 17, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(13), 1, - aux_sym_str_lit_token1, - ACTIONS(19), 1, - anon_sym_CARET, - ACTIONS(21), 1, - anon_sym_POUND_CARET, - ACTIONS(3004), 1, - anon_sym_POUND_, - ACTIONS(3008), 1, - aux_sym_sym_lit_token1, - ACTIONS(3010), 1, - anon_sym_LBRACE, - ACTIONS(3012), 1, - anon_sym_POUND_QMARK, - ACTIONS(3022), 1, - sym_kwd_lit, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, - sym_meta_lit, - STATE(1246), 1, - sym__bare_map_lit, - STATE(1369), 1, - sym__metadata_lit, - STATE(1428), 1, - aux_sym_sym_lit_repeat1, - ACTIONS(3020), 2, - sym__ws, - sym_comment, - STATE(1106), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1251), 4, - sym_str_lit, - sym_sym_lit, - sym_map_lit, - sym_read_cond_lit, - [90399] = 3, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(2225), 2, + ACTIONS(2327), 3, + anon_sym_COLON, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(2223), 20, + ACTIONS(2325), 20, sym__ws, sym_comment, anon_sym_POUND_, - sym_kwd_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, aux_sym_sym_lit_token1, anon_sym_CARET, @@ -77935,17 +74270,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [90429] = 3, + [85417] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2333), 2, + ACTIONS(2331), 3, + anon_sym_COLON, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(2331), 20, + ACTIONS(2329), 20, sym__ws, sym_comment, anon_sym_POUND_, - sym_kwd_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, aux_sym_sym_lit_token1, anon_sym_CARET, @@ -77962,17 +74298,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [90459] = 3, + [85448] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2161), 2, + ACTIONS(2339), 3, + anon_sym_COLON, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(2159), 20, + ACTIONS(2337), 20, sym__ws, sym_comment, anon_sym_POUND_, - sym_kwd_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, aux_sym_sym_lit_token1, anon_sym_CARET, @@ -77989,17 +74326,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [90489] = 3, + [85479] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2157), 2, + ACTIONS(2159), 3, + anon_sym_COLON, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(2155), 20, + ACTIONS(2157), 20, sym__ws, sym_comment, anon_sym_POUND_, - sym_kwd_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, aux_sym_sym_lit_token1, anon_sym_CARET, @@ -78016,17 +74354,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [90519] = 3, + [85510] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2153), 2, + ACTIONS(2351), 3, + anon_sym_COLON, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(2151), 20, + ACTIONS(2349), 20, sym__ws, sym_comment, anon_sym_POUND_, - sym_kwd_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, aux_sym_sym_lit_token1, anon_sym_CARET, @@ -78043,17 +74382,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [90549] = 3, + [85541] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2285), 2, + ACTIONS(2379), 3, + anon_sym_COLON, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(2283), 20, + ACTIONS(2377), 20, sym__ws, sym_comment, anon_sym_POUND_, - sym_kwd_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, aux_sym_sym_lit_token1, anon_sym_CARET, @@ -78070,17 +74410,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [90579] = 3, + [85572] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2149), 2, + ACTIONS(2375), 3, + anon_sym_COLON, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(2147), 20, + ACTIONS(2373), 20, sym__ws, sym_comment, anon_sym_POUND_, - sym_kwd_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, aux_sym_sym_lit_token1, anon_sym_CARET, @@ -78097,17 +74438,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [90609] = 3, + [85603] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2145), 2, + ACTIONS(2371), 3, + anon_sym_COLON, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(2143), 20, + ACTIONS(2369), 20, sym__ws, sym_comment, anon_sym_POUND_, - sym_kwd_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, aux_sym_sym_lit_token1, anon_sym_CARET, @@ -78124,17 +74466,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [90639] = 3, + [85634] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2233), 2, + ACTIONS(2359), 3, + anon_sym_COLON, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(2231), 20, + ACTIONS(2357), 20, sym__ws, sym_comment, anon_sym_POUND_, - sym_kwd_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, aux_sym_sym_lit_token1, anon_sym_CARET, @@ -78151,17 +74494,45 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [90669] = 3, + [85665] = 2, + ACTIONS(3), 1, + sym_block_comment, + ACTIONS(2944), 23, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym_accumulation_verb, + anon_sym_for, + anon_sym_and, + anon_sym_as, + anon_sym_with, + anon_sym_do, + anon_sym_while, + 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, + [85694] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2241), 2, + ACTIONS(2311), 3, + anon_sym_COLON, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(2239), 20, + ACTIONS(2309), 20, sym__ws, sym_comment, anon_sym_POUND_, - sym_kwd_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, aux_sym_sym_lit_token1, anon_sym_CARET, @@ -78178,17 +74549,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [90699] = 3, + [85725] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2141), 2, + ACTIONS(2267), 3, + anon_sym_COLON, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(2139), 20, + ACTIONS(2265), 20, sym__ws, sym_comment, anon_sym_POUND_, - sym_kwd_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, aux_sym_sym_lit_token1, anon_sym_CARET, @@ -78205,17 +74577,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [90729] = 3, + [85756] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2137), 2, + ACTIONS(2259), 3, + anon_sym_COLON, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(2135), 20, + ACTIONS(2257), 20, sym__ws, sym_comment, anon_sym_POUND_, - sym_kwd_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, aux_sym_sym_lit_token1, anon_sym_CARET, @@ -78232,17 +74605,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [90759] = 3, + [85787] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2133), 2, + ACTIONS(2255), 3, + anon_sym_COLON, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(2131), 20, + ACTIONS(2253), 20, sym__ws, sym_comment, anon_sym_POUND_, - sym_kwd_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, aux_sym_sym_lit_token1, anon_sym_CARET, @@ -78259,17 +74633,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [90789] = 3, + [85818] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2129), 2, + ACTIONS(2243), 3, + anon_sym_COLON, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(2127), 20, + ACTIONS(2241), 20, sym__ws, sym_comment, anon_sym_POUND_, - sym_kwd_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, aux_sym_sym_lit_token1, anon_sym_CARET, @@ -78286,18 +74661,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [90819] = 3, + [85849] = 6, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2201), 2, - anon_sym_POUND, - anon_sym_POUND_QMARK, - ACTIONS(2199), 20, + ACTIONS(2894), 1, + anon_sym_POUND_, + ACTIONS(2892), 2, sym__ws, sym_comment, - anon_sym_POUND_, - sym_kwd_lit, - aux_sym_str_lit_token1, + ACTIONS(2948), 2, + anon_sym_POUND, + anon_sym_POUND_QMARK, + STATE(918), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(2946), 15, aux_sym_sym_lit_token1, anon_sym_CARET, anon_sym_POUND_CARET, @@ -78313,17 +74692,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [90849] = 3, + [85886] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2125), 2, + ACTIONS(2239), 3, + anon_sym_COLON, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(2123), 20, + ACTIONS(2237), 20, sym__ws, sym_comment, anon_sym_POUND_, - sym_kwd_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, aux_sym_sym_lit_token1, anon_sym_CARET, @@ -78340,17 +74720,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [90879] = 3, + [85917] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2121), 2, + ACTIONS(2191), 3, + anon_sym_COLON, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(2119), 20, + ACTIONS(2189), 20, sym__ws, sym_comment, anon_sym_POUND_, - sym_kwd_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, aux_sym_sym_lit_token1, anon_sym_CARET, @@ -78367,17 +74748,45 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [90909] = 3, + [85948] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2197), 2, + ACTIONS(2950), 23, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym_accumulation_verb, + anon_sym_for, + anon_sym_and, + anon_sym_as, + anon_sym_with, + anon_sym_do, + anon_sym_while, + 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, + [85977] = 3, + ACTIONS(3), 1, + sym_block_comment, + ACTIONS(2179), 3, + anon_sym_COLON, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(2195), 20, + ACTIONS(2177), 20, sym__ws, sym_comment, anon_sym_POUND_, - sym_kwd_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, aux_sym_sym_lit_token1, anon_sym_CARET, @@ -78394,17 +74803,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [90939] = 3, + [86008] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2097), 2, + ACTIONS(2175), 3, + anon_sym_COLON, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(2095), 20, + ACTIONS(2173), 20, sym__ws, sym_comment, anon_sym_POUND_, - sym_kwd_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, aux_sym_sym_lit_token1, anon_sym_CARET, @@ -78421,17 +74831,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [90969] = 3, + [86039] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2193), 2, + ACTIONS(2155), 3, + anon_sym_COLON, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(2191), 20, + ACTIONS(2153), 20, sym__ws, sym_comment, anon_sym_POUND_, - sym_kwd_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, aux_sym_sym_lit_token1, anon_sym_CARET, @@ -78448,59 +74859,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [90999] = 17, + [86070] = 6, ACTIONS(3), 1, sym_block_comment, - ACTIONS(19), 1, - anon_sym_CARET, - ACTIONS(21), 1, - anon_sym_POUND_CARET, - ACTIONS(832), 1, - aux_sym_str_lit_token1, - ACTIONS(3004), 1, + ACTIONS(2894), 1, anon_sym_POUND_, - ACTIONS(3010), 1, - anon_sym_LBRACE, - ACTIONS(3014), 1, - sym_kwd_lit, - ACTIONS(3024), 1, - aux_sym_sym_lit_token1, - ACTIONS(3026), 1, - anon_sym_POUND_QMARK, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, - sym_meta_lit, - STATE(1246), 1, - sym__bare_map_lit, - STATE(1369), 1, - sym__metadata_lit, - STATE(1423), 1, - aux_sym_sym_lit_repeat1, - ACTIONS(3002), 2, + ACTIONS(2892), 2, sym__ws, sym_comment, - STATE(1406), 3, + ACTIONS(2954), 2, + anon_sym_POUND, + anon_sym_POUND_QMARK, + STATE(918), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1250), 4, - sym_str_lit, - sym_sym_lit, - sym_map_lit, - sym_read_cond_lit, - [91057] = 3, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(2373), 2, - anon_sym_POUND, - anon_sym_POUND_QMARK, - ACTIONS(2371), 20, - sym__ws, - sym_comment, - anon_sym_POUND_, - sym_kwd_lit, - aux_sym_str_lit_token1, + ACTIONS(2952), 15, aux_sym_sym_lit_token1, anon_sym_CARET, anon_sym_POUND_CARET, @@ -78516,17 +74890,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [91087] = 3, + [86107] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2377), 2, + ACTIONS(2151), 3, + anon_sym_COLON, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(2375), 20, + ACTIONS(2149), 20, sym__ws, sym_comment, anon_sym_POUND_, - sym_kwd_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, aux_sym_sym_lit_token1, anon_sym_CARET, @@ -78543,17 +74918,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [91117] = 3, + [86138] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2089), 2, + ACTIONS(2143), 3, + anon_sym_COLON, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(2087), 20, + ACTIONS(2141), 20, sym__ws, sym_comment, anon_sym_POUND_, - sym_kwd_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, aux_sym_sym_lit_token1, anon_sym_CARET, @@ -78570,17 +74946,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [91147] = 3, + [86169] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2377), 2, + ACTIONS(2135), 3, + anon_sym_COLON, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(2375), 20, + ACTIONS(2133), 20, sym__ws, sym_comment, anon_sym_POUND_, - sym_kwd_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, aux_sym_sym_lit_token1, anon_sym_CARET, @@ -78597,17 +74974,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [91177] = 3, + [86200] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2389), 2, + ACTIONS(2131), 3, + anon_sym_COLON, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(2387), 20, + ACTIONS(2129), 20, sym__ws, sym_comment, anon_sym_POUND_, - sym_kwd_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, aux_sym_sym_lit_token1, anon_sym_CARET, @@ -78624,17 +75002,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [91207] = 3, + [86231] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2085), 2, + ACTIONS(2123), 3, + anon_sym_COLON, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(2083), 20, + ACTIONS(2121), 20, sym__ws, sym_comment, anon_sym_POUND_, - sym_kwd_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, aux_sym_sym_lit_token1, anon_sym_CARET, @@ -78651,58 +75030,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [91237] = 17, + [86262] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(19), 1, - anon_sym_CARET, - ACTIONS(21), 1, - anon_sym_POUND_CARET, - ACTIONS(832), 1, - aux_sym_str_lit_token1, - ACTIONS(3004), 1, - anon_sym_POUND_, - ACTIONS(3006), 1, - sym_kwd_lit, - ACTIONS(3010), 1, - anon_sym_LBRACE, - ACTIONS(3024), 1, - aux_sym_sym_lit_token1, - ACTIONS(3026), 1, - anon_sym_POUND_QMARK, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, - sym_meta_lit, - STATE(1246), 1, - sym__bare_map_lit, - STATE(1369), 1, - sym__metadata_lit, - STATE(1423), 1, - aux_sym_sym_lit_repeat1, - ACTIONS(3002), 2, - sym__ws, - sym_comment, - STATE(1406), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1249), 4, - sym_str_lit, - sym_sym_lit, - sym_map_lit, - sym_read_cond_lit, - [91295] = 3, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(2081), 2, + ACTIONS(2119), 3, + anon_sym_COLON, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(2079), 20, + ACTIONS(2117), 20, sym__ws, sym_comment, anon_sym_POUND_, - sym_kwd_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, aux_sym_sym_lit_token1, anon_sym_CARET, @@ -78719,17 +75058,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [91325] = 3, + [86293] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2077), 2, + ACTIONS(2111), 3, + anon_sym_COLON, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(2075), 20, + ACTIONS(2109), 20, sym__ws, sym_comment, anon_sym_POUND_, - sym_kwd_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, aux_sym_sym_lit_token1, anon_sym_CARET, @@ -78746,17 +75086,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [91355] = 3, + [86324] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2309), 2, + ACTIONS(2099), 3, + anon_sym_COLON, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(2307), 20, + ACTIONS(2097), 20, sym__ws, sym_comment, anon_sym_POUND_, - sym_kwd_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, aux_sym_sym_lit_token1, anon_sym_CARET, @@ -78773,17 +75114,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [91385] = 3, + [86355] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2321), 2, + ACTIONS(2091), 3, + anon_sym_COLON, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(2319), 20, + ACTIONS(2089), 20, sym__ws, sym_comment, anon_sym_POUND_, - sym_kwd_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, aux_sym_sym_lit_token1, anon_sym_CARET, @@ -78800,17 +75142,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [91415] = 3, + [86386] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2043), 2, + ACTIONS(2087), 3, + anon_sym_COLON, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(2041), 20, + ACTIONS(2085), 20, sym__ws, sym_comment, anon_sym_POUND_, - sym_kwd_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, aux_sym_sym_lit_token1, anon_sym_CARET, @@ -78827,17 +75170,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [91445] = 3, + [86417] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2349), 2, + ACTIONS(2004), 3, + anon_sym_COLON, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(2347), 20, + ACTIONS(2002), 20, sym__ws, sym_comment, anon_sym_POUND_, - sym_kwd_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, aux_sym_sym_lit_token1, anon_sym_CARET, @@ -78854,58 +75198,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [91475] = 17, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(19), 1, - anon_sym_CARET, - ACTIONS(21), 1, - anon_sym_POUND_CARET, - ACTIONS(832), 1, - aux_sym_str_lit_token1, - ACTIONS(3004), 1, - anon_sym_POUND_, - ACTIONS(3010), 1, - anon_sym_LBRACE, - ACTIONS(3022), 1, - sym_kwd_lit, - ACTIONS(3024), 1, - aux_sym_sym_lit_token1, - ACTIONS(3026), 1, - anon_sym_POUND_QMARK, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, - sym_meta_lit, - STATE(1246), 1, - sym__bare_map_lit, - STATE(1369), 1, - sym__metadata_lit, - STATE(1423), 1, - aux_sym_sym_lit_repeat1, - ACTIONS(3028), 2, - sym__ws, - sym_comment, - STATE(1135), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1251), 4, - sym_str_lit, - sym_sym_lit, - sym_map_lit, - sym_read_cond_lit, - [91533] = 3, + [86448] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2401), 2, + ACTIONS(2343), 3, + anon_sym_COLON, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(2399), 20, + ACTIONS(2341), 20, sym__ws, sym_comment, anon_sym_POUND_, - sym_kwd_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, aux_sym_sym_lit_token1, anon_sym_CARET, @@ -78922,58 +75226,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [91563] = 17, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(19), 1, - anon_sym_CARET, - ACTIONS(21), 1, - anon_sym_POUND_CARET, - ACTIONS(832), 1, - aux_sym_str_lit_token1, - ACTIONS(3004), 1, - anon_sym_POUND_, - ACTIONS(3010), 1, - anon_sym_LBRACE, - ACTIONS(3018), 1, - sym_kwd_lit, - ACTIONS(3024), 1, - aux_sym_sym_lit_token1, - ACTIONS(3026), 1, - anon_sym_POUND_QMARK, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, - sym_meta_lit, - STATE(1246), 1, - sym__bare_map_lit, - STATE(1369), 1, - sym__metadata_lit, - STATE(1423), 1, - aux_sym_sym_lit_repeat1, - ACTIONS(3030), 2, - sym__ws, - sym_comment, - STATE(1142), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1247), 4, - sym_str_lit, - sym_sym_lit, - sym_map_lit, - sym_read_cond_lit, - [91621] = 3, + [86479] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2413), 2, + ACTIONS(2307), 3, + anon_sym_COLON, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(2411), 20, + ACTIONS(2305), 20, sym__ws, sym_comment, anon_sym_POUND_, - sym_kwd_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, aux_sym_sym_lit_token1, anon_sym_CARET, @@ -78990,17 +75254,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [91651] = 3, + [86510] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2409), 2, + ACTIONS(2287), 3, + anon_sym_COLON, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(2407), 20, + ACTIONS(2285), 20, sym__ws, sym_comment, anon_sym_POUND_, - sym_kwd_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, aux_sym_sym_lit_token1, anon_sym_CARET, @@ -79017,17 +75282,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [91681] = 3, + [86541] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2409), 2, + ACTIONS(2027), 3, + anon_sym_COLON, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(2407), 20, + ACTIONS(2025), 20, sym__ws, sym_comment, anon_sym_POUND_, - sym_kwd_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, aux_sym_sym_lit_token1, anon_sym_CARET, @@ -79044,17 +75310,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [91711] = 3, + [86572] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2393), 2, + ACTIONS(2027), 3, + anon_sym_COLON, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(2391), 20, + ACTIONS(2025), 20, sym__ws, sym_comment, anon_sym_POUND_, - sym_kwd_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, aux_sym_sym_lit_token1, anon_sym_CARET, @@ -79071,17 +75338,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [91741] = 3, + [86603] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2245), 2, + ACTIONS(2027), 3, + anon_sym_COLON, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(2243), 20, + ACTIONS(2025), 20, sym__ws, sym_comment, anon_sym_POUND_, - sym_kwd_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, aux_sym_sym_lit_token1, anon_sym_CARET, @@ -79098,17 +75366,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [91771] = 3, + [86634] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2405), 2, + ACTIONS(2335), 3, + anon_sym_COLON, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(2403), 20, + ACTIONS(2333), 20, sym__ws, sym_comment, anon_sym_POUND_, - sym_kwd_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, aux_sym_sym_lit_token1, anon_sym_CARET, @@ -79125,17 +75394,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [91801] = 3, + [86665] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2381), 2, + ACTIONS(2283), 3, + anon_sym_COLON, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(2379), 20, + ACTIONS(2281), 20, sym__ws, sym_comment, anon_sym_POUND_, - sym_kwd_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, aux_sym_sym_lit_token1, anon_sym_CARET, @@ -79152,17 +75422,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [91831] = 3, + [86696] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2369), 2, + ACTIONS(2271), 3, + anon_sym_COLON, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(2367), 20, + ACTIONS(2269), 20, sym__ws, sym_comment, anon_sym_POUND_, - sym_kwd_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, aux_sym_sym_lit_token1, anon_sym_CARET, @@ -79179,17 +75450,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [91861] = 3, + [86727] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2397), 2, + ACTIONS(2251), 3, + anon_sym_COLON, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(2395), 20, + ACTIONS(2249), 20, sym__ws, sym_comment, anon_sym_POUND_, - sym_kwd_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, aux_sym_sym_lit_token1, anon_sym_CARET, @@ -79206,17 +75478,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [91891] = 3, + [86758] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2265), 2, + ACTIONS(2247), 3, + anon_sym_COLON, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(2263), 20, + ACTIONS(2245), 20, sym__ws, sym_comment, anon_sym_POUND_, - sym_kwd_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, aux_sym_sym_lit_token1, anon_sym_CARET, @@ -79233,17 +75506,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [91921] = 3, + [86789] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2417), 2, + ACTIONS(2235), 3, + anon_sym_COLON, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(2415), 20, + ACTIONS(2233), 20, sym__ws, sym_comment, anon_sym_POUND_, - sym_kwd_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, aux_sym_sym_lit_token1, anon_sym_CARET, @@ -79260,17 +75534,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [91951] = 3, + [86820] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2189), 2, + ACTIONS(2231), 3, + anon_sym_COLON, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(2187), 20, + ACTIONS(2229), 20, sym__ws, sym_comment, anon_sym_POUND_, - sym_kwd_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, aux_sym_sym_lit_token1, anon_sym_CARET, @@ -79287,17 +75562,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [91981] = 3, + [86851] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2249), 2, + ACTIONS(2227), 3, + anon_sym_COLON, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(2247), 20, + ACTIONS(2225), 20, sym__ws, sym_comment, anon_sym_POUND_, - sym_kwd_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, aux_sym_sym_lit_token1, anon_sym_CARET, @@ -79314,48 +75590,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [92011] = 7, + [86882] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2047), 1, - anon_sym_DOT, - ACTIONS(2049), 1, - anon_sym_being, - ACTIONS(3032), 1, - anon_sym_COLON_COLON, - ACTIONS(3034), 1, + ACTIONS(2223), 3, anon_sym_COLON, - STATE(816), 1, - aux_sym_dotted_sym_lit_repeat1, - ACTIONS(2045), 17, - sym__ws, - sym_comment, - anon_sym_POUND_, - anon_sym_in, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_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, - anon_sym_EQ, - [92049] = 3, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(2257), 2, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(2255), 20, + ACTIONS(2221), 20, sym__ws, sym_comment, anon_sym_POUND_, - sym_kwd_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, aux_sym_sym_lit_token1, anon_sym_CARET, @@ -79372,17 +75618,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [92079] = 3, + [86913] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2385), 2, + ACTIONS(2219), 3, + anon_sym_COLON, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(2383), 20, + ACTIONS(2217), 20, sym__ws, sym_comment, anon_sym_POUND_, - sym_kwd_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, aux_sym_sym_lit_token1, anon_sym_CARET, @@ -79399,17 +75646,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [92109] = 3, + [86944] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2329), 2, + ACTIONS(2211), 3, + anon_sym_COLON, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(2327), 20, + ACTIONS(2209), 20, sym__ws, sym_comment, anon_sym_POUND_, - sym_kwd_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, aux_sym_sym_lit_token1, anon_sym_CARET, @@ -79426,17 +75674,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [92139] = 3, + [86975] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2209), 2, + ACTIONS(2207), 3, + anon_sym_COLON, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(2207), 20, + ACTIONS(2205), 20, sym__ws, sym_comment, anon_sym_POUND_, - sym_kwd_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, aux_sym_sym_lit_token1, anon_sym_CARET, @@ -79453,17 +75702,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [92169] = 3, + [87006] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2277), 2, + ACTIONS(2207), 3, + anon_sym_COLON, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(2275), 20, + ACTIONS(2205), 20, sym__ws, sym_comment, anon_sym_POUND_, - sym_kwd_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, aux_sym_sym_lit_token1, anon_sym_CARET, @@ -79480,17 +75730,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [92199] = 3, + [87037] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2273), 2, + ACTIONS(2207), 3, + anon_sym_COLON, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(2271), 20, + ACTIONS(2205), 20, sym__ws, sym_comment, anon_sym_POUND_, - sym_kwd_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, aux_sym_sym_lit_token1, anon_sym_CARET, @@ -79507,17 +75758,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [92229] = 3, + [87068] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2345), 2, + ACTIONS(2203), 3, + anon_sym_COLON, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(2343), 20, + ACTIONS(2201), 20, sym__ws, sym_comment, anon_sym_POUND_, - sym_kwd_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, aux_sym_sym_lit_token1, anon_sym_CARET, @@ -79534,17 +75786,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [92259] = 3, + [87099] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2397), 2, + ACTIONS(2199), 3, + anon_sym_COLON, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(2395), 20, + ACTIONS(2197), 20, sym__ws, sym_comment, anon_sym_POUND_, - sym_kwd_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, aux_sym_sym_lit_token1, anon_sym_CARET, @@ -79561,17 +75814,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [92289] = 3, + [87130] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2385), 2, + ACTIONS(2195), 3, + anon_sym_COLON, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(2383), 20, + ACTIONS(2193), 20, sym__ws, sym_comment, anon_sym_POUND_, - sym_kwd_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, aux_sym_sym_lit_token1, anon_sym_CARET, @@ -79588,17 +75842,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [92319] = 3, + [87161] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2269), 2, + ACTIONS(2183), 3, + anon_sym_COLON, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(2267), 20, + ACTIONS(2181), 20, sym__ws, sym_comment, anon_sym_POUND_, - sym_kwd_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, aux_sym_sym_lit_token1, anon_sym_CARET, @@ -79615,17 +75870,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [92349] = 3, + [87192] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2365), 2, + ACTIONS(2183), 3, + anon_sym_COLON, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(2363), 20, + ACTIONS(2181), 20, sym__ws, sym_comment, anon_sym_POUND_, - sym_kwd_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, aux_sym_sym_lit_token1, anon_sym_CARET, @@ -79642,17 +75898,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [92379] = 3, + [87223] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2361), 2, + ACTIONS(2171), 3, + anon_sym_COLON, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(2359), 20, + ACTIONS(2169), 20, sym__ws, sym_comment, anon_sym_POUND_, - sym_kwd_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, aux_sym_sym_lit_token1, anon_sym_CARET, @@ -79669,17 +75926,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [92409] = 3, + [87254] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2341), 2, + ACTIONS(2167), 3, + anon_sym_COLON, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(2339), 20, + ACTIONS(2165), 20, sym__ws, sym_comment, anon_sym_POUND_, - sym_kwd_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, aux_sym_sym_lit_token1, anon_sym_CARET, @@ -79696,17 +75954,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [92439] = 3, + [87285] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2337), 2, + ACTIONS(2163), 3, + anon_sym_COLON, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(2335), 20, + ACTIONS(2161), 20, sym__ws, sym_comment, anon_sym_POUND_, - sym_kwd_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, aux_sym_sym_lit_token1, anon_sym_CARET, @@ -79723,17 +75982,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [92469] = 3, + [87316] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2281), 2, + ACTIONS(2147), 3, + anon_sym_COLON, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(2279), 20, + ACTIONS(2145), 20, sym__ws, sym_comment, anon_sym_POUND_, - sym_kwd_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, aux_sym_sym_lit_token1, anon_sym_CARET, @@ -79750,17 +76010,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [92499] = 3, + [87347] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2073), 2, + ACTIONS(2139), 3, + anon_sym_COLON, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(2071), 20, + ACTIONS(2137), 20, sym__ws, sym_comment, anon_sym_POUND_, - sym_kwd_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, aux_sym_sym_lit_token1, anon_sym_CARET, @@ -79777,17 +76038,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [92529] = 3, + [87378] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2073), 2, + ACTIONS(2115), 3, + anon_sym_COLON, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(2071), 20, + ACTIONS(2113), 20, sym__ws, sym_comment, anon_sym_POUND_, - sym_kwd_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, aux_sym_sym_lit_token1, anon_sym_CARET, @@ -79804,17 +76066,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [92559] = 3, + [87409] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2101), 2, + ACTIONS(2139), 3, + anon_sym_COLON, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(2099), 20, + ACTIONS(2137), 20, sym__ws, sym_comment, anon_sym_POUND_, - sym_kwd_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, aux_sym_sym_lit_token1, anon_sym_CARET, @@ -79831,17 +76094,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [92589] = 3, + [87440] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2109), 2, + ACTIONS(2115), 3, + anon_sym_COLON, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(2107), 20, + ACTIONS(2113), 20, sym__ws, sym_comment, anon_sym_POUND_, - sym_kwd_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, aux_sym_sym_lit_token1, anon_sym_CARET, @@ -79858,17 +76122,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [92619] = 3, + [87471] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2113), 2, + ACTIONS(2107), 3, + anon_sym_COLON, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(2111), 20, + ACTIONS(2105), 20, sym__ws, sym_comment, anon_sym_POUND_, - sym_kwd_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, aux_sym_sym_lit_token1, anon_sym_CARET, @@ -79885,17 +76150,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [92649] = 3, + [87502] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2357), 2, + ACTIONS(2103), 3, + anon_sym_COLON, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(2355), 20, + ACTIONS(2101), 20, sym__ws, sym_comment, anon_sym_POUND_, - sym_kwd_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, aux_sym_sym_lit_token1, anon_sym_CARET, @@ -79912,17 +76178,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [92679] = 3, + [87533] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2117), 2, + ACTIONS(2095), 3, + anon_sym_COLON, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(2115), 20, + ACTIONS(2093), 20, sym__ws, sym_comment, anon_sym_POUND_, - sym_kwd_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, aux_sym_sym_lit_token1, anon_sym_CARET, @@ -79939,17 +76206,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [92709] = 3, + [87564] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2117), 2, + ACTIONS(2079), 3, + anon_sym_COLON, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(2115), 20, + ACTIONS(2077), 20, sym__ws, sym_comment, anon_sym_POUND_, - sym_kwd_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, aux_sym_sym_lit_token1, anon_sym_CARET, @@ -79966,17 +76234,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [92739] = 3, + [87595] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2353), 2, + ACTIONS(2079), 3, + anon_sym_COLON, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(2351), 20, + ACTIONS(2077), 20, sym__ws, sym_comment, anon_sym_POUND_, - sym_kwd_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, aux_sym_sym_lit_token1, anon_sym_CARET, @@ -79993,17 +76262,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [92769] = 3, + [87626] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2165), 2, + ACTIONS(2075), 3, + anon_sym_COLON, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(2163), 20, + ACTIONS(2073), 20, sym__ws, sym_comment, anon_sym_POUND_, - sym_kwd_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, aux_sym_sym_lit_token1, anon_sym_CARET, @@ -80020,17 +76290,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [92799] = 3, + [87657] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2169), 2, + ACTIONS(2071), 3, + anon_sym_COLON, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(2167), 20, + ACTIONS(2069), 20, sym__ws, sym_comment, anon_sym_POUND_, - sym_kwd_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, aux_sym_sym_lit_token1, anon_sym_CARET, @@ -80047,17 +76318,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [92829] = 3, + [87688] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2173), 2, + ACTIONS(2067), 3, + anon_sym_COLON, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(2171), 20, + ACTIONS(2065), 20, sym__ws, sym_comment, anon_sym_POUND_, - sym_kwd_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, aux_sym_sym_lit_token1, anon_sym_CARET, @@ -80074,17 +76346,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [92859] = 3, + [87719] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2177), 2, + ACTIONS(2063), 3, + anon_sym_COLON, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(2175), 20, + ACTIONS(2061), 20, sym__ws, sym_comment, anon_sym_POUND_, - sym_kwd_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, aux_sym_sym_lit_token1, anon_sym_CARET, @@ -80101,17 +76374,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [92889] = 3, + [87750] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2181), 2, + ACTIONS(2059), 3, + anon_sym_COLON, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(2179), 20, + ACTIONS(2057), 20, sym__ws, sym_comment, anon_sym_POUND_, - sym_kwd_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, aux_sym_sym_lit_token1, anon_sym_CARET, @@ -80128,17 +76402,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [92919] = 3, + [87781] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2185), 2, + ACTIONS(2055), 3, + anon_sym_COLON, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(2183), 20, + ACTIONS(2053), 20, sym__ws, sym_comment, anon_sym_POUND_, - sym_kwd_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, aux_sym_sym_lit_token1, anon_sym_CARET, @@ -80155,17 +76430,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [92949] = 3, + [87812] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2028), 2, + ACTIONS(2051), 3, + anon_sym_COLON, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(2024), 20, + ACTIONS(2049), 20, sym__ws, sym_comment, anon_sym_POUND_, - sym_kwd_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, aux_sym_sym_lit_token1, anon_sym_CARET, @@ -80182,17 +76458,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [92979] = 3, + [87843] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2181), 2, + ACTIONS(2047), 3, + anon_sym_COLON, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(2179), 20, + ACTIONS(2045), 20, sym__ws, sym_comment, anon_sym_POUND_, - sym_kwd_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, aux_sym_sym_lit_token1, anon_sym_CARET, @@ -80209,17 +76486,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [93009] = 3, + [87874] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2261), 2, + ACTIONS(2047), 3, + anon_sym_COLON, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(2259), 20, + ACTIONS(2045), 20, sym__ws, sym_comment, anon_sym_POUND_, - sym_kwd_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, aux_sym_sym_lit_token1, anon_sym_CARET, @@ -80236,17 +76514,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [93039] = 3, + [87905] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2253), 2, + ACTIONS(2043), 3, + anon_sym_COLON, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(2251), 20, + ACTIONS(2041), 20, sym__ws, sym_comment, anon_sym_POUND_, - sym_kwd_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, aux_sym_sym_lit_token1, anon_sym_CARET, @@ -80263,17 +76542,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [93069] = 3, + [87936] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2185), 2, + ACTIONS(2039), 3, + anon_sym_COLON, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(2183), 20, + ACTIONS(2037), 20, sym__ws, sym_comment, anon_sym_POUND_, - sym_kwd_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, aux_sym_sym_lit_token1, anon_sym_CARET, @@ -80290,17 +76570,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [93099] = 3, + [87967] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2325), 2, + ACTIONS(2035), 3, + anon_sym_COLON, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(2323), 20, + ACTIONS(2033), 20, sym__ws, sym_comment, anon_sym_POUND_, - sym_kwd_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, aux_sym_sym_lit_token1, anon_sym_CARET, @@ -80317,17 +76598,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [93129] = 3, + [87998] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2205), 2, + ACTIONS(2303), 3, + anon_sym_COLON, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(2203), 20, + ACTIONS(2301), 20, sym__ws, sym_comment, anon_sym_POUND_, - sym_kwd_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, aux_sym_sym_lit_token1, anon_sym_CARET, @@ -80344,17 +76626,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [93159] = 3, + [88029] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2213), 2, + ACTIONS(2279), 3, + anon_sym_COLON, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(2211), 20, + ACTIONS(2277), 20, sym__ws, sym_comment, anon_sym_POUND_, - sym_kwd_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, aux_sym_sym_lit_token1, anon_sym_CARET, @@ -80371,17 +76654,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [93189] = 3, + [88060] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2217), 2, + ACTIONS(2355), 3, + anon_sym_COLON, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(2215), 20, + ACTIONS(2353), 20, sym__ws, sym_comment, anon_sym_POUND_, - sym_kwd_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, aux_sym_sym_lit_token1, anon_sym_CARET, @@ -80398,18 +76682,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [93219] = 3, + [88091] = 6, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2325), 2, - anon_sym_POUND, - anon_sym_POUND_QMARK, - ACTIONS(2323), 20, + ACTIONS(2894), 1, + anon_sym_POUND_, + ACTIONS(2956), 2, sym__ws, sym_comment, - anon_sym_POUND_, - sym_kwd_lit, - aux_sym_str_lit_token1, + ACTIONS(2960), 2, + anon_sym_POUND, + anon_sym_POUND_QMARK, + STATE(1097), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(2958), 15, aux_sym_sym_lit_token1, anon_sym_CARET, anon_sym_POUND_CARET, @@ -80425,17 +76713,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [93249] = 3, + [88128] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2317), 2, + ACTIONS(2355), 3, + anon_sym_COLON, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(2315), 20, + ACTIONS(2353), 20, sym__ws, sym_comment, anon_sym_POUND_, - sym_kwd_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, aux_sym_sym_lit_token1, anon_sym_CARET, @@ -80452,17 +76741,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [93279] = 3, + [88159] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2229), 2, + ACTIONS(2363), 3, + anon_sym_COLON, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(2227), 20, + ACTIONS(2361), 20, sym__ws, sym_comment, anon_sym_POUND_, - sym_kwd_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, aux_sym_sym_lit_token1, anon_sym_CARET, @@ -80479,17 +76769,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [93309] = 3, + [88190] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2313), 2, + ACTIONS(2367), 3, + anon_sym_COLON, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(2311), 20, + ACTIONS(2365), 20, sym__ws, sym_comment, anon_sym_POUND_, - sym_kwd_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, aux_sym_sym_lit_token1, anon_sym_CARET, @@ -80506,17 +76797,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [93339] = 3, + [88221] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2069), 2, + ACTIONS(2347), 3, + anon_sym_COLON, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(2067), 20, + ACTIONS(2345), 20, sym__ws, sym_comment, anon_sym_POUND_, - sym_kwd_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, aux_sym_sym_lit_token1, anon_sym_CARET, @@ -80533,17 +76825,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [93369] = 3, + [88252] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2229), 2, + ACTIONS(2347), 3, + anon_sym_COLON, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(2227), 20, + ACTIONS(2345), 20, sym__ws, sym_comment, anon_sym_POUND_, - sym_kwd_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, aux_sym_sym_lit_token1, anon_sym_CARET, @@ -80560,17 +76853,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [93399] = 3, + [88283] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2305), 2, + ACTIONS(2127), 3, + anon_sym_COLON, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(2303), 20, + ACTIONS(2125), 20, sym__ws, sym_comment, anon_sym_POUND_, - sym_kwd_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, aux_sym_sym_lit_token1, anon_sym_CARET, @@ -80587,17 +76881,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [93429] = 3, + [88314] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2237), 2, + ACTIONS(2083), 3, + anon_sym_COLON, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(2235), 20, + ACTIONS(2081), 20, sym__ws, sym_comment, anon_sym_POUND_, - sym_kwd_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, aux_sym_sym_lit_token1, anon_sym_CARET, @@ -80614,17 +76909,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [93459] = 3, + [88345] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2065), 2, + ACTIONS(2263), 3, + anon_sym_COLON, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(2063), 20, + ACTIONS(2261), 20, sym__ws, sym_comment, anon_sym_POUND_, - sym_kwd_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, aux_sym_sym_lit_token1, anon_sym_CARET, @@ -80641,17 +76937,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [93489] = 3, + [88376] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2409), 2, + ACTIONS(2279), 3, + anon_sym_COLON, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(2407), 20, + ACTIONS(2277), 20, sym__ws, sym_comment, anon_sym_POUND_, - sym_kwd_lit, + anon_sym_COLON_COLON, aux_sym_str_lit_token1, aux_sym_sym_lit_token1, anon_sym_CARET, @@ -80668,98 +76965,54 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [93519] = 17, + [88407] = 6, ACTIONS(3), 1, sym_block_comment, - ACTIONS(19), 1, - anon_sym_CARET, - ACTIONS(21), 1, - anon_sym_POUND_CARET, - ACTIONS(568), 1, - anon_sym_LPAREN, - ACTIONS(2940), 1, + ACTIONS(2894), 1, anon_sym_POUND_, - ACTIONS(3036), 1, - aux_sym_sym_lit_token1, - ACTIONS(3038), 1, - anon_sym_POUND_QMARK, - STATE(636), 1, - sym_sym_lit, - STATE(637), 1, - sym_list_lit, - STATE(638), 1, - sym_read_cond_lit, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, - sym_meta_lit, - STATE(1369), 1, - sym__metadata_lit, - STATE(1408), 1, - aux_sym_sym_lit_repeat1, - ACTIONS(2950), 2, + ACTIONS(2962), 2, sym__ws, sym_comment, - STATE(786), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, + ACTIONS(2966), 2, + anon_sym_POUND, + anon_sym_POUND_QMARK, STATE(1090), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [93576] = 17, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(19), 1, + ACTIONS(2964), 15, + aux_sym_sym_lit_token1, anon_sym_CARET, - ACTIONS(21), 1, anon_sym_POUND_CARET, - ACTIONS(612), 1, anon_sym_LPAREN, - ACTIONS(2940), 1, - anon_sym_POUND_, - ACTIONS(3042), 1, - aux_sym_sym_lit_token1, - ACTIONS(3044), 1, - anon_sym_POUND_QMARK, - STATE(1030), 1, - sym_read_cond_lit, - STATE(1031), 1, - sym_list_lit, - STATE(1032), 1, - sym_sym_lit, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, - sym_meta_lit, - STATE(1369), 1, - sym__metadata_lit, - STATE(1409), 1, - aux_sym_sym_lit_repeat1, - ACTIONS(3040), 2, - sym__ws, - sym_comment, - STATE(965), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1224), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - [93633] = 3, + 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_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + [88444] = 7, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2061), 2, + ACTIONS(1988), 1, + anon_sym_DOT, + ACTIONS(1994), 1, anon_sym_being, + ACTIONS(2968), 1, anon_sym_COLON, - ACTIONS(2059), 19, + ACTIONS(2970), 1, + anon_sym_COLON_COLON, + STATE(782), 1, + aux_sym_dotted_sym_lit_repeat1, + ACTIONS(1986), 17, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_DOT, - anon_sym_COLON_COLON, anon_sym_in, anon_sym_across, anon_sym_using, @@ -80774,517 +77027,389 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [93662] = 15, + [88482] = 15, ACTIONS(3), 1, sym_block_comment, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(838), 1, + ACTIONS(528), 1, anon_sym_LPAREN, - ACTIONS(2940), 1, + ACTIONS(2894), 1, anon_sym_POUND_, - ACTIONS(3024), 1, + ACTIONS(2972), 1, aux_sym_sym_lit_token1, - ACTIONS(3026), 1, + ACTIONS(2974), 1, anon_sym_POUND_QMARK, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1412), 1, + STATE(1364), 1, aux_sym_sym_lit_repeat1, - ACTIONS(3046), 2, + ACTIONS(2892), 2, sym__ws, sym_comment, - STATE(1110), 3, + STATE(918), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(930), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1156), 3, + STATE(1007), 3, sym_sym_lit, sym_list_lit, sym_read_cond_lit, - STATE(1239), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - [93715] = 17, + [88535] = 17, ACTIONS(3), 1, sym_block_comment, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(23), 1, + ACTIONS(528), 1, anon_sym_LPAREN, - ACTIONS(2940), 1, + ACTIONS(2894), 1, anon_sym_POUND_, - ACTIONS(3008), 1, + ACTIONS(2972), 1, aux_sym_sym_lit_token1, - ACTIONS(3012), 1, + ACTIONS(2974), 1, anon_sym_POUND_QMARK, - STATE(825), 1, + STATE(978), 1, sym_read_cond_lit, - STATE(889), 1, - sym_sym_lit, - STATE(890), 1, + STATE(979), 1, sym_list_lit, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(980), 1, + sym_sym_lit, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, - sym__metadata_lit, - STATE(1410), 1, - aux_sym_sym_lit_repeat1, - ACTIONS(2950), 2, - sym__ws, - sym_comment, - STATE(842), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1090), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - [93772] = 17, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(19), 1, - anon_sym_CARET, - ACTIONS(21), 1, - anon_sym_POUND_CARET, - ACTIONS(838), 1, - anon_sym_LPAREN, - ACTIONS(2940), 1, - anon_sym_POUND_, - ACTIONS(3024), 1, - aux_sym_sym_lit_token1, - ACTIONS(3026), 1, - anon_sym_POUND_QMARK, - STATE(1078), 1, + STATE(1172), 1, sym_old_meta_lit, - STATE(1098), 1, - sym_meta_lit, - STATE(1153), 1, - sym_list_lit, - STATE(1154), 1, - sym_read_cond_lit, - STATE(1214), 1, - sym_sym_lit, - STATE(1369), 1, + STATE(1337), 1, sym__metadata_lit, - STATE(1412), 1, + STATE(1364), 1, aux_sym_sym_lit_repeat1, - ACTIONS(3048), 2, + ACTIONS(2892), 2, sym__ws, sym_comment, - STATE(1110), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1233), 3, + STATE(918), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [93829] = 15, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(19), 1, - anon_sym_CARET, - ACTIONS(21), 1, - anon_sym_POUND_CARET, - ACTIONS(612), 1, - anon_sym_LPAREN, - ACTIONS(2940), 1, - anon_sym_POUND_, - ACTIONS(3042), 1, - aux_sym_sym_lit_token1, - ACTIONS(3044), 1, - anon_sym_POUND_QMARK, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, - sym_meta_lit, - STATE(1369), 1, - sym__metadata_lit, - STATE(1409), 1, - aux_sym_sym_lit_repeat1, - ACTIONS(2950), 2, - sym__ws, - sym_comment, - STATE(965), 3, + STATE(930), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1045), 3, - sym_sym_lit, - sym_list_lit, - sym_read_cond_lit, - STATE(1090), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - [93882] = 17, + [88592] = 17, ACTIONS(3), 1, sym_block_comment, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(381), 1, + ACTIONS(413), 1, anon_sym_LPAREN, - ACTIONS(2940), 1, + ACTIONS(2894), 1, anon_sym_POUND_, - ACTIONS(3052), 1, + ACTIONS(2976), 1, aux_sym_sym_lit_token1, - ACTIONS(3054), 1, + ACTIONS(2978), 1, anon_sym_POUND_QMARK, - STATE(546), 1, + STATE(463), 1, sym_read_cond_lit, - STATE(547), 1, + STATE(464), 1, sym_list_lit, - STATE(552), 1, + STATE(465), 1, sym_sym_lit, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1411), 1, + STATE(1369), 1, aux_sym_sym_lit_repeat1, - ACTIONS(3050), 2, + ACTIONS(2892), 2, sym__ws, sym_comment, - STATE(515), 3, + STATE(486), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1243), 3, + STATE(918), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [93939] = 15, + [88649] = 15, ACTIONS(3), 1, sym_block_comment, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(1116), 1, + ACTIONS(413), 1, anon_sym_LPAREN, - ACTIONS(2940), 1, + ACTIONS(2894), 1, anon_sym_POUND_, - ACTIONS(3056), 1, + ACTIONS(2976), 1, aux_sym_sym_lit_token1, - ACTIONS(3058), 1, + ACTIONS(2978), 1, anon_sym_POUND_QMARK, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1407), 1, + STATE(1369), 1, aux_sym_sym_lit_repeat1, - ACTIONS(2950), 2, + ACTIONS(2892), 2, sym__ws, sym_comment, - STATE(1090), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1323), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1355), 3, + STATE(441), 3, sym_sym_lit, sym_list_lit, sym_read_cond_lit, - [93992] = 17, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(19), 1, - anon_sym_CARET, - ACTIONS(21), 1, - anon_sym_POUND_CARET, - ACTIONS(612), 1, - anon_sym_LPAREN, - ACTIONS(2940), 1, - anon_sym_POUND_, - ACTIONS(3042), 1, - aux_sym_sym_lit_token1, - ACTIONS(3044), 1, - anon_sym_POUND_QMARK, - STATE(1013), 1, - sym_read_cond_lit, - STATE(1014), 1, - sym_list_lit, - STATE(1015), 1, - sym_sym_lit, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, - sym_meta_lit, - STATE(1369), 1, - sym__metadata_lit, - STATE(1409), 1, - aux_sym_sym_lit_repeat1, - ACTIONS(2950), 2, - sym__ws, - sym_comment, - STATE(965), 3, + STATE(486), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1090), 3, + STATE(918), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [94049] = 15, + [88702] = 17, ACTIONS(3), 1, sym_block_comment, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(23), 1, + ACTIONS(1180), 1, anon_sym_LPAREN, - ACTIONS(2940), 1, + ACTIONS(2894), 1, anon_sym_POUND_, - ACTIONS(3008), 1, + ACTIONS(2980), 1, aux_sym_sym_lit_token1, - ACTIONS(3012), 1, + ACTIONS(2982), 1, anon_sym_POUND_QMARK, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1268), 1, + sym_sym_lit, + STATE(1269), 1, + sym_list_lit, + STATE(1270), 1, + sym_read_cond_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1410), 1, + STATE(1370), 1, aux_sym_sym_lit_repeat1, - ACTIONS(2950), 2, + ACTIONS(2892), 2, sym__ws, sym_comment, - STATE(842), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(857), 3, - sym_sym_lit, - sym_list_lit, - sym_read_cond_lit, - STATE(1090), 3, + STATE(918), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [94102] = 15, + STATE(1231), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + [88759] = 15, ACTIONS(3), 1, sym_block_comment, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(524), 1, + ACTIONS(413), 1, anon_sym_LPAREN, - ACTIONS(2940), 1, + ACTIONS(2894), 1, anon_sym_POUND_, - ACTIONS(3062), 1, + ACTIONS(2976), 1, aux_sym_sym_lit_token1, - ACTIONS(3064), 1, + ACTIONS(2978), 1, anon_sym_POUND_QMARK, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1413), 1, + STATE(1369), 1, aux_sym_sym_lit_repeat1, - ACTIONS(3060), 2, + ACTIONS(2984), 2, sym__ws, sym_comment, - STATE(651), 3, + STATE(486), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(699), 3, + STATE(499), 3, sym_sym_lit, sym_list_lit, sym_read_cond_lit, - STATE(1232), 3, + STATE(1177), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [94155] = 17, + [88812] = 17, ACTIONS(3), 1, sym_block_comment, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(524), 1, + ACTIONS(413), 1, anon_sym_LPAREN, - ACTIONS(2940), 1, + ACTIONS(2894), 1, anon_sym_POUND_, - ACTIONS(3062), 1, + ACTIONS(2976), 1, aux_sym_sym_lit_token1, - ACTIONS(3064), 1, + ACTIONS(2978), 1, anon_sym_POUND_QMARK, - STATE(760), 1, - sym_sym_lit, - STATE(762), 1, + STATE(412), 1, sym_list_lit, - STATE(763), 1, + STATE(500), 1, sym_read_cond_lit, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(504), 1, + sym_sym_lit, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1413), 1, + STATE(1369), 1, aux_sym_sym_lit_repeat1, - ACTIONS(3066), 2, + ACTIONS(2986), 2, sym__ws, sym_comment, - STATE(651), 3, + STATE(486), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1244), 3, + STATE(1176), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [94212] = 15, + [88869] = 15, ACTIONS(3), 1, sym_block_comment, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(568), 1, + ACTIONS(1180), 1, anon_sym_LPAREN, - ACTIONS(2940), 1, + ACTIONS(2894), 1, anon_sym_POUND_, - ACTIONS(3036), 1, + ACTIONS(2980), 1, aux_sym_sym_lit_token1, - ACTIONS(3038), 1, + ACTIONS(2982), 1, anon_sym_POUND_QMARK, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1408), 1, + STATE(1370), 1, aux_sym_sym_lit_repeat1, - ACTIONS(2950), 2, + ACTIONS(2988), 2, sym__ws, sym_comment, - STATE(718), 3, - sym_sym_lit, - sym_list_lit, - sym_read_cond_lit, - STATE(786), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1090), 3, + STATE(1203), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [94265] = 15, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(19), 1, - anon_sym_CARET, - ACTIONS(21), 1, - anon_sym_POUND_CARET, - ACTIONS(568), 1, - anon_sym_LPAREN, - ACTIONS(2940), 1, - anon_sym_POUND_, - ACTIONS(3036), 1, - aux_sym_sym_lit_token1, - ACTIONS(3038), 1, - anon_sym_POUND_QMARK, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, - sym_meta_lit, - STATE(1369), 1, - sym__metadata_lit, - STATE(1408), 1, - aux_sym_sym_lit_repeat1, - ACTIONS(3068), 2, - sym__ws, - sym_comment, - STATE(722), 3, - sym_sym_lit, - sym_list_lit, - sym_read_cond_lit, - STATE(786), 3, + STATE(1231), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1228), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - [94318] = 15, + STATE(1296), 3, + sym_sym_lit, + sym_list_lit, + sym_read_cond_lit, + [88922] = 15, ACTIONS(3), 1, sym_block_comment, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(23), 1, + ACTIONS(572), 1, anon_sym_LPAREN, - ACTIONS(2940), 1, + ACTIONS(2894), 1, anon_sym_POUND_, - ACTIONS(3008), 1, + ACTIONS(2896), 1, aux_sym_sym_lit_token1, - ACTIONS(3012), 1, + ACTIONS(2900), 1, anon_sym_POUND_QMARK, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1410), 1, + STATE(1368), 1, aux_sym_sym_lit_repeat1, - ACTIONS(3070), 2, + ACTIONS(2990), 2, sym__ws, sym_comment, - STATE(828), 3, - sym_sym_lit, - sym_list_lit, - sym_read_cond_lit, - STATE(842), 3, + STATE(1067), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1225), 3, + STATE(1077), 3, + sym_sym_lit, + sym_list_lit, + sym_read_cond_lit, + STATE(1190), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [94371] = 3, + [88975] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2057), 2, + ACTIONS(2019), 2, + anon_sym_COLON, anon_sym_being, + ACTIONS(2017), 19, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_DOT, + anon_sym_COLON_COLON, + anon_sym_in, + anon_sym_across, + anon_sym_using, + aux_sym_for_clause_word_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, + anon_sym_EQ, + [89004] = 3, + ACTIONS(3), 1, + sym_block_comment, + ACTIONS(2023), 2, anon_sym_COLON, - ACTIONS(2055), 19, + anon_sym_being, + ACTIONS(2021), 19, sym__ws, sym_comment, anon_sym_POUND_, @@ -81304,375 +77429,571 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [94400] = 15, + [89033] = 17, ACTIONS(3), 1, sym_block_comment, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(524), 1, + ACTIONS(1180), 1, anon_sym_LPAREN, - ACTIONS(2940), 1, + ACTIONS(2894), 1, anon_sym_POUND_, - ACTIONS(3062), 1, + ACTIONS(2980), 1, aux_sym_sym_lit_token1, - ACTIONS(3064), 1, + ACTIONS(2982), 1, anon_sym_POUND_QMARK, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1253), 1, + sym_sym_lit, + STATE(1254), 1, + sym_list_lit, + STATE(1255), 1, + sym_read_cond_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1413), 1, + STATE(1370), 1, aux_sym_sym_lit_repeat1, - ACTIONS(2950), 2, + ACTIONS(2992), 2, sym__ws, sym_comment, - STATE(651), 3, + STATE(1178), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1231), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(736), 3, - sym_sym_lit, - sym_list_lit, + [89090] = 17, + ACTIONS(3), 1, + sym_block_comment, + ACTIONS(23), 1, + anon_sym_CARET, + ACTIONS(25), 1, + anon_sym_POUND_CARET, + ACTIONS(528), 1, + anon_sym_LPAREN, + ACTIONS(2894), 1, + anon_sym_POUND_, + ACTIONS(2972), 1, + aux_sym_sym_lit_token1, + ACTIONS(2974), 1, + anon_sym_POUND_QMARK, + STATE(994), 1, sym_read_cond_lit, - STATE(1090), 3, + STATE(995), 1, + sym_list_lit, + STATE(996), 1, + sym_sym_lit, + STATE(1162), 1, + sym_meta_lit, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, + sym__metadata_lit, + STATE(1364), 1, + aux_sym_sym_lit_repeat1, + ACTIONS(2994), 2, + sym__ws, + sym_comment, + STATE(930), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1175), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [94453] = 17, + [89147] = 17, ACTIONS(3), 1, sym_block_comment, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(838), 1, + ACTIONS(27), 1, anon_sym_LPAREN, - ACTIONS(2940), 1, + ACTIONS(2894), 1, anon_sym_POUND_, - ACTIONS(3024), 1, + ACTIONS(2902), 1, aux_sym_sym_lit_token1, - ACTIONS(3026), 1, + ACTIONS(2904), 1, anon_sym_POUND_QMARK, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, - sym_meta_lit, - STATE(1104), 1, + STATE(801), 1, sym_sym_lit, - STATE(1181), 1, + STATE(802), 1, sym_list_lit, - STATE(1182), 1, + STATE(803), 1, sym_read_cond_lit, - STATE(1369), 1, + STATE(1162), 1, + sym_meta_lit, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1412), 1, + STATE(1367), 1, aux_sym_sym_lit_repeat1, - ACTIONS(2950), 2, + ACTIONS(2892), 2, sym__ws, sym_comment, - STATE(1090), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1110), 3, + STATE(787), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [94510] = 15, + STATE(918), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + [89204] = 15, ACTIONS(3), 1, sym_block_comment, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(1116), 1, + ACTIONS(27), 1, anon_sym_LPAREN, - ACTIONS(2940), 1, + ACTIONS(2894), 1, anon_sym_POUND_, - ACTIONS(3056), 1, + ACTIONS(2902), 1, aux_sym_sym_lit_token1, - ACTIONS(3058), 1, + ACTIONS(2904), 1, anon_sym_POUND_QMARK, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1407), 1, + STATE(1367), 1, aux_sym_sym_lit_repeat1, - ACTIONS(3072), 2, + ACTIONS(2892), 2, sym__ws, sym_comment, - STATE(1223), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1264), 3, + STATE(787), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(836), 3, sym_sym_lit, sym_list_lit, sym_read_cond_lit, - STATE(1323), 3, + STATE(918), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + [89257] = 15, + ACTIONS(3), 1, + sym_block_comment, + ACTIONS(23), 1, + anon_sym_CARET, + ACTIONS(25), 1, + anon_sym_POUND_CARET, + ACTIONS(27), 1, + anon_sym_LPAREN, + ACTIONS(2894), 1, + anon_sym_POUND_, + ACTIONS(2902), 1, + aux_sym_sym_lit_token1, + ACTIONS(2904), 1, + anon_sym_POUND_QMARK, + STATE(1162), 1, + sym_meta_lit, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, + sym__metadata_lit, + STATE(1367), 1, + aux_sym_sym_lit_repeat1, + ACTIONS(2996), 2, + sym__ws, + sym_comment, + STATE(787), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [94563] = 17, + STATE(871), 3, + sym_sym_lit, + sym_list_lit, + sym_read_cond_lit, + STATE(1188), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + [89310] = 15, ACTIONS(3), 1, sym_block_comment, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(1116), 1, + ACTIONS(572), 1, anon_sym_LPAREN, - ACTIONS(2940), 1, + ACTIONS(2894), 1, anon_sym_POUND_, - ACTIONS(3056), 1, + ACTIONS(2896), 1, aux_sym_sym_lit_token1, - ACTIONS(3058), 1, + ACTIONS(2900), 1, anon_sym_POUND_QMARK, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1261), 1, - sym_sym_lit, - STATE(1343), 1, - sym_read_cond_lit, - STATE(1344), 1, - sym_list_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1407), 1, + STATE(1368), 1, aux_sym_sym_lit_repeat1, - ACTIONS(3074), 2, + ACTIONS(2892), 2, sym__ws, sym_comment, - STATE(1236), 3, + STATE(918), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1323), 3, + STATE(1067), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [94620] = 17, + STATE(1101), 3, + sym_sym_lit, + sym_list_lit, + sym_read_cond_lit, + [89363] = 15, ACTIONS(3), 1, sym_block_comment, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(1116), 1, + ACTIONS(528), 1, anon_sym_LPAREN, - ACTIONS(2940), 1, + ACTIONS(2894), 1, anon_sym_POUND_, - ACTIONS(3056), 1, + ACTIONS(2972), 1, aux_sym_sym_lit_token1, - ACTIONS(3058), 1, + ACTIONS(2974), 1, anon_sym_POUND_QMARK, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1311), 1, - sym_read_cond_lit, - STATE(1312), 1, - sym_list_lit, - STATE(1313), 1, - sym_sym_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1407), 1, + STATE(1364), 1, aux_sym_sym_lit_repeat1, - ACTIONS(2950), 2, + ACTIONS(2998), 2, sym__ws, sym_comment, - STATE(1090), 3, + STATE(930), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1028), 3, + sym_sym_lit, + sym_list_lit, + sym_read_cond_lit, + STATE(1174), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1323), 3, + [89416] = 15, + ACTIONS(3), 1, + sym_block_comment, + ACTIONS(23), 1, + anon_sym_CARET, + ACTIONS(25), 1, + anon_sym_POUND_CARET, + ACTIONS(620), 1, + anon_sym_LPAREN, + ACTIONS(2894), 1, + anon_sym_POUND_, + ACTIONS(3000), 1, + aux_sym_sym_lit_token1, + ACTIONS(3002), 1, + anon_sym_POUND_QMARK, + STATE(1162), 1, + sym_meta_lit, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, + sym__metadata_lit, + STATE(1366), 1, + aux_sym_sym_lit_repeat1, + ACTIONS(2892), 2, + sym__ws, + sym_comment, + STATE(687), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [94677] = 17, + STATE(768), 3, + sym_sym_lit, + sym_list_lit, + sym_read_cond_lit, + STATE(918), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + [89469] = 17, ACTIONS(3), 1, sym_block_comment, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(568), 1, + ACTIONS(670), 1, anon_sym_LPAREN, - ACTIONS(2940), 1, + ACTIONS(2894), 1, anon_sym_POUND_, - ACTIONS(3036), 1, + ACTIONS(3004), 1, aux_sym_sym_lit_token1, - ACTIONS(3038), 1, + ACTIONS(3006), 1, anon_sym_POUND_QMARK, - STATE(617), 1, + STATE(629), 1, sym_sym_lit, - STATE(618), 1, + STATE(630), 1, sym_list_lit, - STATE(619), 1, + STATE(631), 1, sym_read_cond_lit, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1408), 1, + STATE(1365), 1, aux_sym_sym_lit_repeat1, - ACTIONS(3076), 2, + ACTIONS(2892), 2, sym__ws, sym_comment, - STATE(786), 3, + STATE(680), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1215), 3, + STATE(918), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [94734] = 15, + [89526] = 17, ACTIONS(3), 1, sym_block_comment, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(381), 1, + ACTIONS(670), 1, anon_sym_LPAREN, - ACTIONS(2940), 1, + ACTIONS(2894), 1, anon_sym_POUND_, - ACTIONS(3052), 1, + ACTIONS(3004), 1, aux_sym_sym_lit_token1, - ACTIONS(3054), 1, + ACTIONS(3006), 1, anon_sym_POUND_QMARK, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(614), 1, + sym_sym_lit, + STATE(615), 1, + sym_list_lit, + STATE(616), 1, + sym_read_cond_lit, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1411), 1, + STATE(1365), 1, aux_sym_sym_lit_repeat1, - ACTIONS(2950), 2, + ACTIONS(3008), 2, sym__ws, sym_comment, - STATE(457), 3, - sym_sym_lit, - sym_list_lit, - sym_read_cond_lit, - STATE(515), 3, + STATE(680), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1090), 3, + STATE(1193), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [94787] = 15, + [89583] = 17, ACTIONS(3), 1, sym_block_comment, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(838), 1, + ACTIONS(572), 1, anon_sym_LPAREN, - ACTIONS(2940), 1, + ACTIONS(2894), 1, anon_sym_POUND_, - ACTIONS(3024), 1, + ACTIONS(2896), 1, aux_sym_sym_lit_token1, - ACTIONS(3026), 1, + ACTIONS(2900), 1, anon_sym_POUND_QMARK, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1126), 1, + sym_sym_lit, + STATE(1127), 1, + sym_list_lit, + STATE(1128), 1, + sym_read_cond_lit, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1412), 1, + STATE(1368), 1, aux_sym_sym_lit_repeat1, - ACTIONS(2950), 2, + ACTIONS(2892), 2, sym__ws, sym_comment, - STATE(1090), 3, + STATE(918), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1110), 3, + STATE(1067), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1111), 3, + [89640] = 15, + ACTIONS(3), 1, + sym_block_comment, + ACTIONS(23), 1, + anon_sym_CARET, + ACTIONS(25), 1, + anon_sym_POUND_CARET, + ACTIONS(670), 1, + anon_sym_LPAREN, + ACTIONS(2894), 1, + anon_sym_POUND_, + ACTIONS(3004), 1, + aux_sym_sym_lit_token1, + ACTIONS(3006), 1, + anon_sym_POUND_QMARK, + STATE(1162), 1, + sym_meta_lit, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, + sym__metadata_lit, + STATE(1365), 1, + aux_sym_sym_lit_repeat1, + ACTIONS(2892), 2, + sym__ws, + sym_comment, + STATE(602), 3, sym_sym_lit, sym_list_lit, sym_read_cond_lit, - [94840] = 15, + STATE(680), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(918), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + [89693] = 15, ACTIONS(3), 1, sym_block_comment, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(381), 1, + ACTIONS(670), 1, anon_sym_LPAREN, - ACTIONS(2940), 1, + ACTIONS(2894), 1, anon_sym_POUND_, - ACTIONS(3052), 1, + ACTIONS(3004), 1, aux_sym_sym_lit_token1, - ACTIONS(3054), 1, + ACTIONS(3006), 1, anon_sym_POUND_QMARK, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1411), 1, + STATE(1365), 1, aux_sym_sym_lit_repeat1, - ACTIONS(3078), 2, + ACTIONS(3010), 2, sym__ws, sym_comment, - STATE(500), 3, + STATE(577), 3, sym_sym_lit, sym_list_lit, sym_read_cond_lit, - STATE(515), 3, + STATE(680), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1238), 3, + STATE(1196), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [94893] = 9, + [89746] = 17, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3082), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(3085), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - STATE(1078), 1, + ACTIONS(620), 1, + anon_sym_LPAREN, + ACTIONS(2894), 1, + anon_sym_POUND_, + ACTIONS(3000), 1, + aux_sym_sym_lit_token1, + ACTIONS(3002), 1, + anon_sym_POUND_QMARK, + STATE(721), 1, + sym_sym_lit, + STATE(742), 1, + sym_list_lit, + STATE(743), 1, + sym_read_cond_lit, + STATE(1162), 1, + sym_meta_lit, + STATE(1172), 1, sym_old_meta_lit, - STATE(1098), 1, + STATE(1337), 1, + sym__metadata_lit, + STATE(1366), 1, + aux_sym_sym_lit_repeat1, + ACTIONS(2892), 2, + sym__ws, + sym_comment, + STATE(687), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(918), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + [89803] = 9, + ACTIONS(3), 1, + sym_block_comment, + ACTIONS(3014), 1, + anon_sym_CARET, + ACTIONS(3017), 1, + anon_sym_POUND_CARET, + STATE(1162), 1, sym_meta_lit, - STATE(1241), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1199), 1, aux_sym_sym_lit_repeat1, - STATE(1369), 1, + STATE(1337), 1, sym__metadata_lit, - ACTIONS(3088), 2, + ACTIONS(3020), 2, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(3080), 13, + ACTIONS(3012), 13, aux_sym_sym_lit_token1, anon_sym_LPAREN, anon_sym_LBRACE, @@ -81686,196 +78007,209 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [94934] = 15, + [89844] = 17, ACTIONS(3), 1, sym_block_comment, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(612), 1, + ACTIONS(572), 1, anon_sym_LPAREN, - ACTIONS(2940), 1, + ACTIONS(2894), 1, anon_sym_POUND_, - ACTIONS(3042), 1, + ACTIONS(2896), 1, aux_sym_sym_lit_token1, - ACTIONS(3044), 1, + ACTIONS(2900), 1, anon_sym_POUND_QMARK, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1112), 1, + sym_sym_lit, + STATE(1113), 1, + sym_list_lit, + STATE(1114), 1, + sym_read_cond_lit, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1409), 1, + STATE(1368), 1, aux_sym_sym_lit_repeat1, - ACTIONS(3090), 2, + ACTIONS(3022), 2, sym__ws, sym_comment, - STATE(965), 3, + STATE(1067), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1070), 3, - sym_sym_lit, - sym_list_lit, - sym_read_cond_lit, - STATE(1221), 3, + STATE(1195), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [94987] = 17, + [89901] = 17, ACTIONS(3), 1, sym_block_comment, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(381), 1, + ACTIONS(27), 1, anon_sym_LPAREN, - ACTIONS(2940), 1, + ACTIONS(2894), 1, anon_sym_POUND_, - ACTIONS(3052), 1, + ACTIONS(2902), 1, aux_sym_sym_lit_token1, - ACTIONS(3054), 1, + ACTIONS(2904), 1, anon_sym_POUND_QMARK, - STATE(452), 1, - sym_list_lit, - STATE(458), 1, - sym_read_cond_lit, - STATE(523), 1, + STATE(881), 1, sym_sym_lit, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(885), 1, + sym_read_cond_lit, + STATE(887), 1, + sym_list_lit, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1411), 1, + STATE(1367), 1, aux_sym_sym_lit_repeat1, - ACTIONS(2950), 2, + ACTIONS(3024), 2, sym__ws, sym_comment, - STATE(515), 3, + STATE(787), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1090), 3, + STATE(1187), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [95044] = 17, + [89958] = 17, ACTIONS(3), 1, sym_block_comment, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(524), 1, + ACTIONS(620), 1, anon_sym_LPAREN, - ACTIONS(2940), 1, + ACTIONS(2894), 1, anon_sym_POUND_, - ACTIONS(3062), 1, + ACTIONS(3000), 1, aux_sym_sym_lit_token1, - ACTIONS(3064), 1, + ACTIONS(3002), 1, anon_sym_POUND_QMARK, - STATE(782), 1, + STATE(681), 1, sym_sym_lit, - STATE(783), 1, + STATE(683), 1, sym_list_lit, - STATE(785), 1, + STATE(689), 1, sym_read_cond_lit, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1413), 1, + STATE(1366), 1, aux_sym_sym_lit_repeat1, - ACTIONS(2950), 2, + ACTIONS(3026), 2, sym__ws, sym_comment, - STATE(651), 3, + STATE(687), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1090), 3, + STATE(1198), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [95101] = 17, + [90015] = 15, ACTIONS(3), 1, sym_block_comment, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(23), 1, + ACTIONS(1180), 1, anon_sym_LPAREN, - ACTIONS(2940), 1, + ACTIONS(2894), 1, anon_sym_POUND_, - ACTIONS(3008), 1, + ACTIONS(2980), 1, aux_sym_sym_lit_token1, - ACTIONS(3012), 1, + ACTIONS(2982), 1, anon_sym_POUND_QMARK, - STATE(868), 1, + STATE(1162), 1, + sym_meta_lit, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, + sym__metadata_lit, + STATE(1370), 1, + aux_sym_sym_lit_repeat1, + ACTIONS(2892), 2, + sym__ws, + sym_comment, + STATE(918), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1231), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1241), 3, sym_sym_lit, - STATE(870), 1, sym_list_lit, - STATE(871), 1, sym_read_cond_lit, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + [90068] = 15, + ACTIONS(3), 1, + sym_block_comment, + ACTIONS(23), 1, + anon_sym_CARET, + ACTIONS(25), 1, + anon_sym_POUND_CARET, + ACTIONS(620), 1, + anon_sym_LPAREN, + ACTIONS(2894), 1, + anon_sym_POUND_, + ACTIONS(3000), 1, + aux_sym_sym_lit_token1, + ACTIONS(3002), 1, + anon_sym_POUND_QMARK, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1410), 1, + STATE(1366), 1, aux_sym_sym_lit_repeat1, - ACTIONS(3092), 2, + ACTIONS(3028), 2, sym__ws, sym_comment, - STATE(842), 3, + STATE(687), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1219), 3, + STATE(706), 3, + sym_sym_lit, + sym_list_lit, + sym_read_cond_lit, + STATE(1192), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [95158] = 3, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(3096), 2, - anon_sym_POUND, - anon_sym_POUND_QMARK, - ACTIONS(3094), 18, - 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_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - [95186] = 3, + [90121] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3100), 2, + ACTIONS(3032), 2, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(3098), 18, + ACTIONS(3030), 18, sym__ws, sym_comment, anon_sym_POUND_, @@ -81894,13 +78228,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [95214] = 3, + [90149] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3104), 2, + ACTIONS(3036), 2, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(3102), 18, + ACTIONS(3034), 18, sym__ws, sym_comment, anon_sym_POUND_, @@ -81919,13 +78253,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [95242] = 3, + [90177] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3108), 2, + ACTIONS(3040), 2, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(3106), 18, + ACTIONS(3038), 18, sym__ws, sym_comment, anon_sym_POUND_, @@ -81944,13 +78278,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [95270] = 3, + [90205] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3112), 2, + ACTIONS(3044), 2, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(3110), 18, + ACTIONS(3042), 18, sym__ws, sym_comment, anon_sym_POUND_, @@ -81969,13 +78303,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [95298] = 3, + [90233] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3116), 2, + ACTIONS(3048), 2, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(3114), 18, + ACTIONS(3046), 18, sym__ws, sym_comment, anon_sym_POUND_, @@ -81994,16 +78328,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [95326] = 5, + [90261] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2035), 1, + ACTIONS(2004), 1, anon_sym_being, - ACTIONS(3118), 1, + ACTIONS(3050), 1, anon_sym_DOT, - STATE(1252), 1, + STATE(1211), 1, aux_sym_dotted_sym_lit_repeat1, - ACTIONS(2030), 17, + ACTIONS(2002), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -82021,16 +78355,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [95358] = 5, + [90293] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2028), 1, + ACTIONS(2000), 1, anon_sym_being, - ACTIONS(3121), 1, + ACTIONS(3050), 1, anon_sym_DOT, - STATE(1255), 1, + STATE(1212), 1, aux_sym_dotted_sym_lit_repeat1, - ACTIONS(2024), 17, + ACTIONS(1996), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -82048,16 +78382,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [95390] = 5, + [90325] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2043), 1, + ACTIONS(2015), 1, anon_sym_being, - ACTIONS(3121), 1, + ACTIONS(3052), 1, anon_sym_DOT, - STATE(1255), 1, + STATE(1212), 1, aux_sym_dotted_sym_lit_repeat1, - ACTIONS(2041), 17, + ACTIONS(2010), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -82075,40 +78409,38 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [95422] = 5, + [90357] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2039), 1, - anon_sym_being, - ACTIONS(3121), 1, - anon_sym_DOT, - STATE(1252), 1, - aux_sym_dotted_sym_lit_repeat1, - ACTIONS(2037), 17, + ACTIONS(3057), 2, + anon_sym_POUND, + anon_sym_POUND_QMARK, + ACTIONS(3055), 18, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_in, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_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, - anon_sym_EQ, - [95454] = 3, + 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_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + [90385] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3125), 2, + ACTIONS(3061), 2, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(3123), 18, + ACTIONS(3059), 18, sym__ws, sym_comment, anon_sym_POUND_, @@ -82127,13 +78459,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [95482] = 3, + [90413] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3129), 2, + ACTIONS(3065), 2, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(3127), 18, + ACTIONS(3063), 18, sym__ws, sym_comment, anon_sym_POUND_, @@ -82152,12 +78484,39 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, - [95510] = 3, + [90441] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2035), 1, + ACTIONS(2008), 1, anon_sym_being, - ACTIONS(2030), 18, + ACTIONS(3050), 1, + anon_sym_DOT, + STATE(1211), 1, + aux_sym_dotted_sym_lit_repeat1, + ACTIONS(2006), 17, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_in, + anon_sym_across, + anon_sym_using, + aux_sym_for_clause_word_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, + anon_sym_EQ, + [90473] = 3, + ACTIONS(3), 1, + sym_block_comment, + ACTIONS(2015), 1, + anon_sym_being, + ACTIONS(2010), 18, sym__ws, sym_comment, anon_sym_POUND_, @@ -82176,12 +78535,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [95537] = 3, + [90500] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2353), 1, + ACTIONS(2211), 1, anon_sym_being, - ACTIONS(2351), 17, + ACTIONS(2209), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -82199,12 +78558,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [95563] = 3, + [90526] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2101), 1, + ACTIONS(2279), 1, anon_sym_being, - ACTIONS(2099), 17, + ACTIONS(2277), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -82222,12 +78581,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [95589] = 3, + [90552] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2409), 1, + ACTIONS(2008), 1, anon_sym_being, - ACTIONS(2407), 17, + ACTIONS(2006), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -82245,12 +78604,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [95615] = 3, + [90578] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2233), 1, + ACTIONS(2307), 1, anon_sym_being, - ACTIONS(2231), 17, + ACTIONS(2305), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -82268,12 +78627,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [95641] = 3, + [90604] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2241), 1, + ACTIONS(2379), 1, anon_sym_being, - ACTIONS(2239), 17, + ACTIONS(2377), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -82291,12 +78650,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [95667] = 3, + [90630] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2245), 1, + ACTIONS(2375), 1, anon_sym_being, - ACTIONS(2243), 17, + ACTIONS(2373), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -82314,12 +78673,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [95693] = 3, + [90656] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2221), 1, + ACTIONS(2371), 1, anon_sym_being, - ACTIONS(2219), 17, + ACTIONS(2369), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -82337,12 +78696,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [95719] = 3, + [90682] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2209), 1, + ACTIONS(2359), 1, anon_sym_being, - ACTIONS(2207), 17, + ACTIONS(2357), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -82360,12 +78719,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [95745] = 3, + [90708] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2253), 1, + ACTIONS(2299), 1, anon_sym_being, - ACTIONS(2251), 17, + ACTIONS(2297), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -82383,12 +78742,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [95771] = 3, + [90734] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2261), 1, + ACTIONS(2267), 1, anon_sym_being, - ACTIONS(2259), 17, + ACTIONS(2265), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -82406,12 +78765,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [95797] = 3, + [90760] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2028), 1, + ACTIONS(2259), 1, anon_sym_being, - ACTIONS(2024), 17, + ACTIONS(2257), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -82429,12 +78788,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [95823] = 3, + [90786] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2201), 1, + ACTIONS(2255), 1, anon_sym_being, - ACTIONS(2199), 17, + ACTIONS(2253), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -82452,12 +78811,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [95849] = 3, + [90812] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2193), 1, + ACTIONS(2295), 1, anon_sym_being, - ACTIONS(2191), 17, + ACTIONS(2293), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -82475,12 +78834,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [95875] = 3, + [90838] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2373), 1, + ACTIONS(2291), 1, anon_sym_being, - ACTIONS(2371), 17, + ACTIONS(2289), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -82498,12 +78857,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [95901] = 3, + [90864] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2377), 1, + ACTIONS(2239), 1, anon_sym_being, - ACTIONS(2375), 17, + ACTIONS(2237), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -82521,12 +78880,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [95927] = 3, + [90890] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2377), 1, + ACTIONS(2191), 1, anon_sym_being, - ACTIONS(2375), 17, + ACTIONS(2189), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -82544,12 +78903,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [95953] = 3, + [90916] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2389), 1, + ACTIONS(2187), 1, anon_sym_being, - ACTIONS(2387), 17, + ACTIONS(2185), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -82567,12 +78926,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [95979] = 3, + [90942] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2393), 1, + ACTIONS(2179), 1, anon_sym_being, - ACTIONS(2391), 17, + ACTIONS(2177), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -82590,12 +78949,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [96005] = 3, + [90968] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2397), 1, + ACTIONS(2175), 1, anon_sym_being, - ACTIONS(2395), 17, + ACTIONS(2173), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -82613,12 +78972,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [96031] = 3, + [90994] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2385), 1, + ACTIONS(2155), 1, anon_sym_being, - ACTIONS(2383), 17, + ACTIONS(2153), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -82636,12 +78995,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [96057] = 3, + [91020] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2397), 1, + ACTIONS(2151), 1, anon_sym_being, - ACTIONS(2395), 17, + ACTIONS(2149), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -82659,12 +79018,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [96083] = 3, + [91046] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2385), 1, + ACTIONS(2143), 1, anon_sym_being, - ACTIONS(2383), 17, + ACTIONS(2141), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -82682,12 +79041,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [96109] = 3, + [91072] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2365), 1, + ACTIONS(2135), 1, anon_sym_being, - ACTIONS(2363), 17, + ACTIONS(2133), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -82705,12 +79064,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [96135] = 3, + [91098] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2361), 1, + ACTIONS(2131), 1, anon_sym_being, - ACTIONS(2359), 17, + ACTIONS(2129), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -82728,12 +79087,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [96161] = 3, + [91124] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2357), 1, + ACTIONS(2123), 1, anon_sym_being, - ACTIONS(2355), 17, + ACTIONS(2121), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -82751,12 +79110,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [96187] = 3, + [91150] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2325), 1, + ACTIONS(2119), 1, anon_sym_being, - ACTIONS(2323), 17, + ACTIONS(2117), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -82774,12 +79133,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [96213] = 3, + [91176] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2325), 1, + ACTIONS(2111), 1, anon_sym_being, - ACTIONS(2323), 17, + ACTIONS(2109), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -82797,12 +79156,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [96239] = 3, + [91202] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2317), 1, + ACTIONS(2099), 1, anon_sym_being, - ACTIONS(2315), 17, + ACTIONS(2097), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -82820,12 +79179,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [96265] = 3, + [91228] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2313), 1, + ACTIONS(2091), 1, anon_sym_being, - ACTIONS(2311), 17, + ACTIONS(2089), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -82843,12 +79202,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [96291] = 3, + [91254] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2069), 1, + ACTIONS(2087), 1, anon_sym_being, - ACTIONS(2067), 17, + ACTIONS(2085), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -82866,12 +79225,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [96317] = 3, + [91280] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2305), 1, + ACTIONS(2263), 1, anon_sym_being, - ACTIONS(2303), 17, + ACTIONS(2261), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -82889,12 +79248,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [96343] = 3, + [91306] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2285), 1, + ACTIONS(2004), 1, anon_sym_being, - ACTIONS(2283), 17, + ACTIONS(2002), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -82912,12 +79271,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [96369] = 3, + [91332] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2065), 1, + ACTIONS(2343), 1, anon_sym_being, - ACTIONS(2063), 17, + ACTIONS(2341), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -82935,12 +79294,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [96395] = 3, + [91358] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2237), 1, + ACTIONS(2319), 1, anon_sym_being, - ACTIONS(2235), 17, + ACTIONS(2317), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -82958,12 +79317,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [96421] = 3, + [91384] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2229), 1, + ACTIONS(2287), 1, anon_sym_being, - ACTIONS(2227), 17, + ACTIONS(2285), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -82981,12 +79340,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [96447] = 3, + [91410] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2229), 1, + ACTIONS(2027), 1, anon_sym_being, - ACTIONS(2227), 17, + ACTIONS(2025), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -83004,12 +79363,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [96473] = 3, + [91436] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2217), 1, + ACTIONS(2027), 1, anon_sym_being, - ACTIONS(2215), 17, + ACTIONS(2025), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -83027,12 +79386,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [96499] = 3, + [91462] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2213), 1, + ACTIONS(2027), 1, anon_sym_being, - ACTIONS(2211), 17, + ACTIONS(2025), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -83050,12 +79409,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [96525] = 3, + [91488] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2205), 1, + ACTIONS(2335), 1, anon_sym_being, - ACTIONS(2203), 17, + ACTIONS(2333), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -83073,12 +79432,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [96551] = 3, + [91514] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2185), 1, + ACTIONS(2283), 1, anon_sym_being, - ACTIONS(2183), 17, + ACTIONS(2281), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -83096,12 +79455,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [96577] = 3, + [91540] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2181), 1, + ACTIONS(2271), 1, anon_sym_being, - ACTIONS(2179), 17, + ACTIONS(2269), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -83119,12 +79478,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [96603] = 3, + [91566] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2185), 1, + ACTIONS(2251), 1, anon_sym_being, - ACTIONS(2183), 17, + ACTIONS(2249), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -83142,12 +79501,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [96629] = 3, + [91592] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2181), 1, + ACTIONS(2247), 1, anon_sym_being, - ACTIONS(2179), 17, + ACTIONS(2245), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -83165,12 +79524,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [96655] = 3, + [91618] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2177), 1, + ACTIONS(2235), 1, anon_sym_being, - ACTIONS(2175), 17, + ACTIONS(2233), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -83188,12 +79547,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [96681] = 3, + [91644] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2173), 1, + ACTIONS(2231), 1, anon_sym_being, - ACTIONS(2171), 17, + ACTIONS(2229), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -83211,12 +79570,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [96707] = 3, + [91670] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2169), 1, + ACTIONS(2227), 1, anon_sym_being, - ACTIONS(2167), 17, + ACTIONS(2225), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -83234,12 +79593,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [96733] = 3, + [91696] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2165), 1, + ACTIONS(2223), 1, anon_sym_being, - ACTIONS(2163), 17, + ACTIONS(2221), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -83257,12 +79616,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [96759] = 3, + [91722] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2117), 1, + ACTIONS(2219), 1, anon_sym_being, - ACTIONS(2115), 17, + ACTIONS(2217), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -83280,12 +79639,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [96785] = 3, + [91748] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2117), 1, + ACTIONS(2215), 1, anon_sym_being, - ACTIONS(2115), 17, + ACTIONS(2213), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -83303,12 +79662,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [96811] = 3, + [91774] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2113), 1, + ACTIONS(2315), 1, anon_sym_being, - ACTIONS(2111), 17, + ACTIONS(2313), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -83326,12 +79685,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [96837] = 3, + [91800] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2109), 1, + ACTIONS(2207), 1, anon_sym_being, - ACTIONS(2107), 17, + ACTIONS(2205), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -83349,12 +79708,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [96863] = 3, + [91826] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2081), 1, + ACTIONS(2207), 1, anon_sym_being, - ACTIONS(2079), 17, + ACTIONS(2205), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -83372,12 +79731,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [96889] = 3, + [91852] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2073), 1, + ACTIONS(2207), 1, anon_sym_being, - ACTIONS(2071), 17, + ACTIONS(2205), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -83395,12 +79754,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [96915] = 3, + [91878] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2073), 1, + ACTIONS(2203), 1, anon_sym_being, - ACTIONS(2071), 17, + ACTIONS(2201), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -83418,12 +79777,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [96941] = 3, + [91904] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2073), 1, + ACTIONS(2199), 1, anon_sym_being, - ACTIONS(2071), 17, + ACTIONS(2197), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -83441,12 +79800,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [96967] = 3, + [91930] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2333), 1, + ACTIONS(2195), 1, anon_sym_being, - ACTIONS(2331), 17, + ACTIONS(2193), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -83464,12 +79823,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [96993] = 3, + [91956] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2273), 1, + ACTIONS(2183), 1, anon_sym_being, - ACTIONS(2271), 17, + ACTIONS(2181), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -83487,12 +79846,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [97019] = 3, + [91982] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2277), 1, + ACTIONS(2311), 1, anon_sym_being, - ACTIONS(2275), 17, + ACTIONS(2309), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -83510,12 +79869,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [97045] = 3, + [92008] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2281), 1, + ACTIONS(2183), 1, anon_sym_being, - ACTIONS(2279), 17, + ACTIONS(2181), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -83533,12 +79892,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [97071] = 3, + [92034] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2293), 1, + ACTIONS(2083), 1, anon_sym_being, - ACTIONS(2291), 17, + ACTIONS(2081), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -83556,12 +79915,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [97097] = 3, + [92060] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2337), 1, + ACTIONS(2127), 1, anon_sym_being, - ACTIONS(2335), 17, + ACTIONS(2125), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -83579,12 +79938,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [97123] = 3, + [92086] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2297), 1, + ACTIONS(2347), 1, anon_sym_being, - ACTIONS(2295), 17, + ACTIONS(2345), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -83602,12 +79961,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [97149] = 3, + [92112] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2341), 1, + ACTIONS(2171), 1, anon_sym_being, - ACTIONS(2339), 17, + ACTIONS(2169), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -83625,12 +79984,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [97175] = 3, + [92138] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2345), 1, + ACTIONS(2167), 1, anon_sym_being, - ACTIONS(2343), 17, + ACTIONS(2165), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -83648,12 +80007,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [97201] = 3, + [92164] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2301), 1, + ACTIONS(2163), 1, anon_sym_being, - ACTIONS(2299), 17, + ACTIONS(2161), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -83671,12 +80030,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [97227] = 3, + [92190] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2329), 1, + ACTIONS(2147), 1, anon_sym_being, - ACTIONS(2327), 17, + ACTIONS(2145), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -83694,12 +80053,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [97253] = 3, + [92216] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2257), 1, + ACTIONS(2347), 1, anon_sym_being, - ACTIONS(2255), 17, + ACTIONS(2345), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -83717,12 +80076,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [97279] = 3, + [92242] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2249), 1, + ACTIONS(2139), 1, anon_sym_being, - ACTIONS(2247), 17, + ACTIONS(2137), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -83740,12 +80099,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [97305] = 3, + [92268] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2189), 1, + ACTIONS(2115), 1, anon_sym_being, - ACTIONS(2187), 17, + ACTIONS(2113), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -83763,12 +80122,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [97331] = 3, + [92294] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2197), 1, + ACTIONS(2139), 1, anon_sym_being, - ACTIONS(2195), 17, + ACTIONS(2137), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -83786,12 +80145,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [97357] = 3, + [92320] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2161), 1, + ACTIONS(2115), 1, anon_sym_being, - ACTIONS(2159), 17, + ACTIONS(2113), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -83809,12 +80168,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [97383] = 3, + [92346] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2157), 1, + ACTIONS(2107), 1, anon_sym_being, - ACTIONS(2155), 17, + ACTIONS(2105), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -83832,12 +80191,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [97409] = 3, + [92372] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2153), 1, + ACTIONS(2367), 1, anon_sym_being, - ACTIONS(2151), 17, + ACTIONS(2365), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -83855,12 +80214,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [97435] = 3, + [92398] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2417), 1, + ACTIONS(2103), 1, anon_sym_being, - ACTIONS(2415), 17, + ACTIONS(2101), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -83878,12 +80237,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [97461] = 3, + [92424] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2145), 1, + ACTIONS(2363), 1, anon_sym_being, - ACTIONS(2143), 17, + ACTIONS(2361), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -83901,12 +80260,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [97487] = 3, + [92450] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2141), 1, + ACTIONS(2159), 1, anon_sym_being, - ACTIONS(2139), 17, + ACTIONS(2157), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -83924,12 +80283,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [97513] = 3, + [92476] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2137), 1, + ACTIONS(2095), 1, anon_sym_being, - ACTIONS(2135), 17, + ACTIONS(2093), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -83947,12 +80306,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [97539] = 3, + [92502] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2265), 1, + ACTIONS(2079), 1, anon_sym_being, - ACTIONS(2263), 17, + ACTIONS(2077), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -83970,12 +80329,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [97565] = 3, + [92528] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2133), 1, + ACTIONS(2339), 1, anon_sym_being, - ACTIONS(2131), 17, + ACTIONS(2337), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -83993,12 +80352,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [97591] = 3, + [92554] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2129), 1, + ACTIONS(2355), 1, anon_sym_being, - ACTIONS(2127), 17, + ACTIONS(2353), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -84016,12 +80375,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [97617] = 3, + [92580] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2369), 1, + ACTIONS(2331), 1, anon_sym_being, - ACTIONS(2367), 17, + ACTIONS(2329), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -84039,12 +80398,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [97643] = 3, + [92606] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2381), 1, + ACTIONS(2327), 1, anon_sym_being, - ACTIONS(2379), 17, + ACTIONS(2325), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -84062,12 +80421,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [97669] = 3, + [92632] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2125), 1, + ACTIONS(2275), 1, anon_sym_being, - ACTIONS(2123), 17, + ACTIONS(2273), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -84085,12 +80444,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [97695] = 3, + [92658] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2405), 1, + ACTIONS(2351), 1, anon_sym_being, - ACTIONS(2403), 17, + ACTIONS(2349), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -84108,12 +80467,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [97721] = 3, + [92684] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2409), 1, + ACTIONS(2079), 1, anon_sym_being, - ACTIONS(2407), 17, + ACTIONS(2077), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -84131,12 +80490,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [97747] = 3, + [92710] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2409), 1, + ACTIONS(2075), 1, anon_sym_being, - ACTIONS(2407), 17, + ACTIONS(2073), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -84154,12 +80513,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [97773] = 3, + [92736] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2413), 1, + ACTIONS(2355), 1, anon_sym_being, - ACTIONS(2411), 17, + ACTIONS(2353), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -84177,12 +80536,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [97799] = 3, + [92762] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2269), 1, + ACTIONS(2279), 1, anon_sym_being, - ACTIONS(2267), 17, + ACTIONS(2277), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -84200,12 +80559,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [97825] = 3, + [92788] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2401), 1, + ACTIONS(2303), 1, anon_sym_being, - ACTIONS(2399), 17, + ACTIONS(2301), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -84223,12 +80582,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [97851] = 3, + [92814] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2121), 1, + ACTIONS(2071), 1, anon_sym_being, - ACTIONS(2119), 17, + ACTIONS(2069), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -84246,12 +80605,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [97877] = 3, + [92840] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2105), 1, + ACTIONS(2067), 1, anon_sym_being, - ACTIONS(2103), 17, + ACTIONS(2065), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -84269,12 +80628,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [97903] = 3, + [92866] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2349), 1, + ACTIONS(2063), 1, anon_sym_being, - ACTIONS(2347), 17, + ACTIONS(2061), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -84292,12 +80651,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [97929] = 3, + [92892] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2043), 1, + ACTIONS(2059), 1, anon_sym_being, - ACTIONS(2041), 17, + ACTIONS(2057), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -84315,12 +80674,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [97955] = 3, + [92918] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2321), 1, + ACTIONS(2035), 1, anon_sym_being, - ACTIONS(2319), 17, + ACTIONS(2033), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -84338,12 +80697,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [97981] = 3, + [92944] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2309), 1, + ACTIONS(2323), 1, anon_sym_being, - ACTIONS(2307), 17, + ACTIONS(2321), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -84361,12 +80720,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [98007] = 3, + [92970] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2097), 1, + ACTIONS(2055), 1, anon_sym_being, - ACTIONS(2095), 17, + ACTIONS(2053), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -84384,12 +80743,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [98033] = 3, + [92996] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2093), 1, + ACTIONS(2051), 1, anon_sym_being, - ACTIONS(2091), 17, + ACTIONS(2049), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -84407,12 +80766,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [98059] = 3, + [93022] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2089), 1, + ACTIONS(2039), 1, anon_sym_being, - ACTIONS(2087), 17, + ACTIONS(2037), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -84430,12 +80789,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [98085] = 3, + [93048] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2085), 1, + ACTIONS(2047), 1, anon_sym_being, - ACTIONS(2083), 17, + ACTIONS(2045), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -84453,12 +80812,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [98111] = 3, + [93074] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2225), 1, + ACTIONS(2043), 1, anon_sym_being, - ACTIONS(2223), 17, + ACTIONS(2041), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -84476,12 +80835,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [98137] = 3, + [93100] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2077), 1, + ACTIONS(2047), 1, anon_sym_being, - ACTIONS(2075), 17, + ACTIONS(2045), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -84499,676 +80858,676 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [98163] = 13, + [93126] = 13, ACTIONS(3), 1, sym_block_comment, - ACTIONS(23), 1, + ACTIONS(528), 1, anon_sym_LPAREN, - ACTIONS(2463), 1, + ACTIONS(2425), 1, anon_sym_CARET, - ACTIONS(2465), 1, + ACTIONS(2427), 1, anon_sym_POUND_CARET, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - STATE(946), 1, + STATE(1004), 1, sym_list_lit, - STATE(1369), 1, + STATE(1337), 1, sym__metadata_lit, - STATE(1427), 1, + STATE(1384), 1, aux_sym_sym_lit_repeat1, - STATE(1437), 1, - sym_meta_lit, - STATE(1439), 1, + STATE(1389), 1, sym_old_meta_lit, - ACTIONS(3131), 2, + STATE(1407), 1, + sym_meta_lit, + ACTIONS(3067), 2, sym__ws, sym_comment, - STATE(842), 3, + STATE(930), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1380), 3, + STATE(1378), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [98208] = 13, + [93171] = 13, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1116), 1, + ACTIONS(27), 1, anon_sym_LPAREN, - ACTIONS(2463), 1, + ACTIONS(2425), 1, anon_sym_CARET, - ACTIONS(2465), 1, + ACTIONS(2427), 1, anon_sym_POUND_CARET, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - STATE(1358), 1, + STATE(899), 1, sym_list_lit, - STATE(1369), 1, + STATE(1337), 1, sym__metadata_lit, - STATE(1422), 1, + STATE(1383), 1, aux_sym_sym_lit_repeat1, - STATE(1437), 1, - sym_meta_lit, - STATE(1439), 1, + STATE(1389), 1, sym_old_meta_lit, - ACTIONS(3135), 2, + STATE(1407), 1, + sym_meta_lit, + ACTIONS(3071), 2, sym__ws, sym_comment, - STATE(1323), 3, + STATE(787), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1379), 3, + STATE(1329), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [98253] = 13, + [93216] = 13, ACTIONS(3), 1, sym_block_comment, - ACTIONS(23), 1, + ACTIONS(670), 1, anon_sym_LPAREN, - ACTIONS(2463), 1, + ACTIONS(2425), 1, anon_sym_CARET, - ACTIONS(2465), 1, + ACTIONS(2427), 1, anon_sym_POUND_CARET, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - STATE(938), 1, + STATE(605), 1, sym_list_lit, - STATE(1369), 1, + STATE(1337), 1, sym__metadata_lit, - STATE(1427), 1, + STATE(1386), 1, aux_sym_sym_lit_repeat1, - STATE(1437), 1, - sym_meta_lit, - STATE(1439), 1, + STATE(1389), 1, sym_old_meta_lit, - ACTIONS(3137), 2, + STATE(1407), 1, + sym_meta_lit, + ACTIONS(3067), 2, sym__ws, sym_comment, - STATE(842), 3, + STATE(680), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1365), 3, + STATE(1378), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [98298] = 13, + [93261] = 13, ACTIONS(3), 1, sym_block_comment, - ACTIONS(612), 1, + ACTIONS(413), 1, anon_sym_LPAREN, - ACTIONS(2463), 1, + ACTIONS(2425), 1, anon_sym_CARET, - ACTIONS(2465), 1, + ACTIONS(2427), 1, anon_sym_POUND_CARET, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - STATE(1008), 1, + STATE(436), 1, sym_list_lit, - STATE(1369), 1, + STATE(1337), 1, sym__metadata_lit, - STATE(1424), 1, + STATE(1379), 1, aux_sym_sym_lit_repeat1, - STATE(1437), 1, - sym_meta_lit, - STATE(1439), 1, + STATE(1389), 1, sym_old_meta_lit, - ACTIONS(3139), 2, + STATE(1407), 1, + sym_meta_lit, + ACTIONS(3067), 2, sym__ws, sym_comment, - STATE(965), 3, + STATE(486), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1368), 3, + STATE(1378), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [98343] = 13, + [93306] = 13, ACTIONS(3), 1, sym_block_comment, - ACTIONS(23), 1, + ACTIONS(572), 1, anon_sym_LPAREN, - ACTIONS(2463), 1, + ACTIONS(2425), 1, anon_sym_CARET, - ACTIONS(2465), 1, + ACTIONS(2427), 1, anon_sym_POUND_CARET, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - STATE(860), 1, + STATE(1104), 1, sym_list_lit, - STATE(1369), 1, + STATE(1337), 1, sym__metadata_lit, - STATE(1427), 1, + STATE(1382), 1, aux_sym_sym_lit_repeat1, - STATE(1437), 1, - sym_meta_lit, - STATE(1439), 1, + STATE(1389), 1, sym_old_meta_lit, - ACTIONS(3141), 2, + STATE(1407), 1, + sym_meta_lit, + ACTIONS(3067), 2, sym__ws, sym_comment, - STATE(842), 3, + STATE(1067), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1426), 3, + STATE(1378), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [98388] = 13, + [93351] = 13, ACTIONS(3), 1, sym_block_comment, - ACTIONS(23), 1, + ACTIONS(528), 1, anon_sym_LPAREN, - ACTIONS(2463), 1, + ACTIONS(2425), 1, anon_sym_CARET, - ACTIONS(2465), 1, + ACTIONS(2427), 1, anon_sym_POUND_CARET, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - STATE(937), 1, + STATE(1025), 1, sym_list_lit, - STATE(1369), 1, + STATE(1337), 1, sym__metadata_lit, - STATE(1427), 1, + STATE(1384), 1, aux_sym_sym_lit_repeat1, - STATE(1437), 1, - sym_meta_lit, - STATE(1439), 1, + STATE(1389), 1, sym_old_meta_lit, - ACTIONS(3141), 2, + STATE(1407), 1, + sym_meta_lit, + ACTIONS(3073), 2, sym__ws, sym_comment, - STATE(842), 3, + STATE(930), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1426), 3, + STATE(1319), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [98433] = 13, + [93396] = 13, ACTIONS(3), 1, sym_block_comment, - ACTIONS(524), 1, + ACTIONS(27), 1, anon_sym_LPAREN, - ACTIONS(2463), 1, + ACTIONS(2425), 1, anon_sym_CARET, - ACTIONS(2465), 1, + ACTIONS(2427), 1, anon_sym_POUND_CARET, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - STATE(742), 1, + STATE(900), 1, sym_list_lit, - STATE(1369), 1, + STATE(1337), 1, sym__metadata_lit, - STATE(1430), 1, + STATE(1383), 1, aux_sym_sym_lit_repeat1, - STATE(1437), 1, - sym_meta_lit, - STATE(1439), 1, + STATE(1389), 1, sym_old_meta_lit, - ACTIONS(3141), 2, + STATE(1407), 1, + sym_meta_lit, + ACTIONS(3075), 2, sym__ws, sym_comment, - STATE(651), 3, + STATE(787), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1426), 3, + STATE(1326), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [98478] = 13, + [93441] = 13, ACTIONS(3), 1, sym_block_comment, - ACTIONS(838), 1, + ACTIONS(27), 1, anon_sym_LPAREN, - ACTIONS(2463), 1, + ACTIONS(2425), 1, anon_sym_CARET, - ACTIONS(2465), 1, + ACTIONS(2427), 1, anon_sym_POUND_CARET, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - STATE(1115), 1, + STATE(901), 1, sym_list_lit, - STATE(1369), 1, + STATE(1337), 1, sym__metadata_lit, - STATE(1425), 1, + STATE(1383), 1, aux_sym_sym_lit_repeat1, - STATE(1437), 1, - sym_meta_lit, - STATE(1439), 1, + STATE(1389), 1, sym_old_meta_lit, - ACTIONS(3143), 2, + STATE(1407), 1, + sym_meta_lit, + ACTIONS(3067), 2, sym__ws, sym_comment, - STATE(1110), 3, + STATE(787), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1375), 3, + STATE(1378), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [98523] = 13, + [93486] = 13, ACTIONS(3), 1, sym_block_comment, - ACTIONS(612), 1, + ACTIONS(27), 1, anon_sym_LPAREN, - ACTIONS(2463), 1, + ACTIONS(2425), 1, anon_sym_CARET, - ACTIONS(2465), 1, + ACTIONS(2427), 1, anon_sym_POUND_CARET, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - STATE(1040), 1, + STATE(905), 1, sym_list_lit, - STATE(1369), 1, + STATE(1337), 1, sym__metadata_lit, - STATE(1424), 1, + STATE(1383), 1, aux_sym_sym_lit_repeat1, - STATE(1437), 1, - sym_meta_lit, - STATE(1439), 1, + STATE(1389), 1, sym_old_meta_lit, - ACTIONS(3141), 2, + STATE(1407), 1, + sym_meta_lit, + ACTIONS(3077), 2, sym__ws, sym_comment, - STATE(965), 3, + STATE(787), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1426), 3, + STATE(1334), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [98568] = 3, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(3147), 2, - anon_sym_POUND, - anon_sym_POUND_QMARK, - ACTIONS(3145), 15, - 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_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - [98593] = 13, + [93531] = 13, ACTIONS(3), 1, sym_block_comment, - ACTIONS(524), 1, + ACTIONS(413), 1, anon_sym_LPAREN, - ACTIONS(2463), 1, + ACTIONS(2425), 1, anon_sym_CARET, - ACTIONS(2465), 1, + ACTIONS(2427), 1, anon_sym_POUND_CARET, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - STATE(705), 1, + STATE(514), 1, sym_list_lit, - STATE(1369), 1, + STATE(1337), 1, sym__metadata_lit, - STATE(1430), 1, + STATE(1379), 1, aux_sym_sym_lit_repeat1, - STATE(1437), 1, - sym_meta_lit, - STATE(1439), 1, + STATE(1389), 1, sym_old_meta_lit, - ACTIONS(3149), 2, + STATE(1407), 1, + sym_meta_lit, + ACTIONS(3079), 2, sym__ws, sym_comment, - STATE(651), 3, + STATE(486), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1366), 3, + STATE(1322), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [98638] = 13, + [93576] = 13, ACTIONS(3), 1, sym_block_comment, - ACTIONS(23), 1, + ACTIONS(27), 1, anon_sym_LPAREN, - ACTIONS(2463), 1, + ACTIONS(2425), 1, anon_sym_CARET, - ACTIONS(2465), 1, + ACTIONS(2427), 1, anon_sym_POUND_CARET, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - STATE(935), 1, + STATE(904), 1, sym_list_lit, - STATE(1369), 1, + STATE(1337), 1, sym__metadata_lit, - STATE(1427), 1, + STATE(1383), 1, aux_sym_sym_lit_repeat1, - STATE(1437), 1, - sym_meta_lit, - STATE(1439), 1, + STATE(1389), 1, sym_old_meta_lit, - ACTIONS(3141), 2, + STATE(1407), 1, + sym_meta_lit, + ACTIONS(3067), 2, sym__ws, sym_comment, - STATE(842), 3, + STATE(787), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1426), 3, + STATE(1378), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [98683] = 13, + [93621] = 13, ACTIONS(3), 1, sym_block_comment, - ACTIONS(381), 1, + ACTIONS(670), 1, anon_sym_LPAREN, - ACTIONS(2463), 1, + ACTIONS(2425), 1, anon_sym_CARET, - ACTIONS(2465), 1, + ACTIONS(2427), 1, anon_sym_POUND_CARET, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - STATE(454), 1, + STATE(581), 1, sym_list_lit, - STATE(1369), 1, + STATE(1337), 1, sym__metadata_lit, - STATE(1421), 1, + STATE(1386), 1, aux_sym_sym_lit_repeat1, - STATE(1437), 1, - sym_meta_lit, - STATE(1439), 1, + STATE(1389), 1, sym_old_meta_lit, - ACTIONS(3141), 2, + STATE(1407), 1, + sym_meta_lit, + ACTIONS(3081), 2, sym__ws, sym_comment, - STATE(515), 3, + STATE(680), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1426), 3, + STATE(1321), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [98728] = 13, + [93666] = 13, ACTIONS(3), 1, sym_block_comment, - ACTIONS(23), 1, + ACTIONS(27), 1, anon_sym_LPAREN, - ACTIONS(2463), 1, + ACTIONS(2425), 1, anon_sym_CARET, - ACTIONS(2465), 1, + ACTIONS(2427), 1, anon_sym_POUND_CARET, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - STATE(940), 1, + STATE(833), 1, sym_list_lit, - STATE(1369), 1, + STATE(1337), 1, sym__metadata_lit, - STATE(1427), 1, + STATE(1383), 1, aux_sym_sym_lit_repeat1, - STATE(1437), 1, - sym_meta_lit, - STATE(1439), 1, + STATE(1389), 1, sym_old_meta_lit, - ACTIONS(3151), 2, + STATE(1407), 1, + sym_meta_lit, + ACTIONS(3067), 2, sym__ws, sym_comment, - STATE(842), 3, + STATE(787), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1371), 3, + STATE(1378), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [98773] = 13, + [93711] = 13, ACTIONS(3), 1, sym_block_comment, - ACTIONS(568), 1, + ACTIONS(620), 1, anon_sym_LPAREN, - ACTIONS(2463), 1, + ACTIONS(2425), 1, anon_sym_CARET, - ACTIONS(2465), 1, + ACTIONS(2427), 1, anon_sym_POUND_CARET, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - STATE(717), 1, + STATE(723), 1, sym_list_lit, - STATE(1369), 1, + STATE(1337), 1, sym__metadata_lit, - STATE(1429), 1, + STATE(1387), 1, aux_sym_sym_lit_repeat1, - STATE(1437), 1, - sym_meta_lit, - STATE(1439), 1, + STATE(1389), 1, sym_old_meta_lit, - ACTIONS(3153), 2, + STATE(1407), 1, + sym_meta_lit, + ACTIONS(3083), 2, sym__ws, sym_comment, - STATE(786), 3, + STATE(687), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1376), 3, + STATE(1338), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [98818] = 13, + [93756] = 13, ACTIONS(3), 1, sym_block_comment, - ACTIONS(838), 1, + ACTIONS(572), 1, anon_sym_LPAREN, - ACTIONS(2463), 1, + ACTIONS(2425), 1, anon_sym_CARET, - ACTIONS(2465), 1, + ACTIONS(2427), 1, anon_sym_POUND_CARET, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - STATE(1143), 1, + STATE(1080), 1, sym_list_lit, - STATE(1369), 1, + STATE(1337), 1, sym__metadata_lit, - STATE(1425), 1, + STATE(1382), 1, aux_sym_sym_lit_repeat1, - STATE(1437), 1, - sym_meta_lit, - STATE(1439), 1, + STATE(1389), 1, sym_old_meta_lit, - ACTIONS(3141), 2, + STATE(1407), 1, + sym_meta_lit, + ACTIONS(3085), 2, sym__ws, sym_comment, - STATE(1110), 3, + STATE(1067), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1426), 3, + STATE(1323), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [98863] = 13, + [93801] = 13, ACTIONS(3), 1, sym_block_comment, - ACTIONS(568), 1, + ACTIONS(27), 1, anon_sym_LPAREN, - ACTIONS(2463), 1, + ACTIONS(2425), 1, anon_sym_CARET, - ACTIONS(2465), 1, + ACTIONS(2427), 1, anon_sym_POUND_CARET, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - STATE(608), 1, + STATE(908), 1, sym_list_lit, - STATE(1369), 1, + STATE(1337), 1, sym__metadata_lit, - STATE(1429), 1, + STATE(1383), 1, aux_sym_sym_lit_repeat1, - STATE(1437), 1, - sym_meta_lit, - STATE(1439), 1, + STATE(1389), 1, sym_old_meta_lit, - ACTIONS(3141), 2, + STATE(1407), 1, + sym_meta_lit, + ACTIONS(3067), 2, sym__ws, sym_comment, - STATE(786), 3, + STATE(787), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1426), 3, + STATE(1378), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [98908] = 13, + [93846] = 13, ACTIONS(3), 1, sym_block_comment, - ACTIONS(381), 1, + ACTIONS(27), 1, anon_sym_LPAREN, - ACTIONS(2463), 1, + ACTIONS(2425), 1, anon_sym_CARET, - ACTIONS(2465), 1, + ACTIONS(2427), 1, anon_sym_POUND_CARET, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - STATE(494), 1, + STATE(863), 1, sym_list_lit, - STATE(1369), 1, + STATE(1337), 1, sym__metadata_lit, - STATE(1421), 1, + STATE(1383), 1, aux_sym_sym_lit_repeat1, - STATE(1437), 1, - sym_meta_lit, - STATE(1439), 1, + STATE(1389), 1, sym_old_meta_lit, - ACTIONS(3155), 2, + STATE(1407), 1, + sym_meta_lit, + ACTIONS(3087), 2, sym__ws, sym_comment, - STATE(515), 3, + STATE(787), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1372), 3, + STATE(1331), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [98953] = 13, + [93891] = 13, ACTIONS(3), 1, sym_block_comment, - ACTIONS(23), 1, + ACTIONS(1180), 1, anon_sym_LPAREN, - ACTIONS(2463), 1, + ACTIONS(2425), 1, anon_sym_CARET, - ACTIONS(2465), 1, + ACTIONS(2427), 1, anon_sym_POUND_CARET, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - STATE(831), 1, + STATE(1244), 1, sym_list_lit, - STATE(1369), 1, + STATE(1337), 1, sym__metadata_lit, - STATE(1427), 1, + STATE(1380), 1, aux_sym_sym_lit_repeat1, - STATE(1437), 1, - sym_meta_lit, - STATE(1439), 1, + STATE(1389), 1, sym_old_meta_lit, - ACTIONS(3157), 2, + STATE(1407), 1, + sym_meta_lit, + ACTIONS(3067), 2, sym__ws, sym_comment, - STATE(842), 3, + STATE(1231), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1364), 3, + STATE(1378), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [98998] = 13, + [93936] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1116), 1, + ACTIONS(3091), 2, + anon_sym_POUND, + anon_sym_POUND_QMARK, + ACTIONS(3089), 15, + aux_sym_sym_lit_token1, + anon_sym_CARET, + anon_sym_POUND_CARET, anon_sym_LPAREN, - ACTIONS(2463), 1, + 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_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + [93961] = 13, + ACTIONS(3), 1, + sym_block_comment, + ACTIONS(620), 1, + anon_sym_LPAREN, + ACTIONS(2425), 1, anon_sym_CARET, - ACTIONS(2465), 1, + ACTIONS(2427), 1, anon_sym_POUND_CARET, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - STATE(1310), 1, + STATE(718), 1, sym_list_lit, - STATE(1369), 1, + STATE(1337), 1, sym__metadata_lit, - STATE(1422), 1, + STATE(1387), 1, aux_sym_sym_lit_repeat1, - STATE(1437), 1, - sym_meta_lit, - STATE(1439), 1, + STATE(1389), 1, sym_old_meta_lit, - ACTIONS(3141), 2, + STATE(1407), 1, + sym_meta_lit, + ACTIONS(3067), 2, sym__ws, sym_comment, - STATE(1323), 3, + STATE(687), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1426), 3, + STATE(1378), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [99043] = 13, + [94006] = 13, ACTIONS(3), 1, sym_block_comment, - ACTIONS(23), 1, + ACTIONS(1180), 1, anon_sym_LPAREN, - ACTIONS(2463), 1, + ACTIONS(2425), 1, anon_sym_CARET, - ACTIONS(2465), 1, + ACTIONS(2427), 1, anon_sym_POUND_CARET, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - STATE(939), 1, + STATE(1222), 1, sym_list_lit, - STATE(1369), 1, + STATE(1337), 1, sym__metadata_lit, - STATE(1427), 1, + STATE(1380), 1, aux_sym_sym_lit_repeat1, - STATE(1437), 1, - sym_meta_lit, - STATE(1439), 1, + STATE(1389), 1, sym_old_meta_lit, - ACTIONS(3141), 2, + STATE(1407), 1, + sym_meta_lit, + ACTIONS(3093), 2, sym__ws, sym_comment, - STATE(842), 3, + STATE(1231), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1426), 3, + STATE(1336), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [99088] = 4, + [94051] = 4, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2427), 1, + ACTIONS(2389), 1, anon_sym_being, - STATE(424), 1, + STATE(385), 1, sym_for_clause_word, - ACTIONS(2429), 14, + ACTIONS(2391), 14, anon_sym_in, anon_sym_across, anon_sym_using, @@ -85183,12 +81542,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [99114] = 3, + [94077] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2149), 1, + ACTIONS(2243), 1, anon_sym_being, - ACTIONS(2147), 14, + ACTIONS(2241), 14, anon_sym_in, anon_sym_across, anon_sym_using, @@ -85203,12 +81562,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [99137] = 3, + [94100] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2289), 1, + ACTIONS(2031), 1, anon_sym_being, - ACTIONS(2287), 14, + ACTIONS(2029), 14, anon_sym_in, anon_sym_across, anon_sym_using, @@ -85223,9975 +81582,9890 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [99160] = 13, + [94123] = 12, ACTIONS(3), 1, sym_block_comment, - ACTIONS(381), 1, - anon_sym_LPAREN, - ACTIONS(2463), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(2465), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(3159), 1, - sym_num_lit, - ACTIONS(3161), 1, - anon_sym_LBRACE, - STATE(509), 1, - sym_list_lit, - STATE(1369), 1, - sym__metadata_lit, - STATE(1414), 1, - sym_array_dimension, - STATE(1421), 1, - aux_sym_sym_lit_repeat1, - STATE(1437), 1, + ACTIONS(2894), 1, + anon_sym_POUND_, + ACTIONS(2980), 1, + aux_sym_sym_lit_token1, + STATE(1162), 1, sym_meta_lit, - STATE(1439), 1, + STATE(1172), 1, sym_old_meta_lit, - STATE(515), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - [99202] = 13, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(1116), 1, - anon_sym_LPAREN, - ACTIONS(2463), 1, - anon_sym_CARET, - ACTIONS(2465), 1, - anon_sym_POUND_CARET, - ACTIONS(3159), 1, - sym_num_lit, - ACTIONS(3163), 1, - anon_sym_LBRACE, - STATE(1316), 1, - sym_list_lit, - STATE(1369), 1, + STATE(1240), 1, + sym_sym_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1415), 1, - sym_array_dimension, - STATE(1422), 1, + STATE(1523), 1, aux_sym_sym_lit_repeat1, - STATE(1437), 1, - sym_meta_lit, - STATE(1439), 1, - sym_old_meta_lit, - STATE(1323), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - [99244] = 5, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(2047), 1, - anon_sym_DOT, - STATE(816), 1, - aux_sym_dotted_sym_lit_repeat1, - ACTIONS(2936), 2, - anon_sym_COLON_COLON, - anon_sym_COLON, - ACTIONS(2045), 10, + ACTIONS(2892), 2, sym__ws, sym_comment, - anon_sym_POUND_, - sym_kwd_lit, - aux_sym_str_lit_token1, - aux_sym_sym_lit_token1, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LBRACE, - anon_sym_POUND_QMARK, - [99270] = 13, + STATE(918), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + [94163] = 12, ACTIONS(3), 1, sym_block_comment, - ACTIONS(612), 1, - anon_sym_LPAREN, - ACTIONS(2463), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(2465), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(3159), 1, - sym_num_lit, - ACTIONS(3165), 1, - anon_sym_LBRACE, - STATE(1018), 1, - sym_list_lit, - STATE(1369), 1, - sym__metadata_lit, - STATE(1418), 1, - sym_array_dimension, - STATE(1424), 1, - aux_sym_sym_lit_repeat1, - STATE(1437), 1, + ACTIONS(2894), 1, + anon_sym_POUND_, + ACTIONS(2980), 1, + aux_sym_sym_lit_token1, + STATE(1162), 1, sym_meta_lit, - STATE(1439), 1, + STATE(1172), 1, sym_old_meta_lit, - STATE(965), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - [99312] = 12, + STATE(1298), 1, + sym_sym_lit, + STATE(1337), 1, + sym__metadata_lit, + STATE(1523), 1, + aux_sym_sym_lit_repeat1, + ACTIONS(3095), 2, + sym__ws, + sym_comment, + STATE(1343), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + [94203] = 12, ACTIONS(3), 1, sym_block_comment, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(2940), 1, + ACTIONS(2894), 1, anon_sym_POUND_, - ACTIONS(3052), 1, + ACTIONS(2896), 1, aux_sym_sym_lit_token1, - STATE(502), 1, + STATE(1100), 1, sym_sym_lit, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1602), 1, + STATE(1527), 1, aux_sym_sym_lit_repeat1, - ACTIONS(3167), 2, + ACTIONS(2892), 2, sym__ws, sym_comment, - STATE(1405), 3, + STATE(918), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [99352] = 13, + [94243] = 12, ACTIONS(3), 1, sym_block_comment, ACTIONS(23), 1, - anon_sym_LPAREN, - ACTIONS(2463), 1, - anon_sym_CARET, - ACTIONS(2465), 1, - anon_sym_POUND_CARET, - ACTIONS(3159), 1, - sym_num_lit, - ACTIONS(3169), 1, - anon_sym_LBRACE, - STATE(905), 1, - sym_list_lit, - STATE(1369), 1, - sym__metadata_lit, - STATE(1416), 1, - sym_array_dimension, - STATE(1427), 1, - aux_sym_sym_lit_repeat1, - STATE(1437), 1, - sym_meta_lit, - STATE(1439), 1, - sym_old_meta_lit, - STATE(842), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - [99394] = 12, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(19), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(2940), 1, + ACTIONS(2894), 1, anon_sym_POUND_, - ACTIONS(3056), 1, + ACTIONS(2976), 1, aux_sym_sym_lit_token1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, - sym_meta_lit, - STATE(1354), 1, + STATE(497), 1, sym_sym_lit, - STATE(1369), 1, + STATE(1162), 1, + sym_meta_lit, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1536), 1, + STATE(1590), 1, aux_sym_sym_lit_repeat1, - ACTIONS(2950), 2, + ACTIONS(3097), 2, sym__ws, sym_comment, - STATE(1090), 3, + STATE(1349), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [99434] = 13, + [94283] = 13, ACTIONS(3), 1, sym_block_comment, - ACTIONS(568), 1, + ACTIONS(1180), 1, anon_sym_LPAREN, - ACTIONS(2463), 1, + ACTIONS(2425), 1, anon_sym_CARET, - ACTIONS(2465), 1, + ACTIONS(2427), 1, anon_sym_POUND_CARET, - ACTIONS(3159), 1, + ACTIONS(3099), 1, sym_num_lit, - ACTIONS(3171), 1, + ACTIONS(3101), 1, anon_sym_LBRACE, - STATE(761), 1, + STATE(1267), 1, sym_list_lit, - STATE(1369), 1, + STATE(1337), 1, sym__metadata_lit, - STATE(1417), 1, + STATE(1373), 1, sym_array_dimension, - STATE(1429), 1, + STATE(1380), 1, aux_sym_sym_lit_repeat1, - STATE(1437), 1, - sym_meta_lit, - STATE(1439), 1, + STATE(1389), 1, sym_old_meta_lit, - STATE(786), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - [99476] = 13, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(524), 1, - anon_sym_LPAREN, - ACTIONS(2463), 1, - anon_sym_CARET, - ACTIONS(2465), 1, - anon_sym_POUND_CARET, - ACTIONS(3159), 1, - sym_num_lit, - ACTIONS(3173), 1, - anon_sym_LBRACE, - STATE(685), 1, - sym_list_lit, - STATE(1369), 1, - sym__metadata_lit, - STATE(1420), 1, - sym_array_dimension, - STATE(1430), 1, - aux_sym_sym_lit_repeat1, - STATE(1437), 1, + STATE(1407), 1, sym_meta_lit, - STATE(1439), 1, - sym_old_meta_lit, - STATE(651), 3, + STATE(1231), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [99518] = 12, + [94325] = 12, ACTIONS(3), 1, sym_block_comment, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(2940), 1, + ACTIONS(2894), 1, anon_sym_POUND_, - ACTIONS(3056), 1, + ACTIONS(3000), 1, aux_sym_sym_lit_token1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, - sym_meta_lit, - STATE(1267), 1, + STATE(766), 1, sym_sym_lit, - STATE(1369), 1, + STATE(1162), 1, + sym_meta_lit, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1536), 1, + STATE(1656), 1, aux_sym_sym_lit_repeat1, - ACTIONS(3175), 2, + ACTIONS(2892), 2, sym__ws, sym_comment, - STATE(1390), 3, + STATE(918), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [99558] = 12, + [94365] = 12, ACTIONS(3), 1, sym_block_comment, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(2940), 1, + ACTIONS(2894), 1, anon_sym_POUND_, - ACTIONS(3062), 1, + ACTIONS(2976), 1, aux_sym_sym_lit_token1, - STATE(735), 1, + STATE(442), 1, sym_sym_lit, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, - sym__metadata_lit, - STATE(1668), 1, - aux_sym_sym_lit_repeat1, - ACTIONS(2950), 2, - sym__ws, - sym_comment, - STATE(1090), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - [99598] = 12, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(19), 1, - anon_sym_CARET, - ACTIONS(21), 1, - anon_sym_POUND_CARET, - ACTIONS(2940), 1, - anon_sym_POUND_, - ACTIONS(3024), 1, - aux_sym_sym_lit_token1, - STATE(1078), 1, + STATE(1172), 1, sym_old_meta_lit, - STATE(1098), 1, - sym_meta_lit, - STATE(1199), 1, - sym_sym_lit, - STATE(1369), 1, + STATE(1337), 1, sym__metadata_lit, - STATE(1801), 1, + STATE(1590), 1, aux_sym_sym_lit_repeat1, - ACTIONS(3177), 2, + ACTIONS(2892), 2, sym__ws, sym_comment, - STATE(1402), 3, + STATE(918), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [99638] = 12, + [94405] = 12, ACTIONS(3), 1, sym_block_comment, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(2940), 1, + ACTIONS(2894), 1, anon_sym_POUND_, - ACTIONS(3008), 1, + ACTIONS(3000), 1, aux_sym_sym_lit_token1, - STATE(827), 1, + STATE(704), 1, sym_sym_lit, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1756), 1, + STATE(1656), 1, aux_sym_sym_lit_repeat1, - ACTIONS(3179), 2, + ACTIONS(3103), 2, sym__ws, sym_comment, - STATE(1401), 3, + STATE(1348), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [99678] = 13, + [94445] = 13, ACTIONS(3), 1, sym_block_comment, - ACTIONS(838), 1, + ACTIONS(572), 1, anon_sym_LPAREN, - ACTIONS(2463), 1, + ACTIONS(2425), 1, anon_sym_CARET, - ACTIONS(2465), 1, + ACTIONS(2427), 1, anon_sym_POUND_CARET, - ACTIONS(3159), 1, + ACTIONS(3099), 1, sym_num_lit, - ACTIONS(3181), 1, + ACTIONS(3105), 1, anon_sym_LBRACE, - STATE(1170), 1, + STATE(1072), 1, sym_list_lit, - STATE(1369), 1, + STATE(1337), 1, sym__metadata_lit, - STATE(1419), 1, + STATE(1376), 1, sym_array_dimension, - STATE(1425), 1, + STATE(1382), 1, aux_sym_sym_lit_repeat1, - STATE(1437), 1, - sym_meta_lit, - STATE(1439), 1, + STATE(1389), 1, sym_old_meta_lit, - STATE(1110), 3, + STATE(1407), 1, + sym_meta_lit, + STATE(1067), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [99720] = 12, + [94487] = 12, ACTIONS(3), 1, sym_block_comment, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(2940), 1, + ACTIONS(2894), 1, anon_sym_POUND_, - ACTIONS(3042), 1, + ACTIONS(2902), 1, aux_sym_sym_lit_token1, - STATE(1046), 1, + STATE(872), 1, sym_sym_lit, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1470), 1, + STATE(1713), 1, aux_sym_sym_lit_repeat1, - ACTIONS(2950), 2, + ACTIONS(3107), 2, sym__ws, sym_comment, - STATE(1090), 3, + STATE(1361), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [99760] = 12, + [94527] = 12, ACTIONS(3), 1, sym_block_comment, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(2940), 1, + ACTIONS(2894), 1, anon_sym_POUND_, - ACTIONS(3042), 1, + ACTIONS(2896), 1, aux_sym_sym_lit_token1, - STATE(1072), 1, + STATE(1076), 1, sym_sym_lit, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1470), 1, + STATE(1527), 1, aux_sym_sym_lit_repeat1, - ACTIONS(3183), 2, + ACTIONS(3109), 2, sym__ws, sym_comment, - STATE(1398), 3, + STATE(1345), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [99800] = 12, + [94567] = 12, ACTIONS(3), 1, sym_block_comment, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(2940), 1, + ACTIONS(2894), 1, anon_sym_POUND_, - ACTIONS(3036), 1, + ACTIONS(2972), 1, aux_sym_sym_lit_token1, - STATE(741), 1, + STATE(1029), 1, sym_sym_lit, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1539), 1, + STATE(1458), 1, aux_sym_sym_lit_repeat1, - ACTIONS(2950), 2, + ACTIONS(3111), 2, sym__ws, sym_comment, - STATE(1090), 3, + STATE(1363), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [99840] = 12, + [94607] = 13, ACTIONS(3), 1, sym_block_comment, - ACTIONS(19), 1, + ACTIONS(620), 1, + anon_sym_LPAREN, + ACTIONS(2425), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(2427), 1, + anon_sym_POUND_CARET, + ACTIONS(3099), 1, + sym_num_lit, + ACTIONS(3113), 1, + anon_sym_LBRACE, + STATE(695), 1, + sym_list_lit, + STATE(1337), 1, + sym__metadata_lit, + STATE(1372), 1, + sym_array_dimension, + STATE(1387), 1, + aux_sym_sym_lit_repeat1, + STATE(1389), 1, + sym_old_meta_lit, + STATE(1407), 1, + sym_meta_lit, + STATE(687), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + [94649] = 13, + ACTIONS(3), 1, + sym_block_comment, + ACTIONS(27), 1, + anon_sym_LPAREN, + ACTIONS(2425), 1, + anon_sym_CARET, + ACTIONS(2427), 1, + anon_sym_POUND_CARET, + ACTIONS(3099), 1, + sym_num_lit, + ACTIONS(3115), 1, + anon_sym_LBRACE, + STATE(876), 1, + sym_list_lit, + STATE(1337), 1, + sym__metadata_lit, + STATE(1375), 1, + sym_array_dimension, + STATE(1383), 1, + aux_sym_sym_lit_repeat1, + STATE(1389), 1, + sym_old_meta_lit, + STATE(1407), 1, + sym_meta_lit, + STATE(787), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + [94691] = 12, + ACTIONS(3), 1, + sym_block_comment, + ACTIONS(23), 1, + anon_sym_CARET, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(2940), 1, + ACTIONS(2894), 1, anon_sym_POUND_, - ACTIONS(3008), 1, + ACTIONS(3004), 1, aux_sym_sym_lit_token1, - STATE(856), 1, + STATE(575), 1, sym_sym_lit, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1756), 1, + STATE(1655), 1, aux_sym_sym_lit_repeat1, - ACTIONS(2950), 2, + ACTIONS(3117), 2, sym__ws, sym_comment, - STATE(1090), 3, + STATE(1358), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [99880] = 12, + [94731] = 12, ACTIONS(3), 1, sym_block_comment, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(2940), 1, + ACTIONS(2894), 1, anon_sym_POUND_, - ACTIONS(3024), 1, + ACTIONS(3004), 1, aux_sym_sym_lit_token1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, - sym_meta_lit, - STATE(1133), 1, + STATE(601), 1, sym_sym_lit, - STATE(1369), 1, + STATE(1162), 1, + sym_meta_lit, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1801), 1, + STATE(1655), 1, aux_sym_sym_lit_repeat1, - ACTIONS(2950), 2, + ACTIONS(2892), 2, sym__ws, sym_comment, - STATE(1090), 3, + STATE(918), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [99920] = 12, + [94771] = 13, + ACTIONS(3), 1, + sym_block_comment, + ACTIONS(528), 1, + anon_sym_LPAREN, + ACTIONS(2425), 1, + anon_sym_CARET, + ACTIONS(2427), 1, + anon_sym_POUND_CARET, + ACTIONS(3099), 1, + sym_num_lit, + ACTIONS(3119), 1, + anon_sym_LBRACE, + STATE(1037), 1, + sym_list_lit, + STATE(1337), 1, + sym__metadata_lit, + STATE(1377), 1, + sym_array_dimension, + STATE(1384), 1, + aux_sym_sym_lit_repeat1, + STATE(1389), 1, + sym_old_meta_lit, + STATE(1407), 1, + sym_meta_lit, + STATE(930), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + [94813] = 13, + ACTIONS(3), 1, + sym_block_comment, + ACTIONS(670), 1, + anon_sym_LPAREN, + ACTIONS(2425), 1, + anon_sym_CARET, + ACTIONS(2427), 1, + anon_sym_POUND_CARET, + ACTIONS(3099), 1, + sym_num_lit, + ACTIONS(3121), 1, + anon_sym_LBRACE, + STATE(571), 1, + sym_list_lit, + STATE(1337), 1, + sym__metadata_lit, + STATE(1374), 1, + sym_array_dimension, + STATE(1386), 1, + aux_sym_sym_lit_repeat1, + STATE(1389), 1, + sym_old_meta_lit, + STATE(1407), 1, + sym_meta_lit, + STATE(680), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + [94855] = 12, ACTIONS(3), 1, sym_block_comment, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(2940), 1, + ACTIONS(2894), 1, anon_sym_POUND_, - ACTIONS(3036), 1, + ACTIONS(2902), 1, aux_sym_sym_lit_token1, - STATE(737), 1, + STATE(837), 1, sym_sym_lit, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1539), 1, + STATE(1713), 1, aux_sym_sym_lit_repeat1, - ACTIONS(3185), 2, + ACTIONS(2892), 2, sym__ws, sym_comment, - STATE(1400), 3, + STATE(918), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [99960] = 12, + [94895] = 13, ACTIONS(3), 1, sym_block_comment, - ACTIONS(19), 1, + ACTIONS(413), 1, + anon_sym_LPAREN, + ACTIONS(2425), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(2427), 1, anon_sym_POUND_CARET, - ACTIONS(2940), 1, - anon_sym_POUND_, - ACTIONS(3062), 1, - aux_sym_sym_lit_token1, - STATE(692), 1, - sym_sym_lit, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, - sym_meta_lit, - STATE(1369), 1, + ACTIONS(3099), 1, + sym_num_lit, + ACTIONS(3123), 1, + anon_sym_LBRACE, + STATE(493), 1, + sym_list_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1668), 1, + STATE(1371), 1, + sym_array_dimension, + STATE(1379), 1, aux_sym_sym_lit_repeat1, - ACTIONS(3187), 2, - sym__ws, - sym_comment, - STATE(1394), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - [100000] = 12, + STATE(1389), 1, + sym_old_meta_lit, + STATE(1407), 1, + sym_meta_lit, + STATE(486), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + [94937] = 12, ACTIONS(3), 1, sym_block_comment, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(2940), 1, + ACTIONS(2894), 1, anon_sym_POUND_, - ACTIONS(3052), 1, + ACTIONS(2972), 1, aux_sym_sym_lit_token1, - STATE(459), 1, + STATE(1008), 1, sym_sym_lit, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1602), 1, + STATE(1458), 1, aux_sym_sym_lit_repeat1, - ACTIONS(2950), 2, + ACTIONS(2892), 2, sym__ws, sym_comment, - STATE(1090), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - [100040] = 5, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(3192), 1, - anon_sym_POUND_, - ACTIONS(3189), 2, - sym__ws, - sym_comment, - STATE(1406), 3, + STATE(918), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(2020), 7, - sym_kwd_lit, - aux_sym_str_lit_token1, - aux_sym_sym_lit_token1, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LBRACE, - anon_sym_POUND_QMARK, - [100065] = 11, + [94977] = 11, ACTIONS(3), 1, sym_block_comment, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(1116), 1, + ACTIONS(528), 1, anon_sym_LPAREN, - ACTIONS(2907), 1, + ACTIONS(2789), 1, aux_sym_sym_lit_token1, - ACTIONS(3195), 1, + ACTIONS(3125), 1, anon_sym_POUND_QMARK, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1241), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1199), 1, aux_sym_sym_lit_repeat1, - STATE(1369), 1, + STATE(1337), 1, sym__metadata_lit, - STATE(1329), 3, + STATE(928), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [100101] = 11, + [95013] = 11, ACTIONS(3), 1, sym_block_comment, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(568), 1, + ACTIONS(670), 1, anon_sym_LPAREN, - ACTIONS(2815), 1, + ACTIONS(2721), 1, aux_sym_sym_lit_token1, - ACTIONS(3197), 1, + ACTIONS(3127), 1, anon_sym_POUND_QMARK, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1241), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1199), 1, aux_sym_sym_lit_repeat1, - STATE(1369), 1, + STATE(1337), 1, sym__metadata_lit, - STATE(694), 3, + STATE(589), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [100137] = 11, + [95049] = 11, ACTIONS(3), 1, sym_block_comment, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(612), 1, + ACTIONS(620), 1, anon_sym_LPAREN, - ACTIONS(2749), 1, + ACTIONS(2858), 1, aux_sym_sym_lit_token1, - ACTIONS(3199), 1, + ACTIONS(3129), 1, anon_sym_POUND_QMARK, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1241), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1199), 1, aux_sym_sym_lit_repeat1, - STATE(1369), 1, + STATE(1337), 1, sym__metadata_lit, - STATE(1063), 3, + STATE(744), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [100173] = 11, + [95085] = 11, ACTIONS(3), 1, sym_block_comment, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(23), 1, + ACTIONS(27), 1, anon_sym_LPAREN, - ACTIONS(2793), 1, + ACTIONS(2767), 1, aux_sym_sym_lit_token1, - ACTIONS(3201), 1, + ACTIONS(3131), 1, anon_sym_POUND_QMARK, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1241), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1199), 1, aux_sym_sym_lit_repeat1, - STATE(1369), 1, + STATE(1337), 1, sym__metadata_lit, - STATE(836), 3, + STATE(856), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [100209] = 11, + [95121] = 11, ACTIONS(3), 1, sym_block_comment, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(381), 1, + ACTIONS(572), 1, anon_sym_LPAREN, - ACTIONS(2859), 1, + ACTIONS(2743), 1, aux_sym_sym_lit_token1, - ACTIONS(3203), 1, + ACTIONS(3133), 1, anon_sym_POUND_QMARK, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1241), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1199), 1, aux_sym_sym_lit_repeat1, - STATE(1369), 1, + STATE(1337), 1, sym__metadata_lit, - STATE(476), 3, + STATE(1086), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [100245] = 11, + [95157] = 11, ACTIONS(3), 1, sym_block_comment, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(838), 1, + ACTIONS(413), 1, anon_sym_LPAREN, - ACTIONS(2893), 1, + ACTIONS(2833), 1, aux_sym_sym_lit_token1, - ACTIONS(3205), 1, + ACTIONS(3135), 1, anon_sym_POUND_QMARK, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1241), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1199), 1, aux_sym_sym_lit_repeat1, - STATE(1369), 1, + STATE(1337), 1, sym__metadata_lit, - STATE(1117), 3, + STATE(480), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [100281] = 11, + [95193] = 11, ACTIONS(3), 1, sym_block_comment, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(524), 1, + ACTIONS(1180), 1, anon_sym_LPAREN, - ACTIONS(2837), 1, + ACTIONS(2811), 1, aux_sym_sym_lit_token1, - ACTIONS(3207), 1, + ACTIONS(3137), 1, anon_sym_POUND_QMARK, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1241), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1199), 1, aux_sym_sym_lit_repeat1, - STATE(1369), 1, + STATE(1337), 1, sym__metadata_lit, - STATE(724), 3, + STATE(1227), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [100317] = 10, + [95229] = 10, ACTIONS(3), 1, sym_block_comment, - ACTIONS(381), 1, + ACTIONS(413), 1, anon_sym_LPAREN, - ACTIONS(2463), 1, + ACTIONS(2425), 1, anon_sym_CARET, - ACTIONS(2465), 1, + ACTIONS(2427), 1, anon_sym_POUND_CARET, - STATE(467), 1, + STATE(454), 1, sym_list_lit, - STATE(1369), 1, + STATE(1337), 1, sym__metadata_lit, - STATE(1421), 1, + STATE(1379), 1, aux_sym_sym_lit_repeat1, - STATE(1437), 1, - sym_meta_lit, - STATE(1439), 1, + STATE(1389), 1, sym_old_meta_lit, - STATE(515), 3, + STATE(1407), 1, + sym_meta_lit, + STATE(486), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [100350] = 10, + [95262] = 10, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1116), 1, + ACTIONS(620), 1, anon_sym_LPAREN, - ACTIONS(2463), 1, + ACTIONS(2425), 1, anon_sym_CARET, - ACTIONS(2465), 1, + ACTIONS(2427), 1, anon_sym_POUND_CARET, - STATE(1338), 1, + STATE(753), 1, sym_list_lit, - STATE(1369), 1, + STATE(1337), 1, sym__metadata_lit, - STATE(1422), 1, + STATE(1387), 1, aux_sym_sym_lit_repeat1, - STATE(1437), 1, - sym_meta_lit, - STATE(1439), 1, + STATE(1389), 1, sym_old_meta_lit, - STATE(1323), 3, + STATE(1407), 1, + sym_meta_lit, + STATE(687), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [100383] = 10, + [95295] = 10, ACTIONS(3), 1, sym_block_comment, - ACTIONS(23), 1, + ACTIONS(1180), 1, anon_sym_LPAREN, - ACTIONS(2463), 1, + ACTIONS(2425), 1, anon_sym_CARET, - ACTIONS(2465), 1, + ACTIONS(2427), 1, anon_sym_POUND_CARET, - STATE(851), 1, + STATE(1236), 1, sym_list_lit, - STATE(1369), 1, + STATE(1337), 1, sym__metadata_lit, - STATE(1427), 1, + STATE(1380), 1, aux_sym_sym_lit_repeat1, - STATE(1437), 1, - sym_meta_lit, - STATE(1439), 1, + STATE(1389), 1, sym_old_meta_lit, - STATE(842), 3, + STATE(1407), 1, + sym_meta_lit, + STATE(1231), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [100416] = 10, + [95328] = 10, ACTIONS(3), 1, sym_block_comment, - ACTIONS(568), 1, + ACTIONS(670), 1, anon_sym_LPAREN, - ACTIONS(2463), 1, + ACTIONS(2425), 1, anon_sym_CARET, - ACTIONS(2465), 1, + ACTIONS(2427), 1, anon_sym_POUND_CARET, - STATE(753), 1, + STATE(597), 1, sym_list_lit, - STATE(1369), 1, + STATE(1337), 1, sym__metadata_lit, - STATE(1429), 1, + STATE(1386), 1, aux_sym_sym_lit_repeat1, - STATE(1437), 1, - sym_meta_lit, - STATE(1439), 1, + STATE(1389), 1, sym_old_meta_lit, - STATE(786), 3, + STATE(1407), 1, + sym_meta_lit, + STATE(680), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [100449] = 10, + [95361] = 10, ACTIONS(3), 1, sym_block_comment, - ACTIONS(612), 1, + ACTIONS(27), 1, anon_sym_LPAREN, - ACTIONS(2463), 1, + ACTIONS(2425), 1, anon_sym_CARET, - ACTIONS(2465), 1, + ACTIONS(2427), 1, anon_sym_POUND_CARET, - STATE(1055), 1, + STATE(843), 1, sym_list_lit, - STATE(1369), 1, + STATE(1337), 1, sym__metadata_lit, - STATE(1424), 1, + STATE(1383), 1, aux_sym_sym_lit_repeat1, - STATE(1437), 1, - sym_meta_lit, - STATE(1439), 1, + STATE(1389), 1, sym_old_meta_lit, - STATE(965), 3, + STATE(1407), 1, + sym_meta_lit, + STATE(787), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [100482] = 10, + [95394] = 10, ACTIONS(3), 1, sym_block_comment, - ACTIONS(838), 1, + ACTIONS(572), 1, anon_sym_LPAREN, - ACTIONS(2463), 1, + ACTIONS(2425), 1, anon_sym_CARET, - ACTIONS(2465), 1, + ACTIONS(2427), 1, anon_sym_POUND_CARET, - STATE(1128), 1, + STATE(1095), 1, sym_list_lit, - STATE(1369), 1, + STATE(1337), 1, sym__metadata_lit, - STATE(1425), 1, + STATE(1382), 1, aux_sym_sym_lit_repeat1, - STATE(1437), 1, - sym_meta_lit, - STATE(1439), 1, + STATE(1389), 1, sym_old_meta_lit, - STATE(1110), 3, + STATE(1407), 1, + sym_meta_lit, + STATE(1067), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [100515] = 10, + [95427] = 10, ACTIONS(3), 1, sym_block_comment, - ACTIONS(524), 1, + ACTIONS(528), 1, anon_sym_LPAREN, - ACTIONS(2463), 1, + ACTIONS(2425), 1, anon_sym_CARET, - ACTIONS(2465), 1, + ACTIONS(2427), 1, anon_sym_POUND_CARET, - STATE(731), 1, + STATE(1012), 1, sym_list_lit, - STATE(1369), 1, + STATE(1337), 1, sym__metadata_lit, - STATE(1430), 1, + STATE(1384), 1, aux_sym_sym_lit_repeat1, - STATE(1437), 1, - sym_meta_lit, - STATE(1439), 1, + STATE(1389), 1, sym_old_meta_lit, - STATE(651), 3, + STATE(1407), 1, + sym_meta_lit, + STATE(930), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [100548] = 9, + [95460] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(381), 1, + ACTIONS(2629), 1, + anon_sym_POUND_, + ACTIONS(3139), 2, + sym__ws, + sym_comment, + STATE(1378), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(1972), 4, + anon_sym_CARET, + anon_sym_POUND_CARET, anon_sym_LPAREN, - ACTIONS(2463), 1, + anon_sym_RPAREN, + [95482] = 9, + ACTIONS(3), 1, + sym_block_comment, + ACTIONS(413), 1, + anon_sym_LPAREN, + ACTIONS(2425), 1, anon_sym_CARET, - ACTIONS(2465), 1, + ACTIONS(2427), 1, anon_sym_POUND_CARET, - STATE(1369), 1, + STATE(1337), 1, sym__metadata_lit, - STATE(1437), 1, - sym_meta_lit, - STATE(1439), 1, + STATE(1389), 1, sym_old_meta_lit, - STATE(1543), 1, + STATE(1407), 1, + sym_meta_lit, + STATE(1652), 1, aux_sym_sym_lit_repeat1, - STATE(476), 3, + STATE(480), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [100578] = 9, + [95512] = 9, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1116), 1, + ACTIONS(1180), 1, anon_sym_LPAREN, - ACTIONS(2463), 1, + ACTIONS(2425), 1, anon_sym_CARET, - ACTIONS(2465), 1, + ACTIONS(2427), 1, anon_sym_POUND_CARET, - STATE(1369), 1, + STATE(1337), 1, sym__metadata_lit, - STATE(1437), 1, - sym_meta_lit, - STATE(1439), 1, + STATE(1389), 1, sym_old_meta_lit, - STATE(1543), 1, + STATE(1407), 1, + sym_meta_lit, + STATE(1652), 1, aux_sym_sym_lit_repeat1, - STATE(1329), 3, + STATE(1227), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [100608] = 11, + [95542] = 11, ACTIONS(3), 1, sym_block_comment, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(2893), 1, + ACTIONS(2743), 1, aux_sym_sym_lit_token1, - ACTIONS(3010), 1, + ACTIONS(2898), 1, anon_sym_LBRACE, - ACTIONS(3205), 1, + ACTIONS(3133), 1, anon_sym_POUND_QMARK, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1241), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1199), 1, aux_sym_sym_lit_repeat1, - STATE(1257), 1, + STATE(1206), 1, sym__bare_map_lit, - STATE(1369), 1, + STATE(1337), 1, sym__metadata_lit, - [100642] = 9, + [95576] = 9, ACTIONS(3), 1, sym_block_comment, - ACTIONS(612), 1, + ACTIONS(572), 1, anon_sym_LPAREN, - ACTIONS(2463), 1, + ACTIONS(2425), 1, anon_sym_CARET, - ACTIONS(2465), 1, + ACTIONS(2427), 1, anon_sym_POUND_CARET, - STATE(1369), 1, + STATE(1337), 1, sym__metadata_lit, - STATE(1437), 1, - sym_meta_lit, - STATE(1439), 1, + STATE(1389), 1, sym_old_meta_lit, - STATE(1543), 1, + STATE(1407), 1, + sym_meta_lit, + STATE(1652), 1, aux_sym_sym_lit_repeat1, - STATE(1063), 3, + STATE(1086), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [100672] = 9, + [95606] = 9, ACTIONS(3), 1, sym_block_comment, - ACTIONS(838), 1, + ACTIONS(27), 1, anon_sym_LPAREN, - ACTIONS(2463), 1, + ACTIONS(2425), 1, anon_sym_CARET, - ACTIONS(2465), 1, + ACTIONS(2427), 1, anon_sym_POUND_CARET, - STATE(1369), 1, + STATE(1337), 1, sym__metadata_lit, - STATE(1437), 1, - sym_meta_lit, - STATE(1439), 1, + STATE(1389), 1, sym_old_meta_lit, - STATE(1543), 1, + STATE(1407), 1, + sym_meta_lit, + STATE(1652), 1, aux_sym_sym_lit_repeat1, - STATE(1117), 3, + STATE(856), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [100702] = 5, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(2667), 1, - anon_sym_POUND_, - ACTIONS(3209), 2, - sym__ws, - sym_comment, - STATE(1426), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - ACTIONS(2020), 4, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_RPAREN, - [100724] = 9, + [95636] = 9, ACTIONS(3), 1, sym_block_comment, - ACTIONS(23), 1, + ACTIONS(528), 1, anon_sym_LPAREN, - ACTIONS(2463), 1, + ACTIONS(2425), 1, anon_sym_CARET, - ACTIONS(2465), 1, + ACTIONS(2427), 1, anon_sym_POUND_CARET, - STATE(1369), 1, + STATE(1337), 1, sym__metadata_lit, - STATE(1437), 1, - sym_meta_lit, - STATE(1439), 1, + STATE(1389), 1, sym_old_meta_lit, - STATE(1543), 1, + STATE(1407), 1, + sym_meta_lit, + STATE(1652), 1, aux_sym_sym_lit_repeat1, - STATE(836), 3, + STATE(928), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [100754] = 11, + [95666] = 11, ACTIONS(3), 1, sym_block_comment, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(2793), 1, + ACTIONS(2767), 1, aux_sym_sym_lit_token1, - ACTIONS(3010), 1, + ACTIONS(2898), 1, anon_sym_LBRACE, - ACTIONS(3201), 1, + ACTIONS(3131), 1, anon_sym_POUND_QMARK, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1241), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1199), 1, aux_sym_sym_lit_repeat1, - STATE(1257), 1, + STATE(1206), 1, sym__bare_map_lit, - STATE(1369), 1, + STATE(1337), 1, sym__metadata_lit, - [100788] = 9, + [95700] = 9, ACTIONS(3), 1, sym_block_comment, - ACTIONS(568), 1, + ACTIONS(670), 1, anon_sym_LPAREN, - ACTIONS(2463), 1, + ACTIONS(2425), 1, anon_sym_CARET, - ACTIONS(2465), 1, + ACTIONS(2427), 1, anon_sym_POUND_CARET, - STATE(1369), 1, + STATE(1337), 1, sym__metadata_lit, - STATE(1437), 1, - sym_meta_lit, - STATE(1439), 1, + STATE(1389), 1, sym_old_meta_lit, - STATE(1543), 1, + STATE(1407), 1, + sym_meta_lit, + STATE(1652), 1, aux_sym_sym_lit_repeat1, - STATE(694), 3, + STATE(589), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [100818] = 9, + [95730] = 9, ACTIONS(3), 1, sym_block_comment, - ACTIONS(524), 1, + ACTIONS(620), 1, anon_sym_LPAREN, - ACTIONS(2463), 1, + ACTIONS(2425), 1, anon_sym_CARET, - ACTIONS(2465), 1, + ACTIONS(2427), 1, anon_sym_POUND_CARET, - STATE(1369), 1, + STATE(1337), 1, sym__metadata_lit, - STATE(1437), 1, - sym_meta_lit, - STATE(1439), 1, + STATE(1389), 1, sym_old_meta_lit, - STATE(1543), 1, + STATE(1407), 1, + sym_meta_lit, + STATE(1652), 1, aux_sym_sym_lit_repeat1, - STATE(724), 3, + STATE(744), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [100848] = 10, + [95760] = 10, ACTIONS(3), 1, sym_block_comment, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(3008), 1, + ACTIONS(3004), 1, aux_sym_sym_lit_token1, - STATE(820), 1, + STATE(561), 1, sym_sym_lit, - STATE(865), 1, + STATE(610), 1, sym_dotted_sym_lit, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1756), 1, + STATE(1655), 1, aux_sym_sym_lit_repeat1, - [100879] = 10, + [95791] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(19), 1, + ACTIONS(3069), 1, + anon_sym_POUND_, + ACTIONS(3142), 2, + sym__ws, + sym_comment, + ACTIONS(2964), 3, anon_sym_CARET, - ACTIONS(21), 1, anon_sym_POUND_CARET, - ACTIONS(3024), 1, + anon_sym_LPAREN, + STATE(1393), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + [95812] = 10, + ACTIONS(3), 1, + sym_block_comment, + ACTIONS(23), 1, + anon_sym_CARET, + ACTIONS(25), 1, + anon_sym_POUND_CARET, + ACTIONS(2902), 1, aux_sym_sym_lit_token1, - STATE(1073), 1, + STATE(784), 1, sym_sym_lit, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, - sym_meta_lit, - STATE(1147), 1, + STATE(826), 1, sym_dotted_sym_lit, - STATE(1369), 1, + STATE(1162), 1, + sym_meta_lit, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1801), 1, + STATE(1713), 1, aux_sym_sym_lit_repeat1, - [100910] = 10, + [95843] = 10, ACTIONS(3), 1, sym_block_comment, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(3056), 1, + ACTIONS(2980), 1, aux_sym_sym_lit_token1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1253), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1210), 1, sym_sym_lit, - STATE(1269), 1, + STATE(1249), 1, sym_dotted_sym_lit, - STATE(1369), 1, + STATE(1337), 1, sym__metadata_lit, - STATE(1536), 1, + STATE(1523), 1, aux_sym_sym_lit_repeat1, - [100941] = 10, + [95874] = 10, ACTIONS(3), 1, sym_block_comment, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(3036), 1, + ACTIONS(2976), 1, aux_sym_sym_lit_token1, - STATE(601), 1, + STATE(407), 1, sym_sym_lit, - STATE(745), 1, + STATE(491), 1, sym_dotted_sym_lit, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1539), 1, + STATE(1590), 1, aux_sym_sym_lit_repeat1, - [100972] = 10, + [95905] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(19), 1, + ACTIONS(3069), 1, + anon_sym_POUND_, + ACTIONS(3067), 2, + sym__ws, + sym_comment, + ACTIONS(2946), 3, anon_sym_CARET, - ACTIONS(21), 1, anon_sym_POUND_CARET, - ACTIONS(3056), 1, + anon_sym_LPAREN, + STATE(1378), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + [95926] = 10, + ACTIONS(3), 1, + sym_block_comment, + ACTIONS(23), 1, + anon_sym_CARET, + ACTIONS(25), 1, + anon_sym_POUND_CARET, + ACTIONS(2972), 1, aux_sym_sym_lit_token1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, - sym_meta_lit, - STATE(1254), 1, + STATE(914), 1, sym_sym_lit, - STATE(1351), 1, + STATE(1000), 1, sym_dotted_sym_lit, - STATE(1369), 1, + STATE(1162), 1, + sym_meta_lit, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1536), 1, + STATE(1458), 1, aux_sym_sym_lit_repeat1, - [101003] = 10, + [95957] = 10, ACTIONS(3), 1, sym_block_comment, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(3024), 1, + ACTIONS(2902), 1, aux_sym_sym_lit_token1, - STATE(1077), 1, + STATE(779), 1, sym_sym_lit, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, - sym_meta_lit, - STATE(1196), 1, + STATE(880), 1, sym_dotted_sym_lit, - STATE(1369), 1, + STATE(1162), 1, + sym_meta_lit, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1801), 1, + STATE(1713), 1, aux_sym_sym_lit_repeat1, - [101034] = 5, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(3133), 1, - anon_sym_POUND_, - ACTIONS(3212), 2, - sym__ws, - sym_comment, - ACTIONS(2990), 3, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LPAREN, - STATE(1447), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - [101055] = 10, + [95988] = 10, ACTIONS(3), 1, sym_block_comment, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(3036), 1, + ACTIONS(2896), 1, aux_sym_sym_lit_token1, - STATE(603), 1, + STATE(932), 1, sym_sym_lit, - STATE(613), 1, + STATE(1071), 1, sym_dotted_sym_lit, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1539), 1, + STATE(1527), 1, aux_sym_sym_lit_repeat1, - [101086] = 5, + [96019] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3214), 2, + ACTIONS(3067), 2, sym__ws, sym_comment, - ACTIONS(2942), 3, + ACTIONS(2952), 3, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - STATE(1446), 3, + STATE(1378), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [101107] = 10, + [96040] = 10, ACTIONS(3), 1, sym_block_comment, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(3008), 1, + ACTIONS(2972), 1, aux_sym_sym_lit_token1, - STATE(823), 1, + STATE(917), 1, sym_sym_lit, - STATE(876), 1, + STATE(1031), 1, sym_dotted_sym_lit, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1756), 1, + STATE(1458), 1, aux_sym_sym_lit_repeat1, - [101138] = 10, + [96071] = 10, ACTIONS(3), 1, sym_block_comment, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(3042), 1, + ACTIONS(2896), 1, aux_sym_sym_lit_token1, - STATE(955), 1, + STATE(927), 1, sym_sym_lit, - STATE(1036), 1, + STATE(1108), 1, sym_dotted_sym_lit, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1470), 1, + STATE(1527), 1, aux_sym_sym_lit_repeat1, - [101169] = 10, + [96102] = 10, ACTIONS(3), 1, sym_block_comment, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(3008), 1, + ACTIONS(3004), 1, aux_sym_sym_lit_token1, - STATE(821), 1, + STATE(564), 1, sym_sym_lit, - STATE(876), 1, + STATE(569), 1, sym_dotted_sym_lit, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1756), 1, + STATE(1655), 1, aux_sym_sym_lit_repeat1, - [101200] = 10, + [96133] = 10, ACTIONS(3), 1, sym_block_comment, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(3062), 1, + ACTIONS(3000), 1, aux_sym_sym_lit_token1, - STATE(591), 1, + STATE(551), 1, sym_sym_lit, - STATE(754), 1, + STATE(588), 1, sym_dotted_sym_lit, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1668), 1, + STATE(1656), 1, aux_sym_sym_lit_repeat1, - [101231] = 10, + [96164] = 10, ACTIONS(3), 1, sym_block_comment, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(3062), 1, + ACTIONS(3000), 1, aux_sym_sym_lit_token1, - STATE(596), 1, + STATE(550), 1, sym_sym_lit, - STATE(688), 1, + STATE(693), 1, sym_dotted_sym_lit, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1668), 1, + STATE(1656), 1, aux_sym_sym_lit_repeat1, - [101262] = 10, + [96195] = 10, ACTIONS(3), 1, sym_block_comment, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(3008), 1, + ACTIONS(2902), 1, aux_sym_sym_lit_token1, - STATE(818), 1, + STATE(781), 1, sym_sym_lit, - STATE(865), 1, + STATE(880), 1, sym_dotted_sym_lit, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1756), 1, + STATE(1713), 1, aux_sym_sym_lit_repeat1, - [101293] = 5, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(3133), 1, - anon_sym_POUND_, - ACTIONS(3141), 2, - sym__ws, - sym_comment, - ACTIONS(2956), 3, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LPAREN, - STATE(1426), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - [101314] = 5, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(3133), 1, - anon_sym_POUND_, - ACTIONS(3141), 2, - sym__ws, - sym_comment, - ACTIONS(2952), 3, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LPAREN, - STATE(1426), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - [101335] = 10, + [96226] = 10, ACTIONS(3), 1, sym_block_comment, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(3052), 1, + ACTIONS(2902), 1, aux_sym_sym_lit_token1, - STATE(442), 1, + STATE(778), 1, sym_sym_lit, - STATE(505), 1, + STATE(826), 1, sym_dotted_sym_lit, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1602), 1, + STATE(1713), 1, aux_sym_sym_lit_repeat1, - [101366] = 10, + [96257] = 10, ACTIONS(3), 1, sym_block_comment, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(3052), 1, + ACTIONS(2976), 1, aux_sym_sym_lit_token1, - STATE(445), 1, + STATE(406), 1, sym_sym_lit, - STATE(526), 1, + STATE(421), 1, sym_dotted_sym_lit, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1602), 1, + STATE(1590), 1, aux_sym_sym_lit_repeat1, - [101397] = 10, + [96288] = 10, ACTIONS(3), 1, sym_block_comment, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(3042), 1, + ACTIONS(2980), 1, aux_sym_sym_lit_token1, - STATE(954), 1, + STATE(1162), 1, + sym_meta_lit, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1216), 1, sym_sym_lit, - STATE(975), 1, + STATE(1220), 1, sym_dotted_sym_lit, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, - sym_meta_lit, - STATE(1369), 1, + STATE(1337), 1, sym__metadata_lit, - STATE(1470), 1, + STATE(1523), 1, aux_sym_sym_lit_repeat1, - [101428] = 9, + [96319] = 5, + ACTIONS(3), 1, + sym_block_comment, + ACTIONS(3069), 1, + anon_sym_POUND_, + ACTIONS(3144), 2, + sym__ws, + sym_comment, + ACTIONS(2958), 3, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + STATE(1397), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + [96340] = 9, ACTIONS(3), 1, sym_block_comment, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(3008), 1, + ACTIONS(2902), 1, aux_sym_sym_lit_token1, - STATE(864), 1, + STATE(827), 1, sym_sym_lit, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1756), 1, + STATE(1713), 1, aux_sym_sym_lit_repeat1, - [101456] = 9, + [96368] = 9, ACTIONS(3), 1, sym_block_comment, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(3052), 1, + ACTIONS(2972), 1, aux_sym_sym_lit_token1, - STATE(447), 1, + STATE(920), 1, sym_sym_lit, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1602), 1, + STATE(1458), 1, aux_sym_sym_lit_repeat1, - [101484] = 9, + [96396] = 9, ACTIONS(3), 1, sym_block_comment, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(3024), 1, + ACTIONS(2896), 1, aux_sym_sym_lit_token1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1097), 1, + STATE(1040), 1, sym_sym_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1801), 1, + STATE(1527), 1, aux_sym_sym_lit_repeat1, - [101512] = 9, + [96424] = 9, ACTIONS(3), 1, sym_block_comment, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(3042), 1, + ACTIONS(3000), 1, aux_sym_sym_lit_token1, - STATE(956), 1, + STATE(565), 1, sym_sym_lit, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1470), 1, + STATE(1656), 1, aux_sym_sym_lit_repeat1, - [101540] = 9, + [96452] = 9, ACTIONS(3), 1, sym_block_comment, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(3036), 1, + ACTIONS(3004), 1, aux_sym_sym_lit_token1, - STATE(612), 1, + STATE(609), 1, sym_sym_lit, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1539), 1, + STATE(1655), 1, aux_sym_sym_lit_repeat1, - [101568] = 9, + [96480] = 9, ACTIONS(3), 1, sym_block_comment, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(3056), 1, + ACTIONS(2980), 1, aux_sym_sym_lit_token1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1258), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1217), 1, sym_sym_lit, - STATE(1369), 1, + STATE(1337), 1, sym__metadata_lit, - STATE(1536), 1, + STATE(1523), 1, aux_sym_sym_lit_repeat1, - [101596] = 9, + [96508] = 9, ACTIONS(3), 1, sym_block_comment, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(3062), 1, + ACTIONS(2976), 1, aux_sym_sym_lit_token1, - STATE(600), 1, + STATE(411), 1, sym_sym_lit, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1369), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1337), 1, sym__metadata_lit, - STATE(1668), 1, + STATE(1590), 1, aux_sym_sym_lit_repeat1, - [101624] = 5, + [96536] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3216), 1, + ACTIONS(3148), 1, anon_sym_RPAREN, - ACTIONS(3141), 2, + ACTIONS(3146), 2, sym__ws, sym_comment, - STATE(1426), 3, + STATE(1631), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [101643] = 5, + [96555] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3218), 1, - anon_sym_RPAREN, - ACTIONS(3141), 2, + ACTIONS(3152), 1, + sym_num_lit, + ACTIONS(3150), 2, sym__ws, sym_comment, - STATE(1426), 3, + STATE(1738), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [101662] = 5, + [96574] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3222), 1, + ACTIONS(3156), 1, anon_sym_RPAREN, - ACTIONS(3220), 2, - sym__ws, - sym_comment, - STATE(1467), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - [101681] = 5, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(3133), 1, - anon_sym_POUND_, - ACTIONS(3224), 1, - anon_sym_LPAREN, - ACTIONS(3141), 2, + ACTIONS(3154), 2, sym__ws, sym_comment, - STATE(1426), 3, + STATE(1613), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [101700] = 5, + [96593] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3228), 1, - anon_sym_LPAREN, - ACTIONS(3226), 2, + ACTIONS(3160), 1, + anon_sym_RPAREN, + ACTIONS(3158), 2, sym__ws, sym_comment, - STATE(1461), 3, + STATE(1420), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [101719] = 5, + [96612] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3230), 1, + ACTIONS(3162), 1, anon_sym_LPAREN, - ACTIONS(3141), 2, + ACTIONS(3067), 2, sym__ws, sym_comment, - STATE(1426), 3, + STATE(1378), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [101738] = 5, + [96631] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3232), 1, + ACTIONS(3164), 1, anon_sym_RPAREN, - ACTIONS(3141), 2, + ACTIONS(3067), 2, sym__ws, sym_comment, - STATE(1426), 3, + STATE(1378), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [101757] = 5, + [96650] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3236), 1, + ACTIONS(3168), 1, anon_sym_RPAREN, - ACTIONS(3234), 2, + ACTIONS(3166), 2, sym__ws, sym_comment, - STATE(1464), 3, + STATE(1424), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [101776] = 5, + [96669] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3238), 1, + ACTIONS(3172), 1, anon_sym_RPAREN, - ACTIONS(3141), 2, + ACTIONS(3170), 2, sym__ws, sym_comment, - STATE(1426), 3, + STATE(1425), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [101795] = 5, + [96688] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3240), 1, + ACTIONS(3176), 1, anon_sym_RPAREN, - ACTIONS(3141), 2, + ACTIONS(3174), 2, sym__ws, sym_comment, - STATE(1426), 3, + STATE(1428), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [101814] = 5, + [96707] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3244), 1, - anon_sym_LPAREN, - ACTIONS(3242), 2, + ACTIONS(3178), 1, + anon_sym_RPAREN, + ACTIONS(3067), 2, sym__ws, sym_comment, - STATE(1463), 3, + STATE(1378), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [101833] = 5, + [96726] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3246), 1, - anon_sym_LPAREN, - ACTIONS(3141), 2, + ACTIONS(3180), 1, + anon_sym_RPAREN, + ACTIONS(3067), 2, sym__ws, sym_comment, - STATE(1426), 3, + STATE(1378), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [101852] = 8, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(19), 1, - anon_sym_CARET, - ACTIONS(21), 1, - anon_sym_POUND_CARET, - ACTIONS(2749), 1, - aux_sym_sym_lit_token1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, - sym_meta_lit, - STATE(1241), 1, - aux_sym_sym_lit_repeat1, - STATE(1369), 1, - sym__metadata_lit, - [101877] = 5, + [96745] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3248), 1, + ACTIONS(3184), 1, anon_sym_RPAREN, - ACTIONS(3141), 2, + ACTIONS(3182), 2, sym__ws, sym_comment, - STATE(1426), 3, + STATE(1432), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [101896] = 5, + [96764] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3250), 1, + ACTIONS(3188), 1, anon_sym_RPAREN, - ACTIONS(3141), 2, + ACTIONS(3186), 2, sym__ws, sym_comment, - STATE(1426), 3, + STATE(1433), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [101915] = 5, + [96783] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3254), 1, + ACTIONS(3190), 1, anon_sym_RPAREN, - ACTIONS(3252), 2, + ACTIONS(3067), 2, sym__ws, sym_comment, - STATE(1466), 3, + STATE(1378), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [101934] = 5, + [96802] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3258), 1, - anon_sym_LPAREN, - ACTIONS(3256), 2, + ACTIONS(3194), 1, + anon_sym_RPAREN, + ACTIONS(3192), 2, sym__ws, sym_comment, - STATE(1469), 3, + STATE(1435), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [101953] = 5, + [96821] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3260), 1, - anon_sym_LPAREN, - ACTIONS(3141), 2, + ACTIONS(3198), 1, + anon_sym_RPAREN, + ACTIONS(3196), 2, sym__ws, sym_comment, - STATE(1426), 3, + STATE(1436), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [101972] = 5, + [96840] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3264), 1, + ACTIONS(3202), 1, anon_sym_RPAREN, - ACTIONS(3262), 2, + ACTIONS(3200), 2, sym__ws, sym_comment, - STATE(1586), 3, + STATE(1438), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [101991] = 5, + [96859] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3266), 1, + ACTIONS(3204), 1, anon_sym_RPAREN, - ACTIONS(3141), 2, + ACTIONS(3067), 2, sym__ws, sym_comment, - STATE(1426), 3, + STATE(1378), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [102010] = 5, + [96878] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3270), 1, + ACTIONS(3206), 1, anon_sym_RPAREN, - ACTIONS(3268), 2, + ACTIONS(3067), 2, sym__ws, sym_comment, - STATE(1471), 3, + STATE(1378), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [102029] = 5, + [96897] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3272), 1, + ACTIONS(3210), 1, anon_sym_RPAREN, - ACTIONS(3141), 2, + ACTIONS(3208), 2, sym__ws, sym_comment, - STATE(1426), 3, + STATE(1441), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [102048] = 5, + [96916] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3274), 1, + ACTIONS(3212), 1, anon_sym_RPAREN, - ACTIONS(3141), 2, + ACTIONS(3067), 2, sym__ws, sym_comment, - STATE(1426), 3, + STATE(1378), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [102067] = 5, + [96935] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3278), 1, + ACTIONS(3214), 1, anon_sym_RPAREN, - ACTIONS(3276), 2, + ACTIONS(3067), 2, sym__ws, sym_comment, - STATE(1472), 3, + STATE(1378), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [102086] = 5, + [96954] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3280), 1, + ACTIONS(3218), 1, anon_sym_RPAREN, - ACTIONS(3141), 2, + ACTIONS(3216), 2, sym__ws, sym_comment, - STATE(1426), 3, + STATE(1442), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [102105] = 5, + [96973] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3284), 1, - anon_sym_LPAREN, - ACTIONS(3282), 2, + ACTIONS(3220), 1, + anon_sym_RPAREN, + ACTIONS(3067), 2, sym__ws, sym_comment, - STATE(1475), 3, + STATE(1378), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [102124] = 5, + [96992] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3286), 1, - anon_sym_LPAREN, - ACTIONS(3141), 2, + ACTIONS(3224), 1, + anon_sym_RPAREN, + ACTIONS(3222), 2, sym__ws, sym_comment, - STATE(1426), 3, + STATE(1443), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [102143] = 5, + [97011] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3288), 1, + ACTIONS(3228), 1, anon_sym_RPAREN, - ACTIONS(3141), 2, + ACTIONS(3226), 2, sym__ws, sym_comment, - STATE(1426), 3, + STATE(1444), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [102162] = 5, + [97030] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3292), 1, + ACTIONS(3230), 1, anon_sym_RPAREN, - ACTIONS(3290), 2, + ACTIONS(3067), 2, sym__ws, sym_comment, - STATE(1477), 3, + STATE(1378), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [102181] = 5, + [97049] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3296), 1, + ACTIONS(3232), 1, anon_sym_RPAREN, - ACTIONS(3294), 2, + ACTIONS(3067), 2, sym__ws, sym_comment, - STATE(1479), 3, + STATE(1378), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [102200] = 5, + [97068] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3300), 1, + ACTIONS(3234), 1, anon_sym_RPAREN, - ACTIONS(3298), 2, + ACTIONS(3067), 2, sym__ws, sym_comment, - STATE(1480), 3, + STATE(1378), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [102219] = 5, + [97087] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3304), 1, + ACTIONS(3236), 1, anon_sym_RPAREN, - ACTIONS(3302), 2, + ACTIONS(3067), 2, sym__ws, sym_comment, - STATE(1490), 3, + STATE(1378), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [102238] = 5, + [97106] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3306), 1, + ACTIONS(3240), 1, anon_sym_RPAREN, - ACTIONS(3141), 2, + ACTIONS(3238), 2, sym__ws, sym_comment, - STATE(1426), 3, + STATE(1446), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [102257] = 5, + [97125] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3310), 1, + ACTIONS(3242), 1, anon_sym_RPAREN, - ACTIONS(3308), 2, + ACTIONS(3067), 2, sym__ws, sym_comment, - STATE(1494), 3, + STATE(1378), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [102276] = 5, + [97144] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3314), 1, + ACTIONS(3244), 1, anon_sym_RPAREN, - ACTIONS(3312), 2, + ACTIONS(3067), 2, sym__ws, sym_comment, - STATE(1495), 3, + STATE(1378), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [102295] = 5, + [97163] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3318), 1, + ACTIONS(3246), 1, anon_sym_RPAREN, - ACTIONS(3316), 2, + ACTIONS(3067), 2, sym__ws, sym_comment, - STATE(1498), 3, + STATE(1378), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [102314] = 5, + [97182] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3320), 1, - anon_sym_RPAREN, - ACTIONS(3141), 2, + ACTIONS(3250), 1, + anon_sym_LPAREN, + ACTIONS(3248), 2, sym__ws, sym_comment, - STATE(1426), 3, + STATE(1419), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [102333] = 5, + [97201] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3322), 1, + ACTIONS(3252), 1, anon_sym_RPAREN, - ACTIONS(3141), 2, + ACTIONS(3067), 2, sym__ws, sym_comment, - STATE(1426), 3, + STATE(1378), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [102352] = 5, + [97220] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3326), 1, - anon_sym_RPAREN, - ACTIONS(3324), 2, + ACTIONS(3254), 1, + anon_sym_LPAREN, + ACTIONS(3067), 2, sym__ws, sym_comment, - STATE(1502), 3, + STATE(1378), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [102371] = 5, + [97239] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3330), 1, - anon_sym_RPAREN, - ACTIONS(3328), 2, + ACTIONS(3258), 1, + anon_sym_LPAREN, + ACTIONS(3256), 2, sym__ws, sym_comment, - STATE(1503), 3, + STATE(1451), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [102390] = 5, + [97258] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3332), 1, + ACTIONS(3262), 1, anon_sym_RPAREN, - ACTIONS(3141), 2, + ACTIONS(3260), 2, sym__ws, sym_comment, - STATE(1426), 3, + STATE(1722), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [102409] = 5, + [97277] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3336), 1, + ACTIONS(3264), 1, anon_sym_RPAREN, - ACTIONS(3334), 2, + ACTIONS(3067), 2, sym__ws, sym_comment, - STATE(1505), 3, + STATE(1378), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [102428] = 5, + [97296] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3340), 1, - anon_sym_RPAREN, - ACTIONS(3338), 2, + ACTIONS(3266), 1, + anon_sym_LPAREN, + ACTIONS(3067), 2, sym__ws, sym_comment, - STATE(1506), 3, + STATE(1378), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [102447] = 5, + [97315] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3344), 1, + ACTIONS(3270), 1, anon_sym_RPAREN, - ACTIONS(3342), 2, + ACTIONS(3268), 2, sym__ws, sym_comment, - STATE(1508), 3, + STATE(1736), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [102466] = 5, + [97334] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3346), 1, - anon_sym_RPAREN, - ACTIONS(3141), 2, + ACTIONS(3274), 1, + anon_sym_LPAREN, + ACTIONS(3272), 2, sym__ws, sym_comment, - STATE(1426), 3, + STATE(1455), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [102485] = 5, + [97353] = 8, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, - anon_sym_POUND_, - ACTIONS(3348), 1, - anon_sym_RPAREN, - ACTIONS(3141), 2, - sym__ws, - sym_comment, - STATE(1426), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - [102504] = 5, + ACTIONS(23), 1, + anon_sym_CARET, + ACTIONS(25), 1, + anon_sym_POUND_CARET, + ACTIONS(2789), 1, + aux_sym_sym_lit_token1, + STATE(1162), 1, + sym_meta_lit, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1199), 1, + aux_sym_sym_lit_repeat1, + STATE(1337), 1, + sym__metadata_lit, + [97378] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3352), 1, + ACTIONS(3276), 1, anon_sym_RPAREN, - ACTIONS(3350), 2, + ACTIONS(3067), 2, sym__ws, sym_comment, - STATE(1511), 3, + STATE(1378), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [102523] = 5, + [97397] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3354), 1, - anon_sym_RPAREN, - ACTIONS(3141), 2, + ACTIONS(3278), 1, + anon_sym_LPAREN, + ACTIONS(3067), 2, sym__ws, sym_comment, - STATE(1426), 3, + STATE(1378), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [102542] = 5, + [97416] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3356), 1, - anon_sym_RPAREN, - ACTIONS(3141), 2, + ACTIONS(3282), 1, + sym_num_lit, + ACTIONS(3280), 2, sym__ws, sym_comment, - STATE(1426), 3, + STATE(892), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [102561] = 5, + [97435] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3360), 1, - anon_sym_RPAREN, - ACTIONS(3358), 2, + ACTIONS(3286), 1, + sym_num_lit, + ACTIONS(3284), 2, sym__ws, sym_comment, - STATE(1512), 3, + STATE(1595), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [102580] = 5, + [97454] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3362), 1, - anon_sym_RPAREN, - ACTIONS(3141), 2, + ACTIONS(3290), 1, + anon_sym_LPAREN, + ACTIONS(3288), 2, sym__ws, sym_comment, - STATE(1426), 3, + STATE(1460), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [102599] = 5, + [97473] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3366), 1, - anon_sym_RPAREN, - ACTIONS(3364), 2, + ACTIONS(3292), 1, + anon_sym_LPAREN, + ACTIONS(3067), 2, sym__ws, sym_comment, - STATE(1513), 3, + STATE(1378), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [102618] = 5, + [97492] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3370), 1, + ACTIONS(3296), 1, anon_sym_RPAREN, - ACTIONS(3368), 2, + ACTIONS(3294), 2, sym__ws, sym_comment, - STATE(1514), 3, + STATE(1796), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [102637] = 5, + [97511] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3372), 1, + ACTIONS(3300), 1, anon_sym_RPAREN, - ACTIONS(3141), 2, + ACTIONS(3298), 2, sym__ws, sym_comment, - STATE(1426), 3, + STATE(1670), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [102656] = 5, + [97530] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3374), 1, - anon_sym_RPAREN, - ACTIONS(3141), 2, + ACTIONS(3304), 1, + sym_num_lit, + ACTIONS(3302), 2, sym__ws, sym_comment, - STATE(1426), 3, + STATE(1579), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [102675] = 5, + [97549] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3376), 1, - anon_sym_RPAREN, - ACTIONS(3141), 2, + ACTIONS(3308), 1, + anon_sym_LPAREN, + ACTIONS(3306), 2, sym__ws, sym_comment, - STATE(1426), 3, + STATE(1464), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [102694] = 5, + [97568] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3378), 1, - anon_sym_RPAREN, - ACTIONS(3141), 2, + ACTIONS(3310), 1, + anon_sym_LPAREN, + ACTIONS(3067), 2, sym__ws, sym_comment, - STATE(1426), 3, + STATE(1378), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [102713] = 5, + [97587] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3382), 1, - anon_sym_RPAREN, - ACTIONS(3380), 2, + ACTIONS(3312), 1, + sym_num_lit, + ACTIONS(3280), 2, sym__ws, sym_comment, - STATE(1516), 3, + STATE(892), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [102732] = 5, + [97606] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3384), 1, + ACTIONS(3316), 1, anon_sym_RPAREN, - ACTIONS(3141), 2, + ACTIONS(3314), 2, sym__ws, sym_comment, - STATE(1426), 3, + STATE(1528), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [102751] = 5, + [97625] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3386), 1, - anon_sym_RPAREN, - ACTIONS(3141), 2, + ACTIONS(3320), 1, + sym_num_lit, + ACTIONS(3318), 2, sym__ws, sym_comment, - STATE(1426), 3, + STATE(1650), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [102770] = 5, + [97644] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3390), 1, - anon_sym_RPAREN, - ACTIONS(3388), 2, + ACTIONS(3322), 1, + sym_num_lit, + ACTIONS(3280), 2, sym__ws, sym_comment, - STATE(1482), 3, + STATE(892), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [102789] = 5, + [97663] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3394), 1, - anon_sym_LPAREN, - ACTIONS(3392), 2, + ACTIONS(3326), 1, + anon_sym_RPAREN, + ACTIONS(3324), 2, sym__ws, sym_comment, - STATE(1484), 3, + STATE(1448), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [102808] = 5, + [97682] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3398), 1, + ACTIONS(3330), 1, anon_sym_RPAREN, - ACTIONS(3396), 2, + ACTIONS(3328), 2, sym__ws, sym_comment, - STATE(1485), 3, + STATE(1454), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [102827] = 5, + [97701] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3400), 1, + ACTIONS(3332), 1, anon_sym_LPAREN, - ACTIONS(3141), 2, + ACTIONS(3067), 2, sym__ws, sym_comment, - STATE(1426), 3, + STATE(1378), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [102846] = 5, + [97720] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3404), 1, + ACTIONS(3336), 1, anon_sym_LPAREN, - ACTIONS(3402), 2, + ACTIONS(3334), 2, sym__ws, sym_comment, - STATE(1521), 3, + STATE(1469), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [102865] = 5, + [97739] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3406), 1, - anon_sym_RPAREN, - ACTIONS(3141), 2, + ACTIONS(3338), 1, + anon_sym_LPAREN, + ACTIONS(3067), 2, sym__ws, sym_comment, - STATE(1426), 3, + STATE(1378), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [102884] = 5, + [97758] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3408), 1, + ACTIONS(3340), 1, anon_sym_RPAREN, - ACTIONS(3141), 2, - sym__ws, - sym_comment, - STATE(1426), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - [102903] = 5, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(3133), 1, - anon_sym_POUND_, - ACTIONS(3410), 1, - anon_sym_LPAREN, - ACTIONS(3141), 2, + ACTIONS(3067), 2, sym__ws, sym_comment, - STATE(1426), 3, + STATE(1378), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [102922] = 5, + [97777] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3414), 1, + ACTIONS(3342), 1, anon_sym_RPAREN, - ACTIONS(3412), 2, + ACTIONS(3067), 2, sym__ws, sym_comment, - STATE(1517), 3, + STATE(1378), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [102941] = 5, + [97796] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3418), 1, + ACTIONS(3346), 1, anon_sym_RPAREN, - ACTIONS(3416), 2, + ACTIONS(3344), 2, sym__ws, sym_comment, - STATE(1523), 3, + STATE(1459), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [102960] = 5, + [97815] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3422), 1, + ACTIONS(3350), 1, anon_sym_RPAREN, - ACTIONS(3420), 2, + ACTIONS(3348), 2, sym__ws, sym_comment, - STATE(1524), 3, + STATE(1479), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [102979] = 5, + [97834] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3424), 1, + ACTIONS(3354), 1, anon_sym_RPAREN, - ACTIONS(3141), 2, + ACTIONS(3352), 2, sym__ws, sym_comment, - STATE(1426), 3, + STATE(1484), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [102998] = 5, + [97853] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3428), 1, - anon_sym_LPAREN, - ACTIONS(3426), 2, + ACTIONS(3356), 1, + anon_sym_RPAREN, + ACTIONS(3067), 2, sym__ws, sym_comment, - STATE(1525), 3, + STATE(1378), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [103017] = 5, + [97872] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3432), 1, + ACTIONS(3360), 1, anon_sym_RPAREN, - ACTIONS(3430), 2, + ACTIONS(3358), 2, sym__ws, sym_comment, - STATE(1529), 3, + STATE(1488), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [103036] = 5, + [97891] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3434), 1, - anon_sym_LPAREN, - ACTIONS(3141), 2, + ACTIONS(3364), 1, + anon_sym_RPAREN, + ACTIONS(3362), 2, sym__ws, sym_comment, - STATE(1426), 3, + STATE(1489), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [103055] = 5, + [97910] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3438), 1, - anon_sym_LPAREN, - ACTIONS(3436), 2, + ACTIONS(3368), 1, + anon_sym_RPAREN, + ACTIONS(3366), 2, sym__ws, sym_comment, - STATE(1532), 3, + STATE(1492), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [103074] = 5, + [97929] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3440), 1, - anon_sym_LPAREN, - ACTIONS(3141), 2, + ACTIONS(3370), 1, + anon_sym_RPAREN, + ACTIONS(3067), 2, sym__ws, sym_comment, - STATE(1426), 3, + STATE(1378), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [103093] = 5, + [97948] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3444), 1, - anon_sym_LPAREN, - ACTIONS(3442), 2, + ACTIONS(3372), 1, + anon_sym_RPAREN, + ACTIONS(3067), 2, sym__ws, sym_comment, - STATE(1534), 3, + STATE(1378), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [103112] = 8, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(19), 1, - anon_sym_CARET, - ACTIONS(21), 1, - anon_sym_POUND_CARET, - ACTIONS(2907), 1, - aux_sym_sym_lit_token1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, - sym_meta_lit, - STATE(1241), 1, - aux_sym_sym_lit_repeat1, - STATE(1369), 1, - sym__metadata_lit, - [103137] = 5, + [97967] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3446), 1, - anon_sym_LPAREN, - ACTIONS(3141), 2, + ACTIONS(3376), 1, + anon_sym_RPAREN, + ACTIONS(3374), 2, sym__ws, sym_comment, - STATE(1426), 3, + STATE(1496), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [103156] = 5, + [97986] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3450), 1, - anon_sym_LPAREN, - ACTIONS(3448), 2, + ACTIONS(3380), 1, + anon_sym_RPAREN, + ACTIONS(3378), 2, sym__ws, sym_comment, - STATE(1537), 3, + STATE(1497), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [103175] = 8, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(19), 1, - anon_sym_CARET, - ACTIONS(21), 1, - anon_sym_POUND_CARET, - ACTIONS(2815), 1, - aux_sym_sym_lit_token1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, - sym_meta_lit, - STATE(1241), 1, - aux_sym_sym_lit_repeat1, - STATE(1369), 1, - sym__metadata_lit, - [103200] = 5, + [98005] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3452), 1, - anon_sym_LPAREN, - ACTIONS(3141), 2, + ACTIONS(3382), 1, + anon_sym_RPAREN, + ACTIONS(3067), 2, sym__ws, sym_comment, - STATE(1426), 3, + STATE(1378), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [103219] = 5, + [98024] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3456), 1, - anon_sym_LPAREN, - ACTIONS(3454), 2, + ACTIONS(3386), 1, + anon_sym_RPAREN, + ACTIONS(3384), 2, sym__ws, sym_comment, - STATE(1540), 3, + STATE(1499), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [103238] = 5, + [98043] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3458), 1, - anon_sym_LPAREN, - ACTIONS(3141), 2, + ACTIONS(3390), 1, + anon_sym_RPAREN, + ACTIONS(3388), 2, sym__ws, sym_comment, - STATE(1426), 3, + STATE(1500), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [103257] = 8, + [98062] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3080), 1, - anon_sym_LPAREN, - ACTIONS(3460), 1, - anon_sym_CARET, - ACTIONS(3463), 1, - anon_sym_POUND_CARET, - STATE(1369), 1, - sym__metadata_lit, - STATE(1437), 1, - sym_meta_lit, - STATE(1439), 1, - sym_old_meta_lit, - STATE(1543), 1, - aux_sym_sym_lit_repeat1, - [103282] = 5, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3468), 1, - anon_sym_LPAREN, - ACTIONS(3466), 2, + ACTIONS(3394), 1, + anon_sym_RPAREN, + ACTIONS(3392), 2, sym__ws, sym_comment, - STATE(1542), 3, + STATE(1502), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [103301] = 5, + [98081] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3472), 1, - sym_num_lit, - ACTIONS(3470), 2, + ACTIONS(3396), 1, + anon_sym_RPAREN, + ACTIONS(3067), 2, sym__ws, sym_comment, - STATE(930), 3, + STATE(1378), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [103320] = 5, + [98100] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3476), 1, - sym_num_lit, - ACTIONS(3474), 2, + ACTIONS(3398), 1, + anon_sym_RPAREN, + ACTIONS(3067), 2, sym__ws, sym_comment, - STATE(1545), 3, + STATE(1378), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [103339] = 5, + [98119] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3478), 1, - sym_num_lit, - ACTIONS(3470), 2, + ACTIONS(3402), 1, + anon_sym_RPAREN, + ACTIONS(3400), 2, sym__ws, sym_comment, - STATE(930), 3, + STATE(1505), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [103358] = 5, + [98138] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3482), 1, + ACTIONS(3404), 1, anon_sym_RPAREN, - ACTIONS(3480), 2, + ACTIONS(3067), 2, sym__ws, sym_comment, - STATE(1593), 3, + STATE(1378), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [103377] = 5, + [98157] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3484), 1, - sym_num_lit, - ACTIONS(3470), 2, + ACTIONS(3406), 1, + anon_sym_RPAREN, + ACTIONS(3067), 2, sym__ws, sym_comment, - STATE(930), 3, + STATE(1378), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [103396] = 5, + [98176] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3488), 1, - sym_num_lit, - ACTIONS(3486), 2, + ACTIONS(3410), 1, + anon_sym_RPAREN, + ACTIONS(3408), 2, sym__ws, sym_comment, - STATE(1547), 3, + STATE(1506), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [103415] = 5, + [98195] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3492), 1, - sym_num_lit, - ACTIONS(3490), 2, + ACTIONS(3412), 1, + anon_sym_RPAREN, + ACTIONS(3067), 2, sym__ws, sym_comment, - STATE(1549), 3, + STATE(1378), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [103434] = 5, + [98214] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3494), 1, + ACTIONS(3416), 1, anon_sym_RPAREN, - ACTIONS(3141), 2, + ACTIONS(3414), 2, sym__ws, sym_comment, - STATE(1426), 3, + STATE(1507), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [103453] = 5, + [98233] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3498), 1, + ACTIONS(3420), 1, anon_sym_RPAREN, - ACTIONS(3496), 2, + ACTIONS(3418), 2, sym__ws, sym_comment, - STATE(1552), 3, + STATE(1508), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [103472] = 5, + [98252] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3500), 1, + ACTIONS(3422), 1, anon_sym_RPAREN, - ACTIONS(3141), 2, + ACTIONS(3067), 2, sym__ws, sym_comment, - STATE(1426), 3, + STATE(1378), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [103491] = 5, + [98271] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3504), 1, + ACTIONS(3424), 1, anon_sym_RPAREN, - ACTIONS(3502), 2, + ACTIONS(3067), 2, sym__ws, sym_comment, - STATE(1556), 3, + STATE(1378), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [103510] = 5, + [98290] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3506), 1, + ACTIONS(3426), 1, anon_sym_RPAREN, - ACTIONS(3141), 2, + ACTIONS(3067), 2, sym__ws, sym_comment, - STATE(1426), 3, + STATE(1378), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [103529] = 5, + [98309] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3510), 1, + ACTIONS(3428), 1, anon_sym_RPAREN, - ACTIONS(3508), 2, + ACTIONS(3067), 2, sym__ws, sym_comment, - STATE(1560), 3, + STATE(1378), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [103548] = 5, + [98328] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3514), 1, + ACTIONS(3432), 1, anon_sym_RPAREN, - ACTIONS(3512), 2, + ACTIONS(3430), 2, sym__ws, sym_comment, - STATE(1561), 3, + STATE(1510), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [103567] = 5, + [98347] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3518), 1, + ACTIONS(3434), 1, anon_sym_RPAREN, - ACTIONS(3516), 2, + ACTIONS(3067), 2, sym__ws, sym_comment, - STATE(1564), 3, + STATE(1378), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [103586] = 5, + [98366] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3520), 1, - anon_sym_RPAREN, - ACTIONS(3141), 2, + ACTIONS(3438), 1, + anon_sym_LPAREN, + ACTIONS(3436), 2, sym__ws, sym_comment, - STATE(1426), 3, + STATE(1478), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [103605] = 5, + [98385] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3522), 1, - anon_sym_RPAREN, - ACTIONS(3141), 2, + ACTIONS(3440), 1, + anon_sym_LPAREN, + ACTIONS(3067), 2, sym__ws, sym_comment, - STATE(1426), 3, + STATE(1378), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [103624] = 5, + [98404] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3526), 1, - anon_sym_RPAREN, - ACTIONS(3524), 2, + ACTIONS(3444), 1, + anon_sym_LPAREN, + ACTIONS(3442), 2, sym__ws, sym_comment, - STATE(1568), 3, + STATE(1512), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [103643] = 5, + [98423] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3530), 1, - anon_sym_RPAREN, - ACTIONS(3528), 2, + ACTIONS(3446), 1, + anon_sym_LPAREN, + ACTIONS(3067), 2, sym__ws, sym_comment, - STATE(1569), 3, + STATE(1378), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [103662] = 5, + [98442] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3532), 1, + ACTIONS(3450), 1, anon_sym_RPAREN, - ACTIONS(3141), 2, + ACTIONS(3448), 2, sym__ws, sym_comment, - STATE(1426), 3, + STATE(1480), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [103681] = 5, + [98461] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3536), 1, - anon_sym_RPAREN, - ACTIONS(3534), 2, + ACTIONS(3454), 1, + anon_sym_LPAREN, + ACTIONS(3452), 2, sym__ws, sym_comment, - STATE(1571), 3, + STATE(1514), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [103700] = 5, + [98480] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3540), 1, - anon_sym_RPAREN, - ACTIONS(3538), 2, + ACTIONS(3456), 1, + anon_sym_LPAREN, + ACTIONS(3067), 2, sym__ws, sym_comment, - STATE(1572), 3, + STATE(1378), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [103719] = 5, + [98499] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3544), 1, + ACTIONS(3458), 1, anon_sym_RPAREN, - ACTIONS(3542), 2, + ACTIONS(3067), 2, sym__ws, sym_comment, - STATE(1574), 3, + STATE(1378), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [103738] = 5, + [98518] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3546), 1, - anon_sym_RPAREN, - ACTIONS(3141), 2, + ACTIONS(3462), 1, + anon_sym_LPAREN, + ACTIONS(3460), 2, sym__ws, sym_comment, - STATE(1426), 3, + STATE(1517), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [103757] = 5, + [98537] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3548), 1, - anon_sym_RPAREN, - ACTIONS(3141), 2, + ACTIONS(3464), 1, + anon_sym_LPAREN, + ACTIONS(3067), 2, sym__ws, sym_comment, - STATE(1426), 3, + STATE(1378), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [103776] = 5, + [98556] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3552), 1, + ACTIONS(3466), 1, anon_sym_RPAREN, - ACTIONS(3550), 2, + ACTIONS(3067), 2, sym__ws, sym_comment, - STATE(1577), 3, + STATE(1378), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [103795] = 5, + [98575] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3554), 1, - anon_sym_RPAREN, - ACTIONS(3141), 2, + ACTIONS(3470), 1, + anon_sym_LPAREN, + ACTIONS(3468), 2, sym__ws, sym_comment, - STATE(1426), 3, + STATE(1520), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [103814] = 5, + [98594] = 8, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(23), 1, + anon_sym_CARET, + ACTIONS(25), 1, + anon_sym_POUND_CARET, + ACTIONS(2811), 1, + aux_sym_sym_lit_token1, + STATE(1162), 1, + sym_meta_lit, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1199), 1, + aux_sym_sym_lit_repeat1, + STATE(1337), 1, + sym__metadata_lit, + [98619] = 5, + ACTIONS(3), 1, + sym_block_comment, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3556), 1, - anon_sym_RPAREN, - ACTIONS(3141), 2, + ACTIONS(3472), 1, + anon_sym_LPAREN, + ACTIONS(3067), 2, sym__ws, sym_comment, - STATE(1426), 3, + STATE(1378), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [103833] = 5, + [98638] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3560), 1, - anon_sym_RPAREN, - ACTIONS(3558), 2, + ACTIONS(3476), 1, + sym_num_lit, + ACTIONS(3474), 2, sym__ws, sym_comment, - STATE(1578), 3, + STATE(1461), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [103852] = 5, + [98657] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3562), 1, - anon_sym_RPAREN, - ACTIONS(3141), 2, + ACTIONS(3478), 1, + sym_num_lit, + ACTIONS(3280), 2, sym__ws, sym_comment, - STATE(1426), 3, + STATE(892), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [103871] = 5, + [98676] = 8, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(23), 1, + anon_sym_CARET, + ACTIONS(25), 1, + anon_sym_POUND_CARET, + ACTIONS(2743), 1, + aux_sym_sym_lit_token1, + STATE(1162), 1, + sym_meta_lit, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1199), 1, + aux_sym_sym_lit_repeat1, + STATE(1337), 1, + sym__metadata_lit, + [98701] = 5, + ACTIONS(3), 1, + sym_block_comment, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3566), 1, + ACTIONS(3480), 1, anon_sym_RPAREN, - ACTIONS(3564), 2, + ACTIONS(3067), 2, sym__ws, sym_comment, - STATE(1579), 3, + STATE(1378), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [103890] = 5, + [98720] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3570), 1, + ACTIONS(3484), 1, anon_sym_RPAREN, - ACTIONS(3568), 2, + ACTIONS(3482), 2, sym__ws, sym_comment, - STATE(1580), 3, + STATE(1645), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [103909] = 5, + [98739] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3572), 1, - anon_sym_RPAREN, - ACTIONS(3141), 2, + ACTIONS(3488), 1, + anon_sym_LPAREN, + ACTIONS(3486), 2, sym__ws, sym_comment, - STATE(1426), 3, + STATE(1524), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [103928] = 5, + [98758] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3574), 1, - anon_sym_RPAREN, - ACTIONS(3141), 2, + ACTIONS(3490), 1, + sym_num_lit, + ACTIONS(3280), 2, sym__ws, sym_comment, - STATE(1426), 3, + STATE(892), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [103947] = 5, + [98777] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3576), 1, - anon_sym_RPAREN, - ACTIONS(3141), 2, + ACTIONS(3494), 1, + sym_num_lit, + ACTIONS(3492), 2, sym__ws, sym_comment, - STATE(1426), 3, + STATE(1531), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [103966] = 5, + [98796] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3578), 1, + ACTIONS(3496), 1, anon_sym_RPAREN, - ACTIONS(3141), 2, + ACTIONS(3067), 2, sym__ws, sym_comment, - STATE(1426), 3, + STATE(1378), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [103985] = 5, + [98815] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3582), 1, - anon_sym_RPAREN, - ACTIONS(3580), 2, + ACTIONS(3498), 1, + sym_num_lit, + ACTIONS(3280), 2, sym__ws, sym_comment, - STATE(1582), 3, + STATE(892), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [104004] = 5, + [98834] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3584), 1, - anon_sym_RPAREN, - ACTIONS(3141), 2, + ACTIONS(3500), 1, + sym_num_lit, + ACTIONS(3280), 2, sym__ws, sym_comment, - STATE(1426), 3, + STATE(892), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [104023] = 5, + [98853] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3586), 1, - anon_sym_RPAREN, - ACTIONS(3141), 2, + ACTIONS(3502), 1, + sym_num_lit, + ACTIONS(3280), 2, sym__ws, sym_comment, - STATE(1426), 3, + STATE(892), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [104042] = 5, + [98872] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3588), 1, - anon_sym_RPAREN, - ACTIONS(3141), 2, + ACTIONS(3506), 1, + sym_num_lit, + ACTIONS(3504), 2, sym__ws, sym_comment, - STATE(1426), 3, + STATE(1473), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [104061] = 5, + [98891] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3492), 1, + ACTIONS(3508), 1, sym_num_lit, - ACTIONS(3470), 2, + ACTIONS(3280), 2, sym__ws, sym_comment, - STATE(930), 3, + STATE(892), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [104080] = 5, + [98910] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3590), 1, + ACTIONS(3512), 1, anon_sym_RPAREN, - ACTIONS(3141), 2, + ACTIONS(3510), 2, sym__ws, sym_comment, - STATE(1426), 3, + STATE(1447), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [104099] = 5, + [98929] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3594), 1, - sym_num_lit, - ACTIONS(3592), 2, + ACTIONS(3514), 1, + anon_sym_RPAREN, + ACTIONS(3067), 2, sym__ws, sym_comment, - STATE(1585), 3, + STATE(1378), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [104118] = 5, + [98948] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3596), 1, + ACTIONS(3518), 1, sym_num_lit, - ACTIONS(3470), 2, + ACTIONS(3516), 2, sym__ws, sym_comment, - STATE(930), 3, + STATE(1535), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [104137] = 5, + [98967] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3598), 1, + ACTIONS(3522), 1, anon_sym_RPAREN, - ACTIONS(3141), 2, + ACTIONS(3520), 2, sym__ws, sym_comment, - STATE(1426), 3, + STATE(1518), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [104156] = 5, + [98986] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3602), 1, + ACTIONS(3526), 1, anon_sym_RPAREN, - ACTIONS(3600), 2, + ACTIONS(3524), 2, sym__ws, sym_comment, - STATE(1584), 3, + STATE(1546), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [104175] = 5, + [99005] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3606), 1, + ACTIONS(3530), 1, sym_num_lit, - ACTIONS(3604), 2, + ACTIONS(3528), 2, sym__ws, sym_comment, - STATE(1588), 3, + STATE(1536), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [104194] = 5, + [99024] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3608), 1, - anon_sym_RPAREN, - ACTIONS(3141), 2, + ACTIONS(3530), 1, + sym_num_lit, + ACTIONS(3280), 2, sym__ws, sym_comment, - STATE(1426), 3, + STATE(892), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [104213] = 5, + [99043] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3610), 1, + ACTIONS(3532), 1, anon_sym_RPAREN, - ACTIONS(3141), 2, + ACTIONS(3067), 2, sym__ws, sym_comment, - STATE(1426), 3, + STATE(1378), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [104232] = 5, + [99062] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3614), 1, - anon_sym_RPAREN, - ACTIONS(3612), 2, + ACTIONS(3536), 1, + sym_num_lit, + ACTIONS(3534), 2, sym__ws, sym_comment, - STATE(1554), 3, + STATE(1545), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [104251] = 5, + [99081] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3616), 1, - anon_sym_RPAREN, - ACTIONS(3141), 2, + ACTIONS(3538), 1, + sym_num_lit, + ACTIONS(3280), 2, sym__ws, sym_comment, - STATE(1426), 3, + STATE(892), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [104270] = 5, + [99100] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3618), 1, - sym_num_lit, - ACTIONS(3470), 2, + ACTIONS(3542), 1, + anon_sym_RPAREN, + ACTIONS(3540), 2, sym__ws, sym_comment, - STATE(930), 3, + STATE(1648), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [104289] = 5, + [99119] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3622), 1, + ACTIONS(3546), 1, anon_sym_RPAREN, - ACTIONS(3620), 2, + ACTIONS(3544), 2, sym__ws, sym_comment, - STATE(1592), 3, + STATE(1551), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [104308] = 5, + [99138] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3626), 1, + ACTIONS(3548), 1, anon_sym_RPAREN, - ACTIONS(3624), 2, + ACTIONS(3067), 2, sym__ws, sym_comment, - STATE(1583), 3, + STATE(1378), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [104327] = 5, + [99157] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3628), 1, + ACTIONS(3552), 1, anon_sym_RPAREN, - ACTIONS(3141), 2, + ACTIONS(3550), 2, sym__ws, sym_comment, - STATE(1426), 3, + STATE(1555), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [104346] = 5, + [99176] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3630), 1, - sym_num_lit, - ACTIONS(3470), 2, + ACTIONS(3556), 1, + anon_sym_RPAREN, + ACTIONS(3554), 2, sym__ws, sym_comment, - STATE(930), 3, + STATE(1556), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [104365] = 5, + [99195] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3632), 1, - sym_num_lit, - ACTIONS(3470), 2, + ACTIONS(3560), 1, + anon_sym_RPAREN, + ACTIONS(3558), 2, sym__ws, sym_comment, - STATE(930), 3, + STATE(1559), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [104384] = 8, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(19), 1, - anon_sym_CARET, - ACTIONS(21), 1, - anon_sym_POUND_CARET, - ACTIONS(2859), 1, - aux_sym_sym_lit_token1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, - sym_meta_lit, - STATE(1241), 1, - aux_sym_sym_lit_repeat1, - STATE(1369), 1, - sym__metadata_lit, - [104409] = 5, + [99214] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3634), 1, + ACTIONS(3562), 1, anon_sym_RPAREN, - ACTIONS(3141), 2, + ACTIONS(3067), 2, sym__ws, sym_comment, - STATE(1426), 3, + STATE(1378), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [104428] = 5, + [99233] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3636), 1, + ACTIONS(3564), 1, anon_sym_RPAREN, - ACTIONS(3141), 2, + ACTIONS(3067), 2, sym__ws, sym_comment, - STATE(1426), 3, + STATE(1378), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [104447] = 5, + [99252] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3640), 1, - sym_num_lit, - ACTIONS(3638), 2, + ACTIONS(3568), 1, + anon_sym_RPAREN, + ACTIONS(3566), 2, sym__ws, sym_comment, - STATE(1658), 3, + STATE(1649), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [104466] = 5, + [99271] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3644), 1, - sym_num_lit, - ACTIONS(3642), 2, + ACTIONS(3572), 1, + anon_sym_RPAREN, + ACTIONS(3570), 2, sym__ws, sym_comment, - STATE(1600), 3, + STATE(1564), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [104485] = 5, + [99290] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3648), 1, - sym_num_lit, - ACTIONS(3646), 2, + ACTIONS(3574), 1, + anon_sym_RPAREN, + ACTIONS(3067), 2, sym__ws, sym_comment, - STATE(1601), 3, + STATE(1378), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [104504] = 5, + [99309] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3650), 1, + ACTIONS(3578), 1, anon_sym_RPAREN, - ACTIONS(3141), 2, + ACTIONS(3576), 2, sym__ws, sym_comment, - STATE(1426), 3, + STATE(1566), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [104523] = 5, + [99328] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3654), 1, + ACTIONS(3582), 1, anon_sym_RPAREN, - ACTIONS(3652), 2, + ACTIONS(3580), 2, sym__ws, sym_comment, - STATE(1458), 3, + STATE(1567), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [104542] = 5, + [99347] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3656), 1, + ACTIONS(3586), 1, anon_sym_RPAREN, - ACTIONS(3141), 2, + ACTIONS(3584), 2, sym__ws, sym_comment, - STATE(1426), 3, + STATE(1569), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [104561] = 5, + [99366] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3658), 1, - anon_sym_RPAREN, - ACTIONS(3141), 2, + ACTIONS(3590), 1, + sym_num_lit, + ACTIONS(3588), 2, sym__ws, sym_comment, - STATE(1426), 3, + STATE(1548), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [104580] = 5, + [99385] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3662), 1, + ACTIONS(3592), 1, anon_sym_RPAREN, - ACTIONS(3660), 2, + ACTIONS(3067), 2, sym__ws, sym_comment, - STATE(1595), 3, + STATE(1378), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [104599] = 5, + [99404] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3664), 1, + ACTIONS(3596), 1, anon_sym_RPAREN, - ACTIONS(3141), 2, + ACTIONS(3594), 2, sym__ws, sym_comment, - STATE(1426), 3, + STATE(1572), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [104618] = 5, + [99423] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3666), 1, + ACTIONS(3598), 1, anon_sym_RPAREN, - ACTIONS(3141), 2, + ACTIONS(3067), 2, sym__ws, sym_comment, - STATE(1426), 3, + STATE(1378), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [104637] = 5, + [99442] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3648), 1, - sym_num_lit, - ACTIONS(3470), 2, + ACTIONS(3600), 1, + anon_sym_RPAREN, + ACTIONS(3067), 2, sym__ws, sym_comment, - STATE(930), 3, + STATE(1378), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [104656] = 5, + [99461] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3670), 1, - sym_num_lit, - ACTIONS(3668), 2, + ACTIONS(3604), 1, + anon_sym_RPAREN, + ACTIONS(3602), 2, sym__ws, sym_comment, - STATE(1615), 3, + STATE(1573), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [104675] = 5, + [99480] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3674), 1, - sym_num_lit, - ACTIONS(3672), 2, + ACTIONS(3606), 1, + anon_sym_RPAREN, + ACTIONS(3067), 2, sym__ws, sym_comment, - STATE(1596), 3, + STATE(1378), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [104694] = 5, + [99499] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3676), 1, - sym_num_lit, - ACTIONS(3470), 2, + ACTIONS(3610), 1, + anon_sym_RPAREN, + ACTIONS(3608), 2, sym__ws, sym_comment, - STATE(930), 3, + STATE(1574), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [104713] = 5, + [99518] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3680), 1, + ACTIONS(3614), 1, anon_sym_RPAREN, - ACTIONS(3678), 2, + ACTIONS(3612), 2, sym__ws, sym_comment, - STATE(1608), 3, + STATE(1575), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [104732] = 5, + [99537] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3682), 1, - sym_num_lit, - ACTIONS(3470), 2, + ACTIONS(3616), 1, + anon_sym_RPAREN, + ACTIONS(3067), 2, sym__ws, sym_comment, - STATE(930), 3, + STATE(1378), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [104751] = 5, + [99556] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3686), 1, + ACTIONS(3618), 1, anon_sym_RPAREN, - ACTIONS(3684), 2, + ACTIONS(3067), 2, sym__ws, sym_comment, - STATE(1622), 3, + STATE(1378), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [104770] = 5, + [99575] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3688), 1, + ACTIONS(3620), 1, anon_sym_RPAREN, - ACTIONS(3141), 2, + ACTIONS(3067), 2, sym__ws, sym_comment, - STATE(1426), 3, + STATE(1378), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [104789] = 5, + [99594] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3692), 1, + ACTIONS(3622), 1, anon_sym_RPAREN, - ACTIONS(3690), 2, + ACTIONS(3067), 2, sym__ws, sym_comment, - STATE(1626), 3, + STATE(1378), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [104808] = 5, + [99613] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3696), 1, + ACTIONS(3626), 1, anon_sym_RPAREN, - ACTIONS(3694), 2, + ACTIONS(3624), 2, sym__ws, sym_comment, - STATE(1627), 3, + STATE(1577), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [104827] = 5, + [99632] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3700), 1, + ACTIONS(3628), 1, anon_sym_RPAREN, - ACTIONS(3698), 2, + ACTIONS(3067), 2, sym__ws, sym_comment, - STATE(1630), 3, + STATE(1378), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [104846] = 5, + [99651] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3702), 1, - anon_sym_RPAREN, - ACTIONS(3141), 2, + ACTIONS(3630), 1, + sym_num_lit, + ACTIONS(3280), 2, sym__ws, sym_comment, - STATE(1426), 3, + STATE(892), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [104865] = 5, + [99670] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3704), 1, - anon_sym_RPAREN, - ACTIONS(3141), 2, + ACTIONS(3632), 1, + sym_num_lit, + ACTIONS(3280), 2, sym__ws, sym_comment, - STATE(1426), 3, + STATE(892), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [104884] = 5, + [99689] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3708), 1, - anon_sym_RPAREN, - ACTIONS(3706), 2, + ACTIONS(3636), 1, + sym_num_lit, + ACTIONS(3634), 2, sym__ws, sym_comment, - STATE(1634), 3, + STATE(1526), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [104903] = 5, + [99708] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3712), 1, - anon_sym_RPAREN, - ACTIONS(3710), 2, + ACTIONS(3638), 1, + sym_num_lit, + ACTIONS(3280), 2, sym__ws, sym_comment, - STATE(1635), 3, + STATE(892), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [104922] = 5, + [99727] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3714), 1, - anon_sym_RPAREN, - ACTIONS(3141), 2, + ACTIONS(3642), 1, + sym_num_lit, + ACTIONS(3640), 2, sym__ws, sym_comment, - STATE(1426), 3, + STATE(1578), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [104941] = 5, + [99746] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3718), 1, - anon_sym_RPAREN, - ACTIONS(3716), 2, + ACTIONS(3646), 1, + sym_num_lit, + ACTIONS(3644), 2, sym__ws, sym_comment, - STATE(1637), 3, + STATE(1581), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [104960] = 5, + [99765] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3722), 1, - anon_sym_RPAREN, - ACTIONS(3720), 2, + ACTIONS(3646), 1, + sym_num_lit, + ACTIONS(3280), 2, sym__ws, sym_comment, - STATE(1638), 3, + STATE(892), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [104979] = 5, + [99784] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3726), 1, + ACTIONS(3650), 1, anon_sym_RPAREN, - ACTIONS(3724), 2, + ACTIONS(3648), 2, sym__ws, sym_comment, - STATE(1640), 3, + STATE(1606), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [104998] = 5, + [99803] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3728), 1, + ACTIONS(3654), 1, anon_sym_RPAREN, - ACTIONS(3141), 2, + ACTIONS(3652), 2, sym__ws, sym_comment, - STATE(1426), 3, + STATE(1661), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [105017] = 5, + [99822] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3730), 1, - anon_sym_RPAREN, - ACTIONS(3141), 2, + ACTIONS(3658), 1, + sym_num_lit, + ACTIONS(3656), 2, sym__ws, sym_comment, - STATE(1426), 3, + STATE(1584), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [105036] = 5, + [99841] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3734), 1, - anon_sym_RPAREN, - ACTIONS(3732), 2, + ACTIONS(3660), 1, + sym_num_lit, + ACTIONS(3280), 2, sym__ws, sym_comment, - STATE(1643), 3, + STATE(892), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [105055] = 5, + [99860] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3736), 1, - anon_sym_RPAREN, - ACTIONS(3141), 2, + ACTIONS(3664), 1, + sym_num_lit, + ACTIONS(3662), 2, sym__ws, sym_comment, - STATE(1426), 3, + STATE(1588), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [105074] = 5, + [99879] = 8, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(23), 1, + anon_sym_CARET, + ACTIONS(25), 1, + anon_sym_POUND_CARET, + ACTIONS(2833), 1, + aux_sym_sym_lit_token1, + STATE(1162), 1, + sym_meta_lit, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1199), 1, + aux_sym_sym_lit_repeat1, + STATE(1337), 1, + sym__metadata_lit, + [99904] = 5, + ACTIONS(3), 1, + sym_block_comment, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3738), 1, - anon_sym_RPAREN, - ACTIONS(3141), 2, + ACTIONS(3668), 1, + sym_num_lit, + ACTIONS(3666), 2, sym__ws, sym_comment, - STATE(1426), 3, + STATE(1534), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [105093] = 5, + [99923] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3742), 1, - anon_sym_RPAREN, - ACTIONS(3740), 2, + ACTIONS(3668), 1, + sym_num_lit, + ACTIONS(3280), 2, sym__ws, sym_comment, - STATE(1644), 3, + STATE(892), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [105112] = 5, + [99942] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3744), 1, - anon_sym_RPAREN, - ACTIONS(3141), 2, + ACTIONS(3672), 1, + sym_num_lit, + ACTIONS(3670), 2, sym__ws, sym_comment, - STATE(1426), 3, + STATE(1538), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [105131] = 5, + [99961] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3748), 1, - anon_sym_RPAREN, - ACTIONS(3746), 2, + ACTIONS(3674), 1, + sym_num_lit, + ACTIONS(3280), 2, sym__ws, sym_comment, - STATE(1645), 3, + STATE(892), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [105150] = 5, + [99980] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3752), 1, - anon_sym_RPAREN, - ACTIONS(3750), 2, + ACTIONS(3676), 1, + sym_num_lit, + ACTIONS(3280), 2, sym__ws, sym_comment, - STATE(1646), 3, + STATE(892), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [105169] = 5, + [99999] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3754), 1, - anon_sym_RPAREN, - ACTIONS(3141), 2, + ACTIONS(3680), 1, + sym_num_lit, + ACTIONS(3678), 2, sym__ws, sym_comment, - STATE(1426), 3, + STATE(1675), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [105188] = 5, + [100018] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3756), 1, - anon_sym_RPAREN, - ACTIONS(3141), 2, + ACTIONS(3682), 1, + sym_num_lit, + ACTIONS(3280), 2, sym__ws, sym_comment, - STATE(1426), 3, + STATE(892), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [105207] = 5, + [100037] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3758), 1, - anon_sym_RPAREN, - ACTIONS(3141), 2, + ACTIONS(3686), 1, + sym_num_lit, + ACTIONS(3684), 2, sym__ws, sym_comment, - STATE(1426), 3, + STATE(1594), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [105226] = 5, + [100056] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3760), 1, - anon_sym_RPAREN, - ACTIONS(3141), 2, + ACTIONS(3690), 1, + sym_num_lit, + ACTIONS(3688), 2, sym__ws, sym_comment, - STATE(1426), 3, + STATE(1597), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [105245] = 5, + [100075] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3764), 1, - anon_sym_RPAREN, - ACTIONS(3762), 2, + ACTIONS(3690), 1, + sym_num_lit, + ACTIONS(3280), 2, sym__ws, sym_comment, - STATE(1648), 3, + STATE(892), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [105264] = 5, + [100094] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3766), 1, - anon_sym_RPAREN, - ACTIONS(3141), 2, + ACTIONS(3694), 1, + sym_num_lit, + ACTIONS(3692), 2, sym__ws, sym_comment, - STATE(1426), 3, + STATE(1600), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [105283] = 5, + [100113] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3770), 1, - anon_sym_RPAREN, - ACTIONS(3768), 2, + ACTIONS(3696), 1, + sym_num_lit, + ACTIONS(3280), 2, sym__ws, sym_comment, - STATE(1610), 3, + STATE(892), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [105302] = 5, + [100132] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3774), 1, - anon_sym_RPAREN, - ACTIONS(3772), 2, + ACTIONS(3700), 1, + sym_num_lit, + ACTIONS(3698), 2, sym__ws, sym_comment, - STATE(1611), 3, + STATE(1602), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [105321] = 5, + [100151] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3776), 1, + ACTIONS(3702), 1, sym_num_lit, - ACTIONS(3470), 2, + ACTIONS(3280), 2, sym__ws, sym_comment, - STATE(930), 3, + STATE(892), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [105340] = 5, + [100170] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3778), 1, - anon_sym_RPAREN, - ACTIONS(3141), 2, + ACTIONS(3704), 1, + sym_num_lit, + ACTIONS(3280), 2, sym__ws, sym_comment, - STATE(1426), 3, + STATE(892), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [105359] = 5, + [100189] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3782), 1, - sym_num_lit, - ACTIONS(3780), 2, + ACTIONS(3706), 1, + anon_sym_RPAREN, + ACTIONS(3067), 2, sym__ws, sym_comment, - STATE(1651), 3, + STATE(1378), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [105378] = 5, + [100208] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3784), 1, + ACTIONS(3710), 1, sym_num_lit, - ACTIONS(3470), 2, + ACTIONS(3708), 2, sym__ws, sym_comment, - STATE(930), 3, + STATE(1604), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [105397] = 5, + [100227] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3788), 1, - anon_sym_RPAREN, - ACTIONS(3786), 2, + ACTIONS(3714), 1, + sym_num_lit, + ACTIONS(3712), 2, sym__ws, sym_comment, - STATE(1589), 3, + STATE(1605), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [105416] = 5, + [100246] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3790), 1, - anon_sym_RPAREN, - ACTIONS(3141), 2, + ACTIONS(3714), 1, + sym_num_lit, + ACTIONS(3280), 2, sym__ws, sym_comment, - STATE(1426), 3, + STATE(892), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [105435] = 5, + [100265] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3792), 1, + ACTIONS(3718), 1, sym_num_lit, - ACTIONS(3470), 2, + ACTIONS(3716), 2, sym__ws, sym_comment, - STATE(930), 3, + STATE(1609), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [105454] = 5, + [100284] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3794), 1, + ACTIONS(3720), 1, sym_num_lit, - ACTIONS(3470), 2, + ACTIONS(3280), 2, sym__ws, sym_comment, - STATE(930), 3, + STATE(892), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [105473] = 5, + [100303] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3798), 1, - anon_sym_RPAREN, - ACTIONS(3796), 2, + ACTIONS(3724), 1, + sym_num_lit, + ACTIONS(3722), 2, sym__ws, sym_comment, - STATE(1613), 3, + STATE(1611), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [105492] = 5, + [100322] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3802), 1, + ACTIONS(3726), 1, anon_sym_RPAREN, - ACTIONS(3800), 2, + ACTIONS(3067), 2, sym__ws, sym_comment, - STATE(1614), 3, + STATE(1378), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [105511] = 5, + [100341] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3804), 1, - anon_sym_RPAREN, - ACTIONS(3141), 2, + ACTIONS(3730), 1, + anon_sym_LPAREN, + ACTIONS(3728), 2, sym__ws, sym_comment, - STATE(1426), 3, + STATE(1476), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [105530] = 5, + [100360] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3806), 1, + ACTIONS(3734), 1, anon_sym_RPAREN, - ACTIONS(3141), 2, + ACTIONS(3732), 2, sym__ws, sym_comment, - STATE(1426), 3, + STATE(1521), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [105549] = 5, + [100379] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3810), 1, + ACTIONS(3736), 1, sym_num_lit, - ACTIONS(3808), 2, + ACTIONS(3280), 2, sym__ws, sym_comment, - STATE(1654), 3, + STATE(892), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [105568] = 5, + [100398] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3812), 1, + ACTIONS(3740), 1, anon_sym_RPAREN, - ACTIONS(3141), 2, + ACTIONS(3738), 2, sym__ws, sym_comment, - STATE(1426), 3, + STATE(1618), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [105587] = 5, + [100417] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3814), 1, + ACTIONS(3742), 1, anon_sym_RPAREN, - ACTIONS(3141), 2, + ACTIONS(3067), 2, sym__ws, sym_comment, - STATE(1426), 3, + STATE(1378), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [105606] = 5, + [100436] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3818), 1, - sym_num_lit, - ACTIONS(3816), 2, + ACTIONS(3746), 1, + anon_sym_RPAREN, + ACTIONS(3744), 2, sym__ws, sym_comment, - STATE(1657), 3, + STATE(1622), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [105625] = 5, + [100455] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3818), 1, - sym_num_lit, - ACTIONS(3470), 2, + ACTIONS(3750), 1, + anon_sym_RPAREN, + ACTIONS(3748), 2, sym__ws, sym_comment, - STATE(930), 3, + STATE(1623), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [105644] = 8, + [100474] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(19), 1, - anon_sym_CARET, - ACTIONS(21), 1, - anon_sym_POUND_CARET, - ACTIONS(2837), 1, - aux_sym_sym_lit_token1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, - sym_meta_lit, - STATE(1241), 1, - aux_sym_sym_lit_repeat1, - STATE(1369), 1, - sym__metadata_lit, - [105669] = 5, + ACTIONS(3069), 1, + anon_sym_POUND_, + ACTIONS(3754), 1, + anon_sym_RPAREN, + ACTIONS(3752), 2, + sym__ws, + sym_comment, + STATE(1626), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + [100493] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3822), 1, + ACTIONS(3756), 1, anon_sym_RPAREN, - ACTIONS(3820), 2, + ACTIONS(3067), 2, sym__ws, sym_comment, - STATE(1599), 3, + STATE(1378), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [105688] = 5, + [100512] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3826), 1, + ACTIONS(3758), 1, anon_sym_RPAREN, - ACTIONS(3824), 2, + ACTIONS(3067), 2, sym__ws, sym_comment, - STATE(1604), 3, + STATE(1378), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [105707] = 5, + [100531] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3830), 1, - sym_num_lit, - ACTIONS(3828), 2, + ACTIONS(3762), 1, + anon_sym_RPAREN, + ACTIONS(3760), 2, sym__ws, sym_comment, - STATE(1667), 3, + STATE(1630), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [105726] = 5, + [100550] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3832), 1, - sym_num_lit, - ACTIONS(3470), 2, + ACTIONS(3766), 1, + anon_sym_RPAREN, + ACTIONS(3764), 2, sym__ws, sym_comment, - STATE(930), 3, + STATE(1717), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [105745] = 5, + [100569] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3836), 1, - sym_num_lit, - ACTIONS(3834), 2, + ACTIONS(3768), 1, + anon_sym_RPAREN, + ACTIONS(3067), 2, sym__ws, sym_comment, - STATE(1672), 3, + STATE(1378), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [105764] = 5, + [100588] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3838), 1, - sym_num_lit, - ACTIONS(3470), 2, + ACTIONS(3772), 1, + anon_sym_RPAREN, + ACTIONS(3770), 2, sym__ws, sym_comment, - STATE(930), 3, + STATE(1633), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [105783] = 5, + [100607] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3842), 1, - sym_num_lit, - ACTIONS(3840), 2, + ACTIONS(3776), 1, + anon_sym_RPAREN, + ACTIONS(3774), 2, sym__ws, sym_comment, - STATE(1618), 3, + STATE(1634), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [105802] = 5, + [100626] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3846), 1, - sym_num_lit, - ACTIONS(3844), 2, + ACTIONS(3780), 1, + anon_sym_RPAREN, + ACTIONS(3778), 2, sym__ws, sym_comment, - STATE(1620), 3, + STATE(1636), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [105821] = 5, + [100645] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3848), 1, - sym_num_lit, - ACTIONS(3470), 2, + ACTIONS(3782), 1, + anon_sym_RPAREN, + ACTIONS(3067), 2, sym__ws, sym_comment, - STATE(930), 3, + STATE(1378), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [105840] = 5, + [100664] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3852), 1, + ACTIONS(3784), 1, anon_sym_RPAREN, - ACTIONS(3850), 2, + ACTIONS(3067), 2, sym__ws, sym_comment, - STATE(1656), 3, + STATE(1378), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [105859] = 5, + [100683] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3854), 1, - anon_sym_LPAREN, - ACTIONS(3141), 2, + ACTIONS(3788), 1, + anon_sym_RPAREN, + ACTIONS(3786), 2, sym__ws, sym_comment, - STATE(1426), 3, + STATE(1639), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [105878] = 5, + [100702] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3856), 1, - sym_num_lit, - ACTIONS(3470), 2, + ACTIONS(3790), 1, + anon_sym_RPAREN, + ACTIONS(3067), 2, sym__ws, sym_comment, - STATE(930), 3, + STATE(1378), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [105897] = 5, + [100721] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3858), 1, - sym_num_lit, - ACTIONS(3470), 2, + ACTIONS(3792), 1, + anon_sym_RPAREN, + ACTIONS(3067), 2, sym__ws, sym_comment, - STATE(930), 3, + STATE(1378), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [105916] = 5, + [100740] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3860), 1, - sym_num_lit, - ACTIONS(3470), 2, + ACTIONS(3796), 1, + anon_sym_RPAREN, + ACTIONS(3794), 2, sym__ws, sym_comment, - STATE(930), 3, + STATE(1640), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [105935] = 5, + [100759] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3864), 1, + ACTIONS(3798), 1, anon_sym_RPAREN, - ACTIONS(3862), 2, + ACTIONS(3067), 2, sym__ws, sym_comment, - STATE(1661), 3, + STATE(1378), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [105954] = 5, + [100778] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3868), 1, + ACTIONS(3802), 1, anon_sym_RPAREN, - ACTIONS(3866), 2, + ACTIONS(3800), 2, sym__ws, sym_comment, - STATE(1662), 3, + STATE(1641), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [105973] = 5, + [100797] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3870), 1, + ACTIONS(3806), 1, anon_sym_RPAREN, - ACTIONS(3141), 2, + ACTIONS(3804), 2, sym__ws, sym_comment, - STATE(1426), 3, + STATE(1642), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [105992] = 5, + [100816] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3874), 1, + ACTIONS(3808), 1, anon_sym_RPAREN, - ACTIONS(3872), 2, + ACTIONS(3067), 2, sym__ws, sym_comment, - STATE(1652), 3, + STATE(1378), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [106011] = 5, + [100835] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3878), 1, + ACTIONS(3810), 1, anon_sym_RPAREN, - ACTIONS(3876), 2, + ACTIONS(3067), 2, sym__ws, sym_comment, - STATE(1688), 3, + STATE(1378), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [106030] = 5, + [100854] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3880), 1, + ACTIONS(3812), 1, anon_sym_RPAREN, - ACTIONS(3141), 2, + ACTIONS(3067), 2, sym__ws, sym_comment, - STATE(1426), 3, + STATE(1378), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [106049] = 5, + [100873] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3884), 1, + ACTIONS(3814), 1, anon_sym_RPAREN, - ACTIONS(3882), 2, + ACTIONS(3067), 2, sym__ws, sym_comment, - STATE(1692), 3, + STATE(1378), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [106068] = 5, + [100892] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3888), 1, + ACTIONS(3818), 1, anon_sym_RPAREN, - ACTIONS(3886), 2, + ACTIONS(3816), 2, sym__ws, sym_comment, - STATE(1459), 3, + STATE(1644), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [106087] = 5, + [100911] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3892), 1, + ACTIONS(3820), 1, anon_sym_RPAREN, - ACTIONS(3890), 2, + ACTIONS(3067), 2, sym__ws, sym_comment, - STATE(1696), 3, + STATE(1378), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [106106] = 5, + [100930] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3894), 1, + ACTIONS(3822), 1, anon_sym_RPAREN, - ACTIONS(3141), 2, + ACTIONS(3067), 2, sym__ws, sym_comment, - STATE(1426), 3, + STATE(1378), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [106125] = 5, + [100949] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3898), 1, + ACTIONS(3824), 1, sym_num_lit, - ACTIONS(3896), 2, + ACTIONS(3280), 2, sym__ws, sym_comment, - STATE(1681), 3, + STATE(892), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [106144] = 5, + [100968] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3902), 1, - anon_sym_RPAREN, - ACTIONS(3900), 2, + ACTIONS(3828), 1, + sym_num_lit, + ACTIONS(3826), 2, sym__ws, sym_comment, - STATE(1700), 3, + STATE(1616), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [106163] = 5, + [100987] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3906), 1, + ACTIONS(3830), 1, anon_sym_RPAREN, - ACTIONS(3904), 2, + ACTIONS(3067), 2, sym__ws, sym_comment, - STATE(1701), 3, + STATE(1378), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [106182] = 5, + [101006] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3908), 1, + ACTIONS(3832), 1, anon_sym_RPAREN, - ACTIONS(3141), 2, + ACTIONS(3067), 2, sym__ws, sym_comment, - STATE(1426), 3, + STATE(1378), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [106201] = 5, + [101025] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3912), 1, - anon_sym_RPAREN, - ACTIONS(3910), 2, + ACTIONS(3834), 1, + sym_num_lit, + ACTIONS(3280), 2, sym__ws, sym_comment, - STATE(1703), 3, + STATE(892), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [106220] = 5, + [101044] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3916), 1, - anon_sym_RPAREN, - ACTIONS(3914), 2, + ACTIONS(3838), 1, + sym_num_lit, + ACTIONS(3836), 2, sym__ws, sym_comment, - STATE(1704), 3, + STATE(1470), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [106239] = 5, + [101063] = 8, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3012), 1, + anon_sym_LPAREN, + ACTIONS(3840), 1, + anon_sym_CARET, + ACTIONS(3843), 1, + anon_sym_POUND_CARET, + STATE(1337), 1, + sym__metadata_lit, + STATE(1389), 1, + sym_old_meta_lit, + STATE(1407), 1, + sym_meta_lit, + STATE(1652), 1, + aux_sym_sym_lit_repeat1, + [101088] = 5, + ACTIONS(3), 1, + sym_block_comment, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3920), 1, - anon_sym_RPAREN, - ACTIONS(3918), 2, + ACTIONS(3848), 1, + sym_num_lit, + ACTIONS(3846), 2, sym__ws, sym_comment, - STATE(1706), 3, + STATE(1646), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [106258] = 5, + [101107] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3922), 1, - anon_sym_RPAREN, - ACTIONS(3141), 2, + ACTIONS(3848), 1, + sym_num_lit, + ACTIONS(3280), 2, sym__ws, sym_comment, - STATE(1426), 3, + STATE(892), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [106277] = 5, + [101126] = 8, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(23), 1, + anon_sym_CARET, + ACTIONS(25), 1, + anon_sym_POUND_CARET, + ACTIONS(2721), 1, + aux_sym_sym_lit_token1, + STATE(1162), 1, + sym_meta_lit, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1199), 1, + aux_sym_sym_lit_repeat1, + STATE(1337), 1, + sym__metadata_lit, + [101151] = 8, + ACTIONS(3), 1, + sym_block_comment, + ACTIONS(23), 1, + anon_sym_CARET, + ACTIONS(25), 1, + anon_sym_POUND_CARET, + ACTIONS(2858), 1, + aux_sym_sym_lit_token1, + STATE(1162), 1, + sym_meta_lit, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1199), 1, + aux_sym_sym_lit_repeat1, + STATE(1337), 1, + sym__metadata_lit, + [101176] = 5, + ACTIONS(3), 1, + sym_block_comment, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3924), 1, + ACTIONS(3852), 1, anon_sym_RPAREN, - ACTIONS(3141), 2, + ACTIONS(3850), 2, sym__ws, sym_comment, - STATE(1426), 3, + STATE(1533), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [106296] = 5, + [101195] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3928), 1, - anon_sym_RPAREN, - ACTIONS(3926), 2, + ACTIONS(3854), 1, + anon_sym_LPAREN, + ACTIONS(3067), 2, sym__ws, sym_comment, - STATE(1709), 3, + STATE(1378), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [106315] = 5, + [101214] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3930), 1, - anon_sym_RPAREN, - ACTIONS(3141), 2, + ACTIONS(3858), 1, + sym_num_lit, + ACTIONS(3856), 2, sym__ws, sym_comment, - STATE(1426), 3, + STATE(1592), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [106334] = 5, + [101233] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3932), 1, - anon_sym_RPAREN, - ACTIONS(3141), 2, + ACTIONS(3862), 1, + sym_num_lit, + ACTIONS(3860), 2, sym__ws, sym_comment, - STATE(1426), 3, + STATE(1654), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [106353] = 5, + [101252] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3936), 1, + ACTIONS(3864), 1, anon_sym_RPAREN, - ACTIONS(3934), 2, + ACTIONS(3067), 2, sym__ws, sym_comment, - STATE(1710), 3, + STATE(1378), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [106372] = 5, + [101271] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3938), 1, - anon_sym_RPAREN, - ACTIONS(3141), 2, + ACTIONS(3866), 1, + sym_num_lit, + ACTIONS(3280), 2, sym__ws, sym_comment, - STATE(1426), 3, + STATE(892), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [106391] = 5, + [101290] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3942), 1, - anon_sym_RPAREN, - ACTIONS(3940), 2, + ACTIONS(3870), 1, + sym_num_lit, + ACTIONS(3868), 2, sym__ws, sym_comment, - STATE(1711), 3, + STATE(1662), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [106410] = 5, + [101309] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3946), 1, - anon_sym_RPAREN, - ACTIONS(3944), 2, + ACTIONS(3872), 1, + sym_num_lit, + ACTIONS(3280), 2, sym__ws, sym_comment, - STATE(1712), 3, + STATE(892), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [106429] = 5, + [101328] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3948), 1, + ACTIONS(3876), 1, anon_sym_RPAREN, - ACTIONS(3141), 2, + ACTIONS(3874), 2, sym__ws, sym_comment, - STATE(1426), 3, + STATE(1540), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [106448] = 5, + [101347] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3950), 1, - anon_sym_RPAREN, - ACTIONS(3141), 2, + ACTIONS(3878), 1, + sym_num_lit, + ACTIONS(3280), 2, sym__ws, sym_comment, - STATE(1426), 3, + STATE(892), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [106467] = 5, + [101366] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3952), 1, - anon_sym_RPAREN, - ACTIONS(3141), 2, + ACTIONS(3882), 1, + sym_num_lit, + ACTIONS(3880), 2, sym__ws, sym_comment, - STATE(1426), 3, + STATE(1664), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [106486] = 5, + [101385] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3954), 1, - anon_sym_RPAREN, - ACTIONS(3141), 2, + ACTIONS(3886), 1, + sym_num_lit, + ACTIONS(3884), 2, sym__ws, sym_comment, - STATE(1426), 3, + STATE(1666), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [106505] = 5, + [101404] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3958), 1, - anon_sym_RPAREN, - ACTIONS(3956), 2, + ACTIONS(3886), 1, + sym_num_lit, + ACTIONS(3280), 2, sym__ws, sym_comment, - STATE(1714), 3, + STATE(892), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [106524] = 5, + [101423] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3960), 1, + ACTIONS(3888), 1, anon_sym_RPAREN, - ACTIONS(3141), 2, + ACTIONS(3067), 2, sym__ws, sym_comment, - STATE(1426), 3, + STATE(1378), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [106543] = 5, + [101442] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3964), 1, + ACTIONS(3892), 1, sym_num_lit, - ACTIONS(3962), 2, + ACTIONS(3890), 2, sym__ws, sym_comment, - STATE(1682), 3, + STATE(1669), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [106562] = 5, + [101461] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3964), 1, + ACTIONS(3894), 1, sym_num_lit, - ACTIONS(3470), 2, + ACTIONS(3280), 2, sym__ws, sym_comment, - STATE(930), 3, + STATE(892), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [106581] = 5, + [101480] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3966), 1, + ACTIONS(3898), 1, + sym_num_lit, + ACTIONS(3896), 2, + sym__ws, + sym_comment, + STATE(1672), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + [101499] = 5, + ACTIONS(3), 1, + sym_block_comment, + ACTIONS(3069), 1, + anon_sym_POUND_, + ACTIONS(3902), 1, anon_sym_RPAREN, - ACTIONS(3141), 2, + ACTIONS(3900), 2, sym__ws, sym_comment, - STATE(1426), 3, + STATE(1450), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [106600] = 5, + [101518] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3970), 1, + ACTIONS(3904), 1, sym_num_lit, - ACTIONS(3968), 2, + ACTIONS(3280), 2, sym__ws, sym_comment, - STATE(1716), 3, + STATE(892), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [106619] = 5, + [101537] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3972), 1, + ACTIONS(3906), 1, sym_num_lit, - ACTIONS(3470), 2, + ACTIONS(3280), 2, sym__ws, sym_comment, - STATE(930), 3, + STATE(892), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [106638] = 5, + [101556] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3976), 1, + ACTIONS(3908), 1, sym_num_lit, - ACTIONS(3974), 2, + ACTIONS(3280), 2, sym__ws, sym_comment, - STATE(1674), 3, + STATE(892), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [106657] = 5, + [101575] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3978), 1, + ACTIONS(3910), 1, sym_num_lit, - ACTIONS(3470), 2, + ACTIONS(3280), 2, sym__ws, sym_comment, - STATE(930), 3, + STATE(892), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [106676] = 5, + [101594] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3982), 1, + ACTIONS(3912), 1, anon_sym_RPAREN, - ACTIONS(3980), 2, + ACTIONS(3067), 2, sym__ws, sym_comment, - STATE(1664), 3, + STATE(1378), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [106695] = 5, + [101613] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3986), 1, - sym_num_lit, - ACTIONS(3984), 2, + ACTIONS(3916), 1, + anon_sym_RPAREN, + ACTIONS(3914), 2, sym__ws, sym_comment, - STATE(1677), 3, + STATE(1679), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [106714] = 5, + [101632] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3988), 1, - sym_num_lit, - ACTIONS(3470), 2, + ACTIONS(3918), 1, + anon_sym_RPAREN, + ACTIONS(3067), 2, sym__ws, sym_comment, - STATE(930), 3, + STATE(1378), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [106733] = 5, + [101651] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3992), 1, - sym_num_lit, - ACTIONS(3990), 2, + ACTIONS(3920), 1, + anon_sym_RPAREN, + ACTIONS(3067), 2, sym__ws, sym_comment, - STATE(1680), 3, + STATE(1378), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [106752] = 5, + [101670] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3994), 1, - sym_num_lit, - ACTIONS(3470), 2, + ACTIONS(3924), 1, + anon_sym_RPAREN, + ACTIONS(3922), 2, sym__ws, sym_comment, - STATE(930), 3, + STATE(1684), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [106771] = 5, + [101689] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(3998), 1, + ACTIONS(3926), 1, anon_sym_RPAREN, - ACTIONS(3996), 2, + ACTIONS(3067), 2, sym__ws, sym_comment, - STATE(1685), 3, + STATE(1378), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [106790] = 5, + [101708] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(4002), 1, + ACTIONS(3930), 1, anon_sym_RPAREN, - ACTIONS(4000), 2, + ACTIONS(3928), 2, sym__ws, sym_comment, - STATE(1665), 3, + STATE(1688), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [106809] = 5, + [101727] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(4004), 1, + ACTIONS(3934), 1, anon_sym_RPAREN, - ACTIONS(3141), 2, + ACTIONS(3932), 2, sym__ws, sym_comment, - STATE(1426), 3, + STATE(1689), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [106828] = 5, + [101746] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(4008), 1, - sym_num_lit, - ACTIONS(4006), 2, + ACTIONS(3938), 1, + anon_sym_RPAREN, + ACTIONS(3936), 2, sym__ws, sym_comment, - STATE(1719), 3, + STATE(1692), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [106847] = 5, + [101765] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(4010), 1, - sym_num_lit, - ACTIONS(3470), 2, + ACTIONS(3940), 1, + anon_sym_RPAREN, + ACTIONS(3067), 2, sym__ws, sym_comment, - STATE(930), 3, + STATE(1378), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [106866] = 5, + [101784] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(4014), 1, - sym_num_lit, - ACTIONS(4012), 2, + ACTIONS(3942), 1, + anon_sym_RPAREN, + ACTIONS(3067), 2, sym__ws, sym_comment, - STATE(1721), 3, + STATE(1378), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [106885] = 5, + [101803] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(4016), 1, - sym_num_lit, - ACTIONS(3470), 2, + ACTIONS(3946), 1, + anon_sym_RPAREN, + ACTIONS(3944), 2, sym__ws, sym_comment, - STATE(930), 3, + STATE(1696), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [106904] = 5, + [101822] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(4020), 1, - sym_num_lit, - ACTIONS(4018), 2, + ACTIONS(3950), 1, + anon_sym_RPAREN, + ACTIONS(3948), 2, sym__ws, sym_comment, - STATE(1731), 3, + STATE(1697), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [106923] = 5, + [101841] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(4024), 1, - sym_num_lit, - ACTIONS(4022), 2, + ACTIONS(3952), 1, + anon_sym_RPAREN, + ACTIONS(3067), 2, sym__ws, sym_comment, - STATE(1724), 3, + STATE(1378), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [106942] = 5, + [101860] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(4028), 1, - sym_num_lit, - ACTIONS(4026), 2, + ACTIONS(3956), 1, + anon_sym_RPAREN, + ACTIONS(3954), 2, sym__ws, sym_comment, - STATE(1733), 3, + STATE(1699), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [106961] = 5, + [101879] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(4024), 1, - sym_num_lit, - ACTIONS(3470), 2, + ACTIONS(3960), 1, + anon_sym_RPAREN, + ACTIONS(3958), 2, sym__ws, sym_comment, - STATE(930), 3, + STATE(1700), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [106980] = 5, + [101898] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(4032), 1, - sym_num_lit, - ACTIONS(4030), 2, + ACTIONS(3964), 1, + anon_sym_RPAREN, + ACTIONS(3962), 2, sym__ws, sym_comment, - STATE(1726), 3, + STATE(1702), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [106999] = 5, + [101917] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(4028), 1, - sym_num_lit, - ACTIONS(3470), 2, + ACTIONS(3966), 1, + anon_sym_RPAREN, + ACTIONS(3067), 2, sym__ws, sym_comment, - STATE(930), 3, + STATE(1378), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [107018] = 5, + [101936] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(4036), 1, + ACTIONS(3968), 1, anon_sym_RPAREN, - ACTIONS(4034), 2, + ACTIONS(3067), 2, sym__ws, sym_comment, - STATE(1717), 3, + STATE(1378), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [107037] = 5, + [101955] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(4040), 1, + ACTIONS(3972), 1, anon_sym_RPAREN, - ACTIONS(4038), 2, + ACTIONS(3970), 2, sym__ws, sym_comment, - STATE(1729), 3, + STATE(1705), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [107056] = 5, + [101974] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(4044), 1, + ACTIONS(3974), 1, anon_sym_RPAREN, - ACTIONS(4042), 2, + ACTIONS(3067), 2, sym__ws, sym_comment, - STATE(1603), 3, + STATE(1378), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [107075] = 5, + [101993] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(4048), 1, - sym_num_lit, - ACTIONS(4046), 2, + ACTIONS(3976), 1, + anon_sym_RPAREN, + ACTIONS(3067), 2, sym__ws, sym_comment, - STATE(1751), 3, + STATE(1378), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [107094] = 5, + [102012] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(4052), 1, - anon_sym_LPAREN, - ACTIONS(4050), 2, + ACTIONS(3980), 1, + anon_sym_RPAREN, + ACTIONS(3978), 2, sym__ws, sym_comment, - STATE(1679), 3, + STATE(1706), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [107113] = 5, + [102031] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(4056), 1, - sym_num_lit, - ACTIONS(4054), 2, + ACTIONS(3982), 1, + anon_sym_RPAREN, + ACTIONS(3067), 2, sym__ws, sym_comment, - STATE(1739), 3, + STATE(1378), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [107132] = 5, + [102050] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(4058), 1, - sym_num_lit, - ACTIONS(3470), 2, + ACTIONS(3986), 1, + anon_sym_RPAREN, + ACTIONS(3984), 2, sym__ws, sym_comment, - STATE(930), 3, + STATE(1707), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [107151] = 5, + [102069] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(4060), 1, + ACTIONS(3990), 1, anon_sym_RPAREN, - ACTIONS(3141), 2, + ACTIONS(3988), 2, sym__ws, sym_comment, - STATE(1426), 3, + STATE(1708), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [107170] = 5, + [102088] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(4064), 1, - sym_num_lit, - ACTIONS(4062), 2, + ACTIONS(3992), 1, + anon_sym_RPAREN, + ACTIONS(3067), 2, sym__ws, sym_comment, - STATE(1746), 3, + STATE(1378), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [107189] = 5, + [102107] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(4066), 1, - anon_sym_LPAREN, - ACTIONS(3141), 2, + ACTIONS(3994), 1, + anon_sym_RPAREN, + ACTIONS(3067), 2, sym__ws, sym_comment, - STATE(1426), 3, + STATE(1378), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [107208] = 5, + [102126] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(4070), 1, - sym_num_lit, - ACTIONS(4068), 2, + ACTIONS(3996), 1, + anon_sym_RPAREN, + ACTIONS(3067), 2, sym__ws, sym_comment, - STATE(1737), 3, + STATE(1378), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [107227] = 5, + [102145] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(4072), 1, - sym_num_lit, - ACTIONS(3470), 2, + ACTIONS(3998), 1, + anon_sym_RPAREN, + ACTIONS(3067), 2, sym__ws, sym_comment, - STATE(930), 3, + STATE(1378), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [107246] = 5, + [102164] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(4076), 1, - sym_num_lit, - ACTIONS(4074), 2, + ACTIONS(4002), 1, + anon_sym_RPAREN, + ACTIONS(4000), 2, sym__ws, sym_comment, - STATE(1758), 3, + STATE(1710), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [107265] = 5, + [102183] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(4080), 1, + ACTIONS(4004), 1, anon_sym_RPAREN, - ACTIONS(4078), 2, + ACTIONS(3067), 2, sym__ws, sym_comment, - STATE(1747), 3, + STATE(1378), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [107284] = 5, + [102202] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(4082), 1, - sym_num_lit, - ACTIONS(3470), 2, + ACTIONS(4006), 1, + anon_sym_RPAREN, + ACTIONS(3067), 2, sym__ws, sym_comment, - STATE(930), 3, + STATE(1378), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [107303] = 5, + [102221] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(4084), 1, - sym_num_lit, - ACTIONS(3470), 2, + ACTIONS(4008), 1, + anon_sym_RPAREN, + ACTIONS(3067), 2, sym__ws, sym_comment, - STATE(930), 3, + STATE(1378), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [107322] = 8, + [102240] = 8, ACTIONS(3), 1, sym_block_comment, - ACTIONS(19), 1, + ACTIONS(23), 1, anon_sym_CARET, - ACTIONS(21), 1, + ACTIONS(25), 1, anon_sym_POUND_CARET, - ACTIONS(2793), 1, + ACTIONS(2767), 1, aux_sym_sym_lit_token1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, + STATE(1162), 1, sym_meta_lit, - STATE(1241), 1, + STATE(1172), 1, + sym_old_meta_lit, + STATE(1199), 1, aux_sym_sym_lit_repeat1, - STATE(1369), 1, + STATE(1337), 1, sym__metadata_lit, - [107347] = 5, + [102265] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(4088), 1, + ACTIONS(4012), 1, sym_num_lit, - ACTIONS(4086), 2, + ACTIONS(4010), 2, sym__ws, sym_comment, - STATE(1762), 3, + STATE(1676), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [107366] = 5, + [102284] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(4090), 1, - sym_num_lit, - ACTIONS(3470), 2, + ACTIONS(4016), 1, + anon_sym_RPAREN, + ACTIONS(4014), 2, sym__ws, sym_comment, - STATE(930), 3, + STATE(1681), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [107385] = 5, + [102303] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(4094), 1, - sym_num_lit, - ACTIONS(4092), 2, + ACTIONS(4020), 1, + anon_sym_RPAREN, + ACTIONS(4018), 2, sym__ws, sym_comment, - STATE(1765), 3, + STATE(1682), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [107404] = 5, + [102322] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(4098), 1, - sym_num_lit, - ACTIONS(4096), 2, + ACTIONS(4022), 1, + anon_sym_RPAREN, + ACTIONS(3067), 2, sym__ws, sym_comment, - STATE(1754), 3, + STATE(1378), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [107423] = 5, + [102341] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(4102), 1, - sym_num_lit, - ACTIONS(4100), 2, + ACTIONS(4026), 1, + anon_sym_RPAREN, + ACTIONS(4024), 2, sym__ws, sym_comment, - STATE(1755), 3, + STATE(1711), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [107442] = 5, + [102360] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(4104), 1, + ACTIONS(4030), 1, sym_num_lit, - ACTIONS(3470), 2, + ACTIONS(4028), 2, sym__ws, sym_comment, - STATE(930), 3, + STATE(1677), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [107461] = 5, + [102379] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(4108), 1, + ACTIONS(4034), 1, sym_num_lit, - ACTIONS(4106), 2, + ACTIONS(4032), 2, sym__ws, sym_comment, - STATE(1766), 3, + STATE(1723), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [107480] = 5, + [102398] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(4112), 1, - sym_num_lit, - ACTIONS(4110), 2, + ACTIONS(4038), 1, + anon_sym_LPAREN, + ACTIONS(4036), 2, sym__ws, sym_comment, - STATE(1767), 3, + STATE(1658), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [107499] = 5, + [102417] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(4114), 1, + ACTIONS(4040), 1, + anon_sym_RPAREN, + ACTIONS(3067), 2, + sym__ws, + sym_comment, + STATE(1378), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + [102436] = 5, + ACTIONS(3), 1, + sym_block_comment, + ACTIONS(3069), 1, + anon_sym_POUND_, + ACTIONS(4042), 1, sym_num_lit, - ACTIONS(3470), 2, + ACTIONS(3280), 2, sym__ws, sym_comment, - STATE(930), 3, + STATE(892), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [107518] = 5, + [102455] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(4116), 1, + ACTIONS(4046), 1, sym_num_lit, - ACTIONS(3470), 2, + ACTIONS(4044), 2, sym__ws, sym_comment, - STATE(930), 3, + STATE(1726), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [107537] = 5, + [102474] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(4118), 1, + ACTIONS(4050), 1, sym_num_lit, - ACTIONS(3470), 2, + ACTIONS(4048), 2, sym__ws, sym_comment, - STATE(930), 3, + STATE(1728), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [107556] = 5, + [102493] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(4122), 1, + ACTIONS(4052), 1, sym_num_lit, - ACTIONS(4120), 2, + ACTIONS(3280), 2, sym__ws, sym_comment, - STATE(1769), 3, + STATE(892), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [107575] = 5, + [102512] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(4124), 1, + ACTIONS(4056), 1, sym_num_lit, - ACTIONS(3470), 2, + ACTIONS(4054), 2, sym__ws, sym_comment, - STATE(930), 3, + STATE(1731), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [107594] = 5, + [102531] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(4102), 1, + ACTIONS(4058), 1, sym_num_lit, - ACTIONS(3470), 2, + ACTIONS(3280), 2, sym__ws, sym_comment, - STATE(930), 3, + STATE(892), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [107613] = 5, + [102550] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(4128), 1, - anon_sym_LPAREN, - ACTIONS(4126), 2, + ACTIONS(4062), 1, + sym_num_lit, + ACTIONS(4060), 2, sym__ws, sym_comment, - STATE(1749), 3, + STATE(1732), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [107632] = 5, + [102569] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(4132), 1, + ACTIONS(4066), 1, sym_num_lit, - ACTIONS(4130), 2, + ACTIONS(4064), 2, sym__ws, sym_comment, - STATE(1773), 3, + STATE(1733), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [107651] = 5, + [102588] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(4134), 1, + ACTIONS(4068), 1, sym_num_lit, - ACTIONS(3470), 2, + ACTIONS(3280), 2, sym__ws, sym_comment, - STATE(930), 3, + STATE(892), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [107670] = 5, + [102607] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(4138), 1, + ACTIONS(4070), 1, sym_num_lit, - ACTIONS(4136), 2, + ACTIONS(3280), 2, sym__ws, sym_comment, - STATE(1776), 3, + STATE(892), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [107689] = 5, + [102626] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(4142), 1, + ACTIONS(4072), 1, sym_num_lit, - ACTIONS(4140), 2, + ACTIONS(3280), 2, sym__ws, sym_comment, - STATE(1778), 3, + STATE(892), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [107708] = 5, + [102645] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(4144), 1, + ACTIONS(4076), 1, sym_num_lit, - ACTIONS(3470), 2, + ACTIONS(4074), 2, sym__ws, sym_comment, - STATE(930), 3, + STATE(1735), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [107727] = 5, + [102664] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(4148), 1, + ACTIONS(4078), 1, sym_num_lit, - ACTIONS(4146), 2, + ACTIONS(3280), 2, sym__ws, sym_comment, - STATE(1781), 3, + STATE(892), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [107746] = 5, + [102683] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(4150), 1, - sym_num_lit, - ACTIONS(3470), 2, + ACTIONS(4080), 1, + anon_sym_RPAREN, + ACTIONS(3067), 2, sym__ws, sym_comment, - STATE(930), 3, + STATE(1378), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [107765] = 5, + [102702] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(4154), 1, + ACTIONS(4082), 1, sym_num_lit, - ACTIONS(4152), 2, + ACTIONS(3280), 2, sym__ws, sym_comment, - STATE(1782), 3, + STATE(892), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [107784] = 5, + [102721] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(4158), 1, + ACTIONS(4084), 1, sym_num_lit, - ACTIONS(4156), 2, + ACTIONS(3280), 2, sym__ws, sym_comment, - STATE(1783), 3, + STATE(892), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [107803] = 5, + [102740] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(4160), 1, + ACTIONS(4088), 1, sym_num_lit, - ACTIONS(3470), 2, + ACTIONS(4086), 2, sym__ws, sym_comment, - STATE(930), 3, + STATE(1741), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [107822] = 5, + [102759] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(4162), 1, + ACTIONS(4092), 1, sym_num_lit, - ACTIONS(3470), 2, + ACTIONS(4090), 2, sym__ws, sym_comment, - STATE(930), 3, + STATE(1743), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [107841] = 5, + [102778] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(4164), 1, + ACTIONS(4094), 1, sym_num_lit, - ACTIONS(3470), 2, + ACTIONS(3280), 2, sym__ws, sym_comment, - STATE(930), 3, + STATE(892), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [107860] = 5, + [102797] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(4168), 1, + ACTIONS(4098), 1, sym_num_lit, - ACTIONS(4166), 2, + ACTIONS(4096), 2, sym__ws, sym_comment, - STATE(1785), 3, + STATE(1746), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [107879] = 5, + [102816] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(4170), 1, + ACTIONS(4100), 1, sym_num_lit, - ACTIONS(3470), 2, + ACTIONS(3280), 2, sym__ws, sym_comment, - STATE(930), 3, + STATE(892), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [107898] = 5, + [102835] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(4174), 1, + ACTIONS(4104), 1, sym_num_lit, - ACTIONS(4172), 2, + ACTIONS(4102), 2, sym__ws, sym_comment, - STATE(1770), 3, + STATE(1747), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [107917] = 5, + [102854] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(4178), 1, + ACTIONS(4108), 1, sym_num_lit, - ACTIONS(4176), 2, + ACTIONS(4106), 2, sym__ws, sym_comment, - STATE(1788), 3, + STATE(1748), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [107936] = 5, + [102873] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(4180), 1, + ACTIONS(4110), 1, sym_num_lit, - ACTIONS(3470), 2, + ACTIONS(3280), 2, sym__ws, sym_comment, - STATE(930), 3, + STATE(892), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [107955] = 5, + [102892] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(4184), 1, + ACTIONS(4112), 1, sym_num_lit, - ACTIONS(4182), 2, + ACTIONS(3280), 2, sym__ws, sym_comment, - STATE(1791), 3, + STATE(892), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [107974] = 5, + [102911] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(4188), 1, + ACTIONS(4114), 1, sym_num_lit, - ACTIONS(4186), 2, + ACTIONS(3280), 2, sym__ws, sym_comment, - STATE(1793), 3, + STATE(892), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [107993] = 5, + [102930] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(4190), 1, + ACTIONS(4118), 1, sym_num_lit, - ACTIONS(3470), 2, + ACTIONS(4116), 2, sym__ws, sym_comment, - STATE(930), 3, + STATE(1750), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [108012] = 5, + [102949] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(4194), 1, + ACTIONS(4120), 1, sym_num_lit, - ACTIONS(4192), 2, + ACTIONS(3280), 2, sym__ws, sym_comment, - STATE(1796), 3, + STATE(892), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [108031] = 5, + [102968] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(4196), 1, - sym_num_lit, - ACTIONS(3470), 2, + ACTIONS(4124), 1, + anon_sym_RPAREN, + ACTIONS(4122), 2, sym__ws, sym_comment, - STATE(930), 3, + STATE(1712), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [108050] = 5, + [102987] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(4200), 1, + ACTIONS(4128), 1, sym_num_lit, - ACTIONS(4198), 2, + ACTIONS(4126), 2, sym__ws, sym_comment, - STATE(1797), 3, + STATE(1753), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [108069] = 5, + [103006] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(4204), 1, + ACTIONS(4130), 1, sym_num_lit, - ACTIONS(4202), 2, + ACTIONS(3280), 2, sym__ws, sym_comment, - STATE(1798), 3, + STATE(892), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [108088] = 5, + [103025] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(4206), 1, + ACTIONS(4134), 1, sym_num_lit, - ACTIONS(3470), 2, + ACTIONS(4132), 2, sym__ws, sym_comment, - STATE(930), 3, + STATE(1756), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [108107] = 5, + [103044] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(4208), 1, + ACTIONS(4138), 1, sym_num_lit, - ACTIONS(3470), 2, + ACTIONS(4136), 2, sym__ws, sym_comment, - STATE(930), 3, + STATE(1758), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [108126] = 5, + [103063] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(4210), 1, + ACTIONS(4140), 1, sym_num_lit, - ACTIONS(3470), 2, + ACTIONS(3280), 2, sym__ws, sym_comment, - STATE(930), 3, + STATE(892), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [108145] = 5, + [103082] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(4214), 1, + ACTIONS(4144), 1, sym_num_lit, - ACTIONS(4212), 2, + ACTIONS(4142), 2, sym__ws, sym_comment, - STATE(1800), 3, + STATE(1761), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [108164] = 5, + [103101] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(4216), 1, + ACTIONS(4146), 1, sym_num_lit, - ACTIONS(3470), 2, + ACTIONS(3280), 2, sym__ws, sym_comment, - STATE(930), 3, + STATE(892), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [108183] = 8, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(19), 1, - anon_sym_CARET, - ACTIONS(21), 1, - anon_sym_POUND_CARET, - ACTIONS(2893), 1, - aux_sym_sym_lit_token1, - STATE(1078), 1, - sym_old_meta_lit, - STATE(1098), 1, - sym_meta_lit, - STATE(1241), 1, - aux_sym_sym_lit_repeat1, - STATE(1369), 1, - sym__metadata_lit, - [108208] = 5, + [103120] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(4220), 1, + ACTIONS(4150), 1, sym_num_lit, - ACTIONS(4218), 2, + ACTIONS(4148), 2, sym__ws, sym_comment, - STATE(1803), 3, + STATE(1762), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [108227] = 5, + [103139] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(4222), 1, + ACTIONS(4154), 1, sym_num_lit, - ACTIONS(3470), 2, + ACTIONS(4152), 2, sym__ws, sym_comment, - STATE(930), 3, + STATE(1763), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [108246] = 5, + [103158] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(4226), 1, + ACTIONS(4156), 1, sym_num_lit, - ACTIONS(4224), 2, + ACTIONS(3280), 2, sym__ws, sym_comment, - STATE(1806), 3, + STATE(892), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [108265] = 5, + [103177] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(4230), 1, + ACTIONS(4158), 1, sym_num_lit, - ACTIONS(4228), 2, + ACTIONS(3280), 2, sym__ws, sym_comment, - STATE(1808), 3, + STATE(892), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [108284] = 5, + [103196] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(4232), 1, + ACTIONS(4160), 1, sym_num_lit, - ACTIONS(3470), 2, + ACTIONS(3280), 2, sym__ws, sym_comment, - STATE(930), 3, + STATE(892), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [108303] = 5, + [103215] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(4236), 1, + ACTIONS(4164), 1, sym_num_lit, - ACTIONS(4234), 2, + ACTIONS(4162), 2, sym__ws, sym_comment, - STATE(1811), 3, + STATE(1765), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [108322] = 5, + [103234] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(4238), 1, + ACTIONS(4166), 1, sym_num_lit, - ACTIONS(3470), 2, + ACTIONS(3280), 2, sym__ws, sym_comment, - STATE(930), 3, + STATE(892), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [108341] = 5, + [103253] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(4242), 1, + ACTIONS(4170), 1, sym_num_lit, - ACTIONS(4240), 2, + ACTIONS(4168), 2, sym__ws, sym_comment, - STATE(1812), 3, + STATE(1678), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [108360] = 5, + [103272] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(4246), 1, + ACTIONS(4174), 1, sym_num_lit, - ACTIONS(4244), 2, + ACTIONS(4172), 2, sym__ws, sym_comment, - STATE(1813), 3, + STATE(1768), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [108379] = 5, + [103291] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(4248), 1, + ACTIONS(4176), 1, sym_num_lit, - ACTIONS(3470), 2, + ACTIONS(3280), 2, sym__ws, sym_comment, - STATE(930), 3, + STATE(892), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [108398] = 5, + [103310] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(4250), 1, + ACTIONS(4180), 1, sym_num_lit, - ACTIONS(3470), 2, + ACTIONS(4178), 2, sym__ws, sym_comment, - STATE(930), 3, + STATE(1771), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [108417] = 5, + [103329] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(4252), 1, + ACTIONS(4184), 1, sym_num_lit, - ACTIONS(3470), 2, + ACTIONS(4182), 2, sym__ws, sym_comment, - STATE(930), 3, + STATE(1773), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [108436] = 5, + [103348] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(4256), 1, + ACTIONS(4186), 1, sym_num_lit, - ACTIONS(4254), 2, + ACTIONS(3280), 2, sym__ws, sym_comment, - STATE(1815), 3, + STATE(892), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [108455] = 5, + [103367] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(4258), 1, + ACTIONS(4190), 1, sym_num_lit, - ACTIONS(3470), 2, + ACTIONS(4188), 2, sym__ws, sym_comment, - STATE(930), 3, + STATE(1776), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [108474] = 5, + [103386] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(4260), 1, + ACTIONS(4192), 1, sym_num_lit, - ACTIONS(3470), 2, + ACTIONS(3280), 2, sym__ws, sym_comment, - STATE(930), 3, + STATE(892), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [108493] = 5, + [103405] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(4264), 1, + ACTIONS(4196), 1, sym_num_lit, - ACTIONS(4262), 2, + ACTIONS(4194), 2, sym__ws, sym_comment, - STATE(1818), 3, + STATE(1777), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [108512] = 5, + [103424] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(4266), 1, + ACTIONS(4200), 1, sym_num_lit, - ACTIONS(3470), 2, + ACTIONS(4198), 2, sym__ws, sym_comment, - STATE(930), 3, + STATE(1778), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [108531] = 5, + [103443] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(4270), 1, + ACTIONS(4202), 1, sym_num_lit, - ACTIONS(4268), 2, + ACTIONS(3280), 2, sym__ws, sym_comment, - STATE(1821), 3, + STATE(892), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [108550] = 5, + [103462] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(4274), 1, + ACTIONS(4204), 1, sym_num_lit, - ACTIONS(4272), 2, + ACTIONS(3280), 2, sym__ws, sym_comment, - STATE(1823), 3, + STATE(892), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [108569] = 5, + [103481] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(4276), 1, + ACTIONS(4206), 1, sym_num_lit, - ACTIONS(3470), 2, + ACTIONS(3280), 2, sym__ws, sym_comment, - STATE(930), 3, + STATE(892), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [108588] = 5, + [103500] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(4280), 1, + ACTIONS(4210), 1, sym_num_lit, - ACTIONS(4278), 2, + ACTIONS(4208), 2, sym__ws, sym_comment, - STATE(1826), 3, + STATE(1780), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [108607] = 5, + [103519] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(4282), 1, + ACTIONS(4212), 1, sym_num_lit, - ACTIONS(3470), 2, + ACTIONS(3280), 2, sym__ws, sym_comment, - STATE(930), 3, + STATE(892), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [108626] = 5, + [103538] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(4286), 1, + ACTIONS(4214), 1, sym_num_lit, - ACTIONS(4284), 2, + ACTIONS(3280), 2, sym__ws, sym_comment, - STATE(1827), 3, + STATE(892), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [108645] = 5, + [103557] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(4290), 1, + ACTIONS(4218), 1, sym_num_lit, - ACTIONS(4288), 2, + ACTIONS(4216), 2, sym__ws, sym_comment, - STATE(1828), 3, + STATE(1783), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [108664] = 5, + [103576] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(4292), 1, + ACTIONS(4220), 1, sym_num_lit, - ACTIONS(3470), 2, + ACTIONS(3280), 2, sym__ws, sym_comment, - STATE(930), 3, + STATE(892), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [108683] = 5, + [103595] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(4294), 1, + ACTIONS(4224), 1, sym_num_lit, - ACTIONS(3470), 2, + ACTIONS(4222), 2, sym__ws, sym_comment, - STATE(930), 3, + STATE(1786), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [108702] = 5, + [103614] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(4296), 1, + ACTIONS(4228), 1, sym_num_lit, - ACTIONS(3470), 2, + ACTIONS(4226), 2, sym__ws, sym_comment, - STATE(930), 3, + STATE(1788), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [108721] = 5, + [103633] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(4300), 1, + ACTIONS(4230), 1, sym_num_lit, - ACTIONS(4298), 2, + ACTIONS(3280), 2, sym__ws, sym_comment, - STATE(1830), 3, + STATE(892), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [108740] = 5, + [103652] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(4302), 1, + ACTIONS(4234), 1, sym_num_lit, - ACTIONS(3470), 2, + ACTIONS(4232), 2, sym__ws, sym_comment, - STATE(930), 3, + STATE(1791), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [108759] = 5, + [103671] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(4306), 1, + ACTIONS(4236), 1, sym_num_lit, - ACTIONS(4304), 2, + ACTIONS(3280), 2, sym__ws, sym_comment, - STATE(1816), 3, + STATE(892), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [108778] = 5, + [103690] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(4310), 1, + ACTIONS(4240), 1, sym_num_lit, - ACTIONS(4308), 2, + ACTIONS(4238), 2, sym__ws, sym_comment, - STATE(1833), 3, + STATE(1792), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [108797] = 5, + [103709] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(4312), 1, + ACTIONS(4244), 1, sym_num_lit, - ACTIONS(3470), 2, + ACTIONS(4242), 2, sym__ws, sym_comment, - STATE(930), 3, + STATE(1793), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [108816] = 5, + [103728] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(4316), 1, + ACTIONS(4246), 1, sym_num_lit, - ACTIONS(4314), 2, + ACTIONS(3280), 2, sym__ws, sym_comment, - STATE(1836), 3, + STATE(892), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [108835] = 5, + [103747] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(4320), 1, + ACTIONS(4248), 1, sym_num_lit, - ACTIONS(4318), 2, + ACTIONS(3280), 2, sym__ws, sym_comment, - STATE(1838), 3, + STATE(892), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [108854] = 5, + [103766] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(4322), 1, + ACTIONS(4250), 1, sym_num_lit, - ACTIONS(3470), 2, + ACTIONS(3280), 2, sym__ws, sym_comment, - STATE(930), 3, + STATE(892), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [108873] = 5, + [103785] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(4326), 1, + ACTIONS(4254), 1, sym_num_lit, - ACTIONS(4324), 2, + ACTIONS(4252), 2, sym__ws, sym_comment, - STATE(1841), 3, + STATE(1795), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [108892] = 5, + [103804] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(4328), 1, + ACTIONS(4256), 1, sym_num_lit, - ACTIONS(3470), 2, + ACTIONS(3280), 2, sym__ws, sym_comment, - STATE(930), 3, + STATE(892), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [108911] = 5, + [103823] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(4332), 1, - sym_num_lit, - ACTIONS(4330), 2, + ACTIONS(4258), 1, + anon_sym_RPAREN, + ACTIONS(3067), 2, sym__ws, sym_comment, - STATE(1842), 3, + STATE(1378), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [108930] = 5, + [103842] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(4336), 1, + ACTIONS(4262), 1, sym_num_lit, - ACTIONS(4334), 2, + ACTIONS(4260), 2, sym__ws, sym_comment, - STATE(1843), 3, + STATE(1798), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [108949] = 5, + [103861] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(4338), 1, + ACTIONS(4264), 1, sym_num_lit, - ACTIONS(3470), 2, + ACTIONS(3280), 2, sym__ws, sym_comment, - STATE(930), 3, + STATE(892), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [108968] = 5, + [103880] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(4340), 1, + ACTIONS(4268), 1, sym_num_lit, - ACTIONS(3470), 2, + ACTIONS(4266), 2, sym__ws, sym_comment, - STATE(930), 3, + STATE(1781), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [108987] = 5, + [103899] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3133), 1, + ACTIONS(3069), 1, anon_sym_POUND_, - ACTIONS(4342), 1, + ACTIONS(4272), 1, sym_num_lit, - ACTIONS(3470), 2, + ACTIONS(4270), 2, sym__ws, sym_comment, - STATE(930), 3, + STATE(1737), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [109006] = 5, + [103918] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1116), 1, + ACTIONS(572), 1, anon_sym_LPAREN, - ACTIONS(4344), 1, + ACTIONS(4274), 1, sym__ws, - STATE(1900), 1, + STATE(1860), 1, aux_sym_read_cond_lit_repeat1, - STATE(1350), 3, + STATE(1098), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [109024] = 5, + [103936] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(568), 1, + ACTIONS(528), 1, anon_sym_LPAREN, - ACTIONS(4346), 1, + ACTIONS(4274), 1, sym__ws, - STATE(1902), 1, + STATE(1860), 1, aux_sym_read_cond_lit_repeat1, - STATE(751), 3, + STATE(983), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [109042] = 5, + [103954] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(838), 1, + ACTIONS(620), 1, anon_sym_LPAREN, - ACTIONS(4346), 1, + ACTIONS(4276), 1, sym__ws, - STATE(1902), 1, + STATE(1818), 1, aux_sym_read_cond_lit_repeat1, - STATE(1130), 3, + STATE(698), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [109060] = 5, + [103972] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(612), 1, + ACTIONS(528), 1, anon_sym_LPAREN, - ACTIONS(4348), 1, + ACTIONS(4278), 1, sym__ws, - STATE(1854), 1, + STATE(1808), 1, aux_sym_read_cond_lit_repeat1, - STATE(977), 3, + STATE(1036), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [109078] = 5, + [103990] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(612), 1, + ACTIONS(670), 1, anon_sym_LPAREN, - ACTIONS(4350), 1, + ACTIONS(4274), 1, sym__ws, - STATE(1849), 1, + STATE(1860), 1, aux_sym_read_cond_lit_repeat1, - STATE(1071), 3, + STATE(598), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [109096] = 5, + [104008] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(612), 1, + ACTIONS(620), 1, anon_sym_LPAREN, - ACTIONS(4346), 1, + ACTIONS(4274), 1, sym__ws, - STATE(1902), 1, + STATE(1860), 1, aux_sym_read_cond_lit_repeat1, - STATE(1054), 3, + STATE(719), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [109114] = 5, + [104026] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(23), 1, + ACTIONS(620), 1, anon_sym_LPAREN, - ACTIONS(4352), 1, + ACTIONS(4274), 1, sym__ws, - STATE(1859), 1, + STATE(1860), 1, aux_sym_read_cond_lit_repeat1, - STATE(850), 3, + STATE(717), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [109132] = 5, + [104044] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(23), 1, + ACTIONS(528), 1, anon_sym_LPAREN, - ACTIONS(4354), 1, + ACTIONS(4274), 1, sym__ws, - STATE(1856), 1, + STATE(1860), 1, aux_sym_read_cond_lit_repeat1, - STATE(846), 3, + STATE(1011), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [109150] = 5, + [104062] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(524), 1, + ACTIONS(27), 1, anon_sym_LPAREN, - ACTIONS(4356), 1, + ACTIONS(4274), 1, sym__ws, - STATE(1881), 1, + STATE(1860), 1, aux_sym_read_cond_lit_repeat1, - STATE(687), 3, + STATE(841), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [109168] = 5, + [104080] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(838), 1, + ACTIONS(27), 1, anon_sym_LPAREN, - ACTIONS(4358), 1, + ACTIONS(4274), 1, sym__ws, STATE(1860), 1, aux_sym_read_cond_lit_repeat1, - STATE(1148), 3, + STATE(839), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [109186] = 5, + [104098] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(612), 1, + ACTIONS(528), 1, anon_sym_LPAREN, - ACTIONS(4346), 1, + ACTIONS(4274), 1, sym__ws, - STATE(1902), 1, + STATE(1860), 1, aux_sym_read_cond_lit_repeat1, - STATE(1053), 3, + STATE(1010), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [109204] = 5, + [104116] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(838), 1, + ACTIONS(528), 1, anon_sym_LPAREN, - ACTIONS(4360), 1, + ACTIONS(4280), 1, sym__ws, - STATE(1861), 1, + STATE(1820), 1, aux_sym_read_cond_lit_repeat1, - STATE(1150), 3, + STATE(999), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [109222] = 5, + [104134] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(23), 1, + ACTIONS(528), 1, anon_sym_LPAREN, - ACTIONS(4346), 1, + ACTIONS(4282), 1, sym__ws, - STATE(1902), 1, + STATE(1802), 1, aux_sym_read_cond_lit_repeat1, - STATE(852), 3, + STATE(998), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [109240] = 5, + [104152] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(838), 1, + ACTIONS(620), 1, anon_sym_LPAREN, - ACTIONS(4362), 1, + ACTIONS(4284), 1, sym__ws, - STATE(1894), 1, + STATE(1806), 1, aux_sym_read_cond_lit_repeat1, - STATE(1175), 3, + STATE(578), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [109258] = 5, + [104170] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(838), 1, + ACTIONS(620), 1, anon_sym_LPAREN, - ACTIONS(4364), 1, + ACTIONS(4286), 1, sym__ws, - STATE(1846), 1, + STATE(1807), 1, aux_sym_read_cond_lit_repeat1, - STATE(1171), 3, + STATE(585), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [109276] = 5, + [104188] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(23), 1, + ACTIONS(670), 1, anon_sym_LPAREN, - ACTIONS(4346), 1, + ACTIONS(4288), 1, sym__ws, - STATE(1902), 1, + STATE(1843), 1, aux_sym_read_cond_lit_repeat1, - STATE(853), 3, + STATE(573), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [109294] = 5, + [104206] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(838), 1, + ACTIONS(572), 1, anon_sym_LPAREN, - ACTIONS(4346), 1, + ACTIONS(4290), 1, sym__ws, - STATE(1902), 1, + STATE(1823), 1, aux_sym_read_cond_lit_repeat1, - STATE(1172), 3, + STATE(1073), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [109312] = 5, + [104224] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(838), 1, + ACTIONS(620), 1, anon_sym_LPAREN, - ACTIONS(4346), 1, + ACTIONS(4274), 1, sym__ws, - STATE(1902), 1, + STATE(1860), 1, aux_sym_read_cond_lit_repeat1, - STATE(1178), 3, + STATE(756), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [109330] = 5, + [104242] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(612), 1, + ACTIONS(620), 1, anon_sym_LPAREN, - ACTIONS(4366), 1, + ACTIONS(4274), 1, sym__ws, - STATE(1866), 1, + STATE(1860), 1, aux_sym_read_cond_lit_repeat1, - STATE(1035), 3, + STATE(754), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [109348] = 5, + [104260] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(23), 1, + ACTIONS(528), 1, anon_sym_LPAREN, - ACTIONS(4368), 1, + ACTIONS(4274), 1, sym__ws, - STATE(1867), 1, + STATE(1860), 1, aux_sym_read_cond_lit_repeat1, - STATE(866), 3, + STATE(984), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [109366] = 5, + [104278] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(23), 1, + ACTIONS(572), 1, anon_sym_LPAREN, - ACTIONS(4370), 1, + ACTIONS(4292), 1, sym__ws, - STATE(1868), 1, + STATE(1801), 1, aux_sym_read_cond_lit_repeat1, - STATE(824), 3, + STATE(1074), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [109384] = 5, + [104296] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(612), 1, + ACTIONS(27), 1, anon_sym_LPAREN, - ACTIONS(4372), 1, + ACTIONS(4294), 1, sym__ws, - STATE(1869), 1, + STATE(1809), 1, aux_sym_read_cond_lit_repeat1, - STATE(1034), 3, + STATE(875), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [109402] = 5, + [104314] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(612), 1, + ACTIONS(572), 1, anon_sym_LPAREN, - ACTIONS(4346), 1, + ACTIONS(4274), 1, sym__ws, - STATE(1902), 1, + STATE(1860), 1, aux_sym_read_cond_lit_repeat1, - STATE(960), 3, + STATE(1096), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [109420] = 5, + [104332] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(23), 1, + ACTIONS(670), 1, anon_sym_LPAREN, - ACTIONS(4346), 1, + ACTIONS(4274), 1, sym__ws, - STATE(1902), 1, + STATE(1860), 1, aux_sym_read_cond_lit_repeat1, - STATE(885), 3, + STATE(626), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [109438] = 5, + [104350] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(23), 1, + ACTIONS(27), 1, anon_sym_LPAREN, - ACTIONS(4346), 1, + ACTIONS(4296), 1, sym__ws, - STATE(1902), 1, + STATE(1832), 1, aux_sym_read_cond_lit_repeat1, - STATE(886), 3, + STATE(795), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [109456] = 5, + [104368] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(612), 1, + ACTIONS(27), 1, anon_sym_LPAREN, - ACTIONS(4346), 1, + ACTIONS(4298), 1, sym__ws, - STATE(1902), 1, + STATE(1840), 1, aux_sym_read_cond_lit_repeat1, - STATE(1017), 3, + STATE(788), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [109474] = 5, + [104386] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2461), 1, - anon_sym_POUND_, - ACTIONS(4376), 1, - anon_sym_EQ, - ACTIONS(4374), 2, - sym__ws, - sym_comment, - STATE(1913), 2, - sym__gap, - sym_dis_expr, - [109492] = 5, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(1116), 1, + ACTIONS(413), 1, anon_sym_LPAREN, - ACTIONS(4378), 1, + ACTIONS(4274), 1, sym__ws, - STATE(1875), 1, + STATE(1860), 1, aux_sym_read_cond_lit_repeat1, - STATE(1315), 3, + STATE(467), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [109510] = 5, + [104404] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1116), 1, + ACTIONS(1180), 1, anon_sym_LPAREN, - ACTIONS(4380), 1, + ACTIONS(4300), 1, sym__ws, - STATE(1880), 1, + STATE(1858), 1, aux_sym_read_cond_lit_repeat1, - STATE(1346), 3, + STATE(1312), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [109528] = 5, + [104422] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(568), 1, + ACTIONS(528), 1, anon_sym_LPAREN, - ACTIONS(4346), 1, + ACTIONS(4302), 1, sym__ws, - STATE(1902), 1, + STATE(1811), 1, aux_sym_read_cond_lit_repeat1, - STATE(634), 3, + STATE(1035), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [109546] = 5, + [104440] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(568), 1, + ACTIONS(27), 1, anon_sym_LPAREN, - ACTIONS(4346), 1, + ACTIONS(4304), 1, sym__ws, - STATE(1902), 1, + STATE(1810), 1, aux_sym_read_cond_lit_repeat1, - STATE(633), 3, + STATE(874), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [109564] = 5, + [104458] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1116), 1, + ACTIONS(413), 1, anon_sym_LPAREN, - ACTIONS(4346), 1, + ACTIONS(4306), 1, sym__ws, - STATE(1902), 1, + STATE(1842), 1, aux_sym_read_cond_lit_repeat1, - STATE(1341), 3, + STATE(501), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [109582] = 5, + [104476] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(524), 1, + ACTIONS(27), 1, anon_sym_LPAREN, - ACTIONS(4346), 1, + ACTIONS(4274), 1, sym__ws, - STATE(1902), 1, + STATE(1860), 1, aux_sym_read_cond_lit_repeat1, - STATE(780), 3, + STATE(798), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [109600] = 5, + [104494] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(524), 1, + ACTIONS(670), 1, anon_sym_LPAREN, - ACTIONS(4346), 1, + ACTIONS(4308), 1, sym__ws, - STATE(1902), 1, + STATE(1824), 1, aux_sym_read_cond_lit_repeat1, - STATE(777), 3, + STATE(611), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [109618] = 5, + [104512] = 5, + ACTIONS(3), 1, + sym_block_comment, + ACTIONS(2423), 1, + anon_sym_POUND_, + ACTIONS(4312), 1, + anon_sym_EQ, + ACTIONS(4310), 2, + sym__ws, + sym_comment, + STATE(1879), 2, + sym__gap, + sym_dis_expr, + [104530] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(524), 1, + ACTIONS(413), 1, anon_sym_LPAREN, - ACTIONS(4382), 1, + ACTIONS(4314), 1, sym__ws, - STATE(1876), 1, + STATE(1827), 1, aux_sym_read_cond_lit_repeat1, - STATE(758), 3, + STATE(490), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [109636] = 5, + [104548] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(524), 1, + ACTIONS(1180), 1, anon_sym_LPAREN, - ACTIONS(4384), 1, + ACTIONS(4316), 1, sym__ws, - STATE(1877), 1, + STATE(1837), 1, aux_sym_read_cond_lit_repeat1, - STATE(757), 3, + STATE(1251), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [109654] = 5, + [104566] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1116), 1, + ACTIONS(1180), 1, anon_sym_LPAREN, - ACTIONS(4346), 1, + ACTIONS(4274), 1, sym__ws, - STATE(1902), 1, + STATE(1860), 1, aux_sym_read_cond_lit_repeat1, - STATE(1348), 3, + STATE(1237), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [109672] = 5, + [104584] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(524), 1, + ACTIONS(572), 1, anon_sym_LPAREN, - ACTIONS(4346), 1, + ACTIONS(4318), 1, sym__ws, - STATE(1902), 1, + STATE(1848), 1, aux_sym_read_cond_lit_repeat1, - STATE(733), 3, + STATE(1110), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [109690] = 5, + [104602] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(524), 1, + ACTIONS(670), 1, anon_sym_LPAREN, - ACTIONS(4346), 1, + ACTIONS(4320), 1, sym__ws, - STATE(1902), 1, + STATE(1857), 1, aux_sym_read_cond_lit_repeat1, - STATE(732), 3, + STATE(612), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [109708] = 5, + [104620] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(568), 1, + ACTIONS(27), 1, anon_sym_LPAREN, - ACTIONS(4386), 1, + ACTIONS(4274), 1, sym__ws, - STATE(1873), 1, + STATE(1860), 1, aux_sym_read_cond_lit_repeat1, - STATE(615), 3, + STATE(799), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [109726] = 5, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(2461), 1, - anon_sym_POUND_, - ACTIONS(4390), 1, - anon_sym_EQ, - ACTIONS(4388), 2, - sym__ws, - sym_comment, - STATE(1923), 2, - sym__gap, - sym_dis_expr, - [109744] = 5, + [104638] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(568), 1, + ACTIONS(413), 1, anon_sym_LPAREN, - ACTIONS(4392), 1, + ACTIONS(4274), 1, sym__ws, - STATE(1874), 1, + STATE(1860), 1, aux_sym_read_cond_lit_repeat1, - STATE(614), 3, + STATE(449), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [109762] = 5, + [104656] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(381), 1, + ACTIONS(413), 1, anon_sym_LPAREN, - ACTIONS(4394), 1, + ACTIONS(4274), 1, sym__ws, - STATE(1893), 1, + STATE(1860), 1, aux_sym_read_cond_lit_repeat1, - STATE(508), 3, + STATE(468), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [109780] = 5, + [104674] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1116), 1, + ACTIONS(670), 1, anon_sym_LPAREN, - ACTIONS(4396), 1, + ACTIONS(4274), 1, sym__ws, - STATE(1899), 1, + STATE(1860), 1, aux_sym_read_cond_lit_repeat1, - STATE(1347), 3, + STATE(599), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [109798] = 5, + [104692] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(381), 1, + ACTIONS(413), 1, anon_sym_LPAREN, - ACTIONS(4346), 1, + ACTIONS(4274), 1, sym__ws, - STATE(1902), 1, + STATE(1860), 1, aux_sym_read_cond_lit_repeat1, - STATE(527), 3, + STATE(448), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [109816] = 5, + [104710] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(381), 1, + ACTIONS(413), 1, anon_sym_LPAREN, - ACTIONS(4346), 1, + ACTIONS(4322), 1, sym__ws, - STATE(1902), 1, + STATE(1844), 1, aux_sym_read_cond_lit_repeat1, - STATE(529), 3, + STATE(495), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [109834] = 5, + [104728] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(381), 1, + ACTIONS(413), 1, anon_sym_LPAREN, - ACTIONS(4398), 1, + ACTIONS(4324), 1, sym__ws, - STATE(1888), 1, + STATE(1841), 1, aux_sym_read_cond_lit_repeat1, - STATE(544), 3, + STATE(494), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [109852] = 5, + [104746] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(381), 1, + ACTIONS(572), 1, anon_sym_LPAREN, - ACTIONS(4400), 1, + ACTIONS(4274), 1, sym__ws, - STATE(1889), 1, + STATE(1860), 1, aux_sym_read_cond_lit_repeat1, - STATE(530), 3, + STATE(1124), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [109870] = 5, + [104764] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(381), 1, + ACTIONS(572), 1, anon_sym_LPAREN, - ACTIONS(4346), 1, + ACTIONS(4274), 1, sym__ws, - STATE(1902), 1, + STATE(1860), 1, aux_sym_read_cond_lit_repeat1, - STATE(465), 3, + STATE(1049), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [109888] = 5, + [104782] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(381), 1, + ACTIONS(620), 1, anon_sym_LPAREN, - ACTIONS(4346), 1, + ACTIONS(4326), 1, sym__ws, - STATE(1902), 1, + STATE(1819), 1, aux_sym_read_cond_lit_repeat1, - STATE(466), 3, + STATE(696), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [109906] = 5, + [104800] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(838), 1, + ACTIONS(670), 1, anon_sym_LPAREN, - ACTIONS(4346), 1, + ACTIONS(4328), 1, sym__ws, - STATE(1902), 1, + STATE(1805), 1, aux_sym_read_cond_lit_repeat1, - STATE(1131), 3, + STATE(572), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [109924] = 5, + [104818] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(381), 1, + ACTIONS(2423), 1, + anon_sym_POUND_, + ACTIONS(4332), 1, + anon_sym_EQ, + ACTIONS(4330), 2, + sym__ws, + sym_comment, + STATE(1871), 2, + sym__gap, + sym_dis_expr, + [104836] = 5, + ACTIONS(3), 1, + sym_block_comment, + ACTIONS(1180), 1, anon_sym_LPAREN, - ACTIONS(4402), 1, + ACTIONS(4274), 1, sym__ws, - STATE(1892), 1, + STATE(1860), 1, aux_sym_read_cond_lit_repeat1, - STATE(507), 3, + STATE(1266), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [109942] = 5, + [104854] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(524), 1, + ACTIONS(1180), 1, anon_sym_LPAREN, - ACTIONS(4404), 1, + ACTIONS(4274), 1, sym__ws, - STATE(1882), 1, + STATE(1860), 1, aux_sym_read_cond_lit_repeat1, - STATE(686), 3, + STATE(1265), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [109960] = 5, + [104872] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(568), 1, + ACTIONS(572), 1, anon_sym_LPAREN, - ACTIONS(4346), 1, + ACTIONS(4334), 1, sym__ws, - STATE(1902), 1, + STATE(1847), 1, aux_sym_read_cond_lit_repeat1, - STATE(752), 3, + STATE(1109), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [109978] = 5, + [104890] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(568), 1, + ACTIONS(1180), 1, anon_sym_LPAREN, - ACTIONS(4406), 1, + ACTIONS(4336), 1, sym__ws, - STATE(1845), 1, + STATE(1852), 1, aux_sym_read_cond_lit_repeat1, - STATE(749), 3, + STATE(1221), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [109996] = 5, + [104908] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1116), 1, + ACTIONS(1180), 1, anon_sym_LPAREN, - ACTIONS(4346), 1, + ACTIONS(4338), 1, sym__ws, - STATE(1902), 1, + STATE(1853), 1, aux_sym_read_cond_lit_repeat1, - STATE(1321), 3, + STATE(1250), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [110014] = 5, + [104926] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1116), 1, + ACTIONS(670), 1, anon_sym_LPAREN, - ACTIONS(4346), 1, + ACTIONS(4274), 1, sym__ws, - STATE(1902), 1, + STATE(1860), 1, aux_sym_read_cond_lit_repeat1, - STATE(1322), 3, + STATE(627), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [110032] = 5, + [104944] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(568), 1, + ACTIONS(1180), 1, anon_sym_LPAREN, - ACTIONS(4408), 1, + ACTIONS(4274), 1, sym__ws, - STATE(1897), 1, + STATE(1860), 1, aux_sym_read_cond_lit_repeat1, - STATE(750), 3, + STATE(1238), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [110050] = 4, + [104962] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(4410), 1, - sym__ws, - ACTIONS(4413), 1, + ACTIONS(4340), 3, + anon_sym_CARET, + anon_sym_POUND_CARET, anon_sym_LPAREN, - STATE(1902), 1, - aux_sym_read_cond_lit_repeat1, - [110063] = 2, + [104971] = 4, ACTIONS(3), 1, sym_block_comment, - ACTIONS(4415), 3, - anon_sym_CARET, - anon_sym_POUND_CARET, + ACTIONS(4342), 1, + sym__ws, + ACTIONS(4345), 1, anon_sym_LPAREN, - [110072] = 3, + STATE(1860), 1, + aux_sym_read_cond_lit_repeat1, + [104984] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3032), 1, - anon_sym_COLON_COLON, - ACTIONS(3034), 1, + ACTIONS(2717), 1, anon_sym_COLON, - [110082] = 3, + ACTIONS(2719), 1, + anon_sym_COLON_COLON, + [104994] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2632), 1, - anon_sym_COLON_COLON, - ACTIONS(2634), 1, + ACTIONS(2545), 1, anon_sym_COLON, - [110092] = 3, + ACTIONS(2547), 1, + anon_sym_COLON_COLON, + [105004] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2563), 1, - anon_sym_COLON_COLON, - ACTIONS(2565), 1, + ACTIONS(2615), 1, anon_sym_COLON, - [110102] = 3, + ACTIONS(2617), 1, + anon_sym_COLON_COLON, + [105014] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2051), 1, - anon_sym_COLON_COLON, - ACTIONS(2053), 1, + ACTIONS(2968), 1, anon_sym_COLON, - [110112] = 3, + ACTIONS(2970), 1, + anon_sym_COLON_COLON, + [105024] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2657), 1, - anon_sym_COLON_COLON, - ACTIONS(2659), 1, + ACTIONS(2674), 1, anon_sym_COLON, - [110122] = 3, + ACTIONS(2676), 1, + anon_sym_COLON_COLON, + [105034] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2653), 1, - anon_sym_COLON_COLON, - ACTIONS(2655), 1, + ACTIONS(1990), 1, anon_sym_COLON, - [110132] = 3, + ACTIONS(1992), 1, + anon_sym_COLON_COLON, + [105044] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2934), 1, - anon_sym_COLON_COLON, - ACTIONS(2936), 1, + ACTIONS(2619), 1, anon_sym_COLON, - [110142] = 3, + ACTIONS(2621), 1, + anon_sym_COLON_COLON, + [105054] = 3, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2720), 1, - anon_sym_COLON_COLON, - ACTIONS(2722), 1, + ACTIONS(2599), 1, anon_sym_COLON, - [110152] = 2, + ACTIONS(2601), 1, + anon_sym_COLON_COLON, + [105064] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(4417), 1, - anon_sym_A, - [110159] = 2, + ACTIONS(4347), 1, + sym_num_lit, + [105071] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(4390), 1, - anon_sym_EQ, - [110166] = 2, + ACTIONS(4349), 1, + sym_num_lit, + [105078] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(4419), 1, - sym_num_lit, - [110173] = 2, + ACTIONS(4312), 1, + anon_sym_EQ, + [105085] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(4421), 1, - ts_builtin_sym_end, - [110180] = 2, + ACTIONS(1154), 1, + anon_sym_DOT, + [105092] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(2747), 1, + ACTIONS(2705), 1, anon_sym_into, - [110187] = 2, + [105099] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1094), 1, - anon_sym_DOT, - [110194] = 2, + ACTIONS(4351), 1, + ts_builtin_sym_end, + [105106] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(4423), 1, + ACTIONS(4353), 1, sym_num_lit, - [110201] = 2, + [105113] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(4425), 1, + ACTIONS(4355), 1, sym_num_lit, - [110208] = 2, + [105120] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(4427), 1, + ACTIONS(4357), 1, sym_num_lit, - [110215] = 2, + [105127] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(4429), 1, + ACTIONS(4359), 1, anon_sym_into, - [110222] = 2, + [105134] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1106), 1, - anon_sym_DOT, - [110229] = 2, + ACTIONS(4361), 1, + anon_sym_EQ, + [105141] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(4431), 1, - anon_sym_EQ, - [110236] = 2, + ACTIONS(4363), 1, + sym_num_lit, + [105148] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1498), 1, - anon_sym_DOT, - [110243] = 2, + ACTIONS(4365), 1, + anon_sym_A, + [105155] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(4433), 1, - sym_num_lit, - [110250] = 2, + ACTIONS(1166), 1, + anon_sym_DOT, + [105162] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(4435), 1, + ACTIONS(4367), 1, sym_num_lit, - [110257] = 2, + [105169] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(4437), 1, - sym_num_lit, + ACTIONS(1606), 1, + anon_sym_DOT, }; static uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(11)] = 0, - [SMALL_STATE(12)] = 143, - [SMALL_STATE(13)] = 285, - [SMALL_STATE(14)] = 427, - [SMALL_STATE(15)] = 569, - [SMALL_STATE(16)] = 711, - [SMALL_STATE(17)] = 853, - [SMALL_STATE(18)] = 995, - [SMALL_STATE(19)] = 1137, - [SMALL_STATE(20)] = 1279, - [SMALL_STATE(21)] = 1421, - [SMALL_STATE(22)] = 1563, - [SMALL_STATE(23)] = 1705, - [SMALL_STATE(24)] = 1847, - [SMALL_STATE(25)] = 1989, - [SMALL_STATE(26)] = 2131, - [SMALL_STATE(27)] = 2273, - [SMALL_STATE(28)] = 2415, - [SMALL_STATE(29)] = 2557, - [SMALL_STATE(30)] = 2699, - [SMALL_STATE(31)] = 2841, - [SMALL_STATE(32)] = 2983, - [SMALL_STATE(33)] = 3125, - [SMALL_STATE(34)] = 3265, - [SMALL_STATE(35)] = 3407, - [SMALL_STATE(36)] = 3549, - [SMALL_STATE(37)] = 3691, - [SMALL_STATE(38)] = 3833, - [SMALL_STATE(39)] = 3975, - [SMALL_STATE(40)] = 4117, - [SMALL_STATE(41)] = 4259, - [SMALL_STATE(42)] = 4401, - [SMALL_STATE(43)] = 4543, - [SMALL_STATE(44)] = 4685, - [SMALL_STATE(45)] = 4827, - [SMALL_STATE(46)] = 4969, - [SMALL_STATE(47)] = 5111, - [SMALL_STATE(48)] = 5253, - [SMALL_STATE(49)] = 5395, - [SMALL_STATE(50)] = 5537, - [SMALL_STATE(51)] = 5679, - [SMALL_STATE(52)] = 5821, - [SMALL_STATE(53)] = 5963, - [SMALL_STATE(54)] = 6105, - [SMALL_STATE(55)] = 6247, - [SMALL_STATE(56)] = 6389, - [SMALL_STATE(57)] = 6531, - [SMALL_STATE(58)] = 6673, - [SMALL_STATE(59)] = 6815, - [SMALL_STATE(60)] = 6957, - [SMALL_STATE(61)] = 7099, - [SMALL_STATE(62)] = 7241, - [SMALL_STATE(63)] = 7383, - [SMALL_STATE(64)] = 7525, - [SMALL_STATE(65)] = 7667, - [SMALL_STATE(66)] = 7807, - [SMALL_STATE(67)] = 7946, - [SMALL_STATE(68)] = 8085, - [SMALL_STATE(69)] = 8224, - [SMALL_STATE(70)] = 8363, - [SMALL_STATE(71)] = 8502, - [SMALL_STATE(72)] = 8641, - [SMALL_STATE(73)] = 8780, - [SMALL_STATE(74)] = 8919, - [SMALL_STATE(75)] = 9058, - [SMALL_STATE(76)] = 9197, - [SMALL_STATE(77)] = 9336, - [SMALL_STATE(78)] = 9475, - [SMALL_STATE(79)] = 9614, - [SMALL_STATE(80)] = 9753, - [SMALL_STATE(81)] = 9892, - [SMALL_STATE(82)] = 10031, - [SMALL_STATE(83)] = 10170, - [SMALL_STATE(84)] = 10309, - [SMALL_STATE(85)] = 10448, - [SMALL_STATE(86)] = 10587, - [SMALL_STATE(87)] = 10726, - [SMALL_STATE(88)] = 10865, - [SMALL_STATE(89)] = 11004, - [SMALL_STATE(90)] = 11143, - [SMALL_STATE(91)] = 11282, - [SMALL_STATE(92)] = 11421, - [SMALL_STATE(93)] = 11560, - [SMALL_STATE(94)] = 11699, - [SMALL_STATE(95)] = 11838, - [SMALL_STATE(96)] = 11977, - [SMALL_STATE(97)] = 12116, - [SMALL_STATE(98)] = 12255, - [SMALL_STATE(99)] = 12394, - [SMALL_STATE(100)] = 12533, - [SMALL_STATE(101)] = 12672, - [SMALL_STATE(102)] = 12811, - [SMALL_STATE(103)] = 12950, - [SMALL_STATE(104)] = 13089, - [SMALL_STATE(105)] = 13228, - [SMALL_STATE(106)] = 13367, - [SMALL_STATE(107)] = 13506, - [SMALL_STATE(108)] = 13645, - [SMALL_STATE(109)] = 13784, - [SMALL_STATE(110)] = 13923, - [SMALL_STATE(111)] = 14062, - [SMALL_STATE(112)] = 14201, - [SMALL_STATE(113)] = 14340, - [SMALL_STATE(114)] = 14479, - [SMALL_STATE(115)] = 14618, - [SMALL_STATE(116)] = 14757, - [SMALL_STATE(117)] = 14896, - [SMALL_STATE(118)] = 15035, - [SMALL_STATE(119)] = 15174, - [SMALL_STATE(120)] = 15313, - [SMALL_STATE(121)] = 15452, - [SMALL_STATE(122)] = 15591, - [SMALL_STATE(123)] = 15730, - [SMALL_STATE(124)] = 15869, - [SMALL_STATE(125)] = 16008, - [SMALL_STATE(126)] = 16147, - [SMALL_STATE(127)] = 16286, - [SMALL_STATE(128)] = 16425, - [SMALL_STATE(129)] = 16564, - [SMALL_STATE(130)] = 16703, - [SMALL_STATE(131)] = 16842, - [SMALL_STATE(132)] = 16981, - [SMALL_STATE(133)] = 17120, - [SMALL_STATE(134)] = 17259, - [SMALL_STATE(135)] = 17398, - [SMALL_STATE(136)] = 17537, - [SMALL_STATE(137)] = 17676, - [SMALL_STATE(138)] = 17815, - [SMALL_STATE(139)] = 17954, - [SMALL_STATE(140)] = 18093, - [SMALL_STATE(141)] = 18232, - [SMALL_STATE(142)] = 18371, - [SMALL_STATE(143)] = 18510, - [SMALL_STATE(144)] = 18649, - [SMALL_STATE(145)] = 18788, - [SMALL_STATE(146)] = 18927, - [SMALL_STATE(147)] = 19066, - [SMALL_STATE(148)] = 19205, - [SMALL_STATE(149)] = 19344, - [SMALL_STATE(150)] = 19483, - [SMALL_STATE(151)] = 19622, - [SMALL_STATE(152)] = 19761, - [SMALL_STATE(153)] = 19900, - [SMALL_STATE(154)] = 20039, + [SMALL_STATE(12)] = 0, + [SMALL_STATE(13)] = 143, + [SMALL_STATE(14)] = 286, + [SMALL_STATE(15)] = 429, + [SMALL_STATE(16)] = 572, + [SMALL_STATE(17)] = 715, + [SMALL_STATE(18)] = 858, + [SMALL_STATE(19)] = 1001, + [SMALL_STATE(20)] = 1144, + [SMALL_STATE(21)] = 1287, + [SMALL_STATE(22)] = 1430, + [SMALL_STATE(23)] = 1573, + [SMALL_STATE(24)] = 1716, + [SMALL_STATE(25)] = 1859, + [SMALL_STATE(26)] = 2002, + [SMALL_STATE(27)] = 2145, + [SMALL_STATE(28)] = 2288, + [SMALL_STATE(29)] = 2431, + [SMALL_STATE(30)] = 2574, + [SMALL_STATE(31)] = 2717, + [SMALL_STATE(32)] = 2860, + [SMALL_STATE(33)] = 3003, + [SMALL_STATE(34)] = 3144, + [SMALL_STATE(35)] = 3287, + [SMALL_STATE(36)] = 3430, + [SMALL_STATE(37)] = 3573, + [SMALL_STATE(38)] = 3716, + [SMALL_STATE(39)] = 3859, + [SMALL_STATE(40)] = 4002, + [SMALL_STATE(41)] = 4145, + [SMALL_STATE(42)] = 4288, + [SMALL_STATE(43)] = 4431, + [SMALL_STATE(44)] = 4574, + [SMALL_STATE(45)] = 4717, + [SMALL_STATE(46)] = 4860, + [SMALL_STATE(47)] = 5003, + [SMALL_STATE(48)] = 5146, + [SMALL_STATE(49)] = 5289, + [SMALL_STATE(50)] = 5432, + [SMALL_STATE(51)] = 5575, + [SMALL_STATE(52)] = 5718, + [SMALL_STATE(53)] = 5861, + [SMALL_STATE(54)] = 6004, + [SMALL_STATE(55)] = 6147, + [SMALL_STATE(56)] = 6290, + [SMALL_STATE(57)] = 6433, + [SMALL_STATE(58)] = 6576, + [SMALL_STATE(59)] = 6719, + [SMALL_STATE(60)] = 6862, + [SMALL_STATE(61)] = 7005, + [SMALL_STATE(62)] = 7148, + [SMALL_STATE(63)] = 7291, + [SMALL_STATE(64)] = 7432, + [SMALL_STATE(65)] = 7575, + [SMALL_STATE(66)] = 7718, + [SMALL_STATE(67)] = 7858, + [SMALL_STATE(68)] = 7998, + [SMALL_STATE(69)] = 8138, + [SMALL_STATE(70)] = 8278, + [SMALL_STATE(71)] = 8418, + [SMALL_STATE(72)] = 8558, + [SMALL_STATE(73)] = 8698, + [SMALL_STATE(74)] = 8838, + [SMALL_STATE(75)] = 8978, + [SMALL_STATE(76)] = 9118, + [SMALL_STATE(77)] = 9258, + [SMALL_STATE(78)] = 9398, + [SMALL_STATE(79)] = 9538, + [SMALL_STATE(80)] = 9678, + [SMALL_STATE(81)] = 9818, + [SMALL_STATE(82)] = 9958, + [SMALL_STATE(83)] = 10098, + [SMALL_STATE(84)] = 10238, + [SMALL_STATE(85)] = 10378, + [SMALL_STATE(86)] = 10518, + [SMALL_STATE(87)] = 10658, + [SMALL_STATE(88)] = 10798, + [SMALL_STATE(89)] = 10938, + [SMALL_STATE(90)] = 11078, + [SMALL_STATE(91)] = 11218, + [SMALL_STATE(92)] = 11358, + [SMALL_STATE(93)] = 11498, + [SMALL_STATE(94)] = 11638, + [SMALL_STATE(95)] = 11778, + [SMALL_STATE(96)] = 11918, + [SMALL_STATE(97)] = 12058, + [SMALL_STATE(98)] = 12198, + [SMALL_STATE(99)] = 12338, + [SMALL_STATE(100)] = 12478, + [SMALL_STATE(101)] = 12618, + [SMALL_STATE(102)] = 12758, + [SMALL_STATE(103)] = 12898, + [SMALL_STATE(104)] = 13038, + [SMALL_STATE(105)] = 13178, + [SMALL_STATE(106)] = 13318, + [SMALL_STATE(107)] = 13458, + [SMALL_STATE(108)] = 13598, + [SMALL_STATE(109)] = 13738, + [SMALL_STATE(110)] = 13878, + [SMALL_STATE(111)] = 14018, + [SMALL_STATE(112)] = 14158, + [SMALL_STATE(113)] = 14298, + [SMALL_STATE(114)] = 14438, + [SMALL_STATE(115)] = 14578, + [SMALL_STATE(116)] = 14718, + [SMALL_STATE(117)] = 14858, + [SMALL_STATE(118)] = 14998, + [SMALL_STATE(119)] = 15138, + [SMALL_STATE(120)] = 15278, + [SMALL_STATE(121)] = 15418, + [SMALL_STATE(122)] = 15558, + [SMALL_STATE(123)] = 15698, + [SMALL_STATE(124)] = 15838, + [SMALL_STATE(125)] = 15978, + [SMALL_STATE(126)] = 16118, + [SMALL_STATE(127)] = 16258, + [SMALL_STATE(128)] = 16398, + [SMALL_STATE(129)] = 16538, + [SMALL_STATE(130)] = 16678, + [SMALL_STATE(131)] = 16818, + [SMALL_STATE(132)] = 16958, + [SMALL_STATE(133)] = 17098, + [SMALL_STATE(134)] = 17238, + [SMALL_STATE(135)] = 17378, + [SMALL_STATE(136)] = 17518, + [SMALL_STATE(137)] = 17658, + [SMALL_STATE(138)] = 17798, + [SMALL_STATE(139)] = 17938, + [SMALL_STATE(140)] = 18078, + [SMALL_STATE(141)] = 18218, + [SMALL_STATE(142)] = 18358, + [SMALL_STATE(143)] = 18498, + [SMALL_STATE(144)] = 18638, + [SMALL_STATE(145)] = 18778, + [SMALL_STATE(146)] = 18918, + [SMALL_STATE(147)] = 19058, + [SMALL_STATE(148)] = 19198, + [SMALL_STATE(149)] = 19338, + [SMALL_STATE(150)] = 19478, + [SMALL_STATE(151)] = 19618, + [SMALL_STATE(152)] = 19758, + [SMALL_STATE(153)] = 19898, + [SMALL_STATE(154)] = 20038, [SMALL_STATE(155)] = 20178, - [SMALL_STATE(156)] = 20317, - [SMALL_STATE(157)] = 20456, - [SMALL_STATE(158)] = 20595, - [SMALL_STATE(159)] = 20734, - [SMALL_STATE(160)] = 20873, - [SMALL_STATE(161)] = 21012, - [SMALL_STATE(162)] = 21151, - [SMALL_STATE(163)] = 21290, - [SMALL_STATE(164)] = 21429, - [SMALL_STATE(165)] = 21568, - [SMALL_STATE(166)] = 21707, - [SMALL_STATE(167)] = 21846, - [SMALL_STATE(168)] = 21985, - [SMALL_STATE(169)] = 22124, - [SMALL_STATE(170)] = 22263, - [SMALL_STATE(171)] = 22402, - [SMALL_STATE(172)] = 22541, - [SMALL_STATE(173)] = 22680, - [SMALL_STATE(174)] = 22819, - [SMALL_STATE(175)] = 22958, - [SMALL_STATE(176)] = 23097, - [SMALL_STATE(177)] = 23236, - [SMALL_STATE(178)] = 23375, - [SMALL_STATE(179)] = 23514, - [SMALL_STATE(180)] = 23653, - [SMALL_STATE(181)] = 23792, - [SMALL_STATE(182)] = 23931, - [SMALL_STATE(183)] = 24070, - [SMALL_STATE(184)] = 24209, - [SMALL_STATE(185)] = 24348, - [SMALL_STATE(186)] = 24487, - [SMALL_STATE(187)] = 24626, - [SMALL_STATE(188)] = 24765, - [SMALL_STATE(189)] = 24904, - [SMALL_STATE(190)] = 25043, - [SMALL_STATE(191)] = 25182, - [SMALL_STATE(192)] = 25321, - [SMALL_STATE(193)] = 25460, - [SMALL_STATE(194)] = 25599, - [SMALL_STATE(195)] = 25738, - [SMALL_STATE(196)] = 25877, - [SMALL_STATE(197)] = 26016, - [SMALL_STATE(198)] = 26155, - [SMALL_STATE(199)] = 26294, - [SMALL_STATE(200)] = 26433, - [SMALL_STATE(201)] = 26572, - [SMALL_STATE(202)] = 26711, - [SMALL_STATE(203)] = 26850, - [SMALL_STATE(204)] = 26989, - [SMALL_STATE(205)] = 27128, - [SMALL_STATE(206)] = 27267, - [SMALL_STATE(207)] = 27406, - [SMALL_STATE(208)] = 27545, - [SMALL_STATE(209)] = 27684, - [SMALL_STATE(210)] = 27823, - [SMALL_STATE(211)] = 27962, - [SMALL_STATE(212)] = 28101, - [SMALL_STATE(213)] = 28240, - [SMALL_STATE(214)] = 28379, - [SMALL_STATE(215)] = 28518, - [SMALL_STATE(216)] = 28657, - [SMALL_STATE(217)] = 28796, - [SMALL_STATE(218)] = 28935, - [SMALL_STATE(219)] = 29074, - [SMALL_STATE(220)] = 29213, - [SMALL_STATE(221)] = 29352, - [SMALL_STATE(222)] = 29491, - [SMALL_STATE(223)] = 29630, - [SMALL_STATE(224)] = 29769, - [SMALL_STATE(225)] = 29908, - [SMALL_STATE(226)] = 30047, - [SMALL_STATE(227)] = 30186, - [SMALL_STATE(228)] = 30325, - [SMALL_STATE(229)] = 30464, - [SMALL_STATE(230)] = 30603, - [SMALL_STATE(231)] = 30742, - [SMALL_STATE(232)] = 30881, - [SMALL_STATE(233)] = 31020, - [SMALL_STATE(234)] = 31159, - [SMALL_STATE(235)] = 31298, - [SMALL_STATE(236)] = 31437, - [SMALL_STATE(237)] = 31576, - [SMALL_STATE(238)] = 31715, - [SMALL_STATE(239)] = 31854, - [SMALL_STATE(240)] = 31993, - [SMALL_STATE(241)] = 32132, - [SMALL_STATE(242)] = 32271, - [SMALL_STATE(243)] = 32410, - [SMALL_STATE(244)] = 32549, - [SMALL_STATE(245)] = 32688, - [SMALL_STATE(246)] = 32827, - [SMALL_STATE(247)] = 32966, - [SMALL_STATE(248)] = 33105, - [SMALL_STATE(249)] = 33244, - [SMALL_STATE(250)] = 33383, - [SMALL_STATE(251)] = 33522, - [SMALL_STATE(252)] = 33661, - [SMALL_STATE(253)] = 33800, - [SMALL_STATE(254)] = 33939, - [SMALL_STATE(255)] = 34078, - [SMALL_STATE(256)] = 34217, - [SMALL_STATE(257)] = 34356, - [SMALL_STATE(258)] = 34495, - [SMALL_STATE(259)] = 34634, - [SMALL_STATE(260)] = 34773, - [SMALL_STATE(261)] = 34912, - [SMALL_STATE(262)] = 35051, - [SMALL_STATE(263)] = 35190, - [SMALL_STATE(264)] = 35329, - [SMALL_STATE(265)] = 35468, - [SMALL_STATE(266)] = 35607, - [SMALL_STATE(267)] = 35746, - [SMALL_STATE(268)] = 35885, - [SMALL_STATE(269)] = 36024, - [SMALL_STATE(270)] = 36163, - [SMALL_STATE(271)] = 36302, - [SMALL_STATE(272)] = 36441, - [SMALL_STATE(273)] = 36580, - [SMALL_STATE(274)] = 36719, - [SMALL_STATE(275)] = 36858, - [SMALL_STATE(276)] = 36997, - [SMALL_STATE(277)] = 37136, - [SMALL_STATE(278)] = 37275, - [SMALL_STATE(279)] = 37414, - [SMALL_STATE(280)] = 37553, - [SMALL_STATE(281)] = 37692, - [SMALL_STATE(282)] = 37831, - [SMALL_STATE(283)] = 37970, - [SMALL_STATE(284)] = 38109, - [SMALL_STATE(285)] = 38248, - [SMALL_STATE(286)] = 38387, - [SMALL_STATE(287)] = 38526, - [SMALL_STATE(288)] = 38665, - [SMALL_STATE(289)] = 38804, - [SMALL_STATE(290)] = 38943, - [SMALL_STATE(291)] = 39082, - [SMALL_STATE(292)] = 39221, - [SMALL_STATE(293)] = 39360, - [SMALL_STATE(294)] = 39499, - [SMALL_STATE(295)] = 39638, - [SMALL_STATE(296)] = 39777, - [SMALL_STATE(297)] = 39916, - [SMALL_STATE(298)] = 40055, - [SMALL_STATE(299)] = 40194, - [SMALL_STATE(300)] = 40333, - [SMALL_STATE(301)] = 40472, - [SMALL_STATE(302)] = 40611, - [SMALL_STATE(303)] = 40750, - [SMALL_STATE(304)] = 40889, - [SMALL_STATE(305)] = 41028, - [SMALL_STATE(306)] = 41167, - [SMALL_STATE(307)] = 41306, - [SMALL_STATE(308)] = 41445, - [SMALL_STATE(309)] = 41584, - [SMALL_STATE(310)] = 41723, - [SMALL_STATE(311)] = 41862, - [SMALL_STATE(312)] = 42001, - [SMALL_STATE(313)] = 42140, - [SMALL_STATE(314)] = 42279, - [SMALL_STATE(315)] = 42418, - [SMALL_STATE(316)] = 42557, - [SMALL_STATE(317)] = 42696, - [SMALL_STATE(318)] = 42835, - [SMALL_STATE(319)] = 42974, - [SMALL_STATE(320)] = 43113, - [SMALL_STATE(321)] = 43252, - [SMALL_STATE(322)] = 43391, - [SMALL_STATE(323)] = 43530, - [SMALL_STATE(324)] = 43669, - [SMALL_STATE(325)] = 43808, - [SMALL_STATE(326)] = 43947, - [SMALL_STATE(327)] = 44086, - [SMALL_STATE(328)] = 44225, - [SMALL_STATE(329)] = 44364, - [SMALL_STATE(330)] = 44503, - [SMALL_STATE(331)] = 44642, - [SMALL_STATE(332)] = 44781, - [SMALL_STATE(333)] = 44920, - [SMALL_STATE(334)] = 45059, - [SMALL_STATE(335)] = 45198, - [SMALL_STATE(336)] = 45337, - [SMALL_STATE(337)] = 45476, - [SMALL_STATE(338)] = 45615, - [SMALL_STATE(339)] = 45754, - [SMALL_STATE(340)] = 45893, - [SMALL_STATE(341)] = 46032, - [SMALL_STATE(342)] = 46171, - [SMALL_STATE(343)] = 46310, - [SMALL_STATE(344)] = 46449, - [SMALL_STATE(345)] = 46588, - [SMALL_STATE(346)] = 46727, - [SMALL_STATE(347)] = 46866, - [SMALL_STATE(348)] = 47005, - [SMALL_STATE(349)] = 47144, - [SMALL_STATE(350)] = 47283, - [SMALL_STATE(351)] = 47422, - [SMALL_STATE(352)] = 47561, - [SMALL_STATE(353)] = 47700, - [SMALL_STATE(354)] = 47839, - [SMALL_STATE(355)] = 47978, - [SMALL_STATE(356)] = 48117, - [SMALL_STATE(357)] = 48256, - [SMALL_STATE(358)] = 48395, - [SMALL_STATE(359)] = 48534, - [SMALL_STATE(360)] = 48673, - [SMALL_STATE(361)] = 48812, - [SMALL_STATE(362)] = 48951, - [SMALL_STATE(363)] = 49090, - [SMALL_STATE(364)] = 49229, - [SMALL_STATE(365)] = 49368, - [SMALL_STATE(366)] = 49507, - [SMALL_STATE(367)] = 49646, - [SMALL_STATE(368)] = 49785, - [SMALL_STATE(369)] = 49924, - [SMALL_STATE(370)] = 50063, - [SMALL_STATE(371)] = 50202, - [SMALL_STATE(372)] = 50341, - [SMALL_STATE(373)] = 50480, - [SMALL_STATE(374)] = 50619, - [SMALL_STATE(375)] = 50758, - [SMALL_STATE(376)] = 50897, - [SMALL_STATE(377)] = 51036, - [SMALL_STATE(378)] = 51175, - [SMALL_STATE(379)] = 51314, - [SMALL_STATE(380)] = 51453, - [SMALL_STATE(381)] = 51592, - [SMALL_STATE(382)] = 51731, - [SMALL_STATE(383)] = 51870, - [SMALL_STATE(384)] = 52009, - [SMALL_STATE(385)] = 52148, - [SMALL_STATE(386)] = 52287, - [SMALL_STATE(387)] = 52426, - [SMALL_STATE(388)] = 52565, - [SMALL_STATE(389)] = 52704, - [SMALL_STATE(390)] = 52843, - [SMALL_STATE(391)] = 52982, - [SMALL_STATE(392)] = 53121, - [SMALL_STATE(393)] = 53260, - [SMALL_STATE(394)] = 53399, - [SMALL_STATE(395)] = 53538, - [SMALL_STATE(396)] = 53677, - [SMALL_STATE(397)] = 53816, - [SMALL_STATE(398)] = 53955, - [SMALL_STATE(399)] = 54094, - [SMALL_STATE(400)] = 54233, - [SMALL_STATE(401)] = 54372, - [SMALL_STATE(402)] = 54511, - [SMALL_STATE(403)] = 54650, - [SMALL_STATE(404)] = 54789, - [SMALL_STATE(405)] = 54928, - [SMALL_STATE(406)] = 55067, - [SMALL_STATE(407)] = 55206, - [SMALL_STATE(408)] = 55345, - [SMALL_STATE(409)] = 55484, - [SMALL_STATE(410)] = 55623, - [SMALL_STATE(411)] = 55762, - [SMALL_STATE(412)] = 55901, - [SMALL_STATE(413)] = 56040, - [SMALL_STATE(414)] = 56179, - [SMALL_STATE(415)] = 56318, - [SMALL_STATE(416)] = 56457, - [SMALL_STATE(417)] = 56596, - [SMALL_STATE(418)] = 56735, - [SMALL_STATE(419)] = 56874, - [SMALL_STATE(420)] = 57013, - [SMALL_STATE(421)] = 57152, - [SMALL_STATE(422)] = 57291, - [SMALL_STATE(423)] = 57430, - [SMALL_STATE(424)] = 57566, - [SMALL_STATE(425)] = 57702, - [SMALL_STATE(426)] = 57838, - [SMALL_STATE(427)] = 57974, - [SMALL_STATE(428)] = 58110, - [SMALL_STATE(429)] = 58246, - [SMALL_STATE(430)] = 58382, - [SMALL_STATE(431)] = 58518, - [SMALL_STATE(432)] = 58654, - [SMALL_STATE(433)] = 58790, - [SMALL_STATE(434)] = 58926, - [SMALL_STATE(435)] = 59062, - [SMALL_STATE(436)] = 59198, - [SMALL_STATE(437)] = 59334, - [SMALL_STATE(438)] = 59397, - [SMALL_STATE(439)] = 59456, - [SMALL_STATE(440)] = 59519, - [SMALL_STATE(441)] = 59578, - [SMALL_STATE(442)] = 59641, - [SMALL_STATE(443)] = 59701, - [SMALL_STATE(444)] = 59761, - [SMALL_STATE(445)] = 59821, - [SMALL_STATE(446)] = 59881, - [SMALL_STATE(447)] = 59945, - [SMALL_STATE(448)] = 60000, - [SMALL_STATE(449)] = 60055, - [SMALL_STATE(450)] = 60110, - [SMALL_STATE(451)] = 60164, - [SMALL_STATE(452)] = 60218, - [SMALL_STATE(453)] = 60272, - [SMALL_STATE(454)] = 60326, - [SMALL_STATE(455)] = 60380, - [SMALL_STATE(456)] = 60434, - [SMALL_STATE(457)] = 60488, - [SMALL_STATE(458)] = 60542, - [SMALL_STATE(459)] = 60596, - [SMALL_STATE(460)] = 60650, - [SMALL_STATE(461)] = 60704, - [SMALL_STATE(462)] = 60758, - [SMALL_STATE(463)] = 60812, - [SMALL_STATE(464)] = 60866, - [SMALL_STATE(465)] = 60920, - [SMALL_STATE(466)] = 60974, - [SMALL_STATE(467)] = 61028, - [SMALL_STATE(468)] = 61082, - [SMALL_STATE(469)] = 61136, - [SMALL_STATE(470)] = 61190, - [SMALL_STATE(471)] = 61244, - [SMALL_STATE(472)] = 61298, - [SMALL_STATE(473)] = 61352, - [SMALL_STATE(474)] = 61406, - [SMALL_STATE(475)] = 61460, - [SMALL_STATE(476)] = 61514, - [SMALL_STATE(477)] = 61568, - [SMALL_STATE(478)] = 61622, - [SMALL_STATE(479)] = 61676, - [SMALL_STATE(480)] = 61730, - [SMALL_STATE(481)] = 61784, - [SMALL_STATE(482)] = 61838, - [SMALL_STATE(483)] = 61892, - [SMALL_STATE(484)] = 61946, - [SMALL_STATE(485)] = 62000, - [SMALL_STATE(486)] = 62054, - [SMALL_STATE(487)] = 62108, - [SMALL_STATE(488)] = 62162, - [SMALL_STATE(489)] = 62216, - [SMALL_STATE(490)] = 62270, - [SMALL_STATE(491)] = 62324, - [SMALL_STATE(492)] = 62378, - [SMALL_STATE(493)] = 62432, - [SMALL_STATE(494)] = 62486, - [SMALL_STATE(495)] = 62540, - [SMALL_STATE(496)] = 62594, - [SMALL_STATE(497)] = 62648, - [SMALL_STATE(498)] = 62702, - [SMALL_STATE(499)] = 62756, - [SMALL_STATE(500)] = 62810, - [SMALL_STATE(501)] = 62864, - [SMALL_STATE(502)] = 62918, - [SMALL_STATE(503)] = 62972, - [SMALL_STATE(504)] = 63026, - [SMALL_STATE(505)] = 63080, - [SMALL_STATE(506)] = 63134, - [SMALL_STATE(507)] = 63188, - [SMALL_STATE(508)] = 63242, - [SMALL_STATE(509)] = 63296, - [SMALL_STATE(510)] = 63350, - [SMALL_STATE(511)] = 63404, - [SMALL_STATE(512)] = 63458, - [SMALL_STATE(513)] = 63512, - [SMALL_STATE(514)] = 63566, - [SMALL_STATE(515)] = 63620, - [SMALL_STATE(516)] = 63674, - [SMALL_STATE(517)] = 63728, - [SMALL_STATE(518)] = 63782, - [SMALL_STATE(519)] = 63836, - [SMALL_STATE(520)] = 63890, - [SMALL_STATE(521)] = 63944, - [SMALL_STATE(522)] = 63998, - [SMALL_STATE(523)] = 64052, - [SMALL_STATE(524)] = 64106, - [SMALL_STATE(525)] = 64160, - [SMALL_STATE(526)] = 64214, - [SMALL_STATE(527)] = 64268, - [SMALL_STATE(528)] = 64322, - [SMALL_STATE(529)] = 64376, - [SMALL_STATE(530)] = 64430, - [SMALL_STATE(531)] = 64484, - [SMALL_STATE(532)] = 64538, - [SMALL_STATE(533)] = 64592, - [SMALL_STATE(534)] = 64646, - [SMALL_STATE(535)] = 64700, - [SMALL_STATE(536)] = 64754, - [SMALL_STATE(537)] = 64808, - [SMALL_STATE(538)] = 64862, - [SMALL_STATE(539)] = 64916, - [SMALL_STATE(540)] = 64970, - [SMALL_STATE(541)] = 65024, - [SMALL_STATE(542)] = 65078, - [SMALL_STATE(543)] = 65132, - [SMALL_STATE(544)] = 65186, - [SMALL_STATE(545)] = 65240, - [SMALL_STATE(546)] = 65294, - [SMALL_STATE(547)] = 65348, - [SMALL_STATE(548)] = 65402, - [SMALL_STATE(549)] = 65456, - [SMALL_STATE(550)] = 65510, - [SMALL_STATE(551)] = 65564, - [SMALL_STATE(552)] = 65618, - [SMALL_STATE(553)] = 65672, - [SMALL_STATE(554)] = 65737, - [SMALL_STATE(555)] = 65802, - [SMALL_STATE(556)] = 65867, - [SMALL_STATE(557)] = 65953, - [SMALL_STATE(558)] = 66039, - [SMALL_STATE(559)] = 66125, - [SMALL_STATE(560)] = 66211, - [SMALL_STATE(561)] = 66297, - [SMALL_STATE(562)] = 66383, - [SMALL_STATE(563)] = 66469, - [SMALL_STATE(564)] = 66555, - [SMALL_STATE(565)] = 66641, - [SMALL_STATE(566)] = 66727, - [SMALL_STATE(567)] = 66813, - [SMALL_STATE(568)] = 66899, - [SMALL_STATE(569)] = 66985, - [SMALL_STATE(570)] = 67071, - [SMALL_STATE(571)] = 67157, - [SMALL_STATE(572)] = 67243, - [SMALL_STATE(573)] = 67329, - [SMALL_STATE(574)] = 67415, - [SMALL_STATE(575)] = 67501, - [SMALL_STATE(576)] = 67559, - [SMALL_STATE(577)] = 67645, - [SMALL_STATE(578)] = 67731, - [SMALL_STATE(579)] = 67817, - [SMALL_STATE(580)] = 67903, - [SMALL_STATE(581)] = 67989, - [SMALL_STATE(582)] = 68075, - [SMALL_STATE(583)] = 68161, - [SMALL_STATE(584)] = 68247, - [SMALL_STATE(585)] = 68333, - [SMALL_STATE(586)] = 68419, - [SMALL_STATE(587)] = 68468, - [SMALL_STATE(588)] = 68517, - [SMALL_STATE(589)] = 68569, - [SMALL_STATE(590)] = 68631, - [SMALL_STATE(591)] = 68683, - [SMALL_STATE(592)] = 68735, - [SMALL_STATE(593)] = 68797, - [SMALL_STATE(594)] = 68859, - [SMALL_STATE(595)] = 68921, - [SMALL_STATE(596)] = 68983, - [SMALL_STATE(597)] = 69035, - [SMALL_STATE(598)] = 69097, - [SMALL_STATE(599)] = 69159, - [SMALL_STATE(600)] = 69214, - [SMALL_STATE(601)] = 69261, - [SMALL_STATE(602)] = 69312, - [SMALL_STATE(603)] = 69361, - [SMALL_STATE(604)] = 69412, - [SMALL_STATE(605)] = 69463, - [SMALL_STATE(606)] = 69509, - [SMALL_STATE(607)] = 69555, - [SMALL_STATE(608)] = 69601, - [SMALL_STATE(609)] = 69647, - [SMALL_STATE(610)] = 69693, - [SMALL_STATE(611)] = 69739, - [SMALL_STATE(612)] = 69785, - [SMALL_STATE(613)] = 69831, - [SMALL_STATE(614)] = 69877, - [SMALL_STATE(615)] = 69923, - [SMALL_STATE(616)] = 69969, - [SMALL_STATE(617)] = 70015, - [SMALL_STATE(618)] = 70061, - [SMALL_STATE(619)] = 70107, - [SMALL_STATE(620)] = 70153, - [SMALL_STATE(621)] = 70199, - [SMALL_STATE(622)] = 70245, - [SMALL_STATE(623)] = 70291, - [SMALL_STATE(624)] = 70337, - [SMALL_STATE(625)] = 70383, - [SMALL_STATE(626)] = 70429, - [SMALL_STATE(627)] = 70475, - [SMALL_STATE(628)] = 70521, - [SMALL_STATE(629)] = 70567, - [SMALL_STATE(630)] = 70613, - [SMALL_STATE(631)] = 70659, - [SMALL_STATE(632)] = 70705, - [SMALL_STATE(633)] = 70751, - [SMALL_STATE(634)] = 70797, - [SMALL_STATE(635)] = 70843, - [SMALL_STATE(636)] = 70889, - [SMALL_STATE(637)] = 70935, - [SMALL_STATE(638)] = 70981, - [SMALL_STATE(639)] = 71027, - [SMALL_STATE(640)] = 71073, - [SMALL_STATE(641)] = 71119, - [SMALL_STATE(642)] = 71165, - [SMALL_STATE(643)] = 71211, - [SMALL_STATE(644)] = 71257, - [SMALL_STATE(645)] = 71303, - [SMALL_STATE(646)] = 71349, - [SMALL_STATE(647)] = 71395, - [SMALL_STATE(648)] = 71441, - [SMALL_STATE(649)] = 71487, - [SMALL_STATE(650)] = 71533, - [SMALL_STATE(651)] = 71579, - [SMALL_STATE(652)] = 71625, - [SMALL_STATE(653)] = 71671, - [SMALL_STATE(654)] = 71717, - [SMALL_STATE(655)] = 71763, - [SMALL_STATE(656)] = 71809, - [SMALL_STATE(657)] = 71855, - [SMALL_STATE(658)] = 71901, - [SMALL_STATE(659)] = 71947, - [SMALL_STATE(660)] = 71993, - [SMALL_STATE(661)] = 72039, - [SMALL_STATE(662)] = 72085, - [SMALL_STATE(663)] = 72131, - [SMALL_STATE(664)] = 72177, - [SMALL_STATE(665)] = 72223, - [SMALL_STATE(666)] = 72269, - [SMALL_STATE(667)] = 72315, - [SMALL_STATE(668)] = 72361, - [SMALL_STATE(669)] = 72407, - [SMALL_STATE(670)] = 72453, - [SMALL_STATE(671)] = 72499, - [SMALL_STATE(672)] = 72545, - [SMALL_STATE(673)] = 72591, - [SMALL_STATE(674)] = 72637, - [SMALL_STATE(675)] = 72683, - [SMALL_STATE(676)] = 72729, - [SMALL_STATE(677)] = 72775, - [SMALL_STATE(678)] = 72821, - [SMALL_STATE(679)] = 72867, - [SMALL_STATE(680)] = 72913, - [SMALL_STATE(681)] = 72959, - [SMALL_STATE(682)] = 73005, - [SMALL_STATE(683)] = 73051, - [SMALL_STATE(684)] = 73097, - [SMALL_STATE(685)] = 73143, - [SMALL_STATE(686)] = 73189, - [SMALL_STATE(687)] = 73235, - [SMALL_STATE(688)] = 73281, - [SMALL_STATE(689)] = 73327, - [SMALL_STATE(690)] = 73373, - [SMALL_STATE(691)] = 73419, - [SMALL_STATE(692)] = 73465, - [SMALL_STATE(693)] = 73511, - [SMALL_STATE(694)] = 73557, - [SMALL_STATE(695)] = 73603, - [SMALL_STATE(696)] = 73649, - [SMALL_STATE(697)] = 73695, - [SMALL_STATE(698)] = 73741, - [SMALL_STATE(699)] = 73787, - [SMALL_STATE(700)] = 73833, - [SMALL_STATE(701)] = 73879, - [SMALL_STATE(702)] = 73925, - [SMALL_STATE(703)] = 73971, - [SMALL_STATE(704)] = 74017, - [SMALL_STATE(705)] = 74063, - [SMALL_STATE(706)] = 74109, - [SMALL_STATE(707)] = 74155, - [SMALL_STATE(708)] = 74201, - [SMALL_STATE(709)] = 74247, - [SMALL_STATE(710)] = 74293, - [SMALL_STATE(711)] = 74339, - [SMALL_STATE(712)] = 74385, - [SMALL_STATE(713)] = 74431, - [SMALL_STATE(714)] = 74477, - [SMALL_STATE(715)] = 74523, - [SMALL_STATE(716)] = 74569, - [SMALL_STATE(717)] = 74615, - [SMALL_STATE(718)] = 74661, - [SMALL_STATE(719)] = 74707, - [SMALL_STATE(720)] = 74753, - [SMALL_STATE(721)] = 74799, - [SMALL_STATE(722)] = 74845, - [SMALL_STATE(723)] = 74891, - [SMALL_STATE(724)] = 74937, - [SMALL_STATE(725)] = 74983, - [SMALL_STATE(726)] = 75029, - [SMALL_STATE(727)] = 75075, - [SMALL_STATE(728)] = 75121, - [SMALL_STATE(729)] = 75167, - [SMALL_STATE(730)] = 75213, - [SMALL_STATE(731)] = 75259, - [SMALL_STATE(732)] = 75305, - [SMALL_STATE(733)] = 75351, - [SMALL_STATE(734)] = 75397, - [SMALL_STATE(735)] = 75443, - [SMALL_STATE(736)] = 75489, - [SMALL_STATE(737)] = 75535, - [SMALL_STATE(738)] = 75581, - [SMALL_STATE(739)] = 75627, - [SMALL_STATE(740)] = 75673, - [SMALL_STATE(741)] = 75719, - [SMALL_STATE(742)] = 75765, - [SMALL_STATE(743)] = 75811, - [SMALL_STATE(744)] = 75857, - [SMALL_STATE(745)] = 75903, - [SMALL_STATE(746)] = 75949, - [SMALL_STATE(747)] = 75995, - [SMALL_STATE(748)] = 76041, - [SMALL_STATE(749)] = 76087, - [SMALL_STATE(750)] = 76133, - [SMALL_STATE(751)] = 76179, - [SMALL_STATE(752)] = 76225, - [SMALL_STATE(753)] = 76271, - [SMALL_STATE(754)] = 76317, - [SMALL_STATE(755)] = 76363, - [SMALL_STATE(756)] = 76409, - [SMALL_STATE(757)] = 76455, - [SMALL_STATE(758)] = 76501, - [SMALL_STATE(759)] = 76547, - [SMALL_STATE(760)] = 76593, - [SMALL_STATE(761)] = 76639, - [SMALL_STATE(762)] = 76685, - [SMALL_STATE(763)] = 76731, - [SMALL_STATE(764)] = 76777, - [SMALL_STATE(765)] = 76823, - [SMALL_STATE(766)] = 76869, - [SMALL_STATE(767)] = 76915, - [SMALL_STATE(768)] = 76961, - [SMALL_STATE(769)] = 77007, - [SMALL_STATE(770)] = 77053, - [SMALL_STATE(771)] = 77099, - [SMALL_STATE(772)] = 77145, - [SMALL_STATE(773)] = 77191, - [SMALL_STATE(774)] = 77237, - [SMALL_STATE(775)] = 77283, - [SMALL_STATE(776)] = 77329, - [SMALL_STATE(777)] = 77375, - [SMALL_STATE(778)] = 77421, - [SMALL_STATE(779)] = 77467, - [SMALL_STATE(780)] = 77513, - [SMALL_STATE(781)] = 77559, - [SMALL_STATE(782)] = 77605, - [SMALL_STATE(783)] = 77651, - [SMALL_STATE(784)] = 77697, - [SMALL_STATE(785)] = 77743, - [SMALL_STATE(786)] = 77789, - [SMALL_STATE(787)] = 77835, - [SMALL_STATE(788)] = 77881, - [SMALL_STATE(789)] = 77927, - [SMALL_STATE(790)] = 77973, - [SMALL_STATE(791)] = 78019, - [SMALL_STATE(792)] = 78065, - [SMALL_STATE(793)] = 78111, - [SMALL_STATE(794)] = 78157, - [SMALL_STATE(795)] = 78203, - [SMALL_STATE(796)] = 78249, - [SMALL_STATE(797)] = 78295, - [SMALL_STATE(798)] = 78341, - [SMALL_STATE(799)] = 78387, - [SMALL_STATE(800)] = 78433, - [SMALL_STATE(801)] = 78479, - [SMALL_STATE(802)] = 78525, - [SMALL_STATE(803)] = 78571, - [SMALL_STATE(804)] = 78617, - [SMALL_STATE(805)] = 78663, - [SMALL_STATE(806)] = 78709, - [SMALL_STATE(807)] = 78755, - [SMALL_STATE(808)] = 78801, - [SMALL_STATE(809)] = 78847, - [SMALL_STATE(810)] = 78893, - [SMALL_STATE(811)] = 78939, - [SMALL_STATE(812)] = 78985, - [SMALL_STATE(813)] = 79031, - [SMALL_STATE(814)] = 79077, - [SMALL_STATE(815)] = 79123, - [SMALL_STATE(816)] = 79173, - [SMALL_STATE(817)] = 79219, - [SMALL_STATE(818)] = 79269, - [SMALL_STATE(819)] = 79315, - [SMALL_STATE(820)] = 79361, - [SMALL_STATE(821)] = 79407, - [SMALL_STATE(822)] = 79453, - [SMALL_STATE(823)] = 79497, - [SMALL_STATE(824)] = 79543, - [SMALL_STATE(825)] = 79584, - [SMALL_STATE(826)] = 79625, - [SMALL_STATE(827)] = 79666, - [SMALL_STATE(828)] = 79707, - [SMALL_STATE(829)] = 79748, - [SMALL_STATE(830)] = 79789, - [SMALL_STATE(831)] = 79830, - [SMALL_STATE(832)] = 79871, - [SMALL_STATE(833)] = 79912, - [SMALL_STATE(834)] = 79953, - [SMALL_STATE(835)] = 79994, - [SMALL_STATE(836)] = 80035, - [SMALL_STATE(837)] = 80076, - [SMALL_STATE(838)] = 80117, - [SMALL_STATE(839)] = 80158, - [SMALL_STATE(840)] = 80199, - [SMALL_STATE(841)] = 80240, - [SMALL_STATE(842)] = 80281, - [SMALL_STATE(843)] = 80322, - [SMALL_STATE(844)] = 80363, - [SMALL_STATE(845)] = 80404, - [SMALL_STATE(846)] = 80445, - [SMALL_STATE(847)] = 80486, - [SMALL_STATE(848)] = 80527, - [SMALL_STATE(849)] = 80568, - [SMALL_STATE(850)] = 80609, - [SMALL_STATE(851)] = 80650, - [SMALL_STATE(852)] = 80691, - [SMALL_STATE(853)] = 80732, - [SMALL_STATE(854)] = 80773, - [SMALL_STATE(855)] = 80814, - [SMALL_STATE(856)] = 80855, - [SMALL_STATE(857)] = 80896, - [SMALL_STATE(858)] = 80937, - [SMALL_STATE(859)] = 80978, - [SMALL_STATE(860)] = 81019, - [SMALL_STATE(861)] = 81060, - [SMALL_STATE(862)] = 81101, - [SMALL_STATE(863)] = 81142, - [SMALL_STATE(864)] = 81183, - [SMALL_STATE(865)] = 81224, - [SMALL_STATE(866)] = 81265, - [SMALL_STATE(867)] = 81306, - [SMALL_STATE(868)] = 81347, - [SMALL_STATE(869)] = 81388, - [SMALL_STATE(870)] = 81429, - [SMALL_STATE(871)] = 81470, - [SMALL_STATE(872)] = 81511, - [SMALL_STATE(873)] = 81552, - [SMALL_STATE(874)] = 81593, - [SMALL_STATE(875)] = 81634, - [SMALL_STATE(876)] = 81675, - [SMALL_STATE(877)] = 81716, - [SMALL_STATE(878)] = 81757, - [SMALL_STATE(879)] = 81798, - [SMALL_STATE(880)] = 81839, - [SMALL_STATE(881)] = 81880, - [SMALL_STATE(882)] = 81921, - [SMALL_STATE(883)] = 81962, - [SMALL_STATE(884)] = 82003, - [SMALL_STATE(885)] = 82044, - [SMALL_STATE(886)] = 82085, - [SMALL_STATE(887)] = 82126, - [SMALL_STATE(888)] = 82167, - [SMALL_STATE(889)] = 82208, - [SMALL_STATE(890)] = 82249, - [SMALL_STATE(891)] = 82290, - [SMALL_STATE(892)] = 82331, - [SMALL_STATE(893)] = 82372, - [SMALL_STATE(894)] = 82413, - [SMALL_STATE(895)] = 82454, - [SMALL_STATE(896)] = 82495, - [SMALL_STATE(897)] = 82536, - [SMALL_STATE(898)] = 82577, - [SMALL_STATE(899)] = 82618, - [SMALL_STATE(900)] = 82659, - [SMALL_STATE(901)] = 82700, - [SMALL_STATE(902)] = 82741, - [SMALL_STATE(903)] = 82782, - [SMALL_STATE(904)] = 82823, - [SMALL_STATE(905)] = 82864, - [SMALL_STATE(906)] = 82905, - [SMALL_STATE(907)] = 82946, - [SMALL_STATE(908)] = 82987, - [SMALL_STATE(909)] = 83028, - [SMALL_STATE(910)] = 83069, - [SMALL_STATE(911)] = 83110, - [SMALL_STATE(912)] = 83151, - [SMALL_STATE(913)] = 83192, - [SMALL_STATE(914)] = 83233, - [SMALL_STATE(915)] = 83274, - [SMALL_STATE(916)] = 83315, - [SMALL_STATE(917)] = 83356, - [SMALL_STATE(918)] = 83397, - [SMALL_STATE(919)] = 83438, - [SMALL_STATE(920)] = 83479, - [SMALL_STATE(921)] = 83520, - [SMALL_STATE(922)] = 83561, - [SMALL_STATE(923)] = 83602, - [SMALL_STATE(924)] = 83643, - [SMALL_STATE(925)] = 83684, - [SMALL_STATE(926)] = 83725, - [SMALL_STATE(927)] = 83766, - [SMALL_STATE(928)] = 83807, - [SMALL_STATE(929)] = 83848, - [SMALL_STATE(930)] = 83889, - [SMALL_STATE(931)] = 83935, - [SMALL_STATE(932)] = 83977, - [SMALL_STATE(933)] = 84016, - [SMALL_STATE(934)] = 84057, - [SMALL_STATE(935)] = 84097, - [SMALL_STATE(936)] = 84135, - [SMALL_STATE(937)] = 84175, - [SMALL_STATE(938)] = 84213, - [SMALL_STATE(939)] = 84251, - [SMALL_STATE(940)] = 84289, - [SMALL_STATE(941)] = 84327, - [SMALL_STATE(942)] = 84367, - [SMALL_STATE(943)] = 84407, - [SMALL_STATE(944)] = 84447, - [SMALL_STATE(945)] = 84487, - [SMALL_STATE(946)] = 84527, - [SMALL_STATE(947)] = 84565, - [SMALL_STATE(948)] = 84602, - [SMALL_STATE(949)] = 84639, - [SMALL_STATE(950)] = 84682, - [SMALL_STATE(951)] = 84718, - [SMALL_STATE(952)] = 84754, - [SMALL_STATE(953)] = 84791, - [SMALL_STATE(954)] = 84828, - [SMALL_STATE(955)] = 84865, - [SMALL_STATE(956)] = 84902, - [SMALL_STATE(957)] = 84934, - [SMALL_STATE(958)] = 84974, - [SMALL_STATE(959)] = 85014, - [SMALL_STATE(960)] = 85045, - [SMALL_STATE(961)] = 85076, - [SMALL_STATE(962)] = 85107, - [SMALL_STATE(963)] = 85138, - [SMALL_STATE(964)] = 85169, - [SMALL_STATE(965)] = 85200, - [SMALL_STATE(966)] = 85231, - [SMALL_STATE(967)] = 85262, - [SMALL_STATE(968)] = 85337, - [SMALL_STATE(969)] = 85368, - [SMALL_STATE(970)] = 85399, - [SMALL_STATE(971)] = 85430, - [SMALL_STATE(972)] = 85461, - [SMALL_STATE(973)] = 85492, - [SMALL_STATE(974)] = 85523, - [SMALL_STATE(975)] = 85554, - [SMALL_STATE(976)] = 85585, - [SMALL_STATE(977)] = 85616, - [SMALL_STATE(978)] = 85647, - [SMALL_STATE(979)] = 85678, - [SMALL_STATE(980)] = 85709, - [SMALL_STATE(981)] = 85740, - [SMALL_STATE(982)] = 85771, - [SMALL_STATE(983)] = 85802, - [SMALL_STATE(984)] = 85833, - [SMALL_STATE(985)] = 85864, - [SMALL_STATE(986)] = 85895, - [SMALL_STATE(987)] = 85926, - [SMALL_STATE(988)] = 85957, - [SMALL_STATE(989)] = 85988, - [SMALL_STATE(990)] = 86019, - [SMALL_STATE(991)] = 86050, - [SMALL_STATE(992)] = 86081, - [SMALL_STATE(993)] = 86156, - [SMALL_STATE(994)] = 86187, - [SMALL_STATE(995)] = 86218, - [SMALL_STATE(996)] = 86249, - [SMALL_STATE(997)] = 86280, - [SMALL_STATE(998)] = 86311, - [SMALL_STATE(999)] = 86342, - [SMALL_STATE(1000)] = 86417, - [SMALL_STATE(1001)] = 86448, - [SMALL_STATE(1002)] = 86479, - [SMALL_STATE(1003)] = 86510, - [SMALL_STATE(1004)] = 86541, - [SMALL_STATE(1005)] = 86572, - [SMALL_STATE(1006)] = 86603, - [SMALL_STATE(1007)] = 86634, - [SMALL_STATE(1008)] = 86665, - [SMALL_STATE(1009)] = 86696, - [SMALL_STATE(1010)] = 86727, - [SMALL_STATE(1011)] = 86758, - [SMALL_STATE(1012)] = 86789, - [SMALL_STATE(1013)] = 86820, - [SMALL_STATE(1014)] = 86851, - [SMALL_STATE(1015)] = 86882, - [SMALL_STATE(1016)] = 86913, - [SMALL_STATE(1017)] = 86944, - [SMALL_STATE(1018)] = 86975, - [SMALL_STATE(1019)] = 87006, - [SMALL_STATE(1020)] = 87037, - [SMALL_STATE(1021)] = 87068, - [SMALL_STATE(1022)] = 87143, - [SMALL_STATE(1023)] = 87174, - [SMALL_STATE(1024)] = 87205, - [SMALL_STATE(1025)] = 87236, - [SMALL_STATE(1026)] = 87267, - [SMALL_STATE(1027)] = 87298, - [SMALL_STATE(1028)] = 87329, - [SMALL_STATE(1029)] = 87360, - [SMALL_STATE(1030)] = 87435, - [SMALL_STATE(1031)] = 87466, - [SMALL_STATE(1032)] = 87497, - [SMALL_STATE(1033)] = 87528, - [SMALL_STATE(1034)] = 87559, - [SMALL_STATE(1035)] = 87590, - [SMALL_STATE(1036)] = 87621, - [SMALL_STATE(1037)] = 87652, - [SMALL_STATE(1038)] = 87683, - [SMALL_STATE(1039)] = 87714, - [SMALL_STATE(1040)] = 87745, - [SMALL_STATE(1041)] = 87776, - [SMALL_STATE(1042)] = 87807, - [SMALL_STATE(1043)] = 87838, - [SMALL_STATE(1044)] = 87869, - [SMALL_STATE(1045)] = 87944, - [SMALL_STATE(1046)] = 87975, - [SMALL_STATE(1047)] = 88006, - [SMALL_STATE(1048)] = 88081, - [SMALL_STATE(1049)] = 88114, - [SMALL_STATE(1050)] = 88145, - [SMALL_STATE(1051)] = 88220, - [SMALL_STATE(1052)] = 88253, - [SMALL_STATE(1053)] = 88284, - [SMALL_STATE(1054)] = 88315, - [SMALL_STATE(1055)] = 88346, - [SMALL_STATE(1056)] = 88377, - [SMALL_STATE(1057)] = 88408, - [SMALL_STATE(1058)] = 88439, - [SMALL_STATE(1059)] = 88470, - [SMALL_STATE(1060)] = 88501, - [SMALL_STATE(1061)] = 88532, - [SMALL_STATE(1062)] = 88563, - [SMALL_STATE(1063)] = 88594, - [SMALL_STATE(1064)] = 88625, - [SMALL_STATE(1065)] = 88656, - [SMALL_STATE(1066)] = 88687, - [SMALL_STATE(1067)] = 88718, - [SMALL_STATE(1068)] = 88793, - [SMALL_STATE(1069)] = 88824, - [SMALL_STATE(1070)] = 88855, - [SMALL_STATE(1071)] = 88886, - [SMALL_STATE(1072)] = 88917, - [SMALL_STATE(1073)] = 88948, - [SMALL_STATE(1074)] = 88984, - [SMALL_STATE(1075)] = 89020, - [SMALL_STATE(1076)] = 89056, - [SMALL_STATE(1077)] = 89096, - [SMALL_STATE(1078)] = 89132, - [SMALL_STATE(1079)] = 89169, - [SMALL_STATE(1080)] = 89198, - [SMALL_STATE(1081)] = 89229, - [SMALL_STATE(1082)] = 89258, - [SMALL_STATE(1083)] = 89289, - [SMALL_STATE(1084)] = 89326, - [SMALL_STATE(1085)] = 89363, - [SMALL_STATE(1086)] = 89392, - [SMALL_STATE(1087)] = 89433, - [SMALL_STATE(1088)] = 89462, - [SMALL_STATE(1089)] = 89491, - [SMALL_STATE(1090)] = 89532, - [SMALL_STATE(1091)] = 89569, - [SMALL_STATE(1092)] = 89598, - [SMALL_STATE(1093)] = 89627, - [SMALL_STATE(1094)] = 89656, - [SMALL_STATE(1095)] = 89685, - [SMALL_STATE(1096)] = 89714, - [SMALL_STATE(1097)] = 89743, - [SMALL_STATE(1098)] = 89774, - [SMALL_STATE(1099)] = 89811, - [SMALL_STATE(1100)] = 89840, - [SMALL_STATE(1101)] = 89869, - [SMALL_STATE(1102)] = 89898, - [SMALL_STATE(1103)] = 89927, - [SMALL_STATE(1104)] = 89957, - [SMALL_STATE(1105)] = 89987, - [SMALL_STATE(1106)] = 90045, - [SMALL_STATE(1107)] = 90103, - [SMALL_STATE(1108)] = 90133, - [SMALL_STATE(1109)] = 90163, - [SMALL_STATE(1110)] = 90193, - [SMALL_STATE(1111)] = 90223, - [SMALL_STATE(1112)] = 90253, - [SMALL_STATE(1113)] = 90283, - [SMALL_STATE(1114)] = 90341, - [SMALL_STATE(1115)] = 90399, - [SMALL_STATE(1116)] = 90429, - [SMALL_STATE(1117)] = 90459, - [SMALL_STATE(1118)] = 90489, - [SMALL_STATE(1119)] = 90519, - [SMALL_STATE(1120)] = 90549, - [SMALL_STATE(1121)] = 90579, - [SMALL_STATE(1122)] = 90609, - [SMALL_STATE(1123)] = 90639, - [SMALL_STATE(1124)] = 90669, - [SMALL_STATE(1125)] = 90699, - [SMALL_STATE(1126)] = 90729, - [SMALL_STATE(1127)] = 90759, - [SMALL_STATE(1128)] = 90789, - [SMALL_STATE(1129)] = 90819, - [SMALL_STATE(1130)] = 90849, - [SMALL_STATE(1131)] = 90879, - [SMALL_STATE(1132)] = 90909, - [SMALL_STATE(1133)] = 90939, - [SMALL_STATE(1134)] = 90969, - [SMALL_STATE(1135)] = 90999, - [SMALL_STATE(1136)] = 91057, - [SMALL_STATE(1137)] = 91087, - [SMALL_STATE(1138)] = 91117, - [SMALL_STATE(1139)] = 91147, - [SMALL_STATE(1140)] = 91177, - [SMALL_STATE(1141)] = 91207, - [SMALL_STATE(1142)] = 91237, - [SMALL_STATE(1143)] = 91295, - [SMALL_STATE(1144)] = 91325, - [SMALL_STATE(1145)] = 91355, - [SMALL_STATE(1146)] = 91385, - [SMALL_STATE(1147)] = 91415, - [SMALL_STATE(1148)] = 91445, - [SMALL_STATE(1149)] = 91475, - [SMALL_STATE(1150)] = 91533, - [SMALL_STATE(1151)] = 91563, - [SMALL_STATE(1152)] = 91621, - [SMALL_STATE(1153)] = 91651, - [SMALL_STATE(1154)] = 91681, - [SMALL_STATE(1155)] = 91711, - [SMALL_STATE(1156)] = 91741, - [SMALL_STATE(1157)] = 91771, - [SMALL_STATE(1158)] = 91801, - [SMALL_STATE(1159)] = 91831, - [SMALL_STATE(1160)] = 91861, - [SMALL_STATE(1161)] = 91891, - [SMALL_STATE(1162)] = 91921, - [SMALL_STATE(1163)] = 91951, - [SMALL_STATE(1164)] = 91981, - [SMALL_STATE(1165)] = 92011, - [SMALL_STATE(1166)] = 92049, - [SMALL_STATE(1167)] = 92079, - [SMALL_STATE(1168)] = 92109, - [SMALL_STATE(1169)] = 92139, - [SMALL_STATE(1170)] = 92169, - [SMALL_STATE(1171)] = 92199, - [SMALL_STATE(1172)] = 92229, - [SMALL_STATE(1173)] = 92259, - [SMALL_STATE(1174)] = 92289, - [SMALL_STATE(1175)] = 92319, - [SMALL_STATE(1176)] = 92349, - [SMALL_STATE(1177)] = 92379, - [SMALL_STATE(1178)] = 92409, - [SMALL_STATE(1179)] = 92439, - [SMALL_STATE(1180)] = 92469, - [SMALL_STATE(1181)] = 92499, - [SMALL_STATE(1182)] = 92529, - [SMALL_STATE(1183)] = 92559, - [SMALL_STATE(1184)] = 92589, - [SMALL_STATE(1185)] = 92619, - [SMALL_STATE(1186)] = 92649, - [SMALL_STATE(1187)] = 92679, - [SMALL_STATE(1188)] = 92709, - [SMALL_STATE(1189)] = 92739, - [SMALL_STATE(1190)] = 92769, - [SMALL_STATE(1191)] = 92799, - [SMALL_STATE(1192)] = 92829, - [SMALL_STATE(1193)] = 92859, - [SMALL_STATE(1194)] = 92889, - [SMALL_STATE(1195)] = 92919, - [SMALL_STATE(1196)] = 92949, - [SMALL_STATE(1197)] = 92979, - [SMALL_STATE(1198)] = 93009, - [SMALL_STATE(1199)] = 93039, - [SMALL_STATE(1200)] = 93069, - [SMALL_STATE(1201)] = 93099, - [SMALL_STATE(1202)] = 93129, - [SMALL_STATE(1203)] = 93159, - [SMALL_STATE(1204)] = 93189, - [SMALL_STATE(1205)] = 93219, - [SMALL_STATE(1206)] = 93249, - [SMALL_STATE(1207)] = 93279, - [SMALL_STATE(1208)] = 93309, - [SMALL_STATE(1209)] = 93339, - [SMALL_STATE(1210)] = 93369, - [SMALL_STATE(1211)] = 93399, - [SMALL_STATE(1212)] = 93429, - [SMALL_STATE(1213)] = 93459, - [SMALL_STATE(1214)] = 93489, - [SMALL_STATE(1215)] = 93519, - [SMALL_STATE(1216)] = 93576, - [SMALL_STATE(1217)] = 93633, - [SMALL_STATE(1218)] = 93662, - [SMALL_STATE(1219)] = 93715, - [SMALL_STATE(1220)] = 93772, - [SMALL_STATE(1221)] = 93829, - [SMALL_STATE(1222)] = 93882, - [SMALL_STATE(1223)] = 93939, - [SMALL_STATE(1224)] = 93992, - [SMALL_STATE(1225)] = 94049, - [SMALL_STATE(1226)] = 94102, - [SMALL_STATE(1227)] = 94155, - [SMALL_STATE(1228)] = 94212, - [SMALL_STATE(1229)] = 94265, - [SMALL_STATE(1230)] = 94318, - [SMALL_STATE(1231)] = 94371, - [SMALL_STATE(1232)] = 94400, - [SMALL_STATE(1233)] = 94453, - [SMALL_STATE(1234)] = 94510, - [SMALL_STATE(1235)] = 94563, - [SMALL_STATE(1236)] = 94620, - [SMALL_STATE(1237)] = 94677, - [SMALL_STATE(1238)] = 94734, - [SMALL_STATE(1239)] = 94787, - [SMALL_STATE(1240)] = 94840, - [SMALL_STATE(1241)] = 94893, - [SMALL_STATE(1242)] = 94934, - [SMALL_STATE(1243)] = 94987, - [SMALL_STATE(1244)] = 95044, - [SMALL_STATE(1245)] = 95101, - [SMALL_STATE(1246)] = 95158, - [SMALL_STATE(1247)] = 95186, - [SMALL_STATE(1248)] = 95214, - [SMALL_STATE(1249)] = 95242, - [SMALL_STATE(1250)] = 95270, - [SMALL_STATE(1251)] = 95298, - [SMALL_STATE(1252)] = 95326, - [SMALL_STATE(1253)] = 95358, - [SMALL_STATE(1254)] = 95390, - [SMALL_STATE(1255)] = 95422, - [SMALL_STATE(1256)] = 95454, - [SMALL_STATE(1257)] = 95482, - [SMALL_STATE(1258)] = 95510, - [SMALL_STATE(1259)] = 95537, - [SMALL_STATE(1260)] = 95563, - [SMALL_STATE(1261)] = 95589, - [SMALL_STATE(1262)] = 95615, - [SMALL_STATE(1263)] = 95641, - [SMALL_STATE(1264)] = 95667, - [SMALL_STATE(1265)] = 95693, - [SMALL_STATE(1266)] = 95719, - [SMALL_STATE(1267)] = 95745, - [SMALL_STATE(1268)] = 95771, - [SMALL_STATE(1269)] = 95797, - [SMALL_STATE(1270)] = 95823, - [SMALL_STATE(1271)] = 95849, - [SMALL_STATE(1272)] = 95875, - [SMALL_STATE(1273)] = 95901, - [SMALL_STATE(1274)] = 95927, - [SMALL_STATE(1275)] = 95953, - [SMALL_STATE(1276)] = 95979, - [SMALL_STATE(1277)] = 96005, - [SMALL_STATE(1278)] = 96031, - [SMALL_STATE(1279)] = 96057, - [SMALL_STATE(1280)] = 96083, - [SMALL_STATE(1281)] = 96109, - [SMALL_STATE(1282)] = 96135, - [SMALL_STATE(1283)] = 96161, - [SMALL_STATE(1284)] = 96187, - [SMALL_STATE(1285)] = 96213, - [SMALL_STATE(1286)] = 96239, - [SMALL_STATE(1287)] = 96265, - [SMALL_STATE(1288)] = 96291, - [SMALL_STATE(1289)] = 96317, - [SMALL_STATE(1290)] = 96343, - [SMALL_STATE(1291)] = 96369, - [SMALL_STATE(1292)] = 96395, - [SMALL_STATE(1293)] = 96421, - [SMALL_STATE(1294)] = 96447, - [SMALL_STATE(1295)] = 96473, - [SMALL_STATE(1296)] = 96499, - [SMALL_STATE(1297)] = 96525, - [SMALL_STATE(1298)] = 96551, - [SMALL_STATE(1299)] = 96577, - [SMALL_STATE(1300)] = 96603, - [SMALL_STATE(1301)] = 96629, - [SMALL_STATE(1302)] = 96655, - [SMALL_STATE(1303)] = 96681, - [SMALL_STATE(1304)] = 96707, - [SMALL_STATE(1305)] = 96733, - [SMALL_STATE(1306)] = 96759, - [SMALL_STATE(1307)] = 96785, - [SMALL_STATE(1308)] = 96811, - [SMALL_STATE(1309)] = 96837, - [SMALL_STATE(1310)] = 96863, - [SMALL_STATE(1311)] = 96889, - [SMALL_STATE(1312)] = 96915, - [SMALL_STATE(1313)] = 96941, - [SMALL_STATE(1314)] = 96967, - [SMALL_STATE(1315)] = 96993, - [SMALL_STATE(1316)] = 97019, - [SMALL_STATE(1317)] = 97045, - [SMALL_STATE(1318)] = 97071, - [SMALL_STATE(1319)] = 97097, - [SMALL_STATE(1320)] = 97123, - [SMALL_STATE(1321)] = 97149, - [SMALL_STATE(1322)] = 97175, - [SMALL_STATE(1323)] = 97201, - [SMALL_STATE(1324)] = 97227, - [SMALL_STATE(1325)] = 97253, - [SMALL_STATE(1326)] = 97279, - [SMALL_STATE(1327)] = 97305, - [SMALL_STATE(1328)] = 97331, - [SMALL_STATE(1329)] = 97357, - [SMALL_STATE(1330)] = 97383, - [SMALL_STATE(1331)] = 97409, - [SMALL_STATE(1332)] = 97435, - [SMALL_STATE(1333)] = 97461, - [SMALL_STATE(1334)] = 97487, - [SMALL_STATE(1335)] = 97513, - [SMALL_STATE(1336)] = 97539, - [SMALL_STATE(1337)] = 97565, - [SMALL_STATE(1338)] = 97591, - [SMALL_STATE(1339)] = 97617, - [SMALL_STATE(1340)] = 97643, - [SMALL_STATE(1341)] = 97669, - [SMALL_STATE(1342)] = 97695, - [SMALL_STATE(1343)] = 97721, - [SMALL_STATE(1344)] = 97747, - [SMALL_STATE(1345)] = 97773, - [SMALL_STATE(1346)] = 97799, - [SMALL_STATE(1347)] = 97825, - [SMALL_STATE(1348)] = 97851, - [SMALL_STATE(1349)] = 97877, - [SMALL_STATE(1350)] = 97903, - [SMALL_STATE(1351)] = 97929, - [SMALL_STATE(1352)] = 97955, - [SMALL_STATE(1353)] = 97981, - [SMALL_STATE(1354)] = 98007, - [SMALL_STATE(1355)] = 98033, - [SMALL_STATE(1356)] = 98059, - [SMALL_STATE(1357)] = 98085, - [SMALL_STATE(1358)] = 98111, - [SMALL_STATE(1359)] = 98137, - [SMALL_STATE(1360)] = 98163, - [SMALL_STATE(1361)] = 98208, - [SMALL_STATE(1362)] = 98253, - [SMALL_STATE(1363)] = 98298, - [SMALL_STATE(1364)] = 98343, - [SMALL_STATE(1365)] = 98388, - [SMALL_STATE(1366)] = 98433, - [SMALL_STATE(1367)] = 98478, - [SMALL_STATE(1368)] = 98523, - [SMALL_STATE(1369)] = 98568, - [SMALL_STATE(1370)] = 98593, - [SMALL_STATE(1371)] = 98638, - [SMALL_STATE(1372)] = 98683, - [SMALL_STATE(1373)] = 98728, - [SMALL_STATE(1374)] = 98773, - [SMALL_STATE(1375)] = 98818, - [SMALL_STATE(1376)] = 98863, - [SMALL_STATE(1377)] = 98908, - [SMALL_STATE(1378)] = 98953, - [SMALL_STATE(1379)] = 98998, - [SMALL_STATE(1380)] = 99043, - [SMALL_STATE(1381)] = 99088, - [SMALL_STATE(1382)] = 99114, - [SMALL_STATE(1383)] = 99137, - [SMALL_STATE(1384)] = 99160, - [SMALL_STATE(1385)] = 99202, - [SMALL_STATE(1386)] = 99244, - [SMALL_STATE(1387)] = 99270, - [SMALL_STATE(1388)] = 99312, - [SMALL_STATE(1389)] = 99352, - [SMALL_STATE(1390)] = 99394, - [SMALL_STATE(1391)] = 99434, - [SMALL_STATE(1392)] = 99476, - [SMALL_STATE(1393)] = 99518, - [SMALL_STATE(1394)] = 99558, - [SMALL_STATE(1395)] = 99598, - [SMALL_STATE(1396)] = 99638, - [SMALL_STATE(1397)] = 99678, - [SMALL_STATE(1398)] = 99720, - [SMALL_STATE(1399)] = 99760, - [SMALL_STATE(1400)] = 99800, - [SMALL_STATE(1401)] = 99840, - [SMALL_STATE(1402)] = 99880, - [SMALL_STATE(1403)] = 99920, - [SMALL_STATE(1404)] = 99960, - [SMALL_STATE(1405)] = 100000, - [SMALL_STATE(1406)] = 100040, - [SMALL_STATE(1407)] = 100065, - [SMALL_STATE(1408)] = 100101, - [SMALL_STATE(1409)] = 100137, - [SMALL_STATE(1410)] = 100173, - [SMALL_STATE(1411)] = 100209, - [SMALL_STATE(1412)] = 100245, - [SMALL_STATE(1413)] = 100281, - [SMALL_STATE(1414)] = 100317, - [SMALL_STATE(1415)] = 100350, - [SMALL_STATE(1416)] = 100383, - [SMALL_STATE(1417)] = 100416, - [SMALL_STATE(1418)] = 100449, - [SMALL_STATE(1419)] = 100482, - [SMALL_STATE(1420)] = 100515, - [SMALL_STATE(1421)] = 100548, - [SMALL_STATE(1422)] = 100578, - [SMALL_STATE(1423)] = 100608, - [SMALL_STATE(1424)] = 100642, - [SMALL_STATE(1425)] = 100672, - [SMALL_STATE(1426)] = 100702, - [SMALL_STATE(1427)] = 100724, - [SMALL_STATE(1428)] = 100754, - [SMALL_STATE(1429)] = 100788, - [SMALL_STATE(1430)] = 100818, - [SMALL_STATE(1431)] = 100848, - [SMALL_STATE(1432)] = 100879, - [SMALL_STATE(1433)] = 100910, - [SMALL_STATE(1434)] = 100941, - [SMALL_STATE(1435)] = 100972, - [SMALL_STATE(1436)] = 101003, - [SMALL_STATE(1437)] = 101034, - [SMALL_STATE(1438)] = 101055, - [SMALL_STATE(1439)] = 101086, - [SMALL_STATE(1440)] = 101107, - [SMALL_STATE(1441)] = 101138, - [SMALL_STATE(1442)] = 101169, - [SMALL_STATE(1443)] = 101200, - [SMALL_STATE(1444)] = 101231, - [SMALL_STATE(1445)] = 101262, - [SMALL_STATE(1446)] = 101293, - [SMALL_STATE(1447)] = 101314, - [SMALL_STATE(1448)] = 101335, - [SMALL_STATE(1449)] = 101366, - [SMALL_STATE(1450)] = 101397, - [SMALL_STATE(1451)] = 101428, - [SMALL_STATE(1452)] = 101456, - [SMALL_STATE(1453)] = 101484, - [SMALL_STATE(1454)] = 101512, - [SMALL_STATE(1455)] = 101540, - [SMALL_STATE(1456)] = 101568, - [SMALL_STATE(1457)] = 101596, - [SMALL_STATE(1458)] = 101624, - [SMALL_STATE(1459)] = 101643, - [SMALL_STATE(1460)] = 101662, - [SMALL_STATE(1461)] = 101681, - [SMALL_STATE(1462)] = 101700, - [SMALL_STATE(1463)] = 101719, - [SMALL_STATE(1464)] = 101738, - [SMALL_STATE(1465)] = 101757, - [SMALL_STATE(1466)] = 101776, - [SMALL_STATE(1467)] = 101795, - [SMALL_STATE(1468)] = 101814, - [SMALL_STATE(1469)] = 101833, - [SMALL_STATE(1470)] = 101852, - [SMALL_STATE(1471)] = 101877, - [SMALL_STATE(1472)] = 101896, - [SMALL_STATE(1473)] = 101915, - [SMALL_STATE(1474)] = 101934, - [SMALL_STATE(1475)] = 101953, - [SMALL_STATE(1476)] = 101972, - [SMALL_STATE(1477)] = 101991, - [SMALL_STATE(1478)] = 102010, - [SMALL_STATE(1479)] = 102029, - [SMALL_STATE(1480)] = 102048, - [SMALL_STATE(1481)] = 102067, - [SMALL_STATE(1482)] = 102086, - [SMALL_STATE(1483)] = 102105, - [SMALL_STATE(1484)] = 102124, - [SMALL_STATE(1485)] = 102143, - [SMALL_STATE(1486)] = 102162, - [SMALL_STATE(1487)] = 102181, - [SMALL_STATE(1488)] = 102200, - [SMALL_STATE(1489)] = 102219, - [SMALL_STATE(1490)] = 102238, - [SMALL_STATE(1491)] = 102257, - [SMALL_STATE(1492)] = 102276, - [SMALL_STATE(1493)] = 102295, - [SMALL_STATE(1494)] = 102314, - [SMALL_STATE(1495)] = 102333, - [SMALL_STATE(1496)] = 102352, - [SMALL_STATE(1497)] = 102371, - [SMALL_STATE(1498)] = 102390, - [SMALL_STATE(1499)] = 102409, - [SMALL_STATE(1500)] = 102428, - [SMALL_STATE(1501)] = 102447, - [SMALL_STATE(1502)] = 102466, - [SMALL_STATE(1503)] = 102485, - [SMALL_STATE(1504)] = 102504, - [SMALL_STATE(1505)] = 102523, - [SMALL_STATE(1506)] = 102542, - [SMALL_STATE(1507)] = 102561, - [SMALL_STATE(1508)] = 102580, - [SMALL_STATE(1509)] = 102599, - [SMALL_STATE(1510)] = 102618, - [SMALL_STATE(1511)] = 102637, - [SMALL_STATE(1512)] = 102656, - [SMALL_STATE(1513)] = 102675, - [SMALL_STATE(1514)] = 102694, - [SMALL_STATE(1515)] = 102713, - [SMALL_STATE(1516)] = 102732, - [SMALL_STATE(1517)] = 102751, - [SMALL_STATE(1518)] = 102770, - [SMALL_STATE(1519)] = 102789, - [SMALL_STATE(1520)] = 102808, - [SMALL_STATE(1521)] = 102827, - [SMALL_STATE(1522)] = 102846, - [SMALL_STATE(1523)] = 102865, - [SMALL_STATE(1524)] = 102884, - [SMALL_STATE(1525)] = 102903, - [SMALL_STATE(1526)] = 102922, - [SMALL_STATE(1527)] = 102941, - [SMALL_STATE(1528)] = 102960, - [SMALL_STATE(1529)] = 102979, - [SMALL_STATE(1530)] = 102998, - [SMALL_STATE(1531)] = 103017, - [SMALL_STATE(1532)] = 103036, - [SMALL_STATE(1533)] = 103055, - [SMALL_STATE(1534)] = 103074, - [SMALL_STATE(1535)] = 103093, - [SMALL_STATE(1536)] = 103112, - [SMALL_STATE(1537)] = 103137, - [SMALL_STATE(1538)] = 103156, - [SMALL_STATE(1539)] = 103175, - [SMALL_STATE(1540)] = 103200, - [SMALL_STATE(1541)] = 103219, - [SMALL_STATE(1542)] = 103238, - [SMALL_STATE(1543)] = 103257, - [SMALL_STATE(1544)] = 103282, - [SMALL_STATE(1545)] = 103301, - [SMALL_STATE(1546)] = 103320, - [SMALL_STATE(1547)] = 103339, - [SMALL_STATE(1548)] = 103358, - [SMALL_STATE(1549)] = 103377, - [SMALL_STATE(1550)] = 103396, - [SMALL_STATE(1551)] = 103415, - [SMALL_STATE(1552)] = 103434, - [SMALL_STATE(1553)] = 103453, - [SMALL_STATE(1554)] = 103472, - [SMALL_STATE(1555)] = 103491, - [SMALL_STATE(1556)] = 103510, - [SMALL_STATE(1557)] = 103529, - [SMALL_STATE(1558)] = 103548, - [SMALL_STATE(1559)] = 103567, - [SMALL_STATE(1560)] = 103586, - [SMALL_STATE(1561)] = 103605, - [SMALL_STATE(1562)] = 103624, - [SMALL_STATE(1563)] = 103643, - [SMALL_STATE(1564)] = 103662, - [SMALL_STATE(1565)] = 103681, - [SMALL_STATE(1566)] = 103700, - [SMALL_STATE(1567)] = 103719, - [SMALL_STATE(1568)] = 103738, - [SMALL_STATE(1569)] = 103757, - [SMALL_STATE(1570)] = 103776, - [SMALL_STATE(1571)] = 103795, - [SMALL_STATE(1572)] = 103814, - [SMALL_STATE(1573)] = 103833, - [SMALL_STATE(1574)] = 103852, - [SMALL_STATE(1575)] = 103871, - [SMALL_STATE(1576)] = 103890, - [SMALL_STATE(1577)] = 103909, - [SMALL_STATE(1578)] = 103928, - [SMALL_STATE(1579)] = 103947, - [SMALL_STATE(1580)] = 103966, - [SMALL_STATE(1581)] = 103985, - [SMALL_STATE(1582)] = 104004, - [SMALL_STATE(1583)] = 104023, - [SMALL_STATE(1584)] = 104042, - [SMALL_STATE(1585)] = 104061, - [SMALL_STATE(1586)] = 104080, - [SMALL_STATE(1587)] = 104099, - [SMALL_STATE(1588)] = 104118, - [SMALL_STATE(1589)] = 104137, - [SMALL_STATE(1590)] = 104156, - [SMALL_STATE(1591)] = 104175, - [SMALL_STATE(1592)] = 104194, - [SMALL_STATE(1593)] = 104213, - [SMALL_STATE(1594)] = 104232, - [SMALL_STATE(1595)] = 104251, - [SMALL_STATE(1596)] = 104270, - [SMALL_STATE(1597)] = 104289, - [SMALL_STATE(1598)] = 104308, - [SMALL_STATE(1599)] = 104327, - [SMALL_STATE(1600)] = 104346, - [SMALL_STATE(1601)] = 104365, - [SMALL_STATE(1602)] = 104384, - [SMALL_STATE(1603)] = 104409, - [SMALL_STATE(1604)] = 104428, - [SMALL_STATE(1605)] = 104447, - [SMALL_STATE(1606)] = 104466, - [SMALL_STATE(1607)] = 104485, - [SMALL_STATE(1608)] = 104504, - [SMALL_STATE(1609)] = 104523, - [SMALL_STATE(1610)] = 104542, - [SMALL_STATE(1611)] = 104561, - [SMALL_STATE(1612)] = 104580, - [SMALL_STATE(1613)] = 104599, - [SMALL_STATE(1614)] = 104618, - [SMALL_STATE(1615)] = 104637, - [SMALL_STATE(1616)] = 104656, - [SMALL_STATE(1617)] = 104675, - [SMALL_STATE(1618)] = 104694, - [SMALL_STATE(1619)] = 104713, - [SMALL_STATE(1620)] = 104732, - [SMALL_STATE(1621)] = 104751, - [SMALL_STATE(1622)] = 104770, - [SMALL_STATE(1623)] = 104789, - [SMALL_STATE(1624)] = 104808, - [SMALL_STATE(1625)] = 104827, - [SMALL_STATE(1626)] = 104846, - [SMALL_STATE(1627)] = 104865, - [SMALL_STATE(1628)] = 104884, - [SMALL_STATE(1629)] = 104903, - [SMALL_STATE(1630)] = 104922, - [SMALL_STATE(1631)] = 104941, - [SMALL_STATE(1632)] = 104960, - [SMALL_STATE(1633)] = 104979, - [SMALL_STATE(1634)] = 104998, - [SMALL_STATE(1635)] = 105017, - [SMALL_STATE(1636)] = 105036, - [SMALL_STATE(1637)] = 105055, - [SMALL_STATE(1638)] = 105074, - [SMALL_STATE(1639)] = 105093, - [SMALL_STATE(1640)] = 105112, - [SMALL_STATE(1641)] = 105131, - [SMALL_STATE(1642)] = 105150, - [SMALL_STATE(1643)] = 105169, - [SMALL_STATE(1644)] = 105188, - [SMALL_STATE(1645)] = 105207, - [SMALL_STATE(1646)] = 105226, - [SMALL_STATE(1647)] = 105245, - [SMALL_STATE(1648)] = 105264, - [SMALL_STATE(1649)] = 105283, - [SMALL_STATE(1650)] = 105302, - [SMALL_STATE(1651)] = 105321, - [SMALL_STATE(1652)] = 105340, - [SMALL_STATE(1653)] = 105359, - [SMALL_STATE(1654)] = 105378, - [SMALL_STATE(1655)] = 105397, - [SMALL_STATE(1656)] = 105416, - [SMALL_STATE(1657)] = 105435, - [SMALL_STATE(1658)] = 105454, - [SMALL_STATE(1659)] = 105473, - [SMALL_STATE(1660)] = 105492, - [SMALL_STATE(1661)] = 105511, - [SMALL_STATE(1662)] = 105530, - [SMALL_STATE(1663)] = 105549, - [SMALL_STATE(1664)] = 105568, - [SMALL_STATE(1665)] = 105587, - [SMALL_STATE(1666)] = 105606, - [SMALL_STATE(1667)] = 105625, - [SMALL_STATE(1668)] = 105644, - [SMALL_STATE(1669)] = 105669, - [SMALL_STATE(1670)] = 105688, - [SMALL_STATE(1671)] = 105707, - [SMALL_STATE(1672)] = 105726, - [SMALL_STATE(1673)] = 105745, - [SMALL_STATE(1674)] = 105764, - [SMALL_STATE(1675)] = 105783, - [SMALL_STATE(1676)] = 105802, - [SMALL_STATE(1677)] = 105821, - [SMALL_STATE(1678)] = 105840, - [SMALL_STATE(1679)] = 105859, - [SMALL_STATE(1680)] = 105878, - [SMALL_STATE(1681)] = 105897, - [SMALL_STATE(1682)] = 105916, - [SMALL_STATE(1683)] = 105935, - [SMALL_STATE(1684)] = 105954, - [SMALL_STATE(1685)] = 105973, - [SMALL_STATE(1686)] = 105992, - [SMALL_STATE(1687)] = 106011, - [SMALL_STATE(1688)] = 106030, - [SMALL_STATE(1689)] = 106049, - [SMALL_STATE(1690)] = 106068, - [SMALL_STATE(1691)] = 106087, - [SMALL_STATE(1692)] = 106106, - [SMALL_STATE(1693)] = 106125, - [SMALL_STATE(1694)] = 106144, - [SMALL_STATE(1695)] = 106163, - [SMALL_STATE(1696)] = 106182, - [SMALL_STATE(1697)] = 106201, - [SMALL_STATE(1698)] = 106220, - [SMALL_STATE(1699)] = 106239, - [SMALL_STATE(1700)] = 106258, - [SMALL_STATE(1701)] = 106277, - [SMALL_STATE(1702)] = 106296, - [SMALL_STATE(1703)] = 106315, - [SMALL_STATE(1704)] = 106334, - [SMALL_STATE(1705)] = 106353, - [SMALL_STATE(1706)] = 106372, - [SMALL_STATE(1707)] = 106391, - [SMALL_STATE(1708)] = 106410, - [SMALL_STATE(1709)] = 106429, - [SMALL_STATE(1710)] = 106448, - [SMALL_STATE(1711)] = 106467, - [SMALL_STATE(1712)] = 106486, - [SMALL_STATE(1713)] = 106505, - [SMALL_STATE(1714)] = 106524, - [SMALL_STATE(1715)] = 106543, - [SMALL_STATE(1716)] = 106562, - [SMALL_STATE(1717)] = 106581, - [SMALL_STATE(1718)] = 106600, - [SMALL_STATE(1719)] = 106619, - [SMALL_STATE(1720)] = 106638, - [SMALL_STATE(1721)] = 106657, - [SMALL_STATE(1722)] = 106676, - [SMALL_STATE(1723)] = 106695, - [SMALL_STATE(1724)] = 106714, - [SMALL_STATE(1725)] = 106733, - [SMALL_STATE(1726)] = 106752, - [SMALL_STATE(1727)] = 106771, - [SMALL_STATE(1728)] = 106790, - [SMALL_STATE(1729)] = 106809, - [SMALL_STATE(1730)] = 106828, - [SMALL_STATE(1731)] = 106847, - [SMALL_STATE(1732)] = 106866, - [SMALL_STATE(1733)] = 106885, - [SMALL_STATE(1734)] = 106904, - [SMALL_STATE(1735)] = 106923, - [SMALL_STATE(1736)] = 106942, - [SMALL_STATE(1737)] = 106961, - [SMALL_STATE(1738)] = 106980, - [SMALL_STATE(1739)] = 106999, - [SMALL_STATE(1740)] = 107018, - [SMALL_STATE(1741)] = 107037, - [SMALL_STATE(1742)] = 107056, - [SMALL_STATE(1743)] = 107075, - [SMALL_STATE(1744)] = 107094, - [SMALL_STATE(1745)] = 107113, - [SMALL_STATE(1746)] = 107132, - [SMALL_STATE(1747)] = 107151, - [SMALL_STATE(1748)] = 107170, - [SMALL_STATE(1749)] = 107189, - [SMALL_STATE(1750)] = 107208, - [SMALL_STATE(1751)] = 107227, - [SMALL_STATE(1752)] = 107246, - [SMALL_STATE(1753)] = 107265, - [SMALL_STATE(1754)] = 107284, - [SMALL_STATE(1755)] = 107303, - [SMALL_STATE(1756)] = 107322, - [SMALL_STATE(1757)] = 107347, - [SMALL_STATE(1758)] = 107366, - [SMALL_STATE(1759)] = 107385, - [SMALL_STATE(1760)] = 107404, - [SMALL_STATE(1761)] = 107423, - [SMALL_STATE(1762)] = 107442, - [SMALL_STATE(1763)] = 107461, - [SMALL_STATE(1764)] = 107480, - [SMALL_STATE(1765)] = 107499, - [SMALL_STATE(1766)] = 107518, - [SMALL_STATE(1767)] = 107537, - [SMALL_STATE(1768)] = 107556, - [SMALL_STATE(1769)] = 107575, - [SMALL_STATE(1770)] = 107594, - [SMALL_STATE(1771)] = 107613, - [SMALL_STATE(1772)] = 107632, - [SMALL_STATE(1773)] = 107651, - [SMALL_STATE(1774)] = 107670, - [SMALL_STATE(1775)] = 107689, - [SMALL_STATE(1776)] = 107708, - [SMALL_STATE(1777)] = 107727, - [SMALL_STATE(1778)] = 107746, - [SMALL_STATE(1779)] = 107765, - [SMALL_STATE(1780)] = 107784, - [SMALL_STATE(1781)] = 107803, - [SMALL_STATE(1782)] = 107822, - [SMALL_STATE(1783)] = 107841, - [SMALL_STATE(1784)] = 107860, - [SMALL_STATE(1785)] = 107879, - [SMALL_STATE(1786)] = 107898, - [SMALL_STATE(1787)] = 107917, - [SMALL_STATE(1788)] = 107936, - [SMALL_STATE(1789)] = 107955, - [SMALL_STATE(1790)] = 107974, - [SMALL_STATE(1791)] = 107993, - [SMALL_STATE(1792)] = 108012, - [SMALL_STATE(1793)] = 108031, - [SMALL_STATE(1794)] = 108050, - [SMALL_STATE(1795)] = 108069, - [SMALL_STATE(1796)] = 108088, - [SMALL_STATE(1797)] = 108107, - [SMALL_STATE(1798)] = 108126, - [SMALL_STATE(1799)] = 108145, - [SMALL_STATE(1800)] = 108164, - [SMALL_STATE(1801)] = 108183, - [SMALL_STATE(1802)] = 108208, - [SMALL_STATE(1803)] = 108227, - [SMALL_STATE(1804)] = 108246, - [SMALL_STATE(1805)] = 108265, - [SMALL_STATE(1806)] = 108284, - [SMALL_STATE(1807)] = 108303, - [SMALL_STATE(1808)] = 108322, - [SMALL_STATE(1809)] = 108341, - [SMALL_STATE(1810)] = 108360, - [SMALL_STATE(1811)] = 108379, - [SMALL_STATE(1812)] = 108398, - [SMALL_STATE(1813)] = 108417, - [SMALL_STATE(1814)] = 108436, - [SMALL_STATE(1815)] = 108455, - [SMALL_STATE(1816)] = 108474, - [SMALL_STATE(1817)] = 108493, - [SMALL_STATE(1818)] = 108512, - [SMALL_STATE(1819)] = 108531, - [SMALL_STATE(1820)] = 108550, - [SMALL_STATE(1821)] = 108569, - [SMALL_STATE(1822)] = 108588, - [SMALL_STATE(1823)] = 108607, - [SMALL_STATE(1824)] = 108626, - [SMALL_STATE(1825)] = 108645, - [SMALL_STATE(1826)] = 108664, - [SMALL_STATE(1827)] = 108683, - [SMALL_STATE(1828)] = 108702, - [SMALL_STATE(1829)] = 108721, - [SMALL_STATE(1830)] = 108740, - [SMALL_STATE(1831)] = 108759, - [SMALL_STATE(1832)] = 108778, - [SMALL_STATE(1833)] = 108797, - [SMALL_STATE(1834)] = 108816, - [SMALL_STATE(1835)] = 108835, - [SMALL_STATE(1836)] = 108854, - [SMALL_STATE(1837)] = 108873, - [SMALL_STATE(1838)] = 108892, - [SMALL_STATE(1839)] = 108911, - [SMALL_STATE(1840)] = 108930, - [SMALL_STATE(1841)] = 108949, - [SMALL_STATE(1842)] = 108968, - [SMALL_STATE(1843)] = 108987, - [SMALL_STATE(1844)] = 109006, - [SMALL_STATE(1845)] = 109024, - [SMALL_STATE(1846)] = 109042, - [SMALL_STATE(1847)] = 109060, - [SMALL_STATE(1848)] = 109078, - [SMALL_STATE(1849)] = 109096, - [SMALL_STATE(1850)] = 109114, - [SMALL_STATE(1851)] = 109132, - [SMALL_STATE(1852)] = 109150, - [SMALL_STATE(1853)] = 109168, - [SMALL_STATE(1854)] = 109186, - [SMALL_STATE(1855)] = 109204, - [SMALL_STATE(1856)] = 109222, - [SMALL_STATE(1857)] = 109240, - [SMALL_STATE(1858)] = 109258, - [SMALL_STATE(1859)] = 109276, - [SMALL_STATE(1860)] = 109294, - [SMALL_STATE(1861)] = 109312, - [SMALL_STATE(1862)] = 109330, - [SMALL_STATE(1863)] = 109348, - [SMALL_STATE(1864)] = 109366, - [SMALL_STATE(1865)] = 109384, - [SMALL_STATE(1866)] = 109402, - [SMALL_STATE(1867)] = 109420, - [SMALL_STATE(1868)] = 109438, - [SMALL_STATE(1869)] = 109456, - [SMALL_STATE(1870)] = 109474, - [SMALL_STATE(1871)] = 109492, - [SMALL_STATE(1872)] = 109510, - [SMALL_STATE(1873)] = 109528, - [SMALL_STATE(1874)] = 109546, - [SMALL_STATE(1875)] = 109564, - [SMALL_STATE(1876)] = 109582, - [SMALL_STATE(1877)] = 109600, - [SMALL_STATE(1878)] = 109618, - [SMALL_STATE(1879)] = 109636, - [SMALL_STATE(1880)] = 109654, - [SMALL_STATE(1881)] = 109672, - [SMALL_STATE(1882)] = 109690, - [SMALL_STATE(1883)] = 109708, - [SMALL_STATE(1884)] = 109726, - [SMALL_STATE(1885)] = 109744, - [SMALL_STATE(1886)] = 109762, - [SMALL_STATE(1887)] = 109780, - [SMALL_STATE(1888)] = 109798, - [SMALL_STATE(1889)] = 109816, - [SMALL_STATE(1890)] = 109834, - [SMALL_STATE(1891)] = 109852, - [SMALL_STATE(1892)] = 109870, - [SMALL_STATE(1893)] = 109888, - [SMALL_STATE(1894)] = 109906, - [SMALL_STATE(1895)] = 109924, - [SMALL_STATE(1896)] = 109942, - [SMALL_STATE(1897)] = 109960, - [SMALL_STATE(1898)] = 109978, - [SMALL_STATE(1899)] = 109996, - [SMALL_STATE(1900)] = 110014, - [SMALL_STATE(1901)] = 110032, - [SMALL_STATE(1902)] = 110050, - [SMALL_STATE(1903)] = 110063, - [SMALL_STATE(1904)] = 110072, - [SMALL_STATE(1905)] = 110082, - [SMALL_STATE(1906)] = 110092, - [SMALL_STATE(1907)] = 110102, - [SMALL_STATE(1908)] = 110112, - [SMALL_STATE(1909)] = 110122, - [SMALL_STATE(1910)] = 110132, - [SMALL_STATE(1911)] = 110142, - [SMALL_STATE(1912)] = 110152, - [SMALL_STATE(1913)] = 110159, - [SMALL_STATE(1914)] = 110166, - [SMALL_STATE(1915)] = 110173, - [SMALL_STATE(1916)] = 110180, - [SMALL_STATE(1917)] = 110187, - [SMALL_STATE(1918)] = 110194, - [SMALL_STATE(1919)] = 110201, - [SMALL_STATE(1920)] = 110208, - [SMALL_STATE(1921)] = 110215, - [SMALL_STATE(1922)] = 110222, - [SMALL_STATE(1923)] = 110229, - [SMALL_STATE(1924)] = 110236, - [SMALL_STATE(1925)] = 110243, - [SMALL_STATE(1926)] = 110250, - [SMALL_STATE(1927)] = 110257, + [SMALL_STATE(156)] = 20318, + [SMALL_STATE(157)] = 20458, + [SMALL_STATE(158)] = 20598, + [SMALL_STATE(159)] = 20738, + [SMALL_STATE(160)] = 20878, + [SMALL_STATE(161)] = 21018, + [SMALL_STATE(162)] = 21158, + [SMALL_STATE(163)] = 21298, + [SMALL_STATE(164)] = 21438, + [SMALL_STATE(165)] = 21578, + [SMALL_STATE(166)] = 21718, + [SMALL_STATE(167)] = 21858, + [SMALL_STATE(168)] = 21998, + [SMALL_STATE(169)] = 22138, + [SMALL_STATE(170)] = 22278, + [SMALL_STATE(171)] = 22418, + [SMALL_STATE(172)] = 22558, + [SMALL_STATE(173)] = 22698, + [SMALL_STATE(174)] = 22838, + [SMALL_STATE(175)] = 22978, + [SMALL_STATE(176)] = 23118, + [SMALL_STATE(177)] = 23258, + [SMALL_STATE(178)] = 23398, + [SMALL_STATE(179)] = 23538, + [SMALL_STATE(180)] = 23678, + [SMALL_STATE(181)] = 23818, + [SMALL_STATE(182)] = 23958, + [SMALL_STATE(183)] = 24098, + [SMALL_STATE(184)] = 24238, + [SMALL_STATE(185)] = 24378, + [SMALL_STATE(186)] = 24518, + [SMALL_STATE(187)] = 24658, + [SMALL_STATE(188)] = 24798, + [SMALL_STATE(189)] = 24938, + [SMALL_STATE(190)] = 25078, + [SMALL_STATE(191)] = 25218, + [SMALL_STATE(192)] = 25358, + [SMALL_STATE(193)] = 25498, + [SMALL_STATE(194)] = 25638, + [SMALL_STATE(195)] = 25778, + [SMALL_STATE(196)] = 25918, + [SMALL_STATE(197)] = 26058, + [SMALL_STATE(198)] = 26198, + [SMALL_STATE(199)] = 26338, + [SMALL_STATE(200)] = 26478, + [SMALL_STATE(201)] = 26618, + [SMALL_STATE(202)] = 26758, + [SMALL_STATE(203)] = 26898, + [SMALL_STATE(204)] = 27038, + [SMALL_STATE(205)] = 27178, + [SMALL_STATE(206)] = 27318, + [SMALL_STATE(207)] = 27458, + [SMALL_STATE(208)] = 27598, + [SMALL_STATE(209)] = 27738, + [SMALL_STATE(210)] = 27878, + [SMALL_STATE(211)] = 28018, + [SMALL_STATE(212)] = 28158, + [SMALL_STATE(213)] = 28298, + [SMALL_STATE(214)] = 28438, + [SMALL_STATE(215)] = 28578, + [SMALL_STATE(216)] = 28718, + [SMALL_STATE(217)] = 28858, + [SMALL_STATE(218)] = 28998, + [SMALL_STATE(219)] = 29138, + [SMALL_STATE(220)] = 29278, + [SMALL_STATE(221)] = 29418, + [SMALL_STATE(222)] = 29558, + [SMALL_STATE(223)] = 29698, + [SMALL_STATE(224)] = 29838, + [SMALL_STATE(225)] = 29978, + [SMALL_STATE(226)] = 30118, + [SMALL_STATE(227)] = 30258, + [SMALL_STATE(228)] = 30398, + [SMALL_STATE(229)] = 30538, + [SMALL_STATE(230)] = 30678, + [SMALL_STATE(231)] = 30818, + [SMALL_STATE(232)] = 30958, + [SMALL_STATE(233)] = 31098, + [SMALL_STATE(234)] = 31238, + [SMALL_STATE(235)] = 31378, + [SMALL_STATE(236)] = 31518, + [SMALL_STATE(237)] = 31658, + [SMALL_STATE(238)] = 31798, + [SMALL_STATE(239)] = 31938, + [SMALL_STATE(240)] = 32078, + [SMALL_STATE(241)] = 32218, + [SMALL_STATE(242)] = 32358, + [SMALL_STATE(243)] = 32498, + [SMALL_STATE(244)] = 32638, + [SMALL_STATE(245)] = 32778, + [SMALL_STATE(246)] = 32918, + [SMALL_STATE(247)] = 33058, + [SMALL_STATE(248)] = 33198, + [SMALL_STATE(249)] = 33338, + [SMALL_STATE(250)] = 33478, + [SMALL_STATE(251)] = 33618, + [SMALL_STATE(252)] = 33758, + [SMALL_STATE(253)] = 33898, + [SMALL_STATE(254)] = 34038, + [SMALL_STATE(255)] = 34178, + [SMALL_STATE(256)] = 34318, + [SMALL_STATE(257)] = 34458, + [SMALL_STATE(258)] = 34598, + [SMALL_STATE(259)] = 34738, + [SMALL_STATE(260)] = 34878, + [SMALL_STATE(261)] = 35018, + [SMALL_STATE(262)] = 35158, + [SMALL_STATE(263)] = 35298, + [SMALL_STATE(264)] = 35438, + [SMALL_STATE(265)] = 35578, + [SMALL_STATE(266)] = 35718, + [SMALL_STATE(267)] = 35858, + [SMALL_STATE(268)] = 35998, + [SMALL_STATE(269)] = 36138, + [SMALL_STATE(270)] = 36278, + [SMALL_STATE(271)] = 36418, + [SMALL_STATE(272)] = 36558, + [SMALL_STATE(273)] = 36698, + [SMALL_STATE(274)] = 36838, + [SMALL_STATE(275)] = 36978, + [SMALL_STATE(276)] = 37118, + [SMALL_STATE(277)] = 37258, + [SMALL_STATE(278)] = 37398, + [SMALL_STATE(279)] = 37538, + [SMALL_STATE(280)] = 37678, + [SMALL_STATE(281)] = 37818, + [SMALL_STATE(282)] = 37958, + [SMALL_STATE(283)] = 38098, + [SMALL_STATE(284)] = 38238, + [SMALL_STATE(285)] = 38378, + [SMALL_STATE(286)] = 38518, + [SMALL_STATE(287)] = 38658, + [SMALL_STATE(288)] = 38798, + [SMALL_STATE(289)] = 38938, + [SMALL_STATE(290)] = 39078, + [SMALL_STATE(291)] = 39218, + [SMALL_STATE(292)] = 39358, + [SMALL_STATE(293)] = 39498, + [SMALL_STATE(294)] = 39638, + [SMALL_STATE(295)] = 39778, + [SMALL_STATE(296)] = 39918, + [SMALL_STATE(297)] = 40058, + [SMALL_STATE(298)] = 40198, + [SMALL_STATE(299)] = 40338, + [SMALL_STATE(300)] = 40478, + [SMALL_STATE(301)] = 40618, + [SMALL_STATE(302)] = 40758, + [SMALL_STATE(303)] = 40898, + [SMALL_STATE(304)] = 41038, + [SMALL_STATE(305)] = 41178, + [SMALL_STATE(306)] = 41318, + [SMALL_STATE(307)] = 41458, + [SMALL_STATE(308)] = 41598, + [SMALL_STATE(309)] = 41738, + [SMALL_STATE(310)] = 41878, + [SMALL_STATE(311)] = 42018, + [SMALL_STATE(312)] = 42158, + [SMALL_STATE(313)] = 42298, + [SMALL_STATE(314)] = 42438, + [SMALL_STATE(315)] = 42578, + [SMALL_STATE(316)] = 42718, + [SMALL_STATE(317)] = 42858, + [SMALL_STATE(318)] = 42998, + [SMALL_STATE(319)] = 43138, + [SMALL_STATE(320)] = 43278, + [SMALL_STATE(321)] = 43418, + [SMALL_STATE(322)] = 43558, + [SMALL_STATE(323)] = 43698, + [SMALL_STATE(324)] = 43838, + [SMALL_STATE(325)] = 43978, + [SMALL_STATE(326)] = 44118, + [SMALL_STATE(327)] = 44258, + [SMALL_STATE(328)] = 44398, + [SMALL_STATE(329)] = 44538, + [SMALL_STATE(330)] = 44678, + [SMALL_STATE(331)] = 44818, + [SMALL_STATE(332)] = 44958, + [SMALL_STATE(333)] = 45098, + [SMALL_STATE(334)] = 45238, + [SMALL_STATE(335)] = 45378, + [SMALL_STATE(336)] = 45518, + [SMALL_STATE(337)] = 45658, + [SMALL_STATE(338)] = 45798, + [SMALL_STATE(339)] = 45938, + [SMALL_STATE(340)] = 46078, + [SMALL_STATE(341)] = 46218, + [SMALL_STATE(342)] = 46358, + [SMALL_STATE(343)] = 46498, + [SMALL_STATE(344)] = 46638, + [SMALL_STATE(345)] = 46778, + [SMALL_STATE(346)] = 46918, + [SMALL_STATE(347)] = 47058, + [SMALL_STATE(348)] = 47198, + [SMALL_STATE(349)] = 47338, + [SMALL_STATE(350)] = 47478, + [SMALL_STATE(351)] = 47618, + [SMALL_STATE(352)] = 47758, + [SMALL_STATE(353)] = 47898, + [SMALL_STATE(354)] = 48038, + [SMALL_STATE(355)] = 48178, + [SMALL_STATE(356)] = 48318, + [SMALL_STATE(357)] = 48458, + [SMALL_STATE(358)] = 48598, + [SMALL_STATE(359)] = 48738, + [SMALL_STATE(360)] = 48878, + [SMALL_STATE(361)] = 49018, + [SMALL_STATE(362)] = 49158, + [SMALL_STATE(363)] = 49298, + [SMALL_STATE(364)] = 49438, + [SMALL_STATE(365)] = 49578, + [SMALL_STATE(366)] = 49718, + [SMALL_STATE(367)] = 49858, + [SMALL_STATE(368)] = 49998, + [SMALL_STATE(369)] = 50138, + [SMALL_STATE(370)] = 50278, + [SMALL_STATE(371)] = 50418, + [SMALL_STATE(372)] = 50558, + [SMALL_STATE(373)] = 50698, + [SMALL_STATE(374)] = 50838, + [SMALL_STATE(375)] = 50978, + [SMALL_STATE(376)] = 51118, + [SMALL_STATE(377)] = 51258, + [SMALL_STATE(378)] = 51398, + [SMALL_STATE(379)] = 51538, + [SMALL_STATE(380)] = 51678, + [SMALL_STATE(381)] = 51818, + [SMALL_STATE(382)] = 51958, + [SMALL_STATE(383)] = 52098, + [SMALL_STATE(384)] = 52238, + [SMALL_STATE(385)] = 52378, + [SMALL_STATE(386)] = 52515, + [SMALL_STATE(387)] = 52652, + [SMALL_STATE(388)] = 52789, + [SMALL_STATE(389)] = 52926, + [SMALL_STATE(390)] = 53063, + [SMALL_STATE(391)] = 53200, + [SMALL_STATE(392)] = 53337, + [SMALL_STATE(393)] = 53474, + [SMALL_STATE(394)] = 53611, + [SMALL_STATE(395)] = 53748, + [SMALL_STATE(396)] = 53885, + [SMALL_STATE(397)] = 54022, + [SMALL_STATE(398)] = 54159, + [SMALL_STATE(399)] = 54296, + [SMALL_STATE(400)] = 54359, + [SMALL_STATE(401)] = 54422, + [SMALL_STATE(402)] = 54481, + [SMALL_STATE(403)] = 54544, + [SMALL_STATE(404)] = 54603, + [SMALL_STATE(405)] = 54667, + [SMALL_STATE(406)] = 54727, + [SMALL_STATE(407)] = 54787, + [SMALL_STATE(408)] = 54847, + [SMALL_STATE(409)] = 54907, + [SMALL_STATE(410)] = 54962, + [SMALL_STATE(411)] = 55017, + [SMALL_STATE(412)] = 55072, + [SMALL_STATE(413)] = 55126, + [SMALL_STATE(414)] = 55180, + [SMALL_STATE(415)] = 55234, + [SMALL_STATE(416)] = 55288, + [SMALL_STATE(417)] = 55342, + [SMALL_STATE(418)] = 55396, + [SMALL_STATE(419)] = 55450, + [SMALL_STATE(420)] = 55504, + [SMALL_STATE(421)] = 55558, + [SMALL_STATE(422)] = 55612, + [SMALL_STATE(423)] = 55666, + [SMALL_STATE(424)] = 55720, + [SMALL_STATE(425)] = 55774, + [SMALL_STATE(426)] = 55828, + [SMALL_STATE(427)] = 55882, + [SMALL_STATE(428)] = 55936, + [SMALL_STATE(429)] = 55990, + [SMALL_STATE(430)] = 56044, + [SMALL_STATE(431)] = 56098, + [SMALL_STATE(432)] = 56152, + [SMALL_STATE(433)] = 56206, + [SMALL_STATE(434)] = 56260, + [SMALL_STATE(435)] = 56314, + [SMALL_STATE(436)] = 56368, + [SMALL_STATE(437)] = 56422, + [SMALL_STATE(438)] = 56476, + [SMALL_STATE(439)] = 56530, + [SMALL_STATE(440)] = 56584, + [SMALL_STATE(441)] = 56638, + [SMALL_STATE(442)] = 56692, + [SMALL_STATE(443)] = 56746, + [SMALL_STATE(444)] = 56800, + [SMALL_STATE(445)] = 56854, + [SMALL_STATE(446)] = 56908, + [SMALL_STATE(447)] = 56962, + [SMALL_STATE(448)] = 57016, + [SMALL_STATE(449)] = 57070, + [SMALL_STATE(450)] = 57124, + [SMALL_STATE(451)] = 57178, + [SMALL_STATE(452)] = 57232, + [SMALL_STATE(453)] = 57286, + [SMALL_STATE(454)] = 57340, + [SMALL_STATE(455)] = 57394, + [SMALL_STATE(456)] = 57448, + [SMALL_STATE(457)] = 57502, + [SMALL_STATE(458)] = 57556, + [SMALL_STATE(459)] = 57610, + [SMALL_STATE(460)] = 57664, + [SMALL_STATE(461)] = 57718, + [SMALL_STATE(462)] = 57772, + [SMALL_STATE(463)] = 57826, + [SMALL_STATE(464)] = 57880, + [SMALL_STATE(465)] = 57934, + [SMALL_STATE(466)] = 57988, + [SMALL_STATE(467)] = 58042, + [SMALL_STATE(468)] = 58096, + [SMALL_STATE(469)] = 58150, + [SMALL_STATE(470)] = 58204, + [SMALL_STATE(471)] = 58258, + [SMALL_STATE(472)] = 58312, + [SMALL_STATE(473)] = 58366, + [SMALL_STATE(474)] = 58420, + [SMALL_STATE(475)] = 58474, + [SMALL_STATE(476)] = 58528, + [SMALL_STATE(477)] = 58582, + [SMALL_STATE(478)] = 58636, + [SMALL_STATE(479)] = 58690, + [SMALL_STATE(480)] = 58744, + [SMALL_STATE(481)] = 58798, + [SMALL_STATE(482)] = 58852, + [SMALL_STATE(483)] = 58906, + [SMALL_STATE(484)] = 58960, + [SMALL_STATE(485)] = 59014, + [SMALL_STATE(486)] = 59068, + [SMALL_STATE(487)] = 59122, + [SMALL_STATE(488)] = 59176, + [SMALL_STATE(489)] = 59230, + [SMALL_STATE(490)] = 59284, + [SMALL_STATE(491)] = 59338, + [SMALL_STATE(492)] = 59392, + [SMALL_STATE(493)] = 59446, + [SMALL_STATE(494)] = 59500, + [SMALL_STATE(495)] = 59554, + [SMALL_STATE(496)] = 59608, + [SMALL_STATE(497)] = 59662, + [SMALL_STATE(498)] = 59716, + [SMALL_STATE(499)] = 59770, + [SMALL_STATE(500)] = 59824, + [SMALL_STATE(501)] = 59878, + [SMALL_STATE(502)] = 59932, + [SMALL_STATE(503)] = 59986, + [SMALL_STATE(504)] = 60040, + [SMALL_STATE(505)] = 60094, + [SMALL_STATE(506)] = 60148, + [SMALL_STATE(507)] = 60202, + [SMALL_STATE(508)] = 60256, + [SMALL_STATE(509)] = 60310, + [SMALL_STATE(510)] = 60364, + [SMALL_STATE(511)] = 60418, + [SMALL_STATE(512)] = 60472, + [SMALL_STATE(513)] = 60526, + [SMALL_STATE(514)] = 60580, + [SMALL_STATE(515)] = 60634, + [SMALL_STATE(516)] = 60699, + [SMALL_STATE(517)] = 60764, + [SMALL_STATE(518)] = 60829, + [SMALL_STATE(519)] = 60915, + [SMALL_STATE(520)] = 61001, + [SMALL_STATE(521)] = 61087, + [SMALL_STATE(522)] = 61173, + [SMALL_STATE(523)] = 61259, + [SMALL_STATE(524)] = 61345, + [SMALL_STATE(525)] = 61431, + [SMALL_STATE(526)] = 61517, + [SMALL_STATE(527)] = 61603, + [SMALL_STATE(528)] = 61689, + [SMALL_STATE(529)] = 61775, + [SMALL_STATE(530)] = 61861, + [SMALL_STATE(531)] = 61947, + [SMALL_STATE(532)] = 62033, + [SMALL_STATE(533)] = 62119, + [SMALL_STATE(534)] = 62205, + [SMALL_STATE(535)] = 62291, + [SMALL_STATE(536)] = 62377, + [SMALL_STATE(537)] = 62463, + [SMALL_STATE(538)] = 62549, + [SMALL_STATE(539)] = 62635, + [SMALL_STATE(540)] = 62721, + [SMALL_STATE(541)] = 62807, + [SMALL_STATE(542)] = 62893, + [SMALL_STATE(543)] = 62979, + [SMALL_STATE(544)] = 63065, + [SMALL_STATE(545)] = 63151, + [SMALL_STATE(546)] = 63209, + [SMALL_STATE(547)] = 63295, + [SMALL_STATE(548)] = 63381, + [SMALL_STATE(549)] = 63430, + [SMALL_STATE(550)] = 63479, + [SMALL_STATE(551)] = 63531, + [SMALL_STATE(552)] = 63583, + [SMALL_STATE(553)] = 63635, + [SMALL_STATE(554)] = 63697, + [SMALL_STATE(555)] = 63759, + [SMALL_STATE(556)] = 63821, + [SMALL_STATE(557)] = 63883, + [SMALL_STATE(558)] = 63945, + [SMALL_STATE(559)] = 64007, + [SMALL_STATE(560)] = 64069, + [SMALL_STATE(561)] = 64121, + [SMALL_STATE(562)] = 64172, + [SMALL_STATE(563)] = 64221, + [SMALL_STATE(564)] = 64272, + [SMALL_STATE(565)] = 64321, + [SMALL_STATE(566)] = 64368, + [SMALL_STATE(567)] = 64423, + [SMALL_STATE(568)] = 64469, + [SMALL_STATE(569)] = 64515, + [SMALL_STATE(570)] = 64561, + [SMALL_STATE(571)] = 64607, + [SMALL_STATE(572)] = 64653, + [SMALL_STATE(573)] = 64699, + [SMALL_STATE(574)] = 64745, + [SMALL_STATE(575)] = 64791, + [SMALL_STATE(576)] = 64837, + [SMALL_STATE(577)] = 64883, + [SMALL_STATE(578)] = 64929, + [SMALL_STATE(579)] = 64975, + [SMALL_STATE(580)] = 65021, + [SMALL_STATE(581)] = 65067, + [SMALL_STATE(582)] = 65113, + [SMALL_STATE(583)] = 65159, + [SMALL_STATE(584)] = 65205, + [SMALL_STATE(585)] = 65251, + [SMALL_STATE(586)] = 65297, + [SMALL_STATE(587)] = 65343, + [SMALL_STATE(588)] = 65389, + [SMALL_STATE(589)] = 65435, + [SMALL_STATE(590)] = 65481, + [SMALL_STATE(591)] = 65527, + [SMALL_STATE(592)] = 65573, + [SMALL_STATE(593)] = 65619, + [SMALL_STATE(594)] = 65665, + [SMALL_STATE(595)] = 65711, + [SMALL_STATE(596)] = 65757, + [SMALL_STATE(597)] = 65803, + [SMALL_STATE(598)] = 65849, + [SMALL_STATE(599)] = 65895, + [SMALL_STATE(600)] = 65941, + [SMALL_STATE(601)] = 65987, + [SMALL_STATE(602)] = 66033, + [SMALL_STATE(603)] = 66079, + [SMALL_STATE(604)] = 66125, + [SMALL_STATE(605)] = 66171, + [SMALL_STATE(606)] = 66217, + [SMALL_STATE(607)] = 66263, + [SMALL_STATE(608)] = 66309, + [SMALL_STATE(609)] = 66355, + [SMALL_STATE(610)] = 66401, + [SMALL_STATE(611)] = 66447, + [SMALL_STATE(612)] = 66493, + [SMALL_STATE(613)] = 66539, + [SMALL_STATE(614)] = 66585, + [SMALL_STATE(615)] = 66631, + [SMALL_STATE(616)] = 66677, + [SMALL_STATE(617)] = 66723, + [SMALL_STATE(618)] = 66769, + [SMALL_STATE(619)] = 66815, + [SMALL_STATE(620)] = 66861, + [SMALL_STATE(621)] = 66907, + [SMALL_STATE(622)] = 66953, + [SMALL_STATE(623)] = 66999, + [SMALL_STATE(624)] = 67045, + [SMALL_STATE(625)] = 67091, + [SMALL_STATE(626)] = 67137, + [SMALL_STATE(627)] = 67183, + [SMALL_STATE(628)] = 67229, + [SMALL_STATE(629)] = 67275, + [SMALL_STATE(630)] = 67321, + [SMALL_STATE(631)] = 67367, + [SMALL_STATE(632)] = 67413, + [SMALL_STATE(633)] = 67459, + [SMALL_STATE(634)] = 67505, + [SMALL_STATE(635)] = 67551, + [SMALL_STATE(636)] = 67597, + [SMALL_STATE(637)] = 67643, + [SMALL_STATE(638)] = 67689, + [SMALL_STATE(639)] = 67735, + [SMALL_STATE(640)] = 67781, + [SMALL_STATE(641)] = 67827, + [SMALL_STATE(642)] = 67873, + [SMALL_STATE(643)] = 67919, + [SMALL_STATE(644)] = 67965, + [SMALL_STATE(645)] = 68011, + [SMALL_STATE(646)] = 68057, + [SMALL_STATE(647)] = 68103, + [SMALL_STATE(648)] = 68149, + [SMALL_STATE(649)] = 68195, + [SMALL_STATE(650)] = 68241, + [SMALL_STATE(651)] = 68287, + [SMALL_STATE(652)] = 68333, + [SMALL_STATE(653)] = 68379, + [SMALL_STATE(654)] = 68425, + [SMALL_STATE(655)] = 68471, + [SMALL_STATE(656)] = 68517, + [SMALL_STATE(657)] = 68563, + [SMALL_STATE(658)] = 68609, + [SMALL_STATE(659)] = 68655, + [SMALL_STATE(660)] = 68701, + [SMALL_STATE(661)] = 68747, + [SMALL_STATE(662)] = 68793, + [SMALL_STATE(663)] = 68839, + [SMALL_STATE(664)] = 68885, + [SMALL_STATE(665)] = 68931, + [SMALL_STATE(666)] = 68977, + [SMALL_STATE(667)] = 69023, + [SMALL_STATE(668)] = 69069, + [SMALL_STATE(669)] = 69115, + [SMALL_STATE(670)] = 69161, + [SMALL_STATE(671)] = 69207, + [SMALL_STATE(672)] = 69253, + [SMALL_STATE(673)] = 69299, + [SMALL_STATE(674)] = 69345, + [SMALL_STATE(675)] = 69391, + [SMALL_STATE(676)] = 69437, + [SMALL_STATE(677)] = 69483, + [SMALL_STATE(678)] = 69529, + [SMALL_STATE(679)] = 69575, + [SMALL_STATE(680)] = 69621, + [SMALL_STATE(681)] = 69667, + [SMALL_STATE(682)] = 69713, + [SMALL_STATE(683)] = 69759, + [SMALL_STATE(684)] = 69805, + [SMALL_STATE(685)] = 69851, + [SMALL_STATE(686)] = 69897, + [SMALL_STATE(687)] = 69943, + [SMALL_STATE(688)] = 69989, + [SMALL_STATE(689)] = 70035, + [SMALL_STATE(690)] = 70081, + [SMALL_STATE(691)] = 70127, + [SMALL_STATE(692)] = 70173, + [SMALL_STATE(693)] = 70219, + [SMALL_STATE(694)] = 70265, + [SMALL_STATE(695)] = 70311, + [SMALL_STATE(696)] = 70357, + [SMALL_STATE(697)] = 70403, + [SMALL_STATE(698)] = 70449, + [SMALL_STATE(699)] = 70495, + [SMALL_STATE(700)] = 70541, + [SMALL_STATE(701)] = 70587, + [SMALL_STATE(702)] = 70633, + [SMALL_STATE(703)] = 70679, + [SMALL_STATE(704)] = 70725, + [SMALL_STATE(705)] = 70771, + [SMALL_STATE(706)] = 70817, + [SMALL_STATE(707)] = 70863, + [SMALL_STATE(708)] = 70909, + [SMALL_STATE(709)] = 70955, + [SMALL_STATE(710)] = 71001, + [SMALL_STATE(711)] = 71047, + [SMALL_STATE(712)] = 71093, + [SMALL_STATE(713)] = 71139, + [SMALL_STATE(714)] = 71185, + [SMALL_STATE(715)] = 71231, + [SMALL_STATE(716)] = 71277, + [SMALL_STATE(717)] = 71323, + [SMALL_STATE(718)] = 71369, + [SMALL_STATE(719)] = 71415, + [SMALL_STATE(720)] = 71461, + [SMALL_STATE(721)] = 71507, + [SMALL_STATE(722)] = 71553, + [SMALL_STATE(723)] = 71599, + [SMALL_STATE(724)] = 71645, + [SMALL_STATE(725)] = 71691, + [SMALL_STATE(726)] = 71737, + [SMALL_STATE(727)] = 71783, + [SMALL_STATE(728)] = 71829, + [SMALL_STATE(729)] = 71875, + [SMALL_STATE(730)] = 71921, + [SMALL_STATE(731)] = 71967, + [SMALL_STATE(732)] = 72013, + [SMALL_STATE(733)] = 72059, + [SMALL_STATE(734)] = 72105, + [SMALL_STATE(735)] = 72151, + [SMALL_STATE(736)] = 72197, + [SMALL_STATE(737)] = 72243, + [SMALL_STATE(738)] = 72289, + [SMALL_STATE(739)] = 72335, + [SMALL_STATE(740)] = 72381, + [SMALL_STATE(741)] = 72427, + [SMALL_STATE(742)] = 72473, + [SMALL_STATE(743)] = 72519, + [SMALL_STATE(744)] = 72565, + [SMALL_STATE(745)] = 72611, + [SMALL_STATE(746)] = 72657, + [SMALL_STATE(747)] = 72703, + [SMALL_STATE(748)] = 72749, + [SMALL_STATE(749)] = 72795, + [SMALL_STATE(750)] = 72841, + [SMALL_STATE(751)] = 72887, + [SMALL_STATE(752)] = 72933, + [SMALL_STATE(753)] = 72979, + [SMALL_STATE(754)] = 73025, + [SMALL_STATE(755)] = 73071, + [SMALL_STATE(756)] = 73117, + [SMALL_STATE(757)] = 73163, + [SMALL_STATE(758)] = 73209, + [SMALL_STATE(759)] = 73255, + [SMALL_STATE(760)] = 73301, + [SMALL_STATE(761)] = 73347, + [SMALL_STATE(762)] = 73393, + [SMALL_STATE(763)] = 73439, + [SMALL_STATE(764)] = 73485, + [SMALL_STATE(765)] = 73531, + [SMALL_STATE(766)] = 73577, + [SMALL_STATE(767)] = 73623, + [SMALL_STATE(768)] = 73669, + [SMALL_STATE(769)] = 73715, + [SMALL_STATE(770)] = 73761, + [SMALL_STATE(771)] = 73807, + [SMALL_STATE(772)] = 73853, + [SMALL_STATE(773)] = 73899, + [SMALL_STATE(774)] = 73945, + [SMALL_STATE(775)] = 73991, + [SMALL_STATE(776)] = 74037, + [SMALL_STATE(777)] = 74083, + [SMALL_STATE(778)] = 74127, + [SMALL_STATE(779)] = 74173, + [SMALL_STATE(780)] = 74217, + [SMALL_STATE(781)] = 74267, + [SMALL_STATE(782)] = 74313, + [SMALL_STATE(783)] = 74359, + [SMALL_STATE(784)] = 74409, + [SMALL_STATE(785)] = 74455, + [SMALL_STATE(786)] = 74501, + [SMALL_STATE(787)] = 74542, + [SMALL_STATE(788)] = 74583, + [SMALL_STATE(789)] = 74624, + [SMALL_STATE(790)] = 74665, + [SMALL_STATE(791)] = 74706, + [SMALL_STATE(792)] = 74747, + [SMALL_STATE(793)] = 74788, + [SMALL_STATE(794)] = 74829, + [SMALL_STATE(795)] = 74870, + [SMALL_STATE(796)] = 74911, + [SMALL_STATE(797)] = 74952, + [SMALL_STATE(798)] = 74993, + [SMALL_STATE(799)] = 75034, + [SMALL_STATE(800)] = 75075, + [SMALL_STATE(801)] = 75116, + [SMALL_STATE(802)] = 75157, + [SMALL_STATE(803)] = 75198, + [SMALL_STATE(804)] = 75239, + [SMALL_STATE(805)] = 75280, + [SMALL_STATE(806)] = 75321, + [SMALL_STATE(807)] = 75362, + [SMALL_STATE(808)] = 75403, + [SMALL_STATE(809)] = 75444, + [SMALL_STATE(810)] = 75485, + [SMALL_STATE(811)] = 75526, + [SMALL_STATE(812)] = 75567, + [SMALL_STATE(813)] = 75608, + [SMALL_STATE(814)] = 75649, + [SMALL_STATE(815)] = 75690, + [SMALL_STATE(816)] = 75731, + [SMALL_STATE(817)] = 75772, + [SMALL_STATE(818)] = 75813, + [SMALL_STATE(819)] = 75854, + [SMALL_STATE(820)] = 75895, + [SMALL_STATE(821)] = 75936, + [SMALL_STATE(822)] = 75977, + [SMALL_STATE(823)] = 76018, + [SMALL_STATE(824)] = 76059, + [SMALL_STATE(825)] = 76100, + [SMALL_STATE(826)] = 76141, + [SMALL_STATE(827)] = 76182, + [SMALL_STATE(828)] = 76223, + [SMALL_STATE(829)] = 76264, + [SMALL_STATE(830)] = 76305, + [SMALL_STATE(831)] = 76346, + [SMALL_STATE(832)] = 76387, + [SMALL_STATE(833)] = 76428, + [SMALL_STATE(834)] = 76469, + [SMALL_STATE(835)] = 76510, + [SMALL_STATE(836)] = 76551, + [SMALL_STATE(837)] = 76592, + [SMALL_STATE(838)] = 76633, + [SMALL_STATE(839)] = 76674, + [SMALL_STATE(840)] = 76715, + [SMALL_STATE(841)] = 76756, + [SMALL_STATE(842)] = 76797, + [SMALL_STATE(843)] = 76838, + [SMALL_STATE(844)] = 76879, + [SMALL_STATE(845)] = 76920, + [SMALL_STATE(846)] = 76961, + [SMALL_STATE(847)] = 77002, + [SMALL_STATE(848)] = 77043, + [SMALL_STATE(849)] = 77084, + [SMALL_STATE(850)] = 77125, + [SMALL_STATE(851)] = 77166, + [SMALL_STATE(852)] = 77207, + [SMALL_STATE(853)] = 77248, + [SMALL_STATE(854)] = 77289, + [SMALL_STATE(855)] = 77330, + [SMALL_STATE(856)] = 77371, + [SMALL_STATE(857)] = 77412, + [SMALL_STATE(858)] = 77453, + [SMALL_STATE(859)] = 77494, + [SMALL_STATE(860)] = 77535, + [SMALL_STATE(861)] = 77576, + [SMALL_STATE(862)] = 77617, + [SMALL_STATE(863)] = 77658, + [SMALL_STATE(864)] = 77699, + [SMALL_STATE(865)] = 77740, + [SMALL_STATE(866)] = 77781, + [SMALL_STATE(867)] = 77822, + [SMALL_STATE(868)] = 77863, + [SMALL_STATE(869)] = 77904, + [SMALL_STATE(870)] = 77945, + [SMALL_STATE(871)] = 77986, + [SMALL_STATE(872)] = 78027, + [SMALL_STATE(873)] = 78068, + [SMALL_STATE(874)] = 78109, + [SMALL_STATE(875)] = 78150, + [SMALL_STATE(876)] = 78191, + [SMALL_STATE(877)] = 78232, + [SMALL_STATE(878)] = 78273, + [SMALL_STATE(879)] = 78314, + [SMALL_STATE(880)] = 78355, + [SMALL_STATE(881)] = 78396, + [SMALL_STATE(882)] = 78437, + [SMALL_STATE(883)] = 78478, + [SMALL_STATE(884)] = 78519, + [SMALL_STATE(885)] = 78560, + [SMALL_STATE(886)] = 78601, + [SMALL_STATE(887)] = 78642, + [SMALL_STATE(888)] = 78683, + [SMALL_STATE(889)] = 78724, + [SMALL_STATE(890)] = 78765, + [SMALL_STATE(891)] = 78806, + [SMALL_STATE(892)] = 78847, + [SMALL_STATE(893)] = 78893, + [SMALL_STATE(894)] = 78935, + [SMALL_STATE(895)] = 78976, + [SMALL_STATE(896)] = 79015, + [SMALL_STATE(897)] = 79055, + [SMALL_STATE(898)] = 79095, + [SMALL_STATE(899)] = 79135, + [SMALL_STATE(900)] = 79173, + [SMALL_STATE(901)] = 79211, + [SMALL_STATE(902)] = 79249, + [SMALL_STATE(903)] = 79289, + [SMALL_STATE(904)] = 79329, + [SMALL_STATE(905)] = 79367, + [SMALL_STATE(906)] = 79405, + [SMALL_STATE(907)] = 79445, + [SMALL_STATE(908)] = 79485, + [SMALL_STATE(909)] = 79523, + [SMALL_STATE(910)] = 79566, + [SMALL_STATE(911)] = 79603, + [SMALL_STATE(912)] = 79640, + [SMALL_STATE(913)] = 79676, + [SMALL_STATE(914)] = 79712, + [SMALL_STATE(915)] = 79749, + [SMALL_STATE(916)] = 79786, + [SMALL_STATE(917)] = 79823, + [SMALL_STATE(918)] = 79860, + [SMALL_STATE(919)] = 79900, + [SMALL_STATE(920)] = 79940, + [SMALL_STATE(921)] = 79972, + [SMALL_STATE(922)] = 80012, + [SMALL_STATE(923)] = 80043, + [SMALL_STATE(924)] = 80074, + [SMALL_STATE(925)] = 80115, + [SMALL_STATE(926)] = 80190, + [SMALL_STATE(927)] = 80265, + [SMALL_STATE(928)] = 80302, + [SMALL_STATE(929)] = 80333, + [SMALL_STATE(930)] = 80364, + [SMALL_STATE(931)] = 80395, + [SMALL_STATE(932)] = 80426, + [SMALL_STATE(933)] = 80463, + [SMALL_STATE(934)] = 80538, + [SMALL_STATE(935)] = 80569, + [SMALL_STATE(936)] = 80600, + [SMALL_STATE(937)] = 80675, + [SMALL_STATE(938)] = 80706, + [SMALL_STATE(939)] = 80737, + [SMALL_STATE(940)] = 80768, + [SMALL_STATE(941)] = 80799, + [SMALL_STATE(942)] = 80830, + [SMALL_STATE(943)] = 80861, + [SMALL_STATE(944)] = 80892, + [SMALL_STATE(945)] = 80923, + [SMALL_STATE(946)] = 80954, + [SMALL_STATE(947)] = 80985, + [SMALL_STATE(948)] = 81016, + [SMALL_STATE(949)] = 81047, + [SMALL_STATE(950)] = 81078, + [SMALL_STATE(951)] = 81153, + [SMALL_STATE(952)] = 81184, + [SMALL_STATE(953)] = 81215, + [SMALL_STATE(954)] = 81246, + [SMALL_STATE(955)] = 81277, + [SMALL_STATE(956)] = 81308, + [SMALL_STATE(957)] = 81339, + [SMALL_STATE(958)] = 81370, + [SMALL_STATE(959)] = 81401, + [SMALL_STATE(960)] = 81432, + [SMALL_STATE(961)] = 81463, + [SMALL_STATE(962)] = 81494, + [SMALL_STATE(963)] = 81525, + [SMALL_STATE(964)] = 81556, + [SMALL_STATE(965)] = 81587, + [SMALL_STATE(966)] = 81618, + [SMALL_STATE(967)] = 81649, + [SMALL_STATE(968)] = 81680, + [SMALL_STATE(969)] = 81711, + [SMALL_STATE(970)] = 81742, + [SMALL_STATE(971)] = 81773, + [SMALL_STATE(972)] = 81804, + [SMALL_STATE(973)] = 81835, + [SMALL_STATE(974)] = 81866, + [SMALL_STATE(975)] = 81897, + [SMALL_STATE(976)] = 81928, + [SMALL_STATE(977)] = 81959, + [SMALL_STATE(978)] = 81990, + [SMALL_STATE(979)] = 82021, + [SMALL_STATE(980)] = 82052, + [SMALL_STATE(981)] = 82083, + [SMALL_STATE(982)] = 82158, + [SMALL_STATE(983)] = 82189, + [SMALL_STATE(984)] = 82220, + [SMALL_STATE(985)] = 82251, + [SMALL_STATE(986)] = 82288, + [SMALL_STATE(987)] = 82319, + [SMALL_STATE(988)] = 82350, + [SMALL_STATE(989)] = 82381, + [SMALL_STATE(990)] = 82412, + [SMALL_STATE(991)] = 82443, + [SMALL_STATE(992)] = 82474, + [SMALL_STATE(993)] = 82505, + [SMALL_STATE(994)] = 82536, + [SMALL_STATE(995)] = 82567, + [SMALL_STATE(996)] = 82598, + [SMALL_STATE(997)] = 82629, + [SMALL_STATE(998)] = 82660, + [SMALL_STATE(999)] = 82691, + [SMALL_STATE(1000)] = 82722, + [SMALL_STATE(1001)] = 82753, + [SMALL_STATE(1002)] = 82784, + [SMALL_STATE(1003)] = 82815, + [SMALL_STATE(1004)] = 82846, + [SMALL_STATE(1005)] = 82877, + [SMALL_STATE(1006)] = 82908, + [SMALL_STATE(1007)] = 82939, + [SMALL_STATE(1008)] = 82970, + [SMALL_STATE(1009)] = 83001, + [SMALL_STATE(1010)] = 83032, + [SMALL_STATE(1011)] = 83063, + [SMALL_STATE(1012)] = 83094, + [SMALL_STATE(1013)] = 83125, + [SMALL_STATE(1014)] = 83200, + [SMALL_STATE(1015)] = 83231, + [SMALL_STATE(1016)] = 83262, + [SMALL_STATE(1017)] = 83293, + [SMALL_STATE(1018)] = 83324, + [SMALL_STATE(1019)] = 83355, + [SMALL_STATE(1020)] = 83386, + [SMALL_STATE(1021)] = 83417, + [SMALL_STATE(1022)] = 83454, + [SMALL_STATE(1023)] = 83485, + [SMALL_STATE(1024)] = 83516, + [SMALL_STATE(1025)] = 83547, + [SMALL_STATE(1026)] = 83578, + [SMALL_STATE(1027)] = 83609, + [SMALL_STATE(1028)] = 83640, + [SMALL_STATE(1029)] = 83671, + [SMALL_STATE(1030)] = 83702, + [SMALL_STATE(1031)] = 83733, + [SMALL_STATE(1032)] = 83764, + [SMALL_STATE(1033)] = 83795, + [SMALL_STATE(1034)] = 83870, + [SMALL_STATE(1035)] = 83901, + [SMALL_STATE(1036)] = 83932, + [SMALL_STATE(1037)] = 83963, + [SMALL_STATE(1038)] = 83994, + [SMALL_STATE(1039)] = 84056, + [SMALL_STATE(1040)] = 84118, + [SMALL_STATE(1041)] = 84150, + [SMALL_STATE(1042)] = 84182, + [SMALL_STATE(1043)] = 84244, + [SMALL_STATE(1044)] = 84306, + [SMALL_STATE(1045)] = 84368, + [SMALL_STATE(1046)] = 84430, + [SMALL_STATE(1047)] = 84492, + [SMALL_STATE(1048)] = 84554, + [SMALL_STATE(1049)] = 84586, + [SMALL_STATE(1050)] = 84617, + [SMALL_STATE(1051)] = 84648, + [SMALL_STATE(1052)] = 84677, + [SMALL_STATE(1053)] = 84706, + [SMALL_STATE(1054)] = 84735, + [SMALL_STATE(1055)] = 84764, + [SMALL_STATE(1056)] = 84793, + [SMALL_STATE(1057)] = 84822, + [SMALL_STATE(1058)] = 84851, + [SMALL_STATE(1059)] = 84880, + [SMALL_STATE(1060)] = 84921, + [SMALL_STATE(1061)] = 84950, + [SMALL_STATE(1062)] = 84979, + [SMALL_STATE(1063)] = 85008, + [SMALL_STATE(1064)] = 85037, + [SMALL_STATE(1065)] = 85068, + [SMALL_STATE(1066)] = 85097, + [SMALL_STATE(1067)] = 85138, + [SMALL_STATE(1068)] = 85169, + [SMALL_STATE(1069)] = 85200, + [SMALL_STATE(1070)] = 85231, + [SMALL_STATE(1071)] = 85262, + [SMALL_STATE(1072)] = 85293, + [SMALL_STATE(1073)] = 85324, + [SMALL_STATE(1074)] = 85355, + [SMALL_STATE(1075)] = 85386, + [SMALL_STATE(1076)] = 85417, + [SMALL_STATE(1077)] = 85448, + [SMALL_STATE(1078)] = 85479, + [SMALL_STATE(1079)] = 85510, + [SMALL_STATE(1080)] = 85541, + [SMALL_STATE(1081)] = 85572, + [SMALL_STATE(1082)] = 85603, + [SMALL_STATE(1083)] = 85634, + [SMALL_STATE(1084)] = 85665, + [SMALL_STATE(1085)] = 85694, + [SMALL_STATE(1086)] = 85725, + [SMALL_STATE(1087)] = 85756, + [SMALL_STATE(1088)] = 85787, + [SMALL_STATE(1089)] = 85818, + [SMALL_STATE(1090)] = 85849, + [SMALL_STATE(1091)] = 85886, + [SMALL_STATE(1092)] = 85917, + [SMALL_STATE(1093)] = 85948, + [SMALL_STATE(1094)] = 85977, + [SMALL_STATE(1095)] = 86008, + [SMALL_STATE(1096)] = 86039, + [SMALL_STATE(1097)] = 86070, + [SMALL_STATE(1098)] = 86107, + [SMALL_STATE(1099)] = 86138, + [SMALL_STATE(1100)] = 86169, + [SMALL_STATE(1101)] = 86200, + [SMALL_STATE(1102)] = 86231, + [SMALL_STATE(1103)] = 86262, + [SMALL_STATE(1104)] = 86293, + [SMALL_STATE(1105)] = 86324, + [SMALL_STATE(1106)] = 86355, + [SMALL_STATE(1107)] = 86386, + [SMALL_STATE(1108)] = 86417, + [SMALL_STATE(1109)] = 86448, + [SMALL_STATE(1110)] = 86479, + [SMALL_STATE(1111)] = 86510, + [SMALL_STATE(1112)] = 86541, + [SMALL_STATE(1113)] = 86572, + [SMALL_STATE(1114)] = 86603, + [SMALL_STATE(1115)] = 86634, + [SMALL_STATE(1116)] = 86665, + [SMALL_STATE(1117)] = 86696, + [SMALL_STATE(1118)] = 86727, + [SMALL_STATE(1119)] = 86758, + [SMALL_STATE(1120)] = 86789, + [SMALL_STATE(1121)] = 86820, + [SMALL_STATE(1122)] = 86851, + [SMALL_STATE(1123)] = 86882, + [SMALL_STATE(1124)] = 86913, + [SMALL_STATE(1125)] = 86944, + [SMALL_STATE(1126)] = 86975, + [SMALL_STATE(1127)] = 87006, + [SMALL_STATE(1128)] = 87037, + [SMALL_STATE(1129)] = 87068, + [SMALL_STATE(1130)] = 87099, + [SMALL_STATE(1131)] = 87130, + [SMALL_STATE(1132)] = 87161, + [SMALL_STATE(1133)] = 87192, + [SMALL_STATE(1134)] = 87223, + [SMALL_STATE(1135)] = 87254, + [SMALL_STATE(1136)] = 87285, + [SMALL_STATE(1137)] = 87316, + [SMALL_STATE(1138)] = 87347, + [SMALL_STATE(1139)] = 87378, + [SMALL_STATE(1140)] = 87409, + [SMALL_STATE(1141)] = 87440, + [SMALL_STATE(1142)] = 87471, + [SMALL_STATE(1143)] = 87502, + [SMALL_STATE(1144)] = 87533, + [SMALL_STATE(1145)] = 87564, + [SMALL_STATE(1146)] = 87595, + [SMALL_STATE(1147)] = 87626, + [SMALL_STATE(1148)] = 87657, + [SMALL_STATE(1149)] = 87688, + [SMALL_STATE(1150)] = 87719, + [SMALL_STATE(1151)] = 87750, + [SMALL_STATE(1152)] = 87781, + [SMALL_STATE(1153)] = 87812, + [SMALL_STATE(1154)] = 87843, + [SMALL_STATE(1155)] = 87874, + [SMALL_STATE(1156)] = 87905, + [SMALL_STATE(1157)] = 87936, + [SMALL_STATE(1158)] = 87967, + [SMALL_STATE(1159)] = 87998, + [SMALL_STATE(1160)] = 88029, + [SMALL_STATE(1161)] = 88060, + [SMALL_STATE(1162)] = 88091, + [SMALL_STATE(1163)] = 88128, + [SMALL_STATE(1164)] = 88159, + [SMALL_STATE(1165)] = 88190, + [SMALL_STATE(1166)] = 88221, + [SMALL_STATE(1167)] = 88252, + [SMALL_STATE(1168)] = 88283, + [SMALL_STATE(1169)] = 88314, + [SMALL_STATE(1170)] = 88345, + [SMALL_STATE(1171)] = 88376, + [SMALL_STATE(1172)] = 88407, + [SMALL_STATE(1173)] = 88444, + [SMALL_STATE(1174)] = 88482, + [SMALL_STATE(1175)] = 88535, + [SMALL_STATE(1176)] = 88592, + [SMALL_STATE(1177)] = 88649, + [SMALL_STATE(1178)] = 88702, + [SMALL_STATE(1179)] = 88759, + [SMALL_STATE(1180)] = 88812, + [SMALL_STATE(1181)] = 88869, + [SMALL_STATE(1182)] = 88922, + [SMALL_STATE(1183)] = 88975, + [SMALL_STATE(1184)] = 89004, + [SMALL_STATE(1185)] = 89033, + [SMALL_STATE(1186)] = 89090, + [SMALL_STATE(1187)] = 89147, + [SMALL_STATE(1188)] = 89204, + [SMALL_STATE(1189)] = 89257, + [SMALL_STATE(1190)] = 89310, + [SMALL_STATE(1191)] = 89363, + [SMALL_STATE(1192)] = 89416, + [SMALL_STATE(1193)] = 89469, + [SMALL_STATE(1194)] = 89526, + [SMALL_STATE(1195)] = 89583, + [SMALL_STATE(1196)] = 89640, + [SMALL_STATE(1197)] = 89693, + [SMALL_STATE(1198)] = 89746, + [SMALL_STATE(1199)] = 89803, + [SMALL_STATE(1200)] = 89844, + [SMALL_STATE(1201)] = 89901, + [SMALL_STATE(1202)] = 89958, + [SMALL_STATE(1203)] = 90015, + [SMALL_STATE(1204)] = 90068, + [SMALL_STATE(1205)] = 90121, + [SMALL_STATE(1206)] = 90149, + [SMALL_STATE(1207)] = 90177, + [SMALL_STATE(1208)] = 90205, + [SMALL_STATE(1209)] = 90233, + [SMALL_STATE(1210)] = 90261, + [SMALL_STATE(1211)] = 90293, + [SMALL_STATE(1212)] = 90325, + [SMALL_STATE(1213)] = 90357, + [SMALL_STATE(1214)] = 90385, + [SMALL_STATE(1215)] = 90413, + [SMALL_STATE(1216)] = 90441, + [SMALL_STATE(1217)] = 90473, + [SMALL_STATE(1218)] = 90500, + [SMALL_STATE(1219)] = 90526, + [SMALL_STATE(1220)] = 90552, + [SMALL_STATE(1221)] = 90578, + [SMALL_STATE(1222)] = 90604, + [SMALL_STATE(1223)] = 90630, + [SMALL_STATE(1224)] = 90656, + [SMALL_STATE(1225)] = 90682, + [SMALL_STATE(1226)] = 90708, + [SMALL_STATE(1227)] = 90734, + [SMALL_STATE(1228)] = 90760, + [SMALL_STATE(1229)] = 90786, + [SMALL_STATE(1230)] = 90812, + [SMALL_STATE(1231)] = 90838, + [SMALL_STATE(1232)] = 90864, + [SMALL_STATE(1233)] = 90890, + [SMALL_STATE(1234)] = 90916, + [SMALL_STATE(1235)] = 90942, + [SMALL_STATE(1236)] = 90968, + [SMALL_STATE(1237)] = 90994, + [SMALL_STATE(1238)] = 91020, + [SMALL_STATE(1239)] = 91046, + [SMALL_STATE(1240)] = 91072, + [SMALL_STATE(1241)] = 91098, + [SMALL_STATE(1242)] = 91124, + [SMALL_STATE(1243)] = 91150, + [SMALL_STATE(1244)] = 91176, + [SMALL_STATE(1245)] = 91202, + [SMALL_STATE(1246)] = 91228, + [SMALL_STATE(1247)] = 91254, + [SMALL_STATE(1248)] = 91280, + [SMALL_STATE(1249)] = 91306, + [SMALL_STATE(1250)] = 91332, + [SMALL_STATE(1251)] = 91358, + [SMALL_STATE(1252)] = 91384, + [SMALL_STATE(1253)] = 91410, + [SMALL_STATE(1254)] = 91436, + [SMALL_STATE(1255)] = 91462, + [SMALL_STATE(1256)] = 91488, + [SMALL_STATE(1257)] = 91514, + [SMALL_STATE(1258)] = 91540, + [SMALL_STATE(1259)] = 91566, + [SMALL_STATE(1260)] = 91592, + [SMALL_STATE(1261)] = 91618, + [SMALL_STATE(1262)] = 91644, + [SMALL_STATE(1263)] = 91670, + [SMALL_STATE(1264)] = 91696, + [SMALL_STATE(1265)] = 91722, + [SMALL_STATE(1266)] = 91748, + [SMALL_STATE(1267)] = 91774, + [SMALL_STATE(1268)] = 91800, + [SMALL_STATE(1269)] = 91826, + [SMALL_STATE(1270)] = 91852, + [SMALL_STATE(1271)] = 91878, + [SMALL_STATE(1272)] = 91904, + [SMALL_STATE(1273)] = 91930, + [SMALL_STATE(1274)] = 91956, + [SMALL_STATE(1275)] = 91982, + [SMALL_STATE(1276)] = 92008, + [SMALL_STATE(1277)] = 92034, + [SMALL_STATE(1278)] = 92060, + [SMALL_STATE(1279)] = 92086, + [SMALL_STATE(1280)] = 92112, + [SMALL_STATE(1281)] = 92138, + [SMALL_STATE(1282)] = 92164, + [SMALL_STATE(1283)] = 92190, + [SMALL_STATE(1284)] = 92216, + [SMALL_STATE(1285)] = 92242, + [SMALL_STATE(1286)] = 92268, + [SMALL_STATE(1287)] = 92294, + [SMALL_STATE(1288)] = 92320, + [SMALL_STATE(1289)] = 92346, + [SMALL_STATE(1290)] = 92372, + [SMALL_STATE(1291)] = 92398, + [SMALL_STATE(1292)] = 92424, + [SMALL_STATE(1293)] = 92450, + [SMALL_STATE(1294)] = 92476, + [SMALL_STATE(1295)] = 92502, + [SMALL_STATE(1296)] = 92528, + [SMALL_STATE(1297)] = 92554, + [SMALL_STATE(1298)] = 92580, + [SMALL_STATE(1299)] = 92606, + [SMALL_STATE(1300)] = 92632, + [SMALL_STATE(1301)] = 92658, + [SMALL_STATE(1302)] = 92684, + [SMALL_STATE(1303)] = 92710, + [SMALL_STATE(1304)] = 92736, + [SMALL_STATE(1305)] = 92762, + [SMALL_STATE(1306)] = 92788, + [SMALL_STATE(1307)] = 92814, + [SMALL_STATE(1308)] = 92840, + [SMALL_STATE(1309)] = 92866, + [SMALL_STATE(1310)] = 92892, + [SMALL_STATE(1311)] = 92918, + [SMALL_STATE(1312)] = 92944, + [SMALL_STATE(1313)] = 92970, + [SMALL_STATE(1314)] = 92996, + [SMALL_STATE(1315)] = 93022, + [SMALL_STATE(1316)] = 93048, + [SMALL_STATE(1317)] = 93074, + [SMALL_STATE(1318)] = 93100, + [SMALL_STATE(1319)] = 93126, + [SMALL_STATE(1320)] = 93171, + [SMALL_STATE(1321)] = 93216, + [SMALL_STATE(1322)] = 93261, + [SMALL_STATE(1323)] = 93306, + [SMALL_STATE(1324)] = 93351, + [SMALL_STATE(1325)] = 93396, + [SMALL_STATE(1326)] = 93441, + [SMALL_STATE(1327)] = 93486, + [SMALL_STATE(1328)] = 93531, + [SMALL_STATE(1329)] = 93576, + [SMALL_STATE(1330)] = 93621, + [SMALL_STATE(1331)] = 93666, + [SMALL_STATE(1332)] = 93711, + [SMALL_STATE(1333)] = 93756, + [SMALL_STATE(1334)] = 93801, + [SMALL_STATE(1335)] = 93846, + [SMALL_STATE(1336)] = 93891, + [SMALL_STATE(1337)] = 93936, + [SMALL_STATE(1338)] = 93961, + [SMALL_STATE(1339)] = 94006, + [SMALL_STATE(1340)] = 94051, + [SMALL_STATE(1341)] = 94077, + [SMALL_STATE(1342)] = 94100, + [SMALL_STATE(1343)] = 94123, + [SMALL_STATE(1344)] = 94163, + [SMALL_STATE(1345)] = 94203, + [SMALL_STATE(1346)] = 94243, + [SMALL_STATE(1347)] = 94283, + [SMALL_STATE(1348)] = 94325, + [SMALL_STATE(1349)] = 94365, + [SMALL_STATE(1350)] = 94405, + [SMALL_STATE(1351)] = 94445, + [SMALL_STATE(1352)] = 94487, + [SMALL_STATE(1353)] = 94527, + [SMALL_STATE(1354)] = 94567, + [SMALL_STATE(1355)] = 94607, + [SMALL_STATE(1356)] = 94649, + [SMALL_STATE(1357)] = 94691, + [SMALL_STATE(1358)] = 94731, + [SMALL_STATE(1359)] = 94771, + [SMALL_STATE(1360)] = 94813, + [SMALL_STATE(1361)] = 94855, + [SMALL_STATE(1362)] = 94895, + [SMALL_STATE(1363)] = 94937, + [SMALL_STATE(1364)] = 94977, + [SMALL_STATE(1365)] = 95013, + [SMALL_STATE(1366)] = 95049, + [SMALL_STATE(1367)] = 95085, + [SMALL_STATE(1368)] = 95121, + [SMALL_STATE(1369)] = 95157, + [SMALL_STATE(1370)] = 95193, + [SMALL_STATE(1371)] = 95229, + [SMALL_STATE(1372)] = 95262, + [SMALL_STATE(1373)] = 95295, + [SMALL_STATE(1374)] = 95328, + [SMALL_STATE(1375)] = 95361, + [SMALL_STATE(1376)] = 95394, + [SMALL_STATE(1377)] = 95427, + [SMALL_STATE(1378)] = 95460, + [SMALL_STATE(1379)] = 95482, + [SMALL_STATE(1380)] = 95512, + [SMALL_STATE(1381)] = 95542, + [SMALL_STATE(1382)] = 95576, + [SMALL_STATE(1383)] = 95606, + [SMALL_STATE(1384)] = 95636, + [SMALL_STATE(1385)] = 95666, + [SMALL_STATE(1386)] = 95700, + [SMALL_STATE(1387)] = 95730, + [SMALL_STATE(1388)] = 95760, + [SMALL_STATE(1389)] = 95791, + [SMALL_STATE(1390)] = 95812, + [SMALL_STATE(1391)] = 95843, + [SMALL_STATE(1392)] = 95874, + [SMALL_STATE(1393)] = 95905, + [SMALL_STATE(1394)] = 95926, + [SMALL_STATE(1395)] = 95957, + [SMALL_STATE(1396)] = 95988, + [SMALL_STATE(1397)] = 96019, + [SMALL_STATE(1398)] = 96040, + [SMALL_STATE(1399)] = 96071, + [SMALL_STATE(1400)] = 96102, + [SMALL_STATE(1401)] = 96133, + [SMALL_STATE(1402)] = 96164, + [SMALL_STATE(1403)] = 96195, + [SMALL_STATE(1404)] = 96226, + [SMALL_STATE(1405)] = 96257, + [SMALL_STATE(1406)] = 96288, + [SMALL_STATE(1407)] = 96319, + [SMALL_STATE(1408)] = 96340, + [SMALL_STATE(1409)] = 96368, + [SMALL_STATE(1410)] = 96396, + [SMALL_STATE(1411)] = 96424, + [SMALL_STATE(1412)] = 96452, + [SMALL_STATE(1413)] = 96480, + [SMALL_STATE(1414)] = 96508, + [SMALL_STATE(1415)] = 96536, + [SMALL_STATE(1416)] = 96555, + [SMALL_STATE(1417)] = 96574, + [SMALL_STATE(1418)] = 96593, + [SMALL_STATE(1419)] = 96612, + [SMALL_STATE(1420)] = 96631, + [SMALL_STATE(1421)] = 96650, + [SMALL_STATE(1422)] = 96669, + [SMALL_STATE(1423)] = 96688, + [SMALL_STATE(1424)] = 96707, + [SMALL_STATE(1425)] = 96726, + [SMALL_STATE(1426)] = 96745, + [SMALL_STATE(1427)] = 96764, + [SMALL_STATE(1428)] = 96783, + [SMALL_STATE(1429)] = 96802, + [SMALL_STATE(1430)] = 96821, + [SMALL_STATE(1431)] = 96840, + [SMALL_STATE(1432)] = 96859, + [SMALL_STATE(1433)] = 96878, + [SMALL_STATE(1434)] = 96897, + [SMALL_STATE(1435)] = 96916, + [SMALL_STATE(1436)] = 96935, + [SMALL_STATE(1437)] = 96954, + [SMALL_STATE(1438)] = 96973, + [SMALL_STATE(1439)] = 96992, + [SMALL_STATE(1440)] = 97011, + [SMALL_STATE(1441)] = 97030, + [SMALL_STATE(1442)] = 97049, + [SMALL_STATE(1443)] = 97068, + [SMALL_STATE(1444)] = 97087, + [SMALL_STATE(1445)] = 97106, + [SMALL_STATE(1446)] = 97125, + [SMALL_STATE(1447)] = 97144, + [SMALL_STATE(1448)] = 97163, + [SMALL_STATE(1449)] = 97182, + [SMALL_STATE(1450)] = 97201, + [SMALL_STATE(1451)] = 97220, + [SMALL_STATE(1452)] = 97239, + [SMALL_STATE(1453)] = 97258, + [SMALL_STATE(1454)] = 97277, + [SMALL_STATE(1455)] = 97296, + [SMALL_STATE(1456)] = 97315, + [SMALL_STATE(1457)] = 97334, + [SMALL_STATE(1458)] = 97353, + [SMALL_STATE(1459)] = 97378, + [SMALL_STATE(1460)] = 97397, + [SMALL_STATE(1461)] = 97416, + [SMALL_STATE(1462)] = 97435, + [SMALL_STATE(1463)] = 97454, + [SMALL_STATE(1464)] = 97473, + [SMALL_STATE(1465)] = 97492, + [SMALL_STATE(1466)] = 97511, + [SMALL_STATE(1467)] = 97530, + [SMALL_STATE(1468)] = 97549, + [SMALL_STATE(1469)] = 97568, + [SMALL_STATE(1470)] = 97587, + [SMALL_STATE(1471)] = 97606, + [SMALL_STATE(1472)] = 97625, + [SMALL_STATE(1473)] = 97644, + [SMALL_STATE(1474)] = 97663, + [SMALL_STATE(1475)] = 97682, + [SMALL_STATE(1476)] = 97701, + [SMALL_STATE(1477)] = 97720, + [SMALL_STATE(1478)] = 97739, + [SMALL_STATE(1479)] = 97758, + [SMALL_STATE(1480)] = 97777, + [SMALL_STATE(1481)] = 97796, + [SMALL_STATE(1482)] = 97815, + [SMALL_STATE(1483)] = 97834, + [SMALL_STATE(1484)] = 97853, + [SMALL_STATE(1485)] = 97872, + [SMALL_STATE(1486)] = 97891, + [SMALL_STATE(1487)] = 97910, + [SMALL_STATE(1488)] = 97929, + [SMALL_STATE(1489)] = 97948, + [SMALL_STATE(1490)] = 97967, + [SMALL_STATE(1491)] = 97986, + [SMALL_STATE(1492)] = 98005, + [SMALL_STATE(1493)] = 98024, + [SMALL_STATE(1494)] = 98043, + [SMALL_STATE(1495)] = 98062, + [SMALL_STATE(1496)] = 98081, + [SMALL_STATE(1497)] = 98100, + [SMALL_STATE(1498)] = 98119, + [SMALL_STATE(1499)] = 98138, + [SMALL_STATE(1500)] = 98157, + [SMALL_STATE(1501)] = 98176, + [SMALL_STATE(1502)] = 98195, + [SMALL_STATE(1503)] = 98214, + [SMALL_STATE(1504)] = 98233, + [SMALL_STATE(1505)] = 98252, + [SMALL_STATE(1506)] = 98271, + [SMALL_STATE(1507)] = 98290, + [SMALL_STATE(1508)] = 98309, + [SMALL_STATE(1509)] = 98328, + [SMALL_STATE(1510)] = 98347, + [SMALL_STATE(1511)] = 98366, + [SMALL_STATE(1512)] = 98385, + [SMALL_STATE(1513)] = 98404, + [SMALL_STATE(1514)] = 98423, + [SMALL_STATE(1515)] = 98442, + [SMALL_STATE(1516)] = 98461, + [SMALL_STATE(1517)] = 98480, + [SMALL_STATE(1518)] = 98499, + [SMALL_STATE(1519)] = 98518, + [SMALL_STATE(1520)] = 98537, + [SMALL_STATE(1521)] = 98556, + [SMALL_STATE(1522)] = 98575, + [SMALL_STATE(1523)] = 98594, + [SMALL_STATE(1524)] = 98619, + [SMALL_STATE(1525)] = 98638, + [SMALL_STATE(1526)] = 98657, + [SMALL_STATE(1527)] = 98676, + [SMALL_STATE(1528)] = 98701, + [SMALL_STATE(1529)] = 98720, + [SMALL_STATE(1530)] = 98739, + [SMALL_STATE(1531)] = 98758, + [SMALL_STATE(1532)] = 98777, + [SMALL_STATE(1533)] = 98796, + [SMALL_STATE(1534)] = 98815, + [SMALL_STATE(1535)] = 98834, + [SMALL_STATE(1536)] = 98853, + [SMALL_STATE(1537)] = 98872, + [SMALL_STATE(1538)] = 98891, + [SMALL_STATE(1539)] = 98910, + [SMALL_STATE(1540)] = 98929, + [SMALL_STATE(1541)] = 98948, + [SMALL_STATE(1542)] = 98967, + [SMALL_STATE(1543)] = 98986, + [SMALL_STATE(1544)] = 99005, + [SMALL_STATE(1545)] = 99024, + [SMALL_STATE(1546)] = 99043, + [SMALL_STATE(1547)] = 99062, + [SMALL_STATE(1548)] = 99081, + [SMALL_STATE(1549)] = 99100, + [SMALL_STATE(1550)] = 99119, + [SMALL_STATE(1551)] = 99138, + [SMALL_STATE(1552)] = 99157, + [SMALL_STATE(1553)] = 99176, + [SMALL_STATE(1554)] = 99195, + [SMALL_STATE(1555)] = 99214, + [SMALL_STATE(1556)] = 99233, + [SMALL_STATE(1557)] = 99252, + [SMALL_STATE(1558)] = 99271, + [SMALL_STATE(1559)] = 99290, + [SMALL_STATE(1560)] = 99309, + [SMALL_STATE(1561)] = 99328, + [SMALL_STATE(1562)] = 99347, + [SMALL_STATE(1563)] = 99366, + [SMALL_STATE(1564)] = 99385, + [SMALL_STATE(1565)] = 99404, + [SMALL_STATE(1566)] = 99423, + [SMALL_STATE(1567)] = 99442, + [SMALL_STATE(1568)] = 99461, + [SMALL_STATE(1569)] = 99480, + [SMALL_STATE(1570)] = 99499, + [SMALL_STATE(1571)] = 99518, + [SMALL_STATE(1572)] = 99537, + [SMALL_STATE(1573)] = 99556, + [SMALL_STATE(1574)] = 99575, + [SMALL_STATE(1575)] = 99594, + [SMALL_STATE(1576)] = 99613, + [SMALL_STATE(1577)] = 99632, + [SMALL_STATE(1578)] = 99651, + [SMALL_STATE(1579)] = 99670, + [SMALL_STATE(1580)] = 99689, + [SMALL_STATE(1581)] = 99708, + [SMALL_STATE(1582)] = 99727, + [SMALL_STATE(1583)] = 99746, + [SMALL_STATE(1584)] = 99765, + [SMALL_STATE(1585)] = 99784, + [SMALL_STATE(1586)] = 99803, + [SMALL_STATE(1587)] = 99822, + [SMALL_STATE(1588)] = 99841, + [SMALL_STATE(1589)] = 99860, + [SMALL_STATE(1590)] = 99879, + [SMALL_STATE(1591)] = 99904, + [SMALL_STATE(1592)] = 99923, + [SMALL_STATE(1593)] = 99942, + [SMALL_STATE(1594)] = 99961, + [SMALL_STATE(1595)] = 99980, + [SMALL_STATE(1596)] = 99999, + [SMALL_STATE(1597)] = 100018, + [SMALL_STATE(1598)] = 100037, + [SMALL_STATE(1599)] = 100056, + [SMALL_STATE(1600)] = 100075, + [SMALL_STATE(1601)] = 100094, + [SMALL_STATE(1602)] = 100113, + [SMALL_STATE(1603)] = 100132, + [SMALL_STATE(1604)] = 100151, + [SMALL_STATE(1605)] = 100170, + [SMALL_STATE(1606)] = 100189, + [SMALL_STATE(1607)] = 100208, + [SMALL_STATE(1608)] = 100227, + [SMALL_STATE(1609)] = 100246, + [SMALL_STATE(1610)] = 100265, + [SMALL_STATE(1611)] = 100284, + [SMALL_STATE(1612)] = 100303, + [SMALL_STATE(1613)] = 100322, + [SMALL_STATE(1614)] = 100341, + [SMALL_STATE(1615)] = 100360, + [SMALL_STATE(1616)] = 100379, + [SMALL_STATE(1617)] = 100398, + [SMALL_STATE(1618)] = 100417, + [SMALL_STATE(1619)] = 100436, + [SMALL_STATE(1620)] = 100455, + [SMALL_STATE(1621)] = 100474, + [SMALL_STATE(1622)] = 100493, + [SMALL_STATE(1623)] = 100512, + [SMALL_STATE(1624)] = 100531, + [SMALL_STATE(1625)] = 100550, + [SMALL_STATE(1626)] = 100569, + [SMALL_STATE(1627)] = 100588, + [SMALL_STATE(1628)] = 100607, + [SMALL_STATE(1629)] = 100626, + [SMALL_STATE(1630)] = 100645, + [SMALL_STATE(1631)] = 100664, + [SMALL_STATE(1632)] = 100683, + [SMALL_STATE(1633)] = 100702, + [SMALL_STATE(1634)] = 100721, + [SMALL_STATE(1635)] = 100740, + [SMALL_STATE(1636)] = 100759, + [SMALL_STATE(1637)] = 100778, + [SMALL_STATE(1638)] = 100797, + [SMALL_STATE(1639)] = 100816, + [SMALL_STATE(1640)] = 100835, + [SMALL_STATE(1641)] = 100854, + [SMALL_STATE(1642)] = 100873, + [SMALL_STATE(1643)] = 100892, + [SMALL_STATE(1644)] = 100911, + [SMALL_STATE(1645)] = 100930, + [SMALL_STATE(1646)] = 100949, + [SMALL_STATE(1647)] = 100968, + [SMALL_STATE(1648)] = 100987, + [SMALL_STATE(1649)] = 101006, + [SMALL_STATE(1650)] = 101025, + [SMALL_STATE(1651)] = 101044, + [SMALL_STATE(1652)] = 101063, + [SMALL_STATE(1653)] = 101088, + [SMALL_STATE(1654)] = 101107, + [SMALL_STATE(1655)] = 101126, + [SMALL_STATE(1656)] = 101151, + [SMALL_STATE(1657)] = 101176, + [SMALL_STATE(1658)] = 101195, + [SMALL_STATE(1659)] = 101214, + [SMALL_STATE(1660)] = 101233, + [SMALL_STATE(1661)] = 101252, + [SMALL_STATE(1662)] = 101271, + [SMALL_STATE(1663)] = 101290, + [SMALL_STATE(1664)] = 101309, + [SMALL_STATE(1665)] = 101328, + [SMALL_STATE(1666)] = 101347, + [SMALL_STATE(1667)] = 101366, + [SMALL_STATE(1668)] = 101385, + [SMALL_STATE(1669)] = 101404, + [SMALL_STATE(1670)] = 101423, + [SMALL_STATE(1671)] = 101442, + [SMALL_STATE(1672)] = 101461, + [SMALL_STATE(1673)] = 101480, + [SMALL_STATE(1674)] = 101499, + [SMALL_STATE(1675)] = 101518, + [SMALL_STATE(1676)] = 101537, + [SMALL_STATE(1677)] = 101556, + [SMALL_STATE(1678)] = 101575, + [SMALL_STATE(1679)] = 101594, + [SMALL_STATE(1680)] = 101613, + [SMALL_STATE(1681)] = 101632, + [SMALL_STATE(1682)] = 101651, + [SMALL_STATE(1683)] = 101670, + [SMALL_STATE(1684)] = 101689, + [SMALL_STATE(1685)] = 101708, + [SMALL_STATE(1686)] = 101727, + [SMALL_STATE(1687)] = 101746, + [SMALL_STATE(1688)] = 101765, + [SMALL_STATE(1689)] = 101784, + [SMALL_STATE(1690)] = 101803, + [SMALL_STATE(1691)] = 101822, + [SMALL_STATE(1692)] = 101841, + [SMALL_STATE(1693)] = 101860, + [SMALL_STATE(1694)] = 101879, + [SMALL_STATE(1695)] = 101898, + [SMALL_STATE(1696)] = 101917, + [SMALL_STATE(1697)] = 101936, + [SMALL_STATE(1698)] = 101955, + [SMALL_STATE(1699)] = 101974, + [SMALL_STATE(1700)] = 101993, + [SMALL_STATE(1701)] = 102012, + [SMALL_STATE(1702)] = 102031, + [SMALL_STATE(1703)] = 102050, + [SMALL_STATE(1704)] = 102069, + [SMALL_STATE(1705)] = 102088, + [SMALL_STATE(1706)] = 102107, + [SMALL_STATE(1707)] = 102126, + [SMALL_STATE(1708)] = 102145, + [SMALL_STATE(1709)] = 102164, + [SMALL_STATE(1710)] = 102183, + [SMALL_STATE(1711)] = 102202, + [SMALL_STATE(1712)] = 102221, + [SMALL_STATE(1713)] = 102240, + [SMALL_STATE(1714)] = 102265, + [SMALL_STATE(1715)] = 102284, + [SMALL_STATE(1716)] = 102303, + [SMALL_STATE(1717)] = 102322, + [SMALL_STATE(1718)] = 102341, + [SMALL_STATE(1719)] = 102360, + [SMALL_STATE(1720)] = 102379, + [SMALL_STATE(1721)] = 102398, + [SMALL_STATE(1722)] = 102417, + [SMALL_STATE(1723)] = 102436, + [SMALL_STATE(1724)] = 102455, + [SMALL_STATE(1725)] = 102474, + [SMALL_STATE(1726)] = 102493, + [SMALL_STATE(1727)] = 102512, + [SMALL_STATE(1728)] = 102531, + [SMALL_STATE(1729)] = 102550, + [SMALL_STATE(1730)] = 102569, + [SMALL_STATE(1731)] = 102588, + [SMALL_STATE(1732)] = 102607, + [SMALL_STATE(1733)] = 102626, + [SMALL_STATE(1734)] = 102645, + [SMALL_STATE(1735)] = 102664, + [SMALL_STATE(1736)] = 102683, + [SMALL_STATE(1737)] = 102702, + [SMALL_STATE(1738)] = 102721, + [SMALL_STATE(1739)] = 102740, + [SMALL_STATE(1740)] = 102759, + [SMALL_STATE(1741)] = 102778, + [SMALL_STATE(1742)] = 102797, + [SMALL_STATE(1743)] = 102816, + [SMALL_STATE(1744)] = 102835, + [SMALL_STATE(1745)] = 102854, + [SMALL_STATE(1746)] = 102873, + [SMALL_STATE(1747)] = 102892, + [SMALL_STATE(1748)] = 102911, + [SMALL_STATE(1749)] = 102930, + [SMALL_STATE(1750)] = 102949, + [SMALL_STATE(1751)] = 102968, + [SMALL_STATE(1752)] = 102987, + [SMALL_STATE(1753)] = 103006, + [SMALL_STATE(1754)] = 103025, + [SMALL_STATE(1755)] = 103044, + [SMALL_STATE(1756)] = 103063, + [SMALL_STATE(1757)] = 103082, + [SMALL_STATE(1758)] = 103101, + [SMALL_STATE(1759)] = 103120, + [SMALL_STATE(1760)] = 103139, + [SMALL_STATE(1761)] = 103158, + [SMALL_STATE(1762)] = 103177, + [SMALL_STATE(1763)] = 103196, + [SMALL_STATE(1764)] = 103215, + [SMALL_STATE(1765)] = 103234, + [SMALL_STATE(1766)] = 103253, + [SMALL_STATE(1767)] = 103272, + [SMALL_STATE(1768)] = 103291, + [SMALL_STATE(1769)] = 103310, + [SMALL_STATE(1770)] = 103329, + [SMALL_STATE(1771)] = 103348, + [SMALL_STATE(1772)] = 103367, + [SMALL_STATE(1773)] = 103386, + [SMALL_STATE(1774)] = 103405, + [SMALL_STATE(1775)] = 103424, + [SMALL_STATE(1776)] = 103443, + [SMALL_STATE(1777)] = 103462, + [SMALL_STATE(1778)] = 103481, + [SMALL_STATE(1779)] = 103500, + [SMALL_STATE(1780)] = 103519, + [SMALL_STATE(1781)] = 103538, + [SMALL_STATE(1782)] = 103557, + [SMALL_STATE(1783)] = 103576, + [SMALL_STATE(1784)] = 103595, + [SMALL_STATE(1785)] = 103614, + [SMALL_STATE(1786)] = 103633, + [SMALL_STATE(1787)] = 103652, + [SMALL_STATE(1788)] = 103671, + [SMALL_STATE(1789)] = 103690, + [SMALL_STATE(1790)] = 103709, + [SMALL_STATE(1791)] = 103728, + [SMALL_STATE(1792)] = 103747, + [SMALL_STATE(1793)] = 103766, + [SMALL_STATE(1794)] = 103785, + [SMALL_STATE(1795)] = 103804, + [SMALL_STATE(1796)] = 103823, + [SMALL_STATE(1797)] = 103842, + [SMALL_STATE(1798)] = 103861, + [SMALL_STATE(1799)] = 103880, + [SMALL_STATE(1800)] = 103899, + [SMALL_STATE(1801)] = 103918, + [SMALL_STATE(1802)] = 103936, + [SMALL_STATE(1803)] = 103954, + [SMALL_STATE(1804)] = 103972, + [SMALL_STATE(1805)] = 103990, + [SMALL_STATE(1806)] = 104008, + [SMALL_STATE(1807)] = 104026, + [SMALL_STATE(1808)] = 104044, + [SMALL_STATE(1809)] = 104062, + [SMALL_STATE(1810)] = 104080, + [SMALL_STATE(1811)] = 104098, + [SMALL_STATE(1812)] = 104116, + [SMALL_STATE(1813)] = 104134, + [SMALL_STATE(1814)] = 104152, + [SMALL_STATE(1815)] = 104170, + [SMALL_STATE(1816)] = 104188, + [SMALL_STATE(1817)] = 104206, + [SMALL_STATE(1818)] = 104224, + [SMALL_STATE(1819)] = 104242, + [SMALL_STATE(1820)] = 104260, + [SMALL_STATE(1821)] = 104278, + [SMALL_STATE(1822)] = 104296, + [SMALL_STATE(1823)] = 104314, + [SMALL_STATE(1824)] = 104332, + [SMALL_STATE(1825)] = 104350, + [SMALL_STATE(1826)] = 104368, + [SMALL_STATE(1827)] = 104386, + [SMALL_STATE(1828)] = 104404, + [SMALL_STATE(1829)] = 104422, + [SMALL_STATE(1830)] = 104440, + [SMALL_STATE(1831)] = 104458, + [SMALL_STATE(1832)] = 104476, + [SMALL_STATE(1833)] = 104494, + [SMALL_STATE(1834)] = 104512, + [SMALL_STATE(1835)] = 104530, + [SMALL_STATE(1836)] = 104548, + [SMALL_STATE(1837)] = 104566, + [SMALL_STATE(1838)] = 104584, + [SMALL_STATE(1839)] = 104602, + [SMALL_STATE(1840)] = 104620, + [SMALL_STATE(1841)] = 104638, + [SMALL_STATE(1842)] = 104656, + [SMALL_STATE(1843)] = 104674, + [SMALL_STATE(1844)] = 104692, + [SMALL_STATE(1845)] = 104710, + [SMALL_STATE(1846)] = 104728, + [SMALL_STATE(1847)] = 104746, + [SMALL_STATE(1848)] = 104764, + [SMALL_STATE(1849)] = 104782, + [SMALL_STATE(1850)] = 104800, + [SMALL_STATE(1851)] = 104818, + [SMALL_STATE(1852)] = 104836, + [SMALL_STATE(1853)] = 104854, + [SMALL_STATE(1854)] = 104872, + [SMALL_STATE(1855)] = 104890, + [SMALL_STATE(1856)] = 104908, + [SMALL_STATE(1857)] = 104926, + [SMALL_STATE(1858)] = 104944, + [SMALL_STATE(1859)] = 104962, + [SMALL_STATE(1860)] = 104971, + [SMALL_STATE(1861)] = 104984, + [SMALL_STATE(1862)] = 104994, + [SMALL_STATE(1863)] = 105004, + [SMALL_STATE(1864)] = 105014, + [SMALL_STATE(1865)] = 105024, + [SMALL_STATE(1866)] = 105034, + [SMALL_STATE(1867)] = 105044, + [SMALL_STATE(1868)] = 105054, + [SMALL_STATE(1869)] = 105064, + [SMALL_STATE(1870)] = 105071, + [SMALL_STATE(1871)] = 105078, + [SMALL_STATE(1872)] = 105085, + [SMALL_STATE(1873)] = 105092, + [SMALL_STATE(1874)] = 105099, + [SMALL_STATE(1875)] = 105106, + [SMALL_STATE(1876)] = 105113, + [SMALL_STATE(1877)] = 105120, + [SMALL_STATE(1878)] = 105127, + [SMALL_STATE(1879)] = 105134, + [SMALL_STATE(1880)] = 105141, + [SMALL_STATE(1881)] = 105148, + [SMALL_STATE(1882)] = 105155, + [SMALL_STATE(1883)] = 105162, + [SMALL_STATE(1884)] = 105169, }; static TSParseActionEntry ts_parse_actions[] = { @@ -95199,2160 +91473,2126 @@ static TSParseActionEntry ts_parse_actions[] = { [1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(), [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(933), - [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [7] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), - [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(33), - [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(921), - [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), - [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), - [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), - [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1926), - [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1389), - [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1851), - [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1850), - [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), - [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), - [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), - [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [45] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), - [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(144), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1440), - [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), - [57] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_clause, 2), - [59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), - [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), - [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(437), - [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(448), - [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1919), - [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1384), - [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1886), - [73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1895), - [75] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), - [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), - [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), - [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), - [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), - [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(318), - [93] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_clause, 2), - [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1448), - [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), - [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), - [101] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2), SHIFT_REPEAT(934), - [104] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2), SHIFT_REPEAT(79), - [107] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2), SHIFT_REPEAT(437), - [110] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2), SHIFT_REPEAT(524), - [113] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_do_clause_repeat1, 2), SHIFT_REPEAT(437), - [116] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_do_clause_repeat1, 2), SHIFT_REPEAT(448), - [119] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2), SHIFT_REPEAT(1149), - [122] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2), SHIFT_REPEAT(1151), - [125] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2), SHIFT_REPEAT(10), - [128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2), - [130] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2), SHIFT_REPEAT(1919), - [133] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_do_clause_repeat1, 2), SHIFT_REPEAT(1384), - [136] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_do_clause_repeat1, 2), SHIFT_REPEAT(1886), - [139] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2), SHIFT_REPEAT(1895), - [142] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2), SHIFT_REPEAT(1448), - [145] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2), SHIFT_REPEAT(323), - [148] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2), SHIFT_REPEAT(1388), - [151] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2), SHIFT_REPEAT(1240), - [154] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2), SHIFT_REPEAT(321), - [157] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2), SHIFT_REPEAT(320), - [160] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2), SHIFT_REPEAT(1377), - [163] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2), SHIFT_REPEAT(319), - [166] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_do_clause_repeat1, 2), SHIFT_REPEAT(318), - [169] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_do_clause_repeat1, 2), - [171] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_do_clause_repeat1, 2), SHIFT_REPEAT(1448), - [174] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2), SHIFT_REPEAT(299), - [177] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2), SHIFT_REPEAT(1483), - [180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), - [182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), - [186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(932), - [188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), - [190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(577), - [192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), - [194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(947), - [196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1373), - [198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), - [200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), - [202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(558), - [204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), - [206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), - [208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), - [210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(568), - [212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), - [214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), - [216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), - [218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(579), - [220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), - [222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), - [224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), - [226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(564), - [228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), - [230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), - [232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), - [234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(580), - [236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), - [238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), - [240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), - [242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(569), - [244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), - [246] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 21), SHIFT_REPEAT(931), - [249] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 21), SHIFT_REPEAT(79), - [252] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 21), SHIFT_REPEAT(932), - [255] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 21), SHIFT_REPEAT(927), - [258] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 21), SHIFT_REPEAT(932), - [261] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 21), SHIFT_REPEAT(921), - [264] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 21), SHIFT_REPEAT(1149), - [267] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 21), SHIFT_REPEAT(1151), - [270] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 21), SHIFT_REPEAT(4), - [273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 21), - [275] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 21), SHIFT_REPEAT(1926), - [278] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 21), SHIFT_REPEAT(1389), - [281] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 21), SHIFT_REPEAT(1851), - [284] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 21), SHIFT_REPEAT(1850), - [287] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 21), SHIFT_REPEAT(1440), - [290] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 21), SHIFT_REPEAT(297), - [293] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 21), SHIFT_REPEAT(1396), - [296] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 21), SHIFT_REPEAT(1230), - [299] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 21), SHIFT_REPEAT(166), - [302] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 21), SHIFT_REPEAT(158), - [305] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 21), SHIFT_REPEAT(1378), - [308] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 21), SHIFT_REPEAT(146), - [311] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 21), SHIFT_REPEAT(144), - [314] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 21), SHIFT_REPEAT(1440), - [317] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 21), SHIFT_REPEAT(138), - [320] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 21), SHIFT_REPEAT(1771), - [323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), - [325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), - [327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), - [329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), - [331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), - [333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), - [335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), - [337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), - [339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), - [341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), - [343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), - [345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), - [347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), - [349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), - [351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), - [353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), - [355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), - [357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), - [359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), - [361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), - [363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), - [365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), + [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1403), + [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), + [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), + [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(33), + [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(888), + [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), + [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), + [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), + [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1877), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1356), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1822), + [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1830), + [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), + [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), + [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [45] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), + [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(282), + [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), + [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), + [57] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2), SHIFT_REPEAT(903), + [60] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2), SHIFT_REPEAT(258), + [63] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2), SHIFT_REPEAT(399), + [66] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_do_clause_repeat1, 2), SHIFT_REPEAT(1392), + [69] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2), SHIFT_REPEAT(1392), + [72] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2), SHIFT_REPEAT(482), + [75] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_do_clause_repeat1, 2), SHIFT_REPEAT(399), + [78] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_do_clause_repeat1, 2), SHIFT_REPEAT(409), + [81] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2), SHIFT_REPEAT(1046), + [84] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2), SHIFT_REPEAT(1045), + [87] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2), SHIFT_REPEAT(5), + [90] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2), + [92] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2), SHIFT_REPEAT(1880), + [95] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_do_clause_repeat1, 2), SHIFT_REPEAT(1362), + [98] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_do_clause_repeat1, 2), SHIFT_REPEAT(1846), + [101] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2), SHIFT_REPEAT(1845), + [104] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2), SHIFT_REPEAT(170), + [107] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2), SHIFT_REPEAT(1346), + [110] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2), SHIFT_REPEAT(1179), + [113] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2), SHIFT_REPEAT(166), + [116] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2), SHIFT_REPEAT(164), + [119] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2), SHIFT_REPEAT(1328), + [122] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2), SHIFT_REPEAT(163), + [125] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_do_clause_repeat1, 2), SHIFT_REPEAT(162), + [128] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_do_clause_repeat1, 2), + [130] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2), SHIFT_REPEAT(165), + [133] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2), SHIFT_REPEAT(1463), + [136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_clause, 2), + [138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), + [140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1392), + [142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), + [144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), + [146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(399), + [148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(409), + [150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1880), + [152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1362), + [154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1846), + [156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1845), + [158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), + [162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), + [164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), + [170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(162), + [174] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_clause, 2), + [176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), + [180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), + [182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), + [186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(895), + [188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), + [190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(523), + [192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), + [194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(910), + [196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1325), + [198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), + [200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(542), + [204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), + [208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), + [210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(533), + [212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), + [214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), + [216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), + [218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(539), + [220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), + [222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), + [224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), + [226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(534), + [228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), + [230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), + [232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), + [234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(547), + [236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), + [238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), + [240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), + [242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(536), + [244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), + [246] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 20), SHIFT_REPEAT(893), + [249] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 20), SHIFT_REPEAT(258), + [252] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 20), SHIFT_REPEAT(895), + [255] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 20), SHIFT_REPEAT(1403), + [258] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 20), SHIFT_REPEAT(1403), + [261] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 20), SHIFT_REPEAT(809), + [264] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 20), SHIFT_REPEAT(895), + [267] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 20), SHIFT_REPEAT(888), + [270] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 20), SHIFT_REPEAT(1046), + [273] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 20), SHIFT_REPEAT(1045), + [276] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 20), SHIFT_REPEAT(7), + [279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 20), + [281] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 20), SHIFT_REPEAT(1877), + [284] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 20), SHIFT_REPEAT(1356), + [287] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 20), SHIFT_REPEAT(1822), + [290] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 20), SHIFT_REPEAT(1830), + [293] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 20), SHIFT_REPEAT(321), + [296] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 20), SHIFT_REPEAT(1352), + [299] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 20), SHIFT_REPEAT(1189), + [302] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 20), SHIFT_REPEAT(305), + [305] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 20), SHIFT_REPEAT(304), + [308] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 20), SHIFT_REPEAT(1335), + [311] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 20), SHIFT_REPEAT(294), + [314] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 20), SHIFT_REPEAT(282), + [317] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 20), SHIFT_REPEAT(276), + [320] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 20), SHIFT_REPEAT(1721), + [323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), + [325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), + [327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), + [329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), + [331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), + [333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), + [335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), + [337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), + [339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), + [341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), + [343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), + [345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), + [347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), + [349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), + [351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), + [353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), + [355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), + [357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), + [359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), + [361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), + [363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), [367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source, 1), - [369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), - [371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(65), - [373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), - [375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), - [377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), - [379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), - [381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), - [383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), - [385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), - [387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), - [389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), - [391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), - [393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), - [395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), - [397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), - [399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), - [401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), - [403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), - [405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), - [407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), - [409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), - [411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), - [413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), - [415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), - [417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), - [419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), - [421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), - [423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), - [425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), - [427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), - [429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), - [431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), - [433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), - [435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), - [437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2), - [439] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2), SHIFT_REPEAT(933), - [442] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2), SHIFT_REPEAT(79), - [445] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2), SHIFT_REPEAT(65), - [448] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2), SHIFT_REPEAT(927), - [451] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_repeat1, 2), SHIFT_REPEAT(65), - [454] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_repeat1, 2), SHIFT_REPEAT(921), - [457] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2), SHIFT_REPEAT(1149), - [460] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2), SHIFT_REPEAT(1151), - [463] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2), SHIFT_REPEAT(4), - [466] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2), SHIFT_REPEAT(1926), - [469] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_repeat1, 2), SHIFT_REPEAT(1389), - [472] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_repeat1, 2), SHIFT_REPEAT(1851), - [475] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2), SHIFT_REPEAT(1850), - [478] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2), SHIFT_REPEAT(1440), - [481] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2), SHIFT_REPEAT(297), - [484] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2), SHIFT_REPEAT(1396), - [487] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2), SHIFT_REPEAT(1230), - [490] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2), SHIFT_REPEAT(166), - [493] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2), SHIFT_REPEAT(158), - [496] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2), SHIFT_REPEAT(1378), - [499] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2), SHIFT_REPEAT(146), - [502] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_repeat1, 2), SHIFT_REPEAT(144), - [505] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_repeat1, 2), SHIFT_REPEAT(1440), - [508] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2), SHIFT_REPEAT(138), - [511] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2), SHIFT_REPEAT(1771), - [514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), - [516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), - [518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), - [520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(796), - [522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(587), - [524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), - [526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1927), - [528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1392), - [530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1896), - [532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), - [534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), - [536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), - [538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), - [540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), - [542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), - [546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), - [548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), - [550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(292), - [552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1444), - [554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), - [558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), - [560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), - [562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), - [564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(650), - [566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(792), - [568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), - [570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1914), - [572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1391), - [574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1901), - [576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1898), - [578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), - [580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), - [584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), - [586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), - [588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), - [592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), - [594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(348), - [596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1434), - [598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), - [602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), - [604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), - [606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), - [608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1069), - [610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(951), - [612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), - [614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1925), - [616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1387), - [618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1848), - [620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1847), - [622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), - [624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), - [626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), - [628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), - [630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), - [632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), - [636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(77), - [640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1450), - [642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), - [644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), - [646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), - [648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), - [650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(909), - [652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), - [654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), - [662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(208), - [664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1442), - [666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), - [670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1068), - [672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), - [674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(855), - [676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), - [678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(128), - [680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), - [682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(907), - [684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), - [686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1049), - [688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), - [690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1066), - [692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), - [694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(906), - [696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), - [698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1065), - [700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), - [702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(858), - [704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), - [706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(849), - [708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), - [710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(859), - [712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), - [714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1060), - [716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), - [718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(903), - [720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(161), - [724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), - [726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(861), - [728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), - [730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(496), - [732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), - [734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(862), - [736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), - [738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(863), - [740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(154), - [744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), - [746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(896), - [748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), - [750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(895), - [752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(162), - [756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), - [758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(894), - [760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), - [762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(893), - [764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), - [766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(200), - [768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), - [770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(495), - [772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), - [774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1052), - [776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), - [778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(892), - [780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), - [782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(887), - [784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), - [786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(867), - [788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(156), - [792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), - [794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(872), - [796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), - [798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(873), - [800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), - [802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(874), - [804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(178), - [808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(180), - [812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), - [814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(884), - [816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), - [818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1042), - [820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(251), - [824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), - [826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1041), - [828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), - [830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), - [832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), - [834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1107), - [836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1080), - [838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), - [840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1920), - [842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1397), - [844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1858), - [846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1857), - [848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), - [850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), - [852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), - [854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), - [856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), - [858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), - [862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), - [864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(293), - [866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1436), - [868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), - [870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), - [872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), - [874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(485), - [876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), - [878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(484), - [880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), - [882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1210), - [884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), - [886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(482), - [888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), - [890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(481), - [892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), - [894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1039), - [896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), - [898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1038), - [900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), - [902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1207), - [904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), - [906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1037), - [908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), - [910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(312), - [912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), - [914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(67), - [916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), - [918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1033), - [920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), - [922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1028), - [924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), - [926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1200), - [928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), - [930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1197), - [932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), - [934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1027), - [936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), - [938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1195), - [940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), - [942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(883), - [944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), - [946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1194), - [948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), - [950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1362), - [952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), - [954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1026), - [956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(107), - [960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(90), - [964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), - [966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(910), - [968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(87), - [972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), - [974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(324), - [976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), - [978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(479), - [980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), - [982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(325), - [984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), - [986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(333), - [988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), - [990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(833), - [992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), - [994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1192), - [996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), - [998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(832), - [1000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), - [1002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(89), - [1004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), - [1006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(471), - [1008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), - [1010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(464), - [1012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), - [1014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(463), - [1016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), - [1018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(341), - [1020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), - [1022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(462), - [1024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), - [1026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(830), - [1028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), - [1030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(778), - [1032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), - [1034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(460), - [1036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), - [1038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1188), - [1040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), - [1042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1187), - [1044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), - [1046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1185), - [1048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), - [1050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(829), - [1052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), - [1054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1184), - [1056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), - [1058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1183), - [1060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), - [1062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(525), - [1064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), - [1066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(378), - [1068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), - [1070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1020), - [1072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), - [1074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1019), - [1076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), - [1078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(381), - [1080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [1082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(229), - [1084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), - [1086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(232), - [1088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), - [1090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1179), - [1092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1917), - [1094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), - [1096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), - [1098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(958), - [1100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), - [1102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(73), - [1104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1922), - [1106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), - [1108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), - [1110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), - [1112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1089), - [1114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1231), - [1116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), - [1118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1918), - [1120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1385), - [1122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1871), - [1124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1872), - [1126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), - [1128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [1130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), - [1132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), - [1134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [1136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [1138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), - [1140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [1142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(358), - [1144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1433), - [1146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [1148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), - [1150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), - [1152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1016), - [1154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884), - [1156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1884), - [1158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), - [1160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(136), - [1162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [1164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(394), - [1166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), - [1168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(439), - [1170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), - [1172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(919), - [1174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), - [1176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1091), - [1178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), - [1180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(522), - [1182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), - [1184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1081), - [1186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), - [1188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(503), - [1190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), - [1192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1092), - [1194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), - [1196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1012), - [1198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), - [1200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1168), - [1202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), - [1204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1166), - [1206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), - [1208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(395), - [1210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), - [1212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1011), - [1214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), - [1216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(405), - [1218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), - [1220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1010), - [1222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), - [1224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1009), - [1226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), - [1228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(840), - [1230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), - [1232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(976), - [1234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), - [1236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1005), - [1238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), - [1240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(407), - [1242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1051), - [1244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), - [1246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), - [1248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), - [1250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), - [1252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(375), - [1254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [1256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), - [1258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(826), - [1260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), - [1262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(767), - [1264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), - [1266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(800), - [1268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), - [1270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(809), - [1272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), - [1274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(807), - [1276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), - [1278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(806), - [1280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), - [1282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(805), - [1284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), - [1286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1003), - [1288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), - [1290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1002), - [1292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), - [1294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(802), - [1296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), - [1298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1159), - [1300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), - [1302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(535), - [1304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), - [1306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(220), - [1308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), - [1310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(222), - [1312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [1314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(248), - [1316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), - [1318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(250), - [1320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), - [1322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(538), - [1324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), - [1326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1158), - [1328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [1330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(267), - [1332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), - [1334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(545), - [1336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), - [1338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(549), - [1340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), - [1342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1157), - [1344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), - [1346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1001), - [1348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), - [1350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1152), - [1352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), - [1354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(282), - [1356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), - [1358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1000), - [1360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), - [1362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(920), - [1364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), - [1366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(798), - [1368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), - [1370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(962), - [1372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), - [1374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(797), - [1376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), - [1378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1146), - [1380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), - [1382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1145), - [1384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), - [1386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1144), - [1388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), - [1390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(795), - [1392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), - [1394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(520), - [1396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), - [1398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(517), - [1400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), - [1402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(787), - [1404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), - [1406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1141), - [1408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), - [1410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(453), - [1412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), - [1414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(781), - [1416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [1418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(112), - [1420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), - [1422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(115), - [1424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), - [1426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1138), - [1428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), - [1430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(995), - [1432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), - [1434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1360), - [1436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), - [1438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(455), - [1440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), - [1442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(776), - [1444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), - [1446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(456), - [1448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), - [1450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(775), - [1452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), - [1454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(994), - [1456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), - [1458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(769), - [1460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [1462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(148), - [1464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), - [1466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(149), - [1468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), - [1470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(195), - [1472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), - [1474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1103), - [1476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), - [1478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(768), - [1480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), - [1482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1079), - [1484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), - [1486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(765), - [1488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), - [1490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(759), - [1492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), - [1494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(713), - [1496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1924), - [1498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), - [1500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), - [1502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(644), - [1504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), - [1506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(746), - [1508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), - [1510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(744), - [1512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), - [1514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1121), - [1516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), - [1518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(740), - [1520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), - [1522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1100), - [1524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), - [1526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(739), - [1528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), - [1530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(734), - [1532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), - [1534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(461), - [1536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), - [1538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(709), - [1540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), - [1542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1169), - [1544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), - [1546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1112), - [1548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), - [1550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1123), - [1552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), - [1554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1124), - [1556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), - [1558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(120), - [1560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [1562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(255), - [1564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), - [1566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1198), - [1568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), - [1570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(707), - [1572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), - [1574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(473), - [1576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), - [1578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(605), - [1580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), - [1582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(512), - [1584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), - [1586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(703), - [1588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), - [1590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(689), - [1592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), - [1594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(388), - [1596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), - [1598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(391), - [1600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), - [1602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(659), - [1604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), - [1606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1096), - [1608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), - [1610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(658), - [1612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), - [1614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(653), - [1616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), - [1618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(690), - [1620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), - [1622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(652), - [1624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), - [1626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1095), - [1628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), - [1630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(125), - [1632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), - [1634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(649), - [1636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), - [1638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(490), - [1640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), - [1642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(493), - [1644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), - [1646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(497), - [1648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), - [1650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(499), - [1652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), - [1654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(647), - [1656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), - [1658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(504), - [1660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), - [1662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(643), - [1664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), - [1666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(642), - [1668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), - [1670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(606), - [1672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), - [1674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(640), - [1676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), - [1678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(639), - [1680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), - [1682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(420), - [1684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), - [1686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(416), - [1688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), - [1690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(635), - [1692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), - [1694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(403), - [1696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), - [1698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(631), - [1700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), - [1702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(630), - [1704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), - [1706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(624), - [1708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), - [1710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(623), - [1712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), - [1714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1102), - [1716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), - [1718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(621), - [1720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), - [1722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(616), - [1724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), - [1726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1101), - [1728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), - [1730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(611), - [1732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), - [1734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(610), - [1736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), - [1738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(609), - [1740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), - [1742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(607), - [1744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), - [1746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(714), - [1748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), - [1750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(748), - [1752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), - [1754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(704), - [1756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), - [1758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(696), - [1760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), - [1762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(716), - [1764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), - [1766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(719), - [1768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), - [1770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(720), - [1772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), - [1774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(743), - [1776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [1778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(370), - [1780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), - [1782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), - [1784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1268), - [1786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), - [1788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1263), - [1790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), - [1792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1262), - [1794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), - [1796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1265), - [1798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), - [1800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1266), - [1802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), - [1804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1382), - [1806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), - [1808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1349), - [1810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), - [1812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1356), - [1814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), - [1816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1383), - [1818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), - [1820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1357), - [1822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), - [1824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1359), - [1826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), - [1828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1353), - [1830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), - [1832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1352), - [1834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), - [1836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1293), - [1838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [1840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(246), - [1842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [1844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(225), - [1846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), - [1848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1294), - [1850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), - [1852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1345), - [1854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), - [1856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1342), - [1858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), - [1860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1340), - [1862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), - [1864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1339), - [1866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), - [1868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1298), - [1870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), - [1872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1299), - [1874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), - [1876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1300), - [1878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), - [1880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1301), - [1882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), - [1884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1325), - [1886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), - [1888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1324), - [1890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), - [1892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1303), - [1894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), - [1896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1319), - [1898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), - [1900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1260), - [1902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), - [1904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1309), - [1906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [1908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(209), - [1910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), - [1912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1308), - [1914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), - [1916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1307), - [1918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), - [1920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1306), - [1922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [1924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(174), - [1926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [1928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(206), - [1930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), - [1932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), - [1934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1093), - [1936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [1938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), - [1940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), - [1942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(957), - [1944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [1946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), - [1948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1086), - [1950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [1952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [1954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1870), - [1956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1870), - [1958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), - [1960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), - [1962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), - [1964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(695), - [1966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [1968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [1970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), - [1972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1087), - [1974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [1976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), - [1978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1094), - [1980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [1982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), - [1984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1088), - [1986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), - [1988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), - [1990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1099), - [1992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [1994] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 1), SHIFT_REPEAT(438), - [1997] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 1), SHIFT_REPEAT(304), - [2000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 1), - [2002] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_do_clause_repeat1, 1), - [2004] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2), SHIFT_REPEAT(440), - [2007] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2), SHIFT_REPEAT(304), - [2010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 3), - [2012] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_do_clause_repeat1, 3), - [2014] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(441), - [2017] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(304), - [2020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), - [2022] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_dis_expr_repeat1, 2), - [2024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_lit, 2, .production_id = 12), - [2026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), - [2028] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_lit, 2, .production_id = 12), - [2030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dotted_sym_lit_repeat1, 2), - [2032] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dotted_sym_lit_repeat1, 2), SHIFT_REPEAT(1452), - [2035] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_dotted_sym_lit_repeat1, 2), - [2037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dotted_sym_lit, 2), - [2039] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dotted_sym_lit, 2), - [2041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_lit, 3, .production_id = 26), - [2043] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_lit, 3, .production_id = 26), - [2045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__form, 1), - [2047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), - [2049] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__form, 1), - [2051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), - [2053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1449), - [2055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sym_lit, 1), - [2057] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sym_lit, 1), - [2059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sym_lit, 2, .production_id = 1), - [2061] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sym_lit, 2, .production_id = 1), - [2063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 7, .production_id = 50), - [2065] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 7, .production_id = 50), - [2067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 7, .production_id = 55), - [2069] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 7, .production_id = 55), - [2071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_evaling_lit, 4, .production_id = 37), - [2073] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_evaling_lit, 4, .production_id = 37), - [2075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquote_splicing_lit, 3, .production_id = 17), - [2077] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquote_splicing_lit, 3, .production_id = 17), - [2079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_syn_quoting_lit, 3, .production_id = 17), - [2081] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_syn_quoting_lit, 3, .production_id = 17), - [2083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoting_lit, 3, .production_id = 17), - [2085] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoting_lit, 3, .production_id = 17), - [2087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derefing_lit, 3, .production_id = 17), - [2089] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_derefing_lit, 3, .production_id = 17), - [2091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_evaling_lit, 3, .production_id = 17), - [2093] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_evaling_lit, 3, .production_id = 17), - [2095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sym_val_lit, 3, .production_id = 17), - [2097] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sym_val_lit, 3, .production_id = 17), - [2099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derefing_lit, 4, .production_id = 37), - [2101] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_derefing_lit, 4, .production_id = 37), - [2103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_quoting_lit, 3, .production_id = 17), - [2105] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_var_quoting_lit, 3, .production_id = 17), - [2107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoting_lit, 4, .production_id = 37), - [2109] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoting_lit, 4, .production_id = 37), - [2111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquote_splicing_lit, 4, .production_id = 37), - [2113] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquote_splicing_lit, 4, .production_id = 37), - [2115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include_reader_macro, 4, .production_id = 38), - [2117] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_include_reader_macro, 4, .production_id = 38), - [2119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_splicing_read_cond_lit, 3, .production_id = 24), - [2121] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_splicing_read_cond_lit, 3, .production_id = 24), - [2123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_read_cond_lit, 3, .production_id = 24), - [2125] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_read_cond_lit, 3, .production_id = 24), - [2127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__bare_vec_lit, 3, .production_id = 23), - [2129] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__bare_vec_lit, 3, .production_id = 23), - [2131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__bare_set_lit, 3, .production_id = 22), - [2133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__bare_set_lit, 3, .production_id = 22), - [2135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__bare_list_lit, 3, .production_id = 20), - [2137] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__bare_list_lit, 3, .production_id = 20), - [2139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun, 3, .production_id = 18), - [2141] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun, 3, .production_id = 18), - [2143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_macro, 3, .production_id = 18), - [2145] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_macro, 3, .production_id = 18), - [2147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dis_expr, 3, .production_id = 17), - [2149] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dis_expr, 3, .production_id = 17), - [2151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_set_lit, 2, .production_id = 15), - [2153] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_set_lit, 2, .production_id = 15), - [2155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_vec_lit, 2, .production_id = 14), - [2157] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_vec_lit, 2, .production_id = 14), - [2159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_lit, 2, .production_id = 13), - [2161] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_lit, 2, .production_id = 13), - [2163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_macro, 5, .production_id = 40), - [2165] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_macro, 5, .production_id = 40), - [2167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun, 5, .production_id = 41), - [2169] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun, 5, .production_id = 41), - [2171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include_reader_macro, 5, .production_id = 44), - [2173] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_include_reader_macro, 5, .production_id = 44), - [2175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 5, .production_id = 45), - [2177] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 5, .production_id = 45), - [2179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include_reader_macro, 5, .production_id = 46), - [2181] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_include_reader_macro, 5, .production_id = 46), - [2183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include_reader_macro, 5, .production_id = 47), - [2185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_include_reader_macro, 5, .production_id = 47), - [2187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun, 4, .production_id = 32), - [2189] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun, 4, .production_id = 32), - [2191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 9, .production_id = 61), - [2193] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 9, .production_id = 61), - [2195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__form, 2), - [2197] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__form, 2), - [2199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 10, .production_id = 61), - [2201] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 10, .production_id = 61), - [2203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 6, .production_id = 45), - [2205] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 6, .production_id = 45), - [2207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquoting_lit, 2, .production_id = 7), - [2209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquoting_lit, 2, .production_id = 7), - [2211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 6, .production_id = 50), - [2213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 6, .production_id = 50), - [2215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 6, .production_id = 51), - [2217] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 6, .production_id = 51), - [2219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquote_splicing_lit, 2, .production_id = 7), - [2221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquote_splicing_lit, 2, .production_id = 7), - [2223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_syn_quoting_lit, 2, .production_id = 7), - [2225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_syn_quoting_lit, 2, .production_id = 7), - [2227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include_reader_macro, 6, .production_id = 52), - [2229] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_include_reader_macro, 6, .production_id = 52), - [2231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoting_lit, 2, .production_id = 7), - [2233] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoting_lit, 2, .production_id = 7), - [2235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 6, .production_id = 53), - [2237] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 6, .production_id = 53), - [2239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derefing_lit, 2, .production_id = 7), - [2241] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_derefing_lit, 2, .production_id = 7), - [2243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_evaling_lit, 2, .production_id = 7), - [2245] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_evaling_lit, 2, .production_id = 7), - [2247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__bare_set_lit, 4, .production_id = 33), - [2249] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__bare_set_lit, 4, .production_id = 33), - [2251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sym_val_lit, 2, .production_id = 7), - [2253] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sym_val_lit, 2, .production_id = 7), - [2255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include_reader_macro, 4, .production_id = 34), - [2257] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_include_reader_macro, 4, .production_id = 34), - [2259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_quoting_lit, 2, .production_id = 7), - [2261] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_var_quoting_lit, 2, .production_id = 7), - [2263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_macro, 4, .production_id = 29), - [2265] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_macro, 4, .production_id = 29), - [2267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_splicing_read_cond_lit, 2, .production_id = 11), - [2269] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_splicing_read_cond_lit, 2, .production_id = 11), - [2271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_read_cond_lit, 2, .production_id = 11), - [2273] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_read_cond_lit, 2, .production_id = 11), - [2275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__bare_vec_lit, 2, .production_id = 10), - [2277] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__bare_vec_lit, 2, .production_id = 10), - [2279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__bare_list_lit, 2, .production_id = 8), - [2281] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__bare_list_lit, 2, .production_id = 8), - [2283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 7, .production_id = 51), - [2285] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 7, .production_id = 51), - [2287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dis_expr, 2, .production_id = 7), - [2289] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dis_expr, 2, .production_id = 7), - [2291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_set_lit, 1, .production_id = 6), - [2293] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_set_lit, 1, .production_id = 6), - [2295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_vec_lit, 1, .production_id = 5), - [2297] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_vec_lit, 1, .production_id = 5), - [2299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_lit, 1, .production_id = 4), - [2301] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_lit, 1, .production_id = 4), - [2303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 7, .production_id = 54), - [2305] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 7, .production_id = 54), - [2307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquoting_lit, 3, .production_id = 17), - [2309] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquoting_lit, 3, .production_id = 17), - [2311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 7, .production_id = 53), - [2313] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 7, .production_id = 53), - [2315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 7, .production_id = 56), - [2317] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 7, .production_id = 56), - [2319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include_reader_macro, 3, .production_id = 25), - [2321] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_include_reader_macro, 3, .production_id = 25), - [2323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 7, .production_id = 57), - [2325] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 7, .production_id = 57), - [2327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include_reader_macro, 4, .production_id = 35), - [2329] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_include_reader_macro, 4, .production_id = 35), - [2331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_str_lit, 1), - [2333] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_str_lit, 1), - [2335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_quoting_lit, 4, .production_id = 37), - [2337] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_var_quoting_lit, 4, .production_id = 37), - [2339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_splicing_read_cond_lit, 4, .production_id = 36), - [2341] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_splicing_read_cond_lit, 4, .production_id = 36), - [2343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_read_cond_lit, 4, .production_id = 36), - [2345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_read_cond_lit, 4, .production_id = 36), - [2347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_read_cond_lit, 3, .production_id = 27), - [2349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_read_cond_lit, 3, .production_id = 27), - [2351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 8, .production_id = 54), - [2353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 8, .production_id = 54), - [2355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 8, .production_id = 55), - [2357] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 8, .production_id = 55), - [2359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 8, .production_id = 58), - [2361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 8, .production_id = 58), - [2363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 8, .production_id = 56), - [2365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 8, .production_id = 56), - [2367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquote_splicing_lit, 3, .production_id = 28), - [2369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquote_splicing_lit, 3, .production_id = 28), - [2371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 9, .production_id = 60), - [2373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 9, .production_id = 60), - [2375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 9, .production_id = 59), - [2377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 9, .production_id = 59), - [2379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoting_lit, 3, .production_id = 28), - [2381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoting_lit, 3, .production_id = 28), - [2383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 8, .production_id = 57), - [2385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 8, .production_id = 57), - [2387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 9, .production_id = 58), - [2389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 9, .production_id = 58), - [2391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 8, .production_id = 60), - [2393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 8, .production_id = 60), - [2395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 8, .production_id = 59), - [2397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 8, .production_id = 59), - [2399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_splicing_read_cond_lit, 3, .production_id = 27), - [2401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_splicing_read_cond_lit, 3, .production_id = 27), - [2403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derefing_lit, 3, .production_id = 28), - [2405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_derefing_lit, 3, .production_id = 28), - [2407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_evaling_lit, 3, .production_id = 28), - [2409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_evaling_lit, 3, .production_id = 28), - [2411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_quoting_lit, 3, .production_id = 28), - [2413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_var_quoting_lit, 3, .production_id = 28), - [2415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun, 4, .production_id = 29), - [2417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun, 4, .production_id = 29), - [2419] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 4, .production_id = 48), SHIFT(1381), - [2422] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 4, .production_id = 48), SHIFT(362), - [2425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 4, .production_id = 48), - [2427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(948), - [2429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), - [2431] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_clause, 4, .production_id = 48), - [2433] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_clause_repeat1, 2), SHIFT_REPEAT(1381), - [2436] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_clause_repeat1, 2), SHIFT_REPEAT(362), - [2439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_clause_repeat1, 2), - [2441] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_clause_repeat1, 2), SHIFT_REPEAT(948), - [2444] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_clause_repeat1, 2), SHIFT_REPEAT(948), - [2447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_for_clause_repeat1, 2), - [2449] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 3, .production_id = 39), SHIFT(1381), - [2452] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 3, .production_id = 39), SHIFT(362), - [2455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 3, .production_id = 39), - [2457] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_clause, 3, .production_id = 39), - [2459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), - [2461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [2463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), - [2465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), - [2467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), - [2469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), - [2471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), - [2473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), - [2475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [2477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), - [2479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), - [2481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), - [2483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), - [2485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), - [2487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), - [2489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), - [2491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), - [2493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), - [2495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), - [2497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), - [2499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), - [2501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), - [2503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), - [2505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), - [2507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), - [2509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), - [2511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), - [2513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), - [2515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), - [2517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), - [2519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), - [2521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), - [2523] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_loop_macro_repeat1, 2), SHIFT_REPEAT(570), - [2526] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_loop_macro_repeat1, 2), SHIFT_REPEAT(249), - [2529] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_loop_macro_repeat1, 2), SHIFT_REPEAT(1114), - [2532] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_loop_macro_repeat1, 2), SHIFT_REPEAT(1113), - [2535] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_loop_macro_repeat1, 2), SHIFT_REPEAT(7), - [2538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_loop_macro_repeat1, 2), - [2540] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_loop_macro_repeat1, 2), SHIFT_REPEAT(425), - [2543] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_loop_macro_repeat1, 2), SHIFT_REPEAT(426), - [2546] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_loop_macro_repeat1, 2), SHIFT_REPEAT(428), - [2549] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_loop_macro_repeat1, 2), SHIFT_REPEAT(37), - [2552] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_loop_macro_repeat1, 2), SHIFT_REPEAT(432), - [2555] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_loop_macro_repeat1, 2), SHIFT_REPEAT(433), - [2558] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_loop_macro_repeat1, 2), SHIFT_REPEAT(434), - [2561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), - [2563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), - [2565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1443), - [2567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), - [2569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), - [2571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), - [2573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), - [2575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), - [2577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), - [2579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), - [2581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), - [2583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), - [2585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), - [2587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), - [2589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), - [2591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), - [2593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), - [2595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 1), - [2597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), - [2599] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__bare_list_lit_repeat1, 1), - [2601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(563), - [2603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), - [2605] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dotted_sym_lit_repeat1, 2), SHIFT_REPEAT(1457), - [2608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(561), - [2610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), - [2612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(567), - [2614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), - [2616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(560), - [2618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), - [2620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(559), - [2622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), - [2624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(585), - [2626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), - [2628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(578), - [2630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), - [2632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), - [2634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1438), - [2636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), - [2638] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dotted_sym_lit_repeat1, 2), SHIFT_REPEAT(1455), - [2641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_part, 3), - [2643] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_part, 3), - [2645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_part, 4), - [2647] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_part, 4), - [2649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_part, 2), - [2651] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_part, 2), - [2653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), - [2655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1445), - [2657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), - [2659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1431), - [2661] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dotted_sym_lit_repeat1, 2), SHIFT_REPEAT(1451), - [2664] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(930), - [2667] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(95), - [2670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 1, .production_id = 9), - [2672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__bare_list_lit_repeat1, 1, .production_id = 9), - [2674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 1), - [2676] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_source_repeat1, 1), - [2678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 1), - [2680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), - [2682] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_dis_expr_repeat1, 1), - [2684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun_header, 3, .production_id = 30), - [2686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun_header, 3, .production_id = 30), - [2688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun_header, 5, .production_id = 49), - [2690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun_header, 5, .production_id = 49), - [2692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun_header, 4, .production_id = 43), - [2694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun_header, 4, .production_id = 43), - [2696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun_header, 4, .production_id = 42), - [2698] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun_header, 4, .production_id = 42), - [2700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun_header, 2, .production_id = 19), - [2702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun_header, 2, .production_id = 19), - [2704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), - [2706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), - [2708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun_header, 3, .production_id = 31), - [2710] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun_header, 3, .production_id = 31), - [2712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun_keyword, 1), - [2714] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun_keyword, 1), - [2716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause_word, 1), - [2718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_clause_word, 1), - [2720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), - [2722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1441), - [2724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), - [2726] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dotted_sym_lit_repeat1, 2), SHIFT_REPEAT(1454), - [2729] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_accumulation_clause, 2), SHIFT(1916), - [2732] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_accumulation_clause, 2), SHIFT(249), - [2735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accumulation_clause, 2), - [2737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), - [2739] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_accumulation_clause, 3), SHIFT(1921), - [2742] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_accumulation_clause, 3), SHIFT(249), - [2745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accumulation_clause, 3), - [2747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), - [2749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), - [2751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1862), - [2753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1865), - [2755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), - [2757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), - [2759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), - [2761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), - [2763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), - [2765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), - [2767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), - [2769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), - [2771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), - [2773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1853), - [2775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1855), - [2777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), - [2779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), - [2781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [2783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [2785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), - [2787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [2789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), - [2791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), - [2793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), - [2795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1863), - [2797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864), - [2799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [2801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), - [2803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [2805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), - [2807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), - [2809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), - [2811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [2813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), - [2815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), - [2817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1885), - [2819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), - [2821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), - [2823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), - [2825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), - [2827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [2829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), - [2831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [2833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [2835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), - [2837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), - [2839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1879), - [2841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), - [2843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), - [2845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), - [2847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), - [2849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), - [2851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), - [2853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [2855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), - [2857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), - [2859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), - [2861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1891), - [2863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890), - [2865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), - [2867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), - [2869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [2871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), - [2873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), - [2875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), - [2877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [2879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), - [2881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [2883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [2885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [2887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [2889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [2891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [2893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), - [2895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), - [2897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), - [2899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), - [2901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), - [2903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), - [2905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [2907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), - [2909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1844), - [2911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1887), - [2913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [2915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), - [2917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), - [2919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), - [2921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), - [2923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), - [2925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), - [2927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), - [2929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), - [2931] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dotted_sym_lit_repeat1, 2), SHIFT_REPEAT(1453), - [2934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), - [2936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1432), - [2938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), - [2940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), - [2942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__metadata_lit, 1, .production_id = 3), - [2944] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__metadata_lit, 1, .production_id = 3), - [2946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accumulation_clause, 5), - [2948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_condition_clause, 3), - [2950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), + [369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), + [371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(63), + [373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), + [375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), + [377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), + [379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), + [381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), + [383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), + [385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), + [387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), + [389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), + [391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), + [393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), + [397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), + [399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), + [401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), + [403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), + [405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), + [407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), + [409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), + [411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), + [413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), + [415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), + [417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), + [419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), + [421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), + [423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), + [425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), + [427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), + [429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), + [431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), + [433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2), + [435] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2), SHIFT_REPEAT(894), + [438] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2), SHIFT_REPEAT(258), + [441] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2), SHIFT_REPEAT(63), + [444] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_repeat1, 2), SHIFT_REPEAT(1403), + [447] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2), SHIFT_REPEAT(1403), + [450] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2), SHIFT_REPEAT(809), + [453] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_repeat1, 2), SHIFT_REPEAT(63), + [456] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_repeat1, 2), SHIFT_REPEAT(888), + [459] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2), SHIFT_REPEAT(1046), + [462] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2), SHIFT_REPEAT(1045), + [465] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2), SHIFT_REPEAT(7), + [468] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2), SHIFT_REPEAT(1877), + [471] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_repeat1, 2), SHIFT_REPEAT(1356), + [474] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_repeat1, 2), SHIFT_REPEAT(1822), + [477] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2), SHIFT_REPEAT(1830), + [480] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2), SHIFT_REPEAT(321), + [483] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2), SHIFT_REPEAT(1352), + [486] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2), SHIFT_REPEAT(1189), + [489] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2), SHIFT_REPEAT(305), + [492] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2), SHIFT_REPEAT(304), + [495] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2), SHIFT_REPEAT(1335), + [498] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2), SHIFT_REPEAT(294), + [501] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_repeat1, 2), SHIFT_REPEAT(282), + [504] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2), SHIFT_REPEAT(276), + [507] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2), SHIFT_REPEAT(1721), + [510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), + [512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), + [514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), + [516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), + [518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1398), + [520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), + [522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), + [524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(965), + [526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(913), + [528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), + [530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), + [532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1359), + [534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1804), + [536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1829), + [538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), + [542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), + [544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), + [550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(94), + [554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), + [558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), + [560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), + [562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1396), + [564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), + [566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), + [568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1132), + [570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1048), + [572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), + [574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1870), + [576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1351), + [578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1817), + [580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1821), + [582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), + [586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), + [588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), + [594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(374), + [598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), + [602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), + [604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1034), + [606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), + [608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), + [610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1402), + [612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), + [614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), + [616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(715), + [618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(549), + [620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), + [622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1869), + [624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1355), + [626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1849), + [628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1803), + [630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), + [634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), + [636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), + [642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(280), + [646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), + [650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), + [652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), + [654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1320), + [656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), + [658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), + [660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1400), + [662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), + [664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), + [666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(583), + [668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(682), + [670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1875), + [674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1360), + [676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1850), + [678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1816), + [680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), + [684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), + [686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), + [692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(71), + [696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), + [700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), + [702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(582), + [704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), + [706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(580), + [708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), + [710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(579), + [712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), + [714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(720), + [716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(114), + [720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), + [722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1027), + [724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), + [726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(838), + [728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), + [730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(574), + [732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(112), + [736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), + [738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1026), + [740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(69), + [744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), + [746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(481), + [748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), + [750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(835), + [752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), + [754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(484), + [756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), + [758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(834), + [760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), + [762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(498), + [764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), + [766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1024), + [768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), + [770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(831), + [772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), + [774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(485), + [776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), + [778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(830), + [780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), + [782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(829), + [784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(154), + [788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), + [790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1023), + [792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), + [794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1018), + [796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), + [798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(466), + [800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), + [802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(751), + [804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), + [806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(757), + [808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(243), + [812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), + [814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1009), + [816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), + [818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(759), + [820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), + [822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(886), + [824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(254), + [828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), + [830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(848), + [832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), + [834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(877), + [836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), + [838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(878), + [840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(178), + [844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(180), + [848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(237), + [852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), + [854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(430), + [856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), + [858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(431), + [860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), + [862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(761), + [864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), + [866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(433), + [868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), + [870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(762), + [872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), + [874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(711), + [876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), + [878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1006), + [880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), + [882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1005), + [884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), + [886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(438), + [888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), + [890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1003), + [892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), + [894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1002), + [896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), + [898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1001), + [900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), + [902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(776), + [904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), + [906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(997), + [908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), + [910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(993), + [912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(202), + [916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), + [918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(992), + [920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), + [922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(991), + [924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(200), + [928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), + [930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(986), + [932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(380), + [936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(262), + [940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), + [942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1327), + [944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), + [946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(439), + [948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), + [950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(592), + [952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), + [954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(923), + [956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), + [958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(617), + [960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), + [962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(618), + [964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), + [966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(982), + [968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(145), + [972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), + [974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(977), + [976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), + [978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(976), + [980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(150), + [984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), + [986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(774), + [988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), + [990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(444), + [992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), + [994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(773), + [996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), + [998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1146), + [1000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), + [1002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(975), + [1004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), + [1006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(772), + [1008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), + [1010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1145), + [1012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), + [1014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(699), + [1016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [1018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(462), + [1020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), + [1022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(474), + [1024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), + [1026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(796), + [1028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), + [1030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(797), + [1032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), + [1034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(619), + [1036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), + [1038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(974), + [1040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), + [1042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(973), + [1044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), + [1046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(970), + [1048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), + [1050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(968), + [1052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), + [1054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(967), + [1056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), + [1058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1141), + [1060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), + [1062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(512), + [1064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [1066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(513), + [1068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [1070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(503), + [1072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [1074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(110), + [1076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), + [1078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(450), + [1080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), + [1082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(800), + [1084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), + [1086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1140), + [1088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), + [1090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(461), + [1092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), + [1094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(496), + [1096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), + [1098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(649), + [1100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), + [1102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(966), + [1104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), + [1106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(804), + [1108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), + [1110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1139), + [1112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), + [1114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(805), + [1116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), + [1118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1138), + [1120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), + [1122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(806), + [1124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), + [1126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(807), + [1128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [1130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(229), + [1132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), + [1134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(808), + [1136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), + [1138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(232), + [1140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), + [1142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(413), + [1144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), + [1146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(882), + [1148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), + [1150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(568), + [1152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1872), + [1154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), + [1156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), + [1158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(919), + [1160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), + [1162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(460), + [1164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1882), + [1166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), + [1168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), + [1170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1406), + [1172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), + [1174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), + [1176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1059), + [1178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1183), + [1180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), + [1182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1876), + [1184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1347), + [1186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1836), + [1188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1828), + [1190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [1192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), + [1194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), + [1196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [1198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [1200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), + [1202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [1204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(212), + [1206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [1208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), + [1210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [1212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(292), + [1214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1834), + [1216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1834), + [1218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [1220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(300), + [1222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), + [1224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(700), + [1226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [1228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(402), + [1230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), + [1232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(632), + [1234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), + [1236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1058), + [1238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), + [1240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(643), + [1242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), + [1244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1057), + [1246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), + [1248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1395), + [1250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), + [1252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(867), + [1254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [1256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [1258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [1260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [1262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(291), + [1264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [1266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), + [1268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1054), + [1270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), + [1272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(624), + [1274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), + [1276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(459), + [1278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), + [1280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(961), + [1282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), + [1284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(456), + [1286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), + [1288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(758), + [1290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), + [1292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(960), + [1294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), + [1296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(600), + [1298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), + [1300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), + [1302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1299), + [1304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), + [1306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1293), + [1308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), + [1310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1301), + [1312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), + [1314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(625), + [1316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), + [1318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1223), + [1320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), + [1322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1136), + [1324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), + [1326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1224), + [1328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), + [1330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(790), + [1332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), + [1334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(346), + [1336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), + [1338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(347), + [1340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [1342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(326), + [1344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [1346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(345), + [1348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), + [1350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(451), + [1352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), + [1354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1341), + [1356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), + [1358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(677), + [1360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), + [1362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1239), + [1364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), + [1366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(697), + [1368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), + [1370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(690), + [1372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), + [1374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1133), + [1376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), + [1378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(650), + [1380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), + [1382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1131), + [1384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), + [1386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(576), + [1388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), + [1390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(818), + [1392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), + [1394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(819), + [1396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), + [1398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1130), + [1400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), + [1402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(820), + [1404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), + [1406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(821), + [1408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), + [1410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(633), + [1412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), + [1414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(644), + [1416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), + [1418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1129), + [1420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [1422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(447), + [1424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [1426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(446), + [1428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), + [1430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1242), + [1432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), + [1434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1243), + [1436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [1438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(251), + [1440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), + [1442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(443), + [1444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), + [1446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(603), + [1448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), + [1450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(701), + [1452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), + [1454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(713), + [1456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), + [1458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1342), + [1460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), + [1462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1125), + [1464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), + [1466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(604), + [1468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), + [1470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1245), + [1472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), + [1474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1246), + [1476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), + [1478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(634), + [1480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), + [1482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1247), + [1484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), + [1486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(66), + [1488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [1490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(160), + [1492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [1494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(437), + [1496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), + [1498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(714), + [1500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), + [1502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(755), + [1504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), + [1506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1252), + [1508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), + [1510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1302), + [1512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), + [1514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1256), + [1516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), + [1518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(470), + [1520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), + [1522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(469), + [1524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), + [1526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1123), + [1528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), + [1530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1122), + [1532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [1534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(157), + [1536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), + [1538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1257), + [1540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), + [1542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1295), + [1544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), + [1546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(869), + [1548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), + [1550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1258), + [1552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), + [1554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(428), + [1556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), + [1558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(870), + [1560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [1562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(156), + [1564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), + [1566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(135), + [1568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), + [1570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(369), + [1572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [1574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(362), + [1576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [1578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(92), + [1580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), + [1582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(769), + [1584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), + [1586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(765), + [1588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), + [1590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1093), + [1592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), + [1594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(728), + [1596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), + [1598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1070), + [1600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), + [1602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(861), + [1604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884), + [1606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), + [1608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), + [1610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(676), + [1612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), + [1614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(873), + [1616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), + [1618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(853), + [1620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), + [1622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(864), + [1624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), + [1626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(427), + [1628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), + [1630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1051), + [1632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [1634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(121), + [1636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), + [1638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(862), + [1640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), + [1642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1288), + [1644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), + [1646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1287), + [1648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), + [1650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(724), + [1652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), + [1654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1030), + [1656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [1658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(348), + [1660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [1662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(331), + [1664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [1666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(234), + [1668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), + [1670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1286), + [1672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), + [1674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1285), + [1676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), + [1678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(716), + [1680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [1682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(383), + [1684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [1686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(339), + [1688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), + [1690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(707), + [1692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [1694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(323), + [1696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), + [1698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1055), + [1700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), + [1702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(318), + [1704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), + [1706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1117), + [1708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), + [1710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(586), + [1712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), + [1714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1116), + [1716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), + [1718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1056), + [1720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [1722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(209), + [1724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), + [1726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1115), + [1728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), + [1730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(635), + [1732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), + [1734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1111), + [1736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), + [1738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1263), + [1740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), + [1742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(606), + [1744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), + [1746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(636), + [1748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), + [1750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(607), + [1752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), + [1754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(608), + [1756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), + [1758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1264), + [1760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), + [1762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1282), + [1764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), + [1766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1107), + [1768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [1770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(325), + [1772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), + [1774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(628), + [1776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), + [1778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(645), + [1780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), + [1782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1061), + [1784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), + [1786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1106), + [1788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), + [1790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1062), + [1792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), + [1794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1105), + [1796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), + [1798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1276), + [1800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), + [1802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1274), + [1804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), + [1806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1273), + [1808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), + [1810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1103), + [1812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), + [1814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1272), + [1816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), + [1818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(639), + [1820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [1822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(263), + [1824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [1826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(161), + [1828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), + [1830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1102), + [1832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), + [1834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1271), + [1836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [1838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(174), + [1840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), + [1842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(67), + [1844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), + [1846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1218), + [1848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), + [1850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1099), + [1852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), + [1854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1075), + [1856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), + [1858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1078), + [1860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), + [1862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1079), + [1864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), + [1866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1081), + [1868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), + [1870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1082), + [1872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [1874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(224), + [1876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), + [1878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(641), + [1880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), + [1882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1089), + [1884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), + [1886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(642), + [1888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), + [1890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(613), + [1892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [1894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [1896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), + [1898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1053), + [1900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [1902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [1904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [1906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [1908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [1910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), + [1912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1052), + [1914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [1916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), + [1918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(771), + [1920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [1922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), + [1924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(921), + [1926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [1928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), + [1930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1066), + [1932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [1934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), + [1936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1851), + [1938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [1940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), + [1942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1065), + [1944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [1946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), + [1948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1063), + [1950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [1952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), + [1954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1060), + [1956] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 1), SHIFT_REPEAT(403), + [1959] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 1), SHIFT_REPEAT(182), + [1962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 1), + [1964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_do_clause_repeat1, 1), + [1966] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(400), + [1969] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(182), + [1972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), + [1974] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_dis_expr_repeat1, 2), + [1976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 3), + [1978] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_do_clause_repeat1, 3), + [1980] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2), SHIFT_REPEAT(401), + [1983] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2), SHIFT_REPEAT(182), + [1986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__form, 1), + [1988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), + [1990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1405), + [1992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), + [1994] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__form, 1), + [1996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dotted_sym_lit, 2), + [1998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), + [2000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dotted_sym_lit, 2), + [2002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_lit, 3, .production_id = 25), + [2004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_lit, 3, .production_id = 25), + [2006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_kwd_lit, 2), + [2008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_kwd_lit, 2), + [2010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dotted_sym_lit_repeat1, 2), + [2012] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dotted_sym_lit_repeat1, 2), SHIFT_REPEAT(1414), + [2015] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_dotted_sym_lit_repeat1, 2), + [2017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sym_lit, 1), + [2019] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sym_lit, 1), + [2021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sym_lit, 2, .production_id = 1), + [2023] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sym_lit, 2, .production_id = 1), + [2025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_evaling_lit, 3, .production_id = 27), + [2027] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_evaling_lit, 3, .production_id = 27), + [2029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dis_expr, 2, .production_id = 7), + [2031] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dis_expr, 2, .production_id = 7), + [2033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 8, .production_id = 57), + [2035] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 8, .production_id = 57), + [2037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 8, .production_id = 54), + [2039] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 8, .production_id = 54), + [2041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 8, .production_id = 53), + [2043] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 8, .production_id = 53), + [2045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 7, .production_id = 56), + [2047] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 7, .production_id = 56), + [2049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 7, .production_id = 55), + [2051] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 7, .production_id = 55), + [2053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 7, .production_id = 52), + [2055] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 7, .production_id = 52), + [2057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 7, .production_id = 54), + [2059] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 7, .production_id = 54), + [2061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 7, .production_id = 53), + [2063] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 7, .production_id = 53), + [2065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 7, .production_id = 50), + [2067] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 7, .production_id = 50), + [2069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 7, .production_id = 49), + [2071] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 7, .production_id = 49), + [2073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 6, .production_id = 52), + [2075] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 6, .production_id = 52), + [2077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include_reader_macro, 6, .production_id = 51), + [2079] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_include_reader_macro, 6, .production_id = 51), + [2081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 9, .production_id = 60), + [2083] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 9, .production_id = 60), + [2085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include_reader_macro, 3, .production_id = 24), + [2087] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_include_reader_macro, 3, .production_id = 24), + [2089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquoting_lit, 3, .production_id = 16), + [2091] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquoting_lit, 3, .production_id = 16), + [2093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 6, .production_id = 50), + [2095] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 6, .production_id = 50), + [2097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquote_splicing_lit, 3, .production_id = 16), + [2099] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquote_splicing_lit, 3, .production_id = 16), + [2101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 6, .production_id = 49), + [2103] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 6, .production_id = 49), + [2105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 6, .production_id = 44), + [2107] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 6, .production_id = 44), + [2109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_syn_quoting_lit, 3, .production_id = 16), + [2111] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_syn_quoting_lit, 3, .production_id = 16), + [2113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include_reader_macro, 5, .production_id = 46), + [2115] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_include_reader_macro, 5, .production_id = 46), + [2117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoting_lit, 3, .production_id = 16), + [2119] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoting_lit, 3, .production_id = 16), + [2121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derefing_lit, 3, .production_id = 16), + [2123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_derefing_lit, 3, .production_id = 16), + [2125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 9, .production_id = 59), + [2127] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 9, .production_id = 59), + [2129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_evaling_lit, 3, .production_id = 16), + [2131] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_evaling_lit, 3, .production_id = 16), + [2133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sym_val_lit, 3, .production_id = 16), + [2135] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sym_val_lit, 3, .production_id = 16), + [2137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include_reader_macro, 5, .production_id = 45), + [2139] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_include_reader_macro, 5, .production_id = 45), + [2141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_quoting_lit, 3, .production_id = 16), + [2143] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_var_quoting_lit, 3, .production_id = 16), + [2145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 5, .production_id = 44), + [2147] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 5, .production_id = 44), + [2149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_splicing_read_cond_lit, 3, .production_id = 23), + [2151] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_splicing_read_cond_lit, 3, .production_id = 23), + [2153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_read_cond_lit, 3, .production_id = 23), + [2155] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_read_cond_lit, 3, .production_id = 23), + [2157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derefing_lit, 2, .production_id = 7), + [2159] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_derefing_lit, 2, .production_id = 7), + [2161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include_reader_macro, 5, .production_id = 43), + [2163] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_include_reader_macro, 5, .production_id = 43), + [2165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun, 5, .production_id = 40), + [2167] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun, 5, .production_id = 40), + [2169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_macro, 5, .production_id = 39), + [2171] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_macro, 5, .production_id = 39), + [2173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__bare_vec_lit, 3, .production_id = 22), + [2175] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__bare_vec_lit, 3, .production_id = 22), + [2177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__bare_set_lit, 3, .production_id = 21), + [2179] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__bare_set_lit, 3, .production_id = 21), + [2181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include_reader_macro, 4, .production_id = 37), + [2183] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_include_reader_macro, 4, .production_id = 37), + [2185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__bare_list_lit, 3, .production_id = 19), + [2187] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__bare_list_lit, 3, .production_id = 19), + [2189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun, 3, .production_id = 17), + [2191] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun, 3, .production_id = 17), + [2193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquote_splicing_lit, 4, .production_id = 36), + [2195] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquote_splicing_lit, 4, .production_id = 36), + [2197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoting_lit, 4, .production_id = 36), + [2199] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoting_lit, 4, .production_id = 36), + [2201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derefing_lit, 4, .production_id = 36), + [2203] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_derefing_lit, 4, .production_id = 36), + [2205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_evaling_lit, 4, .production_id = 36), + [2207] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_evaling_lit, 4, .production_id = 36), + [2209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_quoting_lit, 4, .production_id = 36), + [2211] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_var_quoting_lit, 4, .production_id = 36), + [2213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_splicing_read_cond_lit, 4, .production_id = 35), + [2215] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_splicing_read_cond_lit, 4, .production_id = 35), + [2217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_read_cond_lit, 4, .production_id = 35), + [2219] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_read_cond_lit, 4, .production_id = 35), + [2221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include_reader_macro, 4, .production_id = 34), + [2223] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_include_reader_macro, 4, .production_id = 34), + [2225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include_reader_macro, 4, .production_id = 33), + [2227] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_include_reader_macro, 4, .production_id = 33), + [2229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__bare_set_lit, 4, .production_id = 32), + [2231] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__bare_set_lit, 4, .production_id = 32), + [2233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun, 4, .production_id = 31), + [2235] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun, 4, .production_id = 31), + [2237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_macro, 3, .production_id = 17), + [2239] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_macro, 3, .production_id = 17), + [2241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dis_expr, 3, .production_id = 16), + [2243] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dis_expr, 3, .production_id = 16), + [2245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun, 4, .production_id = 28), + [2247] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun, 4, .production_id = 28), + [2249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_macro, 4, .production_id = 28), + [2251] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_macro, 4, .production_id = 28), + [2253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_set_lit, 2, .production_id = 14), + [2255] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_set_lit, 2, .production_id = 14), + [2257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_vec_lit, 2, .production_id = 13), + [2259] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_vec_lit, 2, .production_id = 13), + [2261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 10, .production_id = 60), + [2263] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 10, .production_id = 60), + [2265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_lit, 2, .production_id = 12), + [2267] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_lit, 2, .production_id = 12), + [2269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquote_splicing_lit, 3, .production_id = 27), + [2271] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquote_splicing_lit, 3, .production_id = 27), + [2273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_str_lit, 1), + [2275] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_str_lit, 1), + [2277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 8, .production_id = 56), + [2279] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 8, .production_id = 56), + [2281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoting_lit, 3, .production_id = 27), + [2283] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoting_lit, 3, .production_id = 27), + [2285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_quoting_lit, 3, .production_id = 27), + [2287] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_var_quoting_lit, 3, .production_id = 27), + [2289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_lit, 1, .production_id = 4), + [2291] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_lit, 1, .production_id = 4), + [2293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_vec_lit, 1, .production_id = 5), + [2295] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_vec_lit, 1, .production_id = 5), + [2297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_set_lit, 1, .production_id = 6), + [2299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_set_lit, 1, .production_id = 6), + [2301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 8, .production_id = 55), + [2303] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 8, .production_id = 55), + [2305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_splicing_read_cond_lit, 3, .production_id = 26), + [2307] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_splicing_read_cond_lit, 3, .production_id = 26), + [2309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__bare_list_lit, 2, .production_id = 8), + [2311] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__bare_list_lit, 2, .production_id = 8), + [2313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__bare_vec_lit, 2, .production_id = 10), + [2315] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__bare_vec_lit, 2, .production_id = 10), + [2317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_read_cond_lit, 2, .production_id = 11), + [2319] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_read_cond_lit, 2, .production_id = 11), + [2321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_splicing_read_cond_lit, 2, .production_id = 11), + [2323] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_splicing_read_cond_lit, 2, .production_id = 11), + [2325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_quoting_lit, 2, .production_id = 7), + [2327] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_var_quoting_lit, 2, .production_id = 7), + [2329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sym_val_lit, 2, .production_id = 7), + [2331] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sym_val_lit, 2, .production_id = 7), + [2333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derefing_lit, 3, .production_id = 27), + [2335] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_derefing_lit, 3, .production_id = 27), + [2337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_evaling_lit, 2, .production_id = 7), + [2339] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_evaling_lit, 2, .production_id = 7), + [2341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_read_cond_lit, 3, .production_id = 26), + [2343] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_read_cond_lit, 3, .production_id = 26), + [2345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 9, .production_id = 58), + [2347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 9, .production_id = 58), + [2349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoting_lit, 2, .production_id = 7), + [2351] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoting_lit, 2, .production_id = 7), + [2353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 8, .production_id = 58), + [2355] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 8, .production_id = 58), + [2357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__form, 2), + [2359] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__form, 2), + [2361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 8, .production_id = 59), + [2363] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 8, .production_id = 59), + [2365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 9, .production_id = 57), + [2367] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 9, .production_id = 57), + [2369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquoting_lit, 2, .production_id = 7), + [2371] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquoting_lit, 2, .production_id = 7), + [2373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquote_splicing_lit, 2, .production_id = 7), + [2375] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquote_splicing_lit, 2, .production_id = 7), + [2377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_syn_quoting_lit, 2, .production_id = 7), + [2379] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_syn_quoting_lit, 2, .production_id = 7), + [2381] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 3, .production_id = 38), SHIFT(1340), + [2384] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 3, .production_id = 38), SHIFT(245), + [2387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 3, .production_id = 38), + [2389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(911), + [2391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), + [2393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_clause, 3, .production_id = 38), + [2395] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_clause_repeat1, 2), SHIFT_REPEAT(1340), + [2398] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_clause_repeat1, 2), SHIFT_REPEAT(245), + [2401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_clause_repeat1, 2), + [2403] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_clause_repeat1, 2), SHIFT_REPEAT(911), + [2406] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_clause_repeat1, 2), SHIFT_REPEAT(911), + [2409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_for_clause_repeat1, 2), + [2411] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 4, .production_id = 47), SHIFT(1340), + [2414] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 4, .production_id = 47), SHIFT(245), + [2417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 4, .production_id = 47), + [2419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_clause, 4, .production_id = 47), + [2421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), + [2423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [2425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), + [2427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), + [2429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), + [2431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [2433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [2435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), + [2437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [2439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [2441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [2443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), + [2445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [2447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), + [2449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [2451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), + [2453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), + [2455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), + [2457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [2459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), + [2461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), + [2463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), + [2465] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_loop_macro_repeat1, 2), SHIFT_REPEAT(527), + [2468] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_loop_macro_repeat1, 2), SHIFT_REPEAT(296), + [2471] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_loop_macro_repeat1, 2), SHIFT_REPEAT(1047), + [2474] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_loop_macro_repeat1, 2), SHIFT_REPEAT(1044), + [2477] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_loop_macro_repeat1, 2), SHIFT_REPEAT(9), + [2480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_loop_macro_repeat1, 2), + [2482] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_loop_macro_repeat1, 2), SHIFT_REPEAT(393), + [2485] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_loop_macro_repeat1, 2), SHIFT_REPEAT(394), + [2488] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_loop_macro_repeat1, 2), SHIFT_REPEAT(395), + [2491] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_loop_macro_repeat1, 2), SHIFT_REPEAT(53), + [2494] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_loop_macro_repeat1, 2), SHIFT_REPEAT(396), + [2497] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_loop_macro_repeat1, 2), SHIFT_REPEAT(397), + [2500] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_loop_macro_repeat1, 2), SHIFT_REPEAT(398), + [2503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), + [2505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), + [2507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), + [2509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), + [2511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), + [2513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), + [2515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), + [2517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), + [2519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), + [2521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), + [2523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), + [2525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), + [2527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), + [2529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [2531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), + [2533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), + [2535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), + [2537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), + [2539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), + [2541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), + [2543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), + [2545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1401), + [2547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), + [2549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [2551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), + [2553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), + [2555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), + [2557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 1), + [2559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), + [2561] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__bare_list_lit_repeat1, 1), + [2563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(543), + [2565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [2567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(520), + [2569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [2571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(522), + [2573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), + [2575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(518), + [2577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [2579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(529), + [2581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), + [2583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(541), + [2585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), + [2587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(532), + [2589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), + [2591] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dotted_sym_lit_repeat1, 2), SHIFT_REPEAT(1411), + [2594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), + [2596] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dotted_sym_lit_repeat1, 2), SHIFT_REPEAT(1412), + [2599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1388), + [2601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), + [2603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_part, 4), + [2605] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_part, 4), + [2607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_part, 3), + [2609] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_part, 3), + [2611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_part, 2), + [2613] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_part, 2), + [2615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1390), + [2617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), + [2619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1404), + [2621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), + [2623] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dotted_sym_lit_repeat1, 2), SHIFT_REPEAT(1408), + [2626] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(892), + [2629] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(183), + [2632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 1), + [2634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_source_repeat1, 1), + [2636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 1, .production_id = 9), + [2638] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__bare_list_lit_repeat1, 1, .production_id = 9), + [2640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 1), + [2642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_dis_expr_repeat1, 1), + [2644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun_header, 3, .production_id = 30), + [2646] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun_header, 3, .production_id = 30), + [2648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun_header, 2, .production_id = 18), + [2650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun_header, 2, .production_id = 18), + [2652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun_header, 3, .production_id = 29), + [2654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun_header, 3, .production_id = 29), + [2656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), + [2658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [2660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun_header, 4, .production_id = 41), + [2662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun_header, 4, .production_id = 41), + [2664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun_header, 4, .production_id = 42), + [2666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun_header, 4, .production_id = 42), + [2668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), + [2670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun_header, 5, .production_id = 48), + [2672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun_header, 5, .production_id = 48), + [2674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1394), + [2676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), + [2678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun_keyword, 1), + [2680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun_keyword, 1), + [2682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause_word, 1), + [2684] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_clause_word, 1), + [2686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), + [2688] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dotted_sym_lit_repeat1, 2), SHIFT_REPEAT(1409), + [2691] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(918), + [2694] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(281), + [2697] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_accumulation_clause, 3), SHIFT(1878), + [2700] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_accumulation_clause, 3), SHIFT(296), + [2703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accumulation_clause, 3), + [2705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [2707] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_accumulation_clause, 2), SHIFT(1873), + [2710] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_accumulation_clause, 2), SHIFT(296), + [2713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accumulation_clause, 2), + [2715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [2717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1399), + [2719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), + [2721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), + [2723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1833), + [2725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), + [2727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), + [2729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), + [2731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [2733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), + [2735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [2737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [2739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [2741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), + [2743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), + [2745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1854), + [2747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838), + [2749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [2751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), + [2753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), + [2755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [2757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [2759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), + [2761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [2763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), + [2765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), + [2767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), + [2769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1825), + [2771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1826), + [2773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [2775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), + [2777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [2779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [2781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), + [2783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [2785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [2787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1614), + [2789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), + [2791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1812), + [2793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1813), + [2795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [2797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), + [2799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [2801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [2803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [2805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [2807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [2809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), + [2811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), + [2813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1856), + [2815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1855), + [2817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [2819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), + [2821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [2823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [2825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [2827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [2829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [2831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), + [2833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [2835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1831), + [2837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1835), + [2839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [2841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), + [2843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [2845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [2847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [2849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [2851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [2853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), + [2855] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dotted_sym_lit_repeat1, 2), SHIFT_REPEAT(1410), + [2858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), + [2860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1815), + [2862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1814), + [2864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [2866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), + [2868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), + [2870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [2872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [2874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [2876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [2878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), + [2880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [2882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [2884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [2886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [2888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [2890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [2892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), + [2894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [2896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), + [2898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [2900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1817), + [2902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), + [2904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1822), + [2906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), + [2908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), + [2910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), + [2912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), + [2914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 5), + [2916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 4), + [2918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accumulation_clause, 4), + [2920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_termination_clause, 3), + [2922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accumulation_clause, 6), + [2924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 6), + [2926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_condition_clause, 3), + [2928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_clause, 3), + [2930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), + [2932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [2934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_termination_clause, 2), + [2936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accumulation_clause, 7), + [2938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 7), + [2940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_condition_clause, 2), + [2942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_clause, 2), + [2944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_clause, 1), + [2946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__metadata_lit, 2, .production_id = 3), + [2948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__metadata_lit, 2, .production_id = 3), + [2950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accumulation_clause, 5), [2952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__metadata_lit, 2, .production_id = 2), [2954] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__metadata_lit, 2, .production_id = 2), - [2956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__metadata_lit, 2, .production_id = 3), - [2958] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__metadata_lit, 2, .production_id = 3), - [2960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_clause, 1), - [2962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), - [2964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [2966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_clause, 2), - [2968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_termination_clause, 2), - [2970] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(1090), - [2973] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(111), - [2976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_clause, 3), - [2978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_termination_clause, 3), - [2980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 4), - [2982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_condition_clause, 2), - [2984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 6), - [2986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accumulation_clause, 6), - [2988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), - [2990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__metadata_lit, 1, .production_id = 2), - [2992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__metadata_lit, 1, .production_id = 2), - [2994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accumulation_clause, 4), - [2996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 5), - [2998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 7), - [3000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accumulation_clause, 7), - [3002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), - [3004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [3006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), - [3008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), - [3010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), - [3012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), - [3014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), - [3016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), - [3018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), - [3020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), - [3022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), - [3024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), - [3026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1858), - [3028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), - [3030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), - [3032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), - [3034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1435), - [3036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), - [3038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1901), - [3040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), - [3042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), - [3044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1848), - [3046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), - [3048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), - [3050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), - [3052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), - [3054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1886), - [3056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), - [3058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1871), - [3060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), - [3062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), - [3064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1896), - [3066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), - [3068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), - [3070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), - [3072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), - [3074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), - [3076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), - [3078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), - [3080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_sym_lit_repeat1, 2, .production_id = 16), - [3082] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sym_lit_repeat1, 2, .production_id = 16), SHIFT_REPEAT(1149), - [3085] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sym_lit_repeat1, 2, .production_id = 16), SHIFT_REPEAT(1151), - [3088] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_sym_lit_repeat1, 2, .production_id = 16), - [3090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), - [3092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), - [3094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map_lit, 1, .production_id = 4), - [3096] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map_lit, 1, .production_id = 4), - [3098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_old_meta_lit, 2, .production_id = 7), - [3100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_old_meta_lit, 2, .production_id = 7), - [3102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__bare_map_lit, 2, .production_id = 8), - [3104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__bare_map_lit, 2, .production_id = 8), - [3106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_old_meta_lit, 3, .production_id = 17), - [3108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_old_meta_lit, 3, .production_id = 17), - [3110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_lit, 3, .production_id = 17), - [3112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_meta_lit, 3, .production_id = 17), - [3114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_lit, 2, .production_id = 7), - [3116] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_meta_lit, 2, .production_id = 7), - [3118] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dotted_sym_lit_repeat1, 2), SHIFT_REPEAT(1456), - [3121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), - [3123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__bare_map_lit, 3, .production_id = 20), - [3125] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__bare_map_lit, 3, .production_id = 20), - [3127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map_lit, 2, .production_id = 13), - [3129] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map_lit, 2, .production_id = 13), - [3131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), - [3133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [3135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), - [3137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), - [3139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), - [3141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), - [3143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), - [3145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_sym_lit_repeat1, 1, .production_id = 1), - [3147] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_sym_lit_repeat1, 1, .production_id = 1), - [3149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), - [3151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), - [3153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), - [3155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), - [3157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), - [3159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1912), - [3161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), - [3163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), - [3165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [3167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), - [3169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), - [3171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), - [3173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), - [3175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), - [3177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), - [3179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), - [3181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), - [3183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), - [3185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), - [3187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), - [3189] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(1406), - [3192] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(212), - [3195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1844), - [3197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1885), - [3199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1862), - [3201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1863), - [3203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), - [3205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1853), - [3207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1879), - [3209] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(1426), - [3212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), - [3214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), - [3216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), - [3218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), - [3220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), - [3222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), - [3224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), - [3226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), - [3228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), - [3230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), - [3232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), - [3234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), - [3236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), - [3238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), - [3240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), - [3242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), - [3244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), - [3246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), - [3248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), - [3250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), - [3252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), - [3254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), - [3256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), - [3258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), - [3260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1607), - [3262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), - [3264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), - [3266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), - [3268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), - [3270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), - [3272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), - [3274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), - [3276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), - [3278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), - [3280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), - [3282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), - [3284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1616), - [3286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), - [3288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), - [3290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), - [3292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), - [3294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), - [3296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), - [3298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), - [3300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), - [3302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), - [3304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), - [3306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), - [3308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), - [3310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), - [3312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), - [3314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), - [3316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), - [3318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), - [3320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), - [3322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), - [3324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), - [3326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), - [3328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), - [3330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), - [3332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), - [3334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), - [3336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), - [3338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), - [3340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), - [3342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), - [3344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), - [3346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), - [3348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), - [3350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), - [3352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), - [3354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), - [3356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), - [3358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), - [3360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), - [3362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), - [3364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), - [3366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), - [3368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), - [3370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), - [3372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), - [3374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), - [3376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), - [3378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), - [3380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), - [3382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), - [3384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), - [3386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), - [3388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), - [3390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), - [3392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), - [3394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1663), - [3396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), - [3398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), - [3400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1666), - [3402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), - [3404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1671), - [3406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), - [3408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), - [3410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1673), - [3412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), - [3414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), - [3416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), - [3418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), - [3420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), - [3422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), - [3424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), - [3426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), - [3428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1693), - [3430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), - [3432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), - [3434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), - [3436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), - [3438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), - [3440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), - [3442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), - [3444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1734), - [3446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), - [3448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), - [3450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), - [3452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1748), - [3454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), - [3456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), - [3458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), - [3460] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sym_lit_repeat1, 2, .production_id = 16), SHIFT_REPEAT(1114), - [3463] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sym_lit_repeat1, 2, .production_id = 16), SHIFT_REPEAT(1113), - [3466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), - [3468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1786), - [3470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), - [3472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1831), - [3474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), - [3476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1840), - [3478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), - [3480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593), - [3482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), - [3484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1837), - [3486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), - [3488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1835), - [3490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), - [3492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1834), - [3494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), - [3496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), - [3498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), - [3500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), - [3502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), - [3504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), - [3506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), - [3508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1560), - [3510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), - [3512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), - [3514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), - [3516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), - [3518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), - [3520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), - [3522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), - [3524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), - [3526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), - [3528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), - [3530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), - [3532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), - [3534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1571), - [3536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), - [3538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), - [3540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), - [3542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), - [3544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), - [3546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), - [3548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), - [3550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), - [3552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), - [3554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), - [3556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), - [3558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), - [3560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), - [3562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), - [3564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), - [3566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), - [3568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), - [3570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), - [3572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), - [3574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), - [3576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), - [3578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), - [3580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), - [3582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), - [3584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), - [3586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), - [3588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), - [3590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), - [3592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), - [3594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1832), - [3596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1829), - [3598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), - [3600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), - [3602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), - [3604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), - [3606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1825), - [3608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), - [3610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), - [3612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), - [3614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), - [3616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), - [3618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), - [3620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1592), - [3622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), - [3624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1583), - [3626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), - [3628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), - [3630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1824), - [3632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1822), - [3634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), - [3636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), - [3638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1658), - [3640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1659), - [3642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), - [3644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1820), - [3646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1601), - [3648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), - [3650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), - [3652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), - [3654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), - [3656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), - [3658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), - [3660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), - [3662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), - [3664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), - [3666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), - [3668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1615), - [3670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1817), - [3672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), - [3674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), - [3676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), - [3678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608), - [3680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), - [3682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), - [3684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1622), - [3686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), - [3688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), - [3690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1626), - [3692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), - [3694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1627), - [3696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), - [3698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), - [3700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), - [3702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), - [3704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), - [3706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1634), - [3708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), - [3710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), - [3712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), - [3714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), - [3716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), - [3718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), - [3720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638), - [3722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), - [3724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640), - [3726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), - [3728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), - [3730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), - [3732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1643), - [3734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), - [3736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), - [3738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), - [3740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1644), - [3742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), - [3744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), - [3746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1645), - [3748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), - [3750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), - [3752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), - [3754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), - [3756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), - [3758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), - [3760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), - [3762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), - [3764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), - [3766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), - [3768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), - [3770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), - [3772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), - [3774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), - [3776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1814), - [3778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), - [3780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), - [3782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1810), - [3784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1809), - [3786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1589), - [3788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), - [3790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), - [3792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), - [3794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1612), - [3796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613), - [3798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), - [3800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1614), - [3802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), - [3804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), - [3806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), - [3808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1654), - [3810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), - [3812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), - [3814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), - [3816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1657), - [3818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1804), - [3820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), - [3822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), - [3824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1604), - [3826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), - [3828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1667), - [3830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1802), - [3832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1799), - [3834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1672), - [3836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1795), - [3838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1617), - [3840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618), - [3842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1619), - [3844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1620), - [3846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), - [3848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1650), - [3850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1656), - [3852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), - [3854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1720), - [3856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1660), - [3858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1794), - [3860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1792), - [3862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1661), - [3864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), - [3866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1662), - [3868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), - [3870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), - [3872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), - [3874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), - [3876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1688), - [3878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), - [3880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), - [3882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1692), - [3884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), - [3886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), - [3888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), - [3890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), - [3892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), - [3894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), - [3896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), - [3898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1790), - [3900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), - [3902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), - [3904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1701), - [3906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), - [3908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), - [3910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1703), - [3912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), - [3914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1704), - [3916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), - [3918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), - [3920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), - [3922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), - [3924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), - [3926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1709), - [3928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), - [3930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), - [3932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), - [3934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1710), - [3936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), - [3938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), - [3940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1711), - [3942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), - [3944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1712), - [3946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), - [3948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), - [3950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), - [3952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), - [3954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), - [3956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1714), - [3958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), - [3960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), - [3962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1682), - [3964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1789), - [3966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), - [3968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), - [3970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1787), - [3972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1784), - [3974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1674), - [3976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), - [3978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), - [3980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1664), - [3982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), - [3984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), - [3986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1678), - [3988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), - [3990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1680), - [3992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1683), - [3994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1684), - [3996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), - [3998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), - [4000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1665), - [4002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), - [4004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), - [4006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), - [4008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1780), - [4010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1779), - [4012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), - [4014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), - [4016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), - [4018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), - [4020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1775), - [4022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), - [4024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), - [4026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), - [4028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), - [4030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1726), - [4032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1727), - [4034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1717), - [4036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), - [4038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), - [4040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), - [4042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), - [4044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), - [4046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), - [4048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1753), - [4050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1679), - [4052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), - [4054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1739), - [4056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1772), - [4058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), - [4060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), - [4062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), - [4064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1764), - [4066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), - [4068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1737), - [4070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1738), - [4072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1742), - [4074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1758), - [4076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741), - [4078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), - [4080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), - [4082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1763), - [4084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1759), - [4086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), - [4088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1740), - [4090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), - [4092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1765), - [4094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1722), - [4096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1754), - [4098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1757), - [4100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1755), - [4102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), - [4104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1686), - [4106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1766), - [4108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1670), - [4110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1767), - [4112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1669), - [4114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1655), - [4116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), - [4118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), - [4120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1769), - [4122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1594), - [4124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), - [4126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), - [4128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1750), - [4130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1773), - [4132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), - [4134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), - [4136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1776), - [4138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), - [4140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1778), - [4142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), - [4144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), - [4146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), - [4148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), - [4150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), - [4152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1782), - [4154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), - [4156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1783), - [4158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), - [4160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), - [4162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), - [4164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), - [4166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), - [4168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), - [4170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), - [4172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1770), - [4174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1743), - [4176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1788), - [4178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), - [4180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), - [4182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1791), - [4184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), - [4186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), - [4188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), - [4190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), - [4192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1796), - [4194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), - [4196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), - [4198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), - [4200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), - [4202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), - [4204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), - [4206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), - [4208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), - [4210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), - [4212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1800), - [4214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), - [4216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), - [4218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1803), - [4220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), - [4222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1557), - [4224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1806), - [4226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), - [4228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1808), - [4230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), - [4232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), - [4234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1811), - [4236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), - [4238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), - [4240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1812), - [4242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1566), - [4244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1813), - [4246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1567), - [4248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570), - [4250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1573), - [4252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), - [4254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), - [4256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), - [4258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1581), - [4260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), - [4262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1818), - [4264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), - [4266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1623), - [4268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1821), - [4270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1624), - [4272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1823), - [4274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1625), - [4276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1628), - [4278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1826), - [4280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1629), - [4282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), - [4284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1827), - [4286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1632), - [4288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1828), - [4290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1633), - [4292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), - [4294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1639), - [4296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), - [4298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1830), - [4300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), - [4302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1647), - [4304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1816), - [4306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), - [4308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1833), - [4310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1687), - [4312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1689), - [4314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1836), - [4316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1690), - [4318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838), - [4320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), - [4322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1694), + [2956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), + [2958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__metadata_lit, 1, .production_id = 2), + [2960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__metadata_lit, 1, .production_id = 2), + [2962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), + [2964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__metadata_lit, 1, .production_id = 3), + [2966] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__metadata_lit, 1, .production_id = 3), + [2968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1391), + [2970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), + [2972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), + [2974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1804), + [2976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), + [2978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1846), + [2980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), + [2982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1836), + [2984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), + [2986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), + [2988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), + [2990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), + [2992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), + [2994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), + [2996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), + [2998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), + [3000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), + [3002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1849), + [3004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), + [3006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1850), + [3008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), + [3010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), + [3012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_sym_lit_repeat1, 2, .production_id = 15), + [3014] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sym_lit_repeat1, 2, .production_id = 15), SHIFT_REPEAT(1046), + [3017] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sym_lit_repeat1, 2, .production_id = 15), SHIFT_REPEAT(1045), + [3020] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_sym_lit_repeat1, 2, .production_id = 15), + [3022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), + [3024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), + [3026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), + [3028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), + [3030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__bare_map_lit, 3, .production_id = 19), + [3032] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__bare_map_lit, 3, .production_id = 19), + [3034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map_lit, 2, .production_id = 12), + [3036] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map_lit, 2, .production_id = 12), + [3038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_old_meta_lit, 3, .production_id = 16), + [3040] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_old_meta_lit, 3, .production_id = 16), + [3042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_lit, 3, .production_id = 16), + [3044] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_meta_lit, 3, .production_id = 16), + [3046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__bare_map_lit, 2, .production_id = 8), + [3048] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__bare_map_lit, 2, .production_id = 8), + [3050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), + [3052] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dotted_sym_lit_repeat1, 2), SHIFT_REPEAT(1413), + [3055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_old_meta_lit, 2, .production_id = 7), + [3057] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_old_meta_lit, 2, .production_id = 7), + [3059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_lit, 2, .production_id = 7), + [3061] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_meta_lit, 2, .production_id = 7), + [3063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map_lit, 1, .production_id = 4), + [3065] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map_lit, 1, .production_id = 4), + [3067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), + [3069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [3071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), + [3073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), + [3075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), + [3077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), + [3079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), + [3081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), + [3083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), + [3085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), + [3087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), + [3089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_sym_lit_repeat1, 1, .production_id = 1), + [3091] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_sym_lit_repeat1, 1, .production_id = 1), + [3093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), + [3095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), + [3097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), + [3099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), + [3101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), + [3103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), + [3105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [3107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), + [3109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), + [3111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), + [3113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), + [3115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [3117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), + [3119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [3121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), + [3123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [3125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1812), + [3127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1833), + [3129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), + [3131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1825), + [3133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1854), + [3135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1831), + [3137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1856), + [3139] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(1378), + [3142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), + [3144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), + [3146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), + [3148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), + [3150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1738), + [3152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), + [3154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613), + [3156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), + [3158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), + [3160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), + [3162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), + [3164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), + [3166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), + [3168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), + [3170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), + [3172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), + [3174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), + [3176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), + [3178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), + [3180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), + [3182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), + [3184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), + [3186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), + [3188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), + [3190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), + [3192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), + [3194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), + [3196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), + [3198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), + [3200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), + [3202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), + [3204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), + [3206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), + [3208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), + [3210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), + [3212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), + [3214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), + [3216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), + [3218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), + [3220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), + [3222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), + [3224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), + [3226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), + [3228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), + [3230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), + [3232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), + [3234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), + [3236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), + [3238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), + [3240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), + [3242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), + [3244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), + [3246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), + [3248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), + [3250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), + [3252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), + [3254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), + [3256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), + [3258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), + [3260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1722), + [3262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), + [3264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), + [3266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), + [3268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), + [3270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), + [3272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), + [3274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), + [3276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), + [3278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1583), + [3280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), + [3282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), + [3284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), + [3286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), + [3288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), + [3290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), + [3292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1589), + [3294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1796), + [3296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), + [3298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1670), + [3300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), + [3302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), + [3304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), + [3306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), + [3308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), + [3310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), + [3312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), + [3314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), + [3316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), + [3318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1650), + [3320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), + [3322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), + [3324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), + [3326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), + [3328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), + [3330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), + [3332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), + [3334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), + [3336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1601), + [3338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), + [3340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), + [3342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), + [3344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), + [3346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), + [3348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), + [3350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), + [3352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), + [3354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), + [3356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), + [3358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), + [3360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), + [3362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), + [3364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), + [3366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), + [3368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), + [3370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), + [3372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), + [3374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), + [3376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), + [3378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), + [3380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), + [3382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), + [3384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), + [3386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), + [3388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), + [3390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), + [3392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), + [3394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), + [3396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), + [3398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), + [3400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), + [3402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), + [3404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), + [3406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), + [3408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), + [3410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), + [3412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), + [3414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), + [3416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), + [3418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), + [3420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), + [3422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), + [3424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), + [3426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), + [3428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), + [3430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), + [3432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), + [3434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), + [3436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), + [3438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1607), + [3440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608), + [3442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), + [3444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), + [3446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1612), + [3448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), + [3450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), + [3452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), + [3454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1647), + [3456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), + [3458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), + [3460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), + [3462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1660), + [3464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1663), + [3466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), + [3468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), + [3470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1667), + [3472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1668), + [3474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), + [3476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), + [3478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), + [3480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), + [3482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1645), + [3484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), + [3486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), + [3488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1671), + [3490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1673), + [3492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), + [3494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1714), + [3496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), + [3498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), + [3500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), + [3502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1766), + [3504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), + [3506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), + [3508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), + [3510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), + [3512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), + [3514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), + [3516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), + [3518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1800), + [3520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), + [3522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), + [3524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), + [3526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), + [3528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), + [3530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1799), + [3532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), + [3534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), + [3536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), + [3538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1794), + [3540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), + [3542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), + [3544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), + [3546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), + [3548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), + [3550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), + [3552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), + [3554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), + [3556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), + [3558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), + [3560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), + [3562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), + [3564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), + [3566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), + [3568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), + [3570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), + [3572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), + [3574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), + [3576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1566), + [3578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), + [3580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1567), + [3582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), + [3584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), + [3586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), + [3588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), + [3590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1790), + [3592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), + [3594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), + [3596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), + [3598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), + [3600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), + [3602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1573), + [3604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), + [3606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), + [3608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), + [3610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), + [3612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), + [3614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), + [3616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), + [3618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), + [3620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), + [3622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), + [3624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), + [3626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), + [3628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), + [3630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1789), + [3632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1657), + [3634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), + [3636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), + [3638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1787), + [3640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), + [3642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), + [3644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1581), + [3646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1784), + [3648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), + [3650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), + [3652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1661), + [3654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), + [3656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), + [3658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1782), + [3660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1779), + [3662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), + [3664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1775), + [3666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), + [3668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), + [3670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), + [3672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), + [3674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), + [3676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1665), + [3678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), + [3680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1674), + [3682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1772), + [3684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1594), + [3686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1770), + [3688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), + [3690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1769), + [3692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), + [3694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1767), + [3696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1764), + [3698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1602), + [3700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), + [3702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1759), + [3704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1757), + [3706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), + [3708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1604), + [3710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1755), + [3712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), + [3714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1754), + [3716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), + [3718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), + [3720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), + [3722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), + [3724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), + [3726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), + [3728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), + [3730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), + [3732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), + [3734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), + [3736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), + [3738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618), + [3740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), + [3742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), + [3744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1622), + [3746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), + [3748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1623), + [3750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), + [3752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1626), + [3754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), + [3756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), + [3758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), + [3760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), + [3762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), + [3764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1717), + [3766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), + [3768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), + [3770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1633), + [3772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), + [3774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1634), + [3776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), + [3778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), + [3780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), + [3782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), + [3784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), + [3786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1639), + [3788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), + [3790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), + [3792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), + [3794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640), + [3796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [3798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [3800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), + [3802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [3804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), + [3806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [3808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), + [3810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [3812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), + [3814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), + [3816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1644), + [3818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), + [3820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), + [3822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), + [3824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1742), + [3826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1616), + [3828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1740), + [3830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), + [3832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), + [3834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1615), + [3836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), + [3838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), + [3840] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sym_lit_repeat1, 2, .production_id = 15), SHIFT_REPEAT(1047), + [3843] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sym_lit_repeat1, 2, .production_id = 15), SHIFT_REPEAT(1044), + [3846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), + [3848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1739), + [3850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), + [3852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), + [3854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), + [3856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1592), + [3858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593), + [3860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1654), + [3862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), + [3864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), + [3866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1734), + [3868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1662), + [3870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), + [3872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), + [3874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), + [3876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), + [3878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1727), + [3880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1664), + [3882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), + [3884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1666), + [3886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), + [3888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), + [3890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1669), + [3892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1720), + [3894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1709), + [3896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1672), + [3898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1704), + [3900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), + [3902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), + [3904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), + [3906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1703), + [3908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1701), + [3910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1698), + [3912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), + [3914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1679), + [3916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), + [3918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), + [3920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), + [3922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1684), + [3924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), + [3926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), + [3928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1688), + [3930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), + [3932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1689), + [3934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), + [3936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1692), + [3938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), + [3940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), + [3942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), + [3944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), + [3946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), + [3948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), + [3950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), + [3952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), + [3954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), + [3956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), + [3958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), + [3960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), + [3962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1702), + [3964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), + [3966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), + [3968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), + [3970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1705), + [3972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), + [3974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), + [3976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), + [3978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), + [3980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), + [3982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), + [3984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), + [3986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), + [3988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), + [3990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), + [3992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), + [3994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), + [3996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), + [3998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), + [4000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1710), + [4002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), + [4004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), + [4006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), + [4008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), + [4010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), + [4012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1695), + [4014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), + [4016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), + [4018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1682), + [4020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), + [4022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), + [4024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1711), + [4026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), + [4028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), + [4030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1694), + [4032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), + [4034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), + [4036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1658), + [4038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1659), + [4040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), + [4042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), + [4044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1726), + [4046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), + [4048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), + [4050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), + [4052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), + [4054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), + [4056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), + [4058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), + [4060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), + [4062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), + [4064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), + [4066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1625), + [4068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), + [4070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), + [4072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), + [4074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), + [4076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), + [4078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1680), + [4080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), + [4082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1693), + [4084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), + [4086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741), + [4088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), + [4090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1743), + [4092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), + [4094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), + [4096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), + [4098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), + [4100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), + [4102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), + [4104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), + [4106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1748), + [4108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), + [4110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), + [4112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), + [4114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), + [4116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1750), + [4118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), + [4120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), + [4122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1712), + [4124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), + [4126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1753), + [4128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), + [4130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), + [4132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), + [4134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), + [4136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1758), + [4138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), + [4140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), + [4142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), + [4144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), + [4146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), + [4148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), + [4150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), + [4152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1763), + [4154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), + [4156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), + [4158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), + [4160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), + [4162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1765), + [4164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), + [4166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), + [4168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1678), + [4170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), + [4172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), + [4174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), + [4176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), + [4178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), + [4180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), + [4182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1773), + [4184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), + [4186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1557), + [4188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1776), + [4190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), + [4192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1560), + [4194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), + [4196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), + [4198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1778), + [4200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), + [4202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), + [4204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), + [4206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570), + [4208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1780), + [4210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1571), + [4212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), + [4214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1690), + [4216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1783), + [4218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1617), + [4220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1619), + [4222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1786), + [4224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1620), + [4226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1788), + [4228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), + [4230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1624), + [4232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1791), + [4234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), + [4236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1627), + [4238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1792), + [4240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1628), + [4242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), + [4244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1629), + [4246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1632), + [4248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), + [4250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), + [4252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1795), + [4254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638), + [4256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1643), + [4258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), + [4260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), + [4262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1683), + [4264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), + [4266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), + [4268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1686), + [4270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1737), + [4272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1687), + [4274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1860), + [4276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1818), + [4278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1808), + [4280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1820), + [4282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1802), + [4284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1806), + [4286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), + [4288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1843), + [4290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1823), + [4292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1801), + [4294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1809), + [4296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1832), + [4298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1840), + [4300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1858), + [4302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1811), + [4304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1810), + [4306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1842), + [4308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1824), + [4310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1879), + [4312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [4314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1827), + [4316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1837), + [4318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1848), + [4320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1857), + [4322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1844), [4324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1841), - [4326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1695), - [4328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), - [4330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1842), - [4332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1698), - [4334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1843), - [4336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), - [4338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1702), - [4340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1705), - [4342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), - [4344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1900), - [4346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1902), - [4348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1854), - [4350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1849), - [4352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1859), - [4354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1856), - [4356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), - [4358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1860), - [4360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1861), - [4362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), - [4364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1846), - [4366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1866), - [4368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1867), - [4370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1868), - [4372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1869), - [4374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1913), - [4376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), - [4378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1875), - [4380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1880), - [4382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1876), - [4384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1877), - [4386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), - [4388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1923), - [4390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), - [4392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1874), - [4394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1893), - [4396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1899), - [4398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), - [4400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1889), - [4402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1892), - [4404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1882), - [4406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1845), - [4408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1897), - [4410] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_read_cond_lit_repeat1, 2), SHIFT_REPEAT(1902), - [4413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_read_cond_lit_repeat1, 2), - [4415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_dimension, 2), - [4417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1903), - [4419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), - [4421] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [4423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), - [4425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), - [4427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), - [4429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), - [4431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), - [4433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), - [4435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), - [4437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), + [4326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), + [4328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), + [4330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1871), + [4332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), + [4334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1847), + [4336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), + [4338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1853), + [4340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_dimension, 2), + [4342] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_read_cond_lit_repeat1, 2), SHIFT_REPEAT(1860), + [4345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_read_cond_lit_repeat1, 2), + [4347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), + [4349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), + [4351] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [4353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), + [4355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), + [4357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), + [4359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), + [4361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), + [4363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), + [4365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1859), + [4367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), }; #ifdef __cplusplus diff --git a/test/corpus/basic.txt b/test/corpus/basic.txt index d12dd43c6..dcd0722d4 100644 --- a/test/corpus/basic.txt +++ b/test/corpus/basic.txt @@ -498,9 +498,9 @@ Keywords -------------------------------------------------------------------------------- (source - (package_lit + (kwd_lit (sym_lit)) - (package_lit + (kwd_lit (dotted_sym_lit (sym_lit) (sym_lit))))