From 12aefa99098d42a4236a0e4d7bcb2b115304c598 Mon Sep 17 00:00:00 2001 From: Salam Elbilig Date: Thu, 12 Feb 2026 23:37:15 -0800 Subject: [PATCH 1/3] ci: add CI/release workflows for automatic parser artifacts generation Mirror the tree-sitter upstream workflow setup so tag pushes produce WASM and source tarball release assets with attestations. Add a modern tree-sitter.json manifest and refresh package metadata to align artifact and file-type declarations, including EDN. --- .github/workflows/ci.yml | 53 +++++++++++++++++++++++++++++++++++ .github/workflows/release.yml | 19 +++++++++++++ .tsqueryrc.json | 6 ++++ package.json | 27 ++++++++++++++++-- tree-sitter.json | 33 ++++++++++++++++++++++ 5 files changed, 136 insertions(+), 2 deletions(-) create mode 100644 .github/workflows/ci.yml create mode 100644 .github/workflows/release.yml create mode 100644 .tsqueryrc.json create mode 100644 tree-sitter.json diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 0000000..f6b3a66 --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,53 @@ +name: CI + +on: + push: + branches: [master] + pull_request: + branches: [master] + workflow_dispatch: + +concurrency: + group: ${{github.workflow}}-${{github.ref}} + cancel-in-progress: true + +jobs: + test: + name: Test parser + runs-on: ${{matrix.os}} + strategy: + fail-fast: false + matrix: + os: [ubuntu-latest, windows-latest, macos-latest] + steps: + - name: Set up repository + uses: actions/checkout@v6 + + - name: Set up tree-sitter + uses: tree-sitter/setup-action@v2 + with: + install-lib: false + + - name: Run tests + uses: tree-sitter/parser-test-action@v2 + + query: + name: Validate queries + runs-on: ubuntu-latest + steps: + - name: Set up repository + uses: actions/checkout@v6 + + - name: Set up tree-sitter + uses: tree-sitter/setup-action@v2 + with: + install-lib: false + + - name: Build parser + run: tree-sitter build + + - name: Set up ts_query_ls + run: curl -fL https://github.com/ribru17/ts_query_ls/releases/latest/download/ts_query_ls-x86_64-unknown-linux-gnu.tar.gz | tar -xz + + - name: Check queries + run: ./ts_query_ls check -f queries/ diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml new file mode 100644 index 0000000..5a39296 --- /dev/null +++ b/.github/workflows/release.yml @@ -0,0 +1,19 @@ +name: Create release + +on: + push: + tags: ["*"] + workflow_dispatch: + +concurrency: + group: ${{github.workflow}}-${{github.ref}} + cancel-in-progress: true + +permissions: + contents: write + id-token: write + attestations: write + +jobs: + release: + uses: tree-sitter/workflows/.github/workflows/release.yml@main diff --git a/.tsqueryrc.json b/.tsqueryrc.json new file mode 100644 index 0000000..5268561 --- /dev/null +++ b/.tsqueryrc.json @@ -0,0 +1,6 @@ +{ + "$schema": "https://raw.githubusercontent.com/ribru17/ts_query_ls/refs/heads/master/schemas/config.json", + "parser_install_directories": [ + "." + ] +} diff --git a/package.json b/package.json index 6f56331..af3a6d9 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,29 @@ { "name": "tree-sitter-clojure", - "version": "0.0.13", + "version": "0.0.14", "description": "Clojure grammar for tree-sitter", + "repository": "https://github.com/anomalyco/tree-sitter-clojure", + "license": "CC0-1.0", + "author": "sogaiu", + "keywords": [ + "incremental", + "parsing", + "tree-sitter", + "clojure", + "edn" + ], + "files": [ + "grammar.js", + "tree-sitter.json", + "queries/*", + "src/**", + "*.wasm" + ], + "scripts": { + "prestart": "tree-sitter build --wasm", + "start": "tree-sitter playground", + "test": "tree-sitter test" + }, "tree-sitter": [ { "scope": "source.clojure", @@ -9,7 +31,8 @@ "bb", "clj", "cljc", - "cljs" + "cljs", + "edn" ] } ] diff --git a/tree-sitter.json b/tree-sitter.json new file mode 100644 index 0000000..6e47186 --- /dev/null +++ b/tree-sitter.json @@ -0,0 +1,33 @@ +{ + "grammars": [ + { + "name": "clojure", + "camelcase": "Clojure", + "path": ".", + "scope": "source.clojure", + "injection-regex": "^(bb|clj|cljc|cljs|clojure|edn)$", + "file-types": [ + "bb", + "clj", + "cljc", + "cljs", + "edn" + ], + "highlights": "queries/highlights.scm" + } + ], + "metadata": { + "version": "0.0.14", + "license": "CC0-1.0", + "description": "Clojure grammar for tree-sitter", + "authors": [ + { + "name": "sogaiu", + "email": "983021772@users.noreply.github.com" + } + ], + "links": { + "repository": "https://github.com/anomalyco/tree-sitter-clojure" + } + } +} From bfcdd0ccfd8c592a9c0d2068c7fa95ec91286640 Mon Sep 17 00:00:00 2001 From: Salam Elbilig Date: Thu, 12 Feb 2026 23:52:56 -0800 Subject: [PATCH 2/3] chore(parser): regenerate parser sources using tree-sitter v0.26.5 (ABI version 15) Refresh generated parser artifacts so CI generation checks pass with parser-test-action defaults. Include updated runtime headers emitted by modern tree-sitter when rebuilding the grammar. --- queries/highlights.scm | 23 +- src/grammar.json | 7 +- src/node-types.json | 1 + src/parser.c | 26914 ++++++++++++++++++------------------- src/tree_sitter/alloc.h | 54 + src/tree_sitter/array.h | 347 + src/tree_sitter/parser.h | 80 +- 7 files changed, 13673 insertions(+), 13753 deletions(-) create mode 100644 src/tree_sitter/alloc.h create mode 100644 src/tree_sitter/array.h diff --git a/queries/highlights.scm b/queries/highlights.scm index d27587a..11c608f 100644 --- a/queries/highlights.scm +++ b/queries/highlights.scm @@ -1,5 +1,4 @@ -;; Literals - +; Literals (num_lit) @number [ @@ -8,22 +7,20 @@ ] @string [ - (bool_lit) - (nil_lit) + (bool_lit) + (nil_lit) ] @constant.builtin (kwd_lit) @constant -;; Comments - +; Comments (comment) @comment -;; Treat quasiquotation as operators for the purpose of highlighting. - +; Treat quasiquotation as operators for the purpose of highlighting. [ - "'" - "`" - "~" - "@" - "~@" + "'" + "`" + "~" + "@" + "~@" ] @operator diff --git a/src/grammar.json b/src/grammar.json index ff2cf40..4efe92b 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -1,4 +1,5 @@ { + "$schema": "https://tree-sitter.github.io/tree-sitter/assets/schemas/grammar.schema.json", "name": "clojure", "rules": { "source": { @@ -1934,6 +1935,6 @@ "_sym_qualified", "_sym_unqualified" ], - "supertypes": [] -} - + "supertypes": [], + "reserved": {} +} \ No newline at end of file diff --git a/src/node-types.json b/src/node-types.json index df1142d..c404950 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -1911,6 +1911,7 @@ { "type": "source", "named": true, + "root": true, "fields": {}, "children": { "multiple": true, diff --git a/src/parser.c b/src/parser.c index 01e5d8b..571ac6b 100644 --- a/src/parser.c +++ b/src/parser.c @@ -1,11 +1,12 @@ +/* Automatically @generated by tree-sitter */ + #include "tree_sitter/parser.h" #if defined(__GNUC__) || defined(__clang__) -#pragma GCC diagnostic push #pragma GCC diagnostic ignored "-Wmissing-field-initializers" #endif -#define LANGUAGE_VERSION 14 +#define LANGUAGE_VERSION 15 #define STATE_COUNT 496 #define LARGE_STATE_COUNT 213 #define SYMBOL_COUNT 73 @@ -14,7 +15,9 @@ #define EXTERNAL_TOKEN_COUNT 0 #define FIELD_COUNT 11 #define MAX_ALIAS_SEQUENCE_LENGTH 6 +#define MAX_RESERVED_WORD_SET_SIZE 0 #define PRODUCTION_ID_COUNT 43 +#define SUPERTYPE_COUNT 0 enum ts_symbol_identifiers { sym__ws = 1, @@ -567,7 +570,7 @@ static const char * const ts_field_names[] = { [field_value] = "value", }; -static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { +static const TSMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [1] = {.index = 0, .length = 1}, [2] = {.index = 1, .length = 2}, [3] = {.index = 3, .length = 1}, @@ -833,20 +836,20 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4] = 4, [5] = 5, [6] = 6, - [7] = 5, + [7] = 7, [8] = 8, [9] = 9, [10] = 10, - [11] = 4, + [11] = 11, [12] = 12, - [13] = 9, - [14] = 12, - [15] = 10, - [16] = 3, + [13] = 3, + [14] = 5, + [15] = 4, + [16] = 7, [17] = 8, - [18] = 6, - [19] = 19, - [20] = 20, + [18] = 9, + [19] = 10, + [20] = 12, [21] = 21, [22] = 22, [23] = 23, @@ -858,7 +861,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [29] = 29, [30] = 30, [31] = 31, - [32] = 32, + [32] = 21, [33] = 33, [34] = 34, [35] = 35, @@ -866,179 +869,179 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [37] = 37, [38] = 38, [39] = 39, - [40] = 21, + [40] = 40, [41] = 41, [42] = 42, [43] = 43, [44] = 44, [45] = 45, - [46] = 31, + [46] = 46, [47] = 47, [48] = 48, [49] = 49, [50] = 50, - [51] = 21, - [52] = 22, - [53] = 39, + [51] = 51, + [52] = 52, + [53] = 53, [54] = 54, - [55] = 28, - [56] = 27, - [57] = 26, - [58] = 25, - [59] = 24, - [60] = 23, - [61] = 54, - [62] = 31, - [63] = 21, - [64] = 44, - [65] = 50, - [66] = 66, - [67] = 67, - [68] = 68, - [69] = 69, - [70] = 49, - [71] = 71, - [72] = 48, - [73] = 73, - [74] = 47, - [75] = 75, - [76] = 45, - [77] = 77, + [55] = 55, + [56] = 22, + [57] = 31, + [58] = 38, + [59] = 39, + [60] = 60, + [61] = 23, + [62] = 24, + [63] = 25, + [64] = 26, + [65] = 27, + [66] = 28, + [67] = 29, + [68] = 30, + [69] = 21, + [70] = 33, + [71] = 34, + [72] = 35, + [73] = 36, + [74] = 37, + [75] = 40, + [76] = 41, + [77] = 42, [78] = 43, - [79] = 79, - [80] = 80, - [81] = 29, - [82] = 30, - [83] = 83, - [84] = 32, - [85] = 33, - [86] = 42, - [87] = 34, - [88] = 41, - [89] = 38, - [90] = 37, - [91] = 36, - [92] = 35, - [93] = 35, - [94] = 36, - [95] = 37, - [96] = 38, - [97] = 41, - [98] = 42, - [99] = 43, - [100] = 45, - [101] = 47, - [102] = 48, - [103] = 49, - [104] = 50, - [105] = 35, - [106] = 68, - [107] = 22, - [108] = 39, - [109] = 28, - [110] = 54, - [111] = 27, - [112] = 26, - [113] = 25, - [114] = 34, - [115] = 33, - [116] = 24, - [117] = 80, - [118] = 23, - [119] = 83, - [120] = 44, - [121] = 66, - [122] = 67, - [123] = 68, - [124] = 79, - [125] = 69, - [126] = 71, - [127] = 73, - [128] = 75, - [129] = 32, - [130] = 77, - [131] = 79, - [132] = 80, - [133] = 29, - [134] = 30, - [135] = 83, - [136] = 32, - [137] = 33, - [138] = 83, - [139] = 34, - [140] = 77, - [141] = 35, - [142] = 36, - [143] = 37, - [144] = 30, - [145] = 38, - [146] = 29, - [147] = 41, - [148] = 80, - [149] = 42, - [150] = 79, - [151] = 43, - [152] = 77, - [153] = 45, - [154] = 47, - [155] = 48, - [156] = 49, - [157] = 50, - [158] = 75, - [159] = 21, - [160] = 22, - [161] = 75, - [162] = 66, - [163] = 73, - [164] = 67, - [165] = 73, - [166] = 71, - [167] = 39, - [168] = 28, - [169] = 27, - [170] = 26, - [171] = 25, - [172] = 24, - [173] = 23, - [174] = 54, - [175] = 71, - [176] = 69, - [177] = 68, - [178] = 68, - [179] = 69, - [180] = 71, - [181] = 73, - [182] = 75, - [183] = 69, - [184] = 77, - [185] = 79, - [186] = 80, - [187] = 29, - [188] = 54, - [189] = 23, - [190] = 30, - [191] = 24, - [192] = 25, - [193] = 26, - [194] = 27, - [195] = 28, - [196] = 83, - [197] = 32, - [198] = 50, - [199] = 34, + [79] = 44, + [80] = 45, + [81] = 46, + [82] = 47, + [83] = 48, + [84] = 49, + [85] = 50, + [86] = 51, + [87] = 52, + [88] = 88, + [89] = 89, + [90] = 90, + [91] = 60, + [92] = 53, + [93] = 54, + [94] = 55, + [95] = 22, + [96] = 31, + [97] = 38, + [98] = 39, + [99] = 60, + [100] = 100, + [101] = 101, + [102] = 53, + [103] = 23, + [104] = 24, + [105] = 25, + [106] = 26, + [107] = 27, + [108] = 28, + [109] = 29, + [110] = 30, + [111] = 21, + [112] = 33, + [113] = 34, + [114] = 35, + [115] = 36, + [116] = 37, + [117] = 54, + [118] = 40, + [119] = 41, + [120] = 42, + [121] = 43, + [122] = 44, + [123] = 45, + [124] = 46, + [125] = 47, + [126] = 48, + [127] = 49, + [128] = 88, + [129] = 51, + [130] = 52, + [131] = 88, + [132] = 90, + [133] = 89, + [134] = 100, + [135] = 101, + [136] = 53, + [137] = 54, + [138] = 55, + [139] = 22, + [140] = 31, + [141] = 38, + [142] = 39, + [143] = 60, + [144] = 23, + [145] = 24, + [146] = 25, + [147] = 26, + [148] = 27, + [149] = 28, + [150] = 29, + [151] = 30, + [152] = 21, + [153] = 33, + [154] = 34, + [155] = 35, + [156] = 36, + [157] = 37, + [158] = 40, + [159] = 41, + [160] = 42, + [161] = 43, + [162] = 44, + [163] = 45, + [164] = 46, + [165] = 47, + [166] = 48, + [167] = 49, + [168] = 50, + [169] = 51, + [170] = 52, + [171] = 88, + [172] = 90, + [173] = 89, + [174] = 100, + [175] = 101, + [176] = 53, + [177] = 54, + [178] = 55, + [179] = 22, + [180] = 31, + [181] = 38, + [182] = 39, + [183] = 60, + [184] = 23, + [185] = 24, + [186] = 25, + [187] = 26, + [188] = 27, + [189] = 28, + [190] = 29, + [191] = 30, + [192] = 55, + [193] = 33, + [194] = 34, + [195] = 35, + [196] = 36, + [197] = 37, + [198] = 40, + [199] = 41, [200] = 42, - [201] = 39, - [202] = 33, - [203] = 49, - [204] = 41, - [205] = 48, - [206] = 38, - [207] = 47, - [208] = 22, - [209] = 37, - [210] = 45, - [211] = 36, - [212] = 43, + [201] = 43, + [202] = 44, + [203] = 45, + [204] = 46, + [205] = 47, + [206] = 48, + [207] = 49, + [208] = 50, + [209] = 51, + [210] = 52, + [211] = 88, + [212] = 50, [213] = 213, [214] = 214, [215] = 215, @@ -1135,180 +1138,180 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [306] = 303, [307] = 303, [308] = 308, - [309] = 308, - [310] = 310, - [311] = 311, - [312] = 308, - [313] = 313, + [309] = 309, + [310] = 301, + [311] = 308, + [312] = 312, + [313] = 308, [314] = 314, - [315] = 308, + [315] = 315, [316] = 308, - [317] = 301, + [317] = 308, [318] = 318, [319] = 318, [320] = 318, [321] = 318, [322] = 318, - [323] = 213, - [324] = 324, - [325] = 281, - [326] = 286, - [327] = 265, - [328] = 221, - [329] = 225, - [330] = 294, - [331] = 292, - [332] = 288, - [333] = 229, - [334] = 249, - [335] = 250, - [336] = 230, - [337] = 231, - [338] = 233, - [339] = 234, - [340] = 340, - [341] = 235, - [342] = 236, - [343] = 237, - [344] = 238, - [345] = 239, - [346] = 293, - [347] = 240, - [348] = 232, - [349] = 228, - [350] = 224, - [351] = 223, - [352] = 220, - [353] = 241, - [354] = 354, - [355] = 244, - [356] = 258, - [357] = 222, - [358] = 273, - [359] = 299, - [360] = 360, + [323] = 323, + [324] = 213, + [325] = 235, + [326] = 236, + [327] = 237, + [328] = 238, + [329] = 329, + [330] = 330, + [331] = 239, + [332] = 332, + [333] = 240, + [334] = 241, + [335] = 242, + [336] = 222, + [337] = 215, + [338] = 244, + [339] = 245, + [340] = 246, + [341] = 247, + [342] = 248, + [343] = 249, + [344] = 250, + [345] = 251, + [346] = 252, + [347] = 253, + [348] = 225, + [349] = 254, + [350] = 255, + [351] = 256, + [352] = 300, + [353] = 226, + [354] = 258, + [355] = 259, + [356] = 260, + [357] = 357, + [358] = 261, + [359] = 359, + [360] = 262, [361] = 361, - [362] = 298, - [363] = 363, - [364] = 297, - [365] = 296, - [366] = 245, - [367] = 246, - [368] = 295, - [369] = 278, - [370] = 247, - [371] = 248, - [372] = 251, - [373] = 252, - [374] = 227, - [375] = 375, - [376] = 280, - [377] = 253, - [378] = 263, - [379] = 216, - [380] = 254, - [381] = 255, - [382] = 256, - [383] = 354, - [384] = 291, - [385] = 274, - [386] = 257, - [387] = 259, - [388] = 217, - [389] = 389, - [390] = 340, + [362] = 264, + [363] = 357, + [364] = 216, + [365] = 265, + [366] = 266, + [367] = 268, + [368] = 269, + [369] = 270, + [370] = 271, + [371] = 272, + [372] = 372, + [373] = 273, + [374] = 223, + [375] = 274, + [376] = 275, + [377] = 234, + [378] = 276, + [379] = 277, + [380] = 278, + [381] = 279, + [382] = 280, + [383] = 281, + [384] = 282, + [385] = 283, + [386] = 284, + [387] = 285, + [388] = 286, + [389] = 287, + [390] = 288, [391] = 289, - [392] = 218, - [393] = 287, - [394] = 360, - [395] = 260, - [396] = 261, - [397] = 262, - [398] = 264, - [399] = 399, - [400] = 285, - [401] = 215, - [402] = 284, - [403] = 219, - [404] = 266, - [405] = 283, - [406] = 282, - [407] = 242, - [408] = 279, - [409] = 267, - [410] = 290, - [411] = 300, - [412] = 277, - [413] = 268, - [414] = 214, - [415] = 276, - [416] = 275, - [417] = 243, - [418] = 272, - [419] = 271, - [420] = 270, - [421] = 269, - [422] = 375, - [423] = 226, + [392] = 290, + [393] = 291, + [394] = 292, + [395] = 218, + [396] = 294, + [397] = 229, + [398] = 221, + [399] = 227, + [400] = 372, + [401] = 401, + [402] = 299, + [403] = 214, + [404] = 217, + [405] = 219, + [406] = 224, + [407] = 359, + [408] = 220, + [409] = 228, + [410] = 243, + [411] = 257, + [412] = 263, + [413] = 267, + [414] = 230, + [415] = 293, + [416] = 295, + [417] = 296, + [418] = 297, + [419] = 298, + [420] = 231, + [421] = 232, + [422] = 233, + [423] = 361, [424] = 424, [425] = 425, [426] = 425, - [427] = 425, - [428] = 428, - [429] = 428, - [430] = 428, - [431] = 428, + [427] = 427, + [428] = 427, + [429] = 425, + [430] = 427, + [431] = 425, [432] = 425, - [433] = 425, - [434] = 428, - [435] = 310, - [436] = 311, - [437] = 313, - [438] = 314, - [439] = 301, + [433] = 427, + [434] = 427, + [435] = 309, + [436] = 301, + [437] = 312, + [438] = 315, + [439] = 314, [440] = 440, [441] = 440, - [442] = 314, - [443] = 213, - [444] = 324, - [445] = 310, - [446] = 301, - [447] = 313, - [448] = 311, - [449] = 324, + [442] = 309, + [443] = 315, + [444] = 301, + [445] = 312, + [446] = 213, + [447] = 314, + [448] = 323, + [449] = 449, [450] = 450, [451] = 451, - [452] = 452, - [453] = 453, + [452] = 323, + [453] = 449, [454] = 454, - [455] = 213, + [455] = 451, [456] = 456, - [457] = 450, - [458] = 456, + [457] = 456, + [458] = 458, [459] = 459, - [460] = 453, - [461] = 454, + [460] = 213, + [461] = 458, [462] = 459, - [463] = 451, + [463] = 454, [464] = 301, [465] = 465, [466] = 213, [467] = 467, [468] = 468, [469] = 469, - [470] = 470, + [470] = 468, [471] = 471, - [472] = 470, - [473] = 473, - [474] = 468, - [475] = 467, - [476] = 473, + [472] = 472, + [473] = 467, + [474] = 474, + [475] = 475, + [476] = 475, [477] = 477, - [478] = 478, - [479] = 477, - [480] = 478, + [478] = 472, + [479] = 471, + [480] = 477, [481] = 469, - [482] = 471, + [482] = 474, [483] = 483, [484] = 484, [485] = 484, @@ -1318,619 +1321,40 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [489] = 489, [490] = 490, [491] = 491, - [492] = 491, - [493] = 493, - [494] = 490, - [495] = 489, + [492] = 490, + [493] = 489, + [494] = 491, + [495] = 495, }; -static inline bool sym__ws_character_set_1(int32_t c) { - return (c < 8192 - ? (c < ',' - ? (c < 28 - ? (c >= '\t' && c <= '\r') - : c <= ' ') - : (c <= ',' || c == 5760)) - : (c <= 8198 || (c < 8287 - ? (c < 8232 - ? (c >= 8200 && c <= 8202) - : c <= 8233) - : (c <= 8287 || c == 12288)))); -} - -static inline bool sym_comment_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 < 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 sym_comment_character_set_2(int32_t c) { - return (c < '`' - ? (c < ',' - ? (c < '"' - ? (c < 28 - ? (c >= '\t' && c <= '\r') - : c <= ' ') - : (c <= '"' || (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_comment_character_set_3(int32_t c) { - return (c < '`' - ? (c < ',' - ? (c < '"' - ? (c < 28 - ? (c >= '\t' && 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 aux_sym__kwd_leading_slash_token1_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 aux_sym__kwd_leading_slash_token1_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 < 8200 - ? (c < 5760 - ? (c >= '}' && c <= '~') - : (c <= 5760 || (c >= 8192 && c <= 8198))) - : (c <= 8202 || (c < 8287 - ? (c >= 8232 && c <= 8233) - : (c <= 8287 || c == 12288)))))); -} - -static inline bool aux_sym__kwd_leading_slash_token1_character_set_3(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 < 8200 - ? (c < 5760 - ? (c >= '}' && c <= '~') - : (c <= 5760 || (c >= 8192 && c <= 8198))) - : (c <= 8202 || (c < 8287 - ? (c >= 8232 && c <= 8233) - : (c <= 8287 || c == 12288)))))); -} - -static inline bool aux_sym__kwd_leading_slash_token1_character_set_4(int32_t c) { - return (c < '@' - ? (c < '(' - ? (c < 28 - ? (c < '\t' - ? c == 0 - : c <= '\r') - : (c <= ' ' || c == '"')) - : (c <= ')' || (c < '/' - ? c == ',' - : (c <= '9' || c == ';')))) - : (c <= '^' || (c < 8200 - ? (c < 5760 - ? (c < '}' - ? (c >= '`' && c <= '{') - : c <= '~') - : (c <= 5760 || (c >= 8192 && c <= 8198))) - : (c <= 8202 || (c < 8287 - ? (c >= 8232 && c <= 8233) - : (c <= 8287 || c == 12288)))))); -} - -static inline bool aux_sym__kwd_leading_slash_token1_character_set_5(int32_t c) { - return (c < '@' - ? (c < '(' - ? (c < 28 - ? (c < '\t' - ? c == 0 - : c <= '\r') - : (c <= ' ' || c == '"')) - : (c <= ')' || (c < '0' - ? c == ',' - : (c <= '9' || c == ';')))) - : (c <= '^' || (c < 8200 - ? (c < 5760 - ? (c < '}' - ? (c >= '`' && c <= '{') - : c <= '~') - : (c <= 5760 || (c >= 8192 && c <= 8198))) - : (c <= 8202 || (c < 8287 - ? (c >= 8232 && c <= 8233) - : (c <= 8287 || c == 12288)))))); -} - -static inline bool aux_sym__kwd_leading_slash_token1_character_set_6(int32_t c) { - return (c < '[' - ? (c < '(' - ? (c < 28 - ? (c < '\t' - ? c == 0 - : c <= '\r') - : (c <= ' ' || c == '"')) - : (c <= ')' || (c < ';' - ? (c < '/' - ? c == ',' - : c <= '9') - : (c <= ';' || (c >= '@' && c <= 'F'))))) - : (c <= '^' || (c < 8192 - ? (c < '}' - ? (c < '{' - ? (c >= '`' && c <= 'f') - : 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__kwd_leading_slash_token1_character_set_7(int32_t c) { - return (c < '[' - ? (c < '(' - ? (c < 28 - ? (c < '\t' - ? c == 0 - : c <= '\r') - : (c <= ' ' || c == '"')) - : (c <= ')' || (c < ';' - ? (c < '0' - ? c == ',' - : c <= '9') - : (c <= ';' || (c >= '@' && c <= 'F'))))) - : (c <= '^' || (c < 8192 - ? (c < '}' - ? (c < '{' - ? (c >= '`' && c <= 'f') - : 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__kwd_leading_slash_token1_character_set_8(int32_t c) { - return (c < '[' - ? (c < '(' - ? (c < 28 - ? (c < '\t' - ? c == 0 - : c <= '\r') - : (c <= ' ' || c == '"')) - : (c <= ')' || (c < ';' - ? (c < '/' - ? (c >= '+' && c <= '-') - : c <= '9') - : (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__kwd_leading_slash_token1_character_set_9(int32_t c) { - return (c < '[' - ? (c < '(' - ? (c < 28 - ? (c < '\t' - ? c == 0 - : c <= '\r') - : (c <= ' ' || c == '"')) - : (c <= ')' || (c < ';' - ? (c < '0' - ? (c >= '+' && c <= '-') - : c <= '9') - : (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__kwd_leading_slash_token1_character_set_10(int32_t c) { - return (c < '[' - ? (c < '(' - ? (c < 28 - ? (c < '\t' - ? c == 0 - : c <= '\r') - : (c <= ' ' || c == '"')) - : (c <= ')' || (c < ';' - ? (c < '/' - ? c == ',' - : c <= '9') - : (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__kwd_leading_slash_token1_character_set_11(int32_t c) { - return (c < '[' - ? (c < '(' - ? (c < 28 - ? (c < '\t' - ? c == 0 - : c <= '\r') - : (c <= ' ' || c == '"')) - : (c <= ')' || (c < ';' - ? (c < '0' - ? c == ',' - : c <= '9') - : (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__kwd_leading_slash_token1_character_set_12(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 <= '^'))))) - : (c <= '`' || (c < 8192 - ? (c < '}' - ? (c < '{' - ? c == 'e' - : 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__kwd_leading_slash_token1_character_set_13(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 <= '^'))))) - : (c <= '`' || (c < 8192 - ? (c < '}' - ? (c < '{' - ? c == 'i' - : 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__kwd_leading_slash_token1_character_set_14(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 <= '^'))))) - : (c <= '`' || (c < 8192 - ? (c < '}' - ? (c < '{' - ? c == 'l' - : 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__kwd_leading_slash_token1_character_set_15(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 <= '^'))))) - : (c <= '`' || (c < 8192 - ? (c < '}' - ? (c < '{' - ? c == 'r' - : 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__kwd_leading_slash_token1_character_set_16(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 <= '^'))))) - : (c <= '`' || (c < 8192 - ? (c < '}' - ? (c < '{' - ? c == 's' - : 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__kwd_leading_slash_token1_character_set_17(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 <= '^'))))) - : (c <= '`' || (c < 8192 - ? (c < '}' - ? (c < '{' - ? c == 'u' - : c <= '{') - : (c <= '~' || c == 5760)) - : (c <= 8198 || (c < 8287 - ? (c < 8232 - ? (c >= 8200 && c <= 8202) - : c <= 8233) - : (c <= 8287 || c == 12288)))))); -} +static const TSCharacterRange sym__ws_character_set_1[] = { + {'\t', '\r'}, {0x1c, ' '}, {',', ','}, {0x1680, 0x1680}, {0x2000, 0x2006}, {0x2008, 0x200a}, {0x2028, 0x2029}, {0x205f, 0x205f}, + {0x3000, 0x3000}, +}; -static inline bool aux_sym__kwd_leading_slash_token1_character_set_18(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 <= 'a') - : c <= '{') - : (c <= '~' || c == 5760)) - : (c <= 8198 || (c < 8287 - ? (c < 8232 - ? (c >= 8200 && c <= 8202) - : c <= 8233) - : (c <= 8287 || c == 12288)))))); -} +static const TSCharacterRange aux_sym__kwd_leading_slash_token1_character_set_1[] = { + {0, 0x08}, {0x0e, 0x1b}, {'!', '!'}, {'#', '\''}, {'*', '+'}, {'-', ':'}, {'<', '?'}, {'A', 'Z'}, + {'_', '_'}, {'a', 'z'}, {'|', '|'}, {0x7f, 0x167f}, {0x1681, 0x1fff}, {0x2007, 0x2007}, {0x200b, 0x2027}, {0x202a, 0x205e}, + {0x2060, 0x2fff}, {0x3001, 0x10ffff}, +}; -static inline bool aux_sym__kwd_qualified_token1_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 const TSCharacterRange aux_sym__kwd_qualified_token1_character_set_1[] = { + {0, 0x08}, {0x0e, 0x1b}, {'!', '!'}, {'#', '\''}, {'*', '+'}, {'-', '.'}, {'0', '9'}, {'<', '?'}, + {'A', 'Z'}, {'_', '_'}, {'a', 'z'}, {'|', '|'}, {0x7f, 0x167f}, {0x1681, 0x1fff}, {0x2007, 0x2007}, {0x200b, 0x2027}, + {0x202a, 0x205e}, {0x2060, 0x2fff}, {0x3001, 0x10ffff}, +}; -static inline bool aux_sym__kwd_qualified_token1_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 < 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 const TSCharacterRange aux_sym__kwd_qualified_token1_character_set_2[] = { + {0, 0x08}, {0x0e, 0x1b}, {'!', '!'}, {'#', '\''}, {'*', '+'}, {'-', '.'}, {'0', ':'}, {'<', '?'}, + {'A', 'Z'}, {'_', '_'}, {'a', 'z'}, {'|', '|'}, {0x7f, 0x167f}, {0x1681, 0x1fff}, {0x2007, 0x2007}, {0x200b, 0x2027}, + {0x202a, 0x205e}, {0x2060, 0x2fff}, {0x3001, 0x10ffff}, +}; -static inline bool aux_sym__sym_qualified_token1_character_set_1(int32_t c) { - return (c < '\\' - ? (c < '"' - ? (c < '\t' - ? c == 0 - : (c <= '\r' || (c >= 28 && c <= ' '))) - : (c <= '"' || (c < ',' - ? c == ')' - : (c <= ',' || (c >= '0' && c <= ';'))))) - : (c <= ']' || (c < 8200 - ? (c < 5760 - ? c == '}' - : (c <= 5760 || (c >= 8192 && c <= 8198))) - : (c <= 8202 || (c < 8287 - ? (c >= 8232 && c <= 8233) - : (c <= 8287 || c == 12288)))))); -} +static const TSCharacterRange aux_sym__sym_qualified_token1_character_set_1[] = { + {0, 0x08}, {0x0e, 0x1b}, {'!', '!'}, {'$', '&'}, {'*', '+'}, {'-', '.'}, {'<', '?'}, {'A', 'Z'}, + {'_', '_'}, {'a', 'z'}, {'|', '|'}, {0x7f, 0x167f}, {0x1681, 0x1fff}, {0x2007, 0x2007}, {0x200b, 0x2027}, {0x202a, 0x205e}, + {0x2060, 0x2fff}, {0x3001, 0x10ffff}, +}; static bool ts_lex(TSLexer *lexer, TSStateId state) { START_LEXER(); @@ -1938,54 +1362,58 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { switch (state) { case 0: if (eof) ADVANCE(45); - if (lookahead == '"') ADVANCE(2); - if (lookahead == '#') ADVANCE(146); - if (lookahead == '\'') ADVANCE(161); - if (lookahead == '(') ADVANCE(138); - if (lookahead == ')') ADVANCE(139); - if (lookahead == '/') ADVANCE(76); - if (lookahead == '0') ADVANCE(55); - if (lookahead == ':') ADVANCE(103); - if (lookahead == ';') ADVANCE(50); - if (lookahead == '@') ADVANCE(159); - if (lookahead == '[') ADVANCE(142); - if (lookahead == '\\') ADVANCE(42); - if (lookahead == ']') ADVANCE(143); - if (lookahead == '^') ADVANCE(136); - if (lookahead == '`') ADVANCE(162); - if (lookahead == 'f') ADVANCE(97); - if (lookahead == 'n') ADVANCE(91); - if (lookahead == 't') ADVANCE(94); - if (lookahead == '{') ADVANCE(140); - if (lookahead == '}') ADVANCE(141); - if (lookahead == '~') ADVANCE(164); - if (lookahead == '+' || - lookahead == '-') ADVANCE(86); + ADVANCE_MAP( + '"', 2, + '#', 146, + '\'', 161, + '(', 138, + ')', 139, + '/', 76, + '0', 55, + ':', 102, + ';', 50, + '@', 159, + '[', 142, + '\\', 11, + ']', 143, + '^', 136, + '`', 162, + 'f', 81, + 'n', 83, + 't', 86, + '{', 140, + '}', 141, + '~', 164, + '+', 80, + '-', 80, + ); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(57); - if (sym__ws_character_set_1(lookahead)) ADVANCE(46); - if (lookahead != 0) ADVANCE(98); + if (set_contains(sym__ws_character_set_1, 9, lookahead)) ADVANCE(46); + if (lookahead != 0) ADVANCE(93); END_STATE(); case 1: - if (lookahead == '"') ADVANCE(2); - if (lookahead == '#') ADVANCE(145); - if (lookahead == '\'') ADVANCE(160); - if (lookahead == '(') ADVANCE(138); - if (lookahead == '/') ADVANCE(75); - if (lookahead == ':') ADVANCE(102); - if (lookahead == ';') ADVANCE(50); - if (lookahead == '@') ADVANCE(159); - if (lookahead == '[') ADVANCE(142); - if (lookahead == '^') ADVANCE(136); - if (lookahead == '`') ADVANCE(162); - if (lookahead == '{') ADVANCE(140); - if (lookahead == '~') ADVANCE(164); - if (sym__ws_character_set_1(lookahead)) ADVANCE(46); + ADVANCE_MAP( + '"', 2, + '#', 145, + '\'', 160, + '(', 138, + '/', 75, + ':', 103, + ';', 50, + '@', 159, + '[', 142, + '^', 136, + '`', 162, + '{', 140, + '~', 164, + ); + if (set_contains(sym__ws_character_set_1, 9, lookahead)) ADVANCE(46); if (lookahead != 0 && - lookahead != ')' && - (lookahead < '0' || '9' < lookahead) && - lookahead != '\\' && - lookahead != ']' && - lookahead != '}') ADVANCE(134); + (lookahead < '\'' || ')' < lookahead) && + (lookahead < '/' || ';' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '}' && + lookahead != '~') ADVANCE(134); END_STATE(); case 2: if (lookahead == '"') ADVANCE(106); @@ -1993,228 +1421,213 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead != 0) ADVANCE(2); END_STATE(); case 3: - if (lookahead == '#') ADVANCE(148); - if (lookahead == '\'') ADVANCE(160); - if (lookahead == '(') ADVANCE(138); - if (lookahead == '/') ADVANCE(75); - if (lookahead == '@') ADVANCE(159); - if (lookahead == '[') ADVANCE(142); - if (lookahead == '^') ADVANCE(136); - if (lookahead == '`') ADVANCE(162); - if (lookahead == '{') ADVANCE(140); - if (lookahead == '~') ADVANCE(164); - if (!aux_sym__sym_qualified_token1_character_set_1(lookahead)) ADVANCE(134); + ADVANCE_MAP( + '#', 148, + '\'', 160, + '(', 138, + '/', 75, + '@', 159, + '[', 142, + '^', 136, + '`', 162, + '{', 140, + '~', 164, + ); + if ((!eof && set_contains(aux_sym__sym_qualified_token1_character_set_1, 18, lookahead))) ADVANCE(134); END_STATE(); case 4: - if (lookahead == '#') ADVANCE(147); - if (lookahead == '\'') ADVANCE(161); - if (lookahead == '(') ADVANCE(138); - if (lookahead == '/') ADVANCE(76); + ADVANCE_MAP( + '#', 147, + '\'', 161, + '(', 138, + '/', 76, + ';', 50, + '@', 159, + '[', 142, + '^', 136, + '`', 162, + '{', 140, + '~', 164, + ); if (('0' <= lookahead && lookahead <= ':')) ADVANCE(99); - if (lookahead == ';') ADVANCE(50); - if (lookahead == '@') ADVANCE(159); - if (lookahead == '[') ADVANCE(142); - if (lookahead == '^') ADVANCE(136); - if (lookahead == '`') ADVANCE(162); - if (lookahead == '{') ADVANCE(140); - if (lookahead == '~') ADVANCE(164); - if (sym__ws_character_set_1(lookahead)) ADVANCE(46); + if (set_contains(sym__ws_character_set_1, 9, lookahead)) ADVANCE(46); if (lookahead != 0 && lookahead != '"' && - lookahead != ')' && - lookahead != '\\' && - lookahead != ']' && - lookahead != '}') ADVANCE(98); + lookahead != '#' && + (lookahead < '\'' || ')' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '}' && + lookahead != '~') ADVANCE(93); END_STATE(); case 5: if (lookahead == '#') ADVANCE(77); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= ':')) ADVANCE(99); if (lookahead == '(') ADVANCE(138); if (lookahead == '/') ADVANCE(76); if (lookahead == ';') ADVANCE(50); if (lookahead == '^') ADVANCE(136); - if (sym__ws_character_set_1(lookahead)) ADVANCE(46); - if (lookahead != 0 && - lookahead != '"' && - lookahead != ')' && - lookahead != '@' && - (lookahead < '[' || ']' < lookahead) && - lookahead != '`' && - lookahead != '{' && - lookahead != '}' && - lookahead != '~') ADVANCE(98); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= ':')) ADVANCE(99); + if (set_contains(sym__ws_character_set_1, 9, lookahead)) ADVANCE(46); + if ((!eof && set_contains(aux_sym__sym_qualified_token1_character_set_1, 18, lookahead))) ADVANCE(93); END_STATE(); case 6: if (lookahead == '#') ADVANCE(78); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= ':')) ADVANCE(99); if (lookahead == '/') ADVANCE(76); if (lookahead == ';') ADVANCE(50); if (lookahead == '^') ADVANCE(136); - if (sym__ws_character_set_1(lookahead)) ADVANCE(46); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '(' && - lookahead != ')' && - lookahead != '@' && - (lookahead < '[' || ']' < lookahead) && - lookahead != '`' && - lookahead != '{' && - lookahead != '}' && - lookahead != '~') ADVANCE(98); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= ':')) ADVANCE(99); + if (set_contains(sym__ws_character_set_1, 9, lookahead)) ADVANCE(46); + if ((!eof && set_contains(aux_sym__sym_qualified_token1_character_set_1, 18, lookahead))) ADVANCE(93); END_STATE(); case 7: if (lookahead == '#') ADVANCE(100); if (lookahead == '/') ADVANCE(75); if (lookahead == ';') ADVANCE(50); if (lookahead == '{') ADVANCE(140); - if (sym__ws_character_set_1(lookahead)) ADVANCE(46); + if (set_contains(sym__ws_character_set_1, 9, lookahead)) ADVANCE(46); + if ((!eof && set_contains(aux_sym__kwd_qualified_token1_character_set_1, 19, lookahead))) ADVANCE(101); + END_STATE(); + case 8: + if (lookahead == '#') ADVANCE(79); + if (lookahead == ';') ADVANCE(50); + if (lookahead == '{') ADVANCE(140); + if (set_contains(sym__ws_character_set_1, 9, lookahead)) ADVANCE(46); if (lookahead != 0 && lookahead != '"' && + lookahead != '#' && lookahead != '(' && lookahead != ')' && - lookahead != ':' && lookahead != '@' && (lookahead < '[' || '^' < lookahead) && lookahead != '`' && lookahead != '}' && - lookahead != '~') ADVANCE(101); - END_STATE(); - case 8: - if (lookahead == '#') ADVANCE(79); - if (!aux_sym__kwd_leading_slash_token1_character_set_1(lookahead)) ADVANCE(99); - if (lookahead == ';') ADVANCE(50); - if (lookahead == '{') ADVANCE(140); - if (sym__ws_character_set_1(lookahead)) ADVANCE(46); + lookahead != '~') ADVANCE(99); END_STATE(); case 9: if (lookahead == '/') ADVANCE(75); - if (!aux_sym__kwd_qualified_token1_character_set_1(lookahead)) ADVANCE(101); + if ((!eof && set_contains(aux_sym__kwd_qualified_token1_character_set_1, 19, lookahead))) ADVANCE(101); END_STATE(); case 10: - if (lookahead == 'a') ADVANCE(13); + if (lookahead == 'a') ADVANCE(14); END_STATE(); case 11: - if (lookahead == 'b') ADVANCE(107); + ADVANCE_MAP( + 'b', 108, + 'f', 112, + 'n', 110, + 'o', 116, + 'r', 111, + 's', 113, + 't', 109, + 'u', 117, + ); + if (lookahead != 0) ADVANCE(107); END_STATE(); case 12: - if (lookahead == 'c') ADVANCE(20); + if (lookahead == 'b') ADVANCE(107); END_STATE(); case 13: - if (lookahead == 'c') ADVANCE(15); + if (lookahead == 'c') ADVANCE(21); END_STATE(); case 14: - if (lookahead == 'd') ADVANCE(107); + if (lookahead == 'c') ADVANCE(16); END_STATE(); case 15: - if (lookahead == 'e') ADVANCE(107); + if (lookahead == 'd') ADVANCE(107); END_STATE(); case 16: - if (lookahead == 'e') ADVANCE(14); + if (lookahead == 'e') ADVANCE(107); END_STATE(); case 17: - if (lookahead == 'e') ADVANCE(16); + if (lookahead == 'e') ADVANCE(15); END_STATE(); case 18: - if (lookahead == 'f') ADVANCE(17); + if (lookahead == 'e') ADVANCE(17); END_STATE(); case 19: - if (lookahead == 'i') ADVANCE(24); + if (lookahead == 'f') ADVANCE(18); END_STATE(); case 20: - if (lookahead == 'k') ADVANCE(28); + if (lookahead == 'i') ADVANCE(25); END_STATE(); case 21: - if (lookahead == 'l') ADVANCE(19); + if (lookahead == 'k') ADVANCE(29); END_STATE(); case 22: - if (lookahead == 'm') ADVANCE(18); + if (lookahead == 'l') ADVANCE(20); END_STATE(); case 23: - if (lookahead == 'n') ADVANCE(107); + if (lookahead == 'm') ADVANCE(19); END_STATE(); case 24: - if (lookahead == 'n') ADVANCE(15); + if (lookahead == 'n') ADVANCE(107); END_STATE(); case 25: - if (lookahead == 'p') ADVANCE(10); + if (lookahead == 'n') ADVANCE(16); END_STATE(); case 26: - if (lookahead == 'r') ADVANCE(22); + if (lookahead == 'p') ADVANCE(10); END_STATE(); case 27: if (lookahead == 'r') ADVANCE(23); END_STATE(); case 28: - if (lookahead == 's') ADVANCE(25); + if (lookahead == 'r') ADVANCE(24); END_STATE(); case 29: - if (lookahead == 't') ADVANCE(30); + if (lookahead == 's') ADVANCE(26); END_STATE(); case 30: - if (lookahead == 'u') ADVANCE(27); + if (lookahead == 't') ADVANCE(31); END_STATE(); case 31: - if (lookahead == 'w') ADVANCE(21); + if (lookahead == 'u') ADVANCE(28); END_STATE(); case 32: + if (lookahead == 'w') ADVANCE(22); + END_STATE(); + case 33: if (lookahead == '+' || - lookahead == '-') ADVANCE(34); + lookahead == '-') ADVANCE(35); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(71); END_STATE(); - case 33: + case 34: if (('0' <= lookahead && lookahead <= '9')) ADVANCE(73); END_STATE(); - case 34: + case 35: if (('0' <= lookahead && lookahead <= '9')) ADVANCE(71); END_STATE(); - case 35: + case 36: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || ('a' <= lookahead && lookahead <= 'f')) ADVANCE(107); END_STATE(); - case 36: + case 37: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || ('a' <= lookahead && lookahead <= 'f')) ADVANCE(72); END_STATE(); - case 37: + case 38: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(35); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(36); END_STATE(); - case 38: + case 39: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(37); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(38); END_STATE(); - case 39: + case 40: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(74); END_STATE(); - case 40: - if (!aux_sym__kwd_leading_slash_token1_character_set_1(lookahead)) ADVANCE(99); - END_STATE(); case 41: - if (!aux_sym__kwd_leading_slash_token1_character_set_1(lookahead)) ADVANCE(135); + if ((!eof && set_contains(aux_sym__kwd_leading_slash_token1_character_set_1, 18, lookahead))) ADVANCE(99); END_STATE(); case 42: - if (lookahead != 0 && - lookahead != 'b' && - lookahead != 'f' && - lookahead != 'n' && - lookahead != 'o' && - (lookahead < 'r' || 'u' < lookahead)) ADVANCE(107); - if (lookahead == 'b') ADVANCE(108); - if (lookahead == 'f') ADVANCE(112); - if (lookahead == 'n') ADVANCE(110); - if (lookahead == 'o') ADVANCE(116); - if (lookahead == 'r') ADVANCE(111); - if (lookahead == 's') ADVANCE(113); - if (lookahead == 't') ADVANCE(109); - if (lookahead == 'u') ADVANCE(117); + if ((!eof && set_contains(aux_sym__kwd_leading_slash_token1_character_set_1, 18, lookahead))) ADVANCE(135); END_STATE(); case 43: if (lookahead != 0 && @@ -2222,31 +1635,33 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 44: if (eof) ADVANCE(45); - if (lookahead == '"') ADVANCE(2); - if (lookahead == '#') ADVANCE(144); - if (lookahead == '\'') ADVANCE(160); - if (lookahead == '(') ADVANCE(138); - if (lookahead == ')') ADVANCE(139); - if (lookahead == '/') ADVANCE(75); - if (lookahead == '0') ADVANCE(61); - if (lookahead == ':') ADVANCE(102); - if (lookahead == ';') ADVANCE(50); - if (lookahead == '@') ADVANCE(159); - if (lookahead == '[') ADVANCE(142); - if (lookahead == '\\') ADVANCE(42); - if (lookahead == ']') ADVANCE(143); - if (lookahead == '^') ADVANCE(136); - if (lookahead == '`') ADVANCE(162); - if (lookahead == 'f') ADVANCE(122); - if (lookahead == 'n') ADVANCE(124); - if (lookahead == 't') ADVANCE(127); - if (lookahead == '{') ADVANCE(140); - if (lookahead == '}') ADVANCE(141); - if (lookahead == '~') ADVANCE(164); - if (lookahead == '+' || - lookahead == '-') ADVANCE(121); + ADVANCE_MAP( + '"', 2, + '#', 144, + '\'', 160, + '(', 138, + ')', 139, + '/', 75, + '0', 61, + ':', 103, + ';', 50, + '@', 159, + '[', 142, + '\\', 11, + ']', 143, + '^', 136, + '`', 162, + 'f', 122, + 'n', 124, + 't', 127, + '{', 140, + '}', 141, + '~', 164, + '+', 121, + '-', 121, + ); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(63); - if (sym__ws_character_set_1(lookahead)) ADVANCE(46); + if (set_contains(sym__ws_character_set_1, 9, lookahead)) ADVANCE(46); if (lookahead != 0) ADVANCE(134); END_STATE(); case 45: @@ -2254,7 +1669,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 46: ACCEPT_TOKEN(sym__ws); - if (sym__ws_character_set_1(lookahead)) ADVANCE(46); + if (set_contains(sym__ws_character_set_1, 9, lookahead)) ADVANCE(46); END_STATE(); case 47: ACCEPT_TOKEN(sym_comment); @@ -2262,14 +1677,35 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 48: ACCEPT_TOKEN(sym_comment); if (lookahead == '\n') ADVANCE(47); - if (!sym_comment_character_set_1(lookahead)) ADVANCE(48); - if (sym_comment_character_set_2(lookahead)) ADVANCE(50); + if (set_contains(sym__ws_character_set_1, 9, lookahead) || + lookahead == '"' || + lookahead == '(' || + lookahead == ')' || + lookahead == ';' || + lookahead == '@' || + ('[' <= lookahead && lookahead <= '^') || + lookahead == '`' || + lookahead == '{' || + lookahead == '}' || + lookahead == '~') ADVANCE(50); + if (lookahead != 0) ADVANCE(48); END_STATE(); case 49: ACCEPT_TOKEN(sym_comment); if (lookahead == '\n') ADVANCE(47); - if (!aux_sym__kwd_leading_slash_token1_character_set_1(lookahead)) ADVANCE(49); - if (sym_comment_character_set_3(lookahead)) ADVANCE(50); + if (set_contains(sym__ws_character_set_1, 9, lookahead) || + lookahead == '"' || + lookahead == '(' || + lookahead == ')' || + lookahead == '/' || + lookahead == ';' || + lookahead == '@' || + ('[' <= lookahead && lookahead <= '^') || + lookahead == '`' || + lookahead == '{' || + lookahead == '}' || + lookahead == '~') ADVANCE(50); + if (lookahead != 0) ADVANCE(49); END_STATE(); case 50: ACCEPT_TOKEN(sym_comment); @@ -2281,202 +1717,218 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 52: ACCEPT_TOKEN(anon_sym_POUND_); - if (!sym_comment_character_set_1(lookahead)) ADVANCE(101); + if ((!eof && set_contains(aux_sym__kwd_qualified_token1_character_set_2, 19, lookahead))) ADVANCE(101); END_STATE(); case 53: ACCEPT_TOKEN(anon_sym_POUND_); - if (!aux_sym__kwd_leading_slash_token1_character_set_1(lookahead)) ADVANCE(99); + if ((!eof && set_contains(aux_sym__kwd_leading_slash_token1_character_set_1, 18, lookahead))) ADVANCE(99); END_STATE(); case 54: ACCEPT_TOKEN(sym_num_lit); END_STATE(); case 55: ACCEPT_TOKEN(sym_num_lit); - if (lookahead == '.') ADVANCE(67); - if (lookahead == '/') ADVANCE(88); - if (lookahead == 'M' || - lookahead == 'N') ADVANCE(54); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(85); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(81); - if (lookahead == 'X' || - lookahead == 'x') ADVANCE(83); - if (lookahead == '8' || - lookahead == '9') ADVANCE(57); + ADVANCE_MAP( + '.', 67, + '/', 95, + 'E', 94, + 'e', 94, + 'R', 98, + 'r', 98, + 'X', 97, + 'x', 97, + '8', 57, + '9', 57, + 'M', 54, + 'N', 54, + ); if (('0' <= lookahead && lookahead <= '7')) ADVANCE(56); END_STATE(); case 56: ACCEPT_TOKEN(sym_num_lit); - if (lookahead == '.') ADVANCE(67); - if (lookahead == '/') ADVANCE(88); - if (lookahead == 'M' || - lookahead == 'N') ADVANCE(54); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(85); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(81); - if (lookahead == '8' || - lookahead == '9') ADVANCE(57); + ADVANCE_MAP( + '.', 67, + '/', 95, + 'E', 94, + 'e', 94, + 'R', 98, + 'r', 98, + '8', 57, + '9', 57, + 'M', 54, + 'N', 54, + ); if (('0' <= lookahead && lookahead <= '7')) ADVANCE(56); END_STATE(); case 57: ACCEPT_TOKEN(sym_num_lit); if (lookahead == '.') ADVANCE(67); - if (lookahead == '/') ADVANCE(88); - if (lookahead == 'M' || - lookahead == 'N') ADVANCE(54); + if (lookahead == '/') ADVANCE(95); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(85); + lookahead == 'e') ADVANCE(94); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(81); + lookahead == 'r') ADVANCE(98); + if (lookahead == 'M' || + lookahead == 'N') ADVANCE(54); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(57); END_STATE(); case 58: ACCEPT_TOKEN(sym_num_lit); - if (lookahead == '.') ADVANCE(68); - if (lookahead == '/') ADVANCE(88); - if (lookahead == 'M' || - lookahead == 'N') ADVANCE(54); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(84); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(80); - if (lookahead == 'X' || - lookahead == 'x') ADVANCE(82); - if (lookahead == '8' || - lookahead == '9') ADVANCE(60); + ADVANCE_MAP( + '.', 68, + '/', 95, + 'E', 89, + 'e', 89, + 'R', 92, + 'r', 92, + 'X', 91, + 'x', 91, + '8', 60, + '9', 60, + 'M', 54, + 'N', 54, + ); if (('0' <= lookahead && lookahead <= '7')) ADVANCE(59); END_STATE(); case 59: ACCEPT_TOKEN(sym_num_lit); - if (lookahead == '.') ADVANCE(68); - if (lookahead == '/') ADVANCE(88); - if (lookahead == 'M' || - lookahead == 'N') ADVANCE(54); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(84); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(80); - if (lookahead == '8' || - lookahead == '9') ADVANCE(60); + ADVANCE_MAP( + '.', 68, + '/', 95, + 'E', 89, + 'e', 89, + 'R', 92, + 'r', 92, + '8', 60, + '9', 60, + 'M', 54, + 'N', 54, + ); if (('0' <= lookahead && lookahead <= '7')) ADVANCE(59); END_STATE(); case 60: ACCEPT_TOKEN(sym_num_lit); if (lookahead == '.') ADVANCE(68); - if (lookahead == '/') ADVANCE(88); - if (lookahead == 'M' || - lookahead == 'N') ADVANCE(54); + if (lookahead == '/') ADVANCE(95); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(84); + lookahead == 'e') ADVANCE(89); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(80); + lookahead == 'r') ADVANCE(92); + if (lookahead == 'M' || + lookahead == 'N') ADVANCE(54); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(60); END_STATE(); case 61: ACCEPT_TOKEN(sym_num_lit); - if (lookahead == '.') ADVANCE(69); - if (lookahead == '/') ADVANCE(33); - if (lookahead == 'M' || - lookahead == 'N') ADVANCE(54); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(32); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(39); - if (lookahead == 'X' || - lookahead == 'x') ADVANCE(36); - if (lookahead == '8' || - lookahead == '9') ADVANCE(63); + ADVANCE_MAP( + '.', 69, + '/', 34, + 'E', 33, + 'e', 33, + 'R', 40, + 'r', 40, + 'X', 37, + 'x', 37, + '8', 63, + '9', 63, + 'M', 54, + 'N', 54, + ); if (('0' <= lookahead && lookahead <= '7')) ADVANCE(62); END_STATE(); case 62: ACCEPT_TOKEN(sym_num_lit); - if (lookahead == '.') ADVANCE(69); - if (lookahead == '/') ADVANCE(33); - if (lookahead == 'M' || - lookahead == 'N') ADVANCE(54); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(32); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(39); - if (lookahead == '8' || - lookahead == '9') ADVANCE(63); + ADVANCE_MAP( + '.', 69, + '/', 34, + 'E', 33, + 'e', 33, + 'R', 40, + 'r', 40, + '8', 63, + '9', 63, + 'M', 54, + 'N', 54, + ); if (('0' <= lookahead && lookahead <= '7')) ADVANCE(62); END_STATE(); case 63: ACCEPT_TOKEN(sym_num_lit); if (lookahead == '.') ADVANCE(69); - if (lookahead == '/') ADVANCE(33); - if (lookahead == 'M' || - lookahead == 'N') ADVANCE(54); + if (lookahead == '/') ADVANCE(34); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(32); + lookahead == 'e') ADVANCE(33); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(39); + lookahead == 'r') ADVANCE(40); + if (lookahead == 'M' || + lookahead == 'N') ADVANCE(54); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(63); END_STATE(); case 64: ACCEPT_TOKEN(sym_num_lit); - if (lookahead == '.') ADVANCE(70); - if (lookahead == '/') ADVANCE(33); - if (lookahead == 'M' || - lookahead == 'N') ADVANCE(54); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(130); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(131); - if (lookahead == 'X' || - lookahead == 'x') ADVANCE(132); - if (lookahead == '8' || - lookahead == '9') ADVANCE(66); + ADVANCE_MAP( + '.', 70, + '/', 34, + 'E', 130, + 'e', 130, + 'R', 133, + 'r', 133, + 'X', 132, + 'x', 132, + '8', 66, + '9', 66, + 'M', 54, + 'N', 54, + ); if (('0' <= lookahead && lookahead <= '7')) ADVANCE(65); END_STATE(); case 65: ACCEPT_TOKEN(sym_num_lit); - if (lookahead == '.') ADVANCE(70); - if (lookahead == '/') ADVANCE(33); - if (lookahead == 'M' || - lookahead == 'N') ADVANCE(54); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(130); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(131); - if (lookahead == '8' || - lookahead == '9') ADVANCE(66); + ADVANCE_MAP( + '.', 70, + '/', 34, + 'E', 130, + 'e', 130, + 'R', 133, + 'r', 133, + '8', 66, + '9', 66, + 'M', 54, + 'N', 54, + ); if (('0' <= lookahead && lookahead <= '7')) ADVANCE(65); END_STATE(); case 66: ACCEPT_TOKEN(sym_num_lit); if (lookahead == '.') ADVANCE(70); - if (lookahead == '/') ADVANCE(33); - if (lookahead == 'M' || - lookahead == 'N') ADVANCE(54); + if (lookahead == '/') ADVANCE(34); if (lookahead == 'E' || lookahead == 'e') ADVANCE(130); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(131); + lookahead == 'r') ADVANCE(133); + if (lookahead == 'M' || + lookahead == 'N') ADVANCE(54); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(66); END_STATE(); case 67: ACCEPT_TOKEN(sym_num_lit); if (lookahead == 'M') ADVANCE(54); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(85); + lookahead == 'e') ADVANCE(94); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(67); END_STATE(); case 68: ACCEPT_TOKEN(sym_num_lit); if (lookahead == 'M') ADVANCE(54); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(84); + lookahead == 'e') ADVANCE(89); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(68); END_STATE(); case 69: ACCEPT_TOKEN(sym_num_lit); if (lookahead == 'M') ADVANCE(54); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(32); + lookahead == 'e') ADVANCE(33); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(69); END_STATE(); case 70: @@ -2513,179 +1965,179 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 76: ACCEPT_TOKEN(anon_sym_SLASH); - if (!aux_sym__kwd_leading_slash_token1_character_set_1(lookahead)) ADVANCE(99); + if ((!eof && set_contains(aux_sym__kwd_leading_slash_token1_character_set_1, 18, lookahead))) ADVANCE(99); END_STATE(); case 77: ACCEPT_TOKEN(aux_sym__kwd_leading_slash_token1); - if (lookahead == '!') ADVANCE(49); - if (!aux_sym__kwd_leading_slash_token1_character_set_2(lookahead)) ADVANCE(99); - if (lookahead == '?') ADVANCE(150); + if (lookahead == '!') ADVANCE(48); + if (lookahead == '?') ADVANCE(151); if (lookahead == '^') ADVANCE(137); if (lookahead == '_') ADVANCE(53); + if ((!eof && set_contains(aux_sym__kwd_leading_slash_token1_character_set_1, 18, lookahead))) ADVANCE(99); END_STATE(); case 78: ACCEPT_TOKEN(aux_sym__kwd_leading_slash_token1); - if (lookahead == '!') ADVANCE(49); - if (!aux_sym__kwd_leading_slash_token1_character_set_3(lookahead)) ADVANCE(99); + if (lookahead == '!') ADVANCE(48); if (lookahead == '^') ADVANCE(137); if (lookahead == '_') ADVANCE(53); + if ((!eof && set_contains(aux_sym__kwd_leading_slash_token1_character_set_1, 18, lookahead))) ADVANCE(99); END_STATE(); case 79: ACCEPT_TOKEN(aux_sym__kwd_leading_slash_token1); - if (lookahead == '!') ADVANCE(49); - if (!aux_sym__kwd_leading_slash_token1_character_set_3(lookahead)) ADVANCE(99); + if (lookahead == '!') ADVANCE(48); if (lookahead == '_') ADVANCE(53); + if ((!eof && set_contains(aux_sym__kwd_leading_slash_token1_character_set_1, 18, lookahead))) ADVANCE(99); END_STATE(); case 80: ACCEPT_TOKEN(aux_sym__kwd_leading_slash_token1); - if (!aux_sym__kwd_leading_slash_token1_character_set_4(lookahead)) ADVANCE(98); if (lookahead == '/') ADVANCE(99); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(74); + if (lookahead == '0') ADVANCE(58); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(60); + if ((!eof && set_contains(aux_sym__kwd_qualified_token1_character_set_2, 19, lookahead))) ADVANCE(93); END_STATE(); case 81: ACCEPT_TOKEN(aux_sym__kwd_leading_slash_token1); - if (!aux_sym__kwd_leading_slash_token1_character_set_5(lookahead)) ADVANCE(99); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(74); + if (lookahead == '/') ADVANCE(99); + if (lookahead == 'a') ADVANCE(84); + if ((!eof && set_contains(aux_sym__kwd_qualified_token1_character_set_2, 19, lookahead))) ADVANCE(93); END_STATE(); case 82: ACCEPT_TOKEN(aux_sym__kwd_leading_slash_token1); - if (!aux_sym__kwd_leading_slash_token1_character_set_6(lookahead)) ADVANCE(98); if (lookahead == '/') ADVANCE(99); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(72); + if (lookahead == 'e') ADVANCE(93); + if ((!eof && set_contains(aux_sym__kwd_qualified_token1_character_set_2, 19, lookahead))) ADVANCE(93); END_STATE(); case 83: ACCEPT_TOKEN(aux_sym__kwd_leading_slash_token1); - if (!aux_sym__kwd_leading_slash_token1_character_set_7(lookahead)) ADVANCE(99); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(72); + if (lookahead == '/') ADVANCE(99); + if (lookahead == 'i') ADVANCE(85); + if ((!eof && set_contains(aux_sym__kwd_qualified_token1_character_set_2, 19, lookahead))) ADVANCE(93); END_STATE(); case 84: ACCEPT_TOKEN(aux_sym__kwd_leading_slash_token1); - if (!aux_sym__kwd_leading_slash_token1_character_set_8(lookahead)) ADVANCE(98); if (lookahead == '/') ADVANCE(99); - if (lookahead == '+' || - lookahead == '-') ADVANCE(87); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(71); + if (lookahead == 'l') ADVANCE(87); + if ((!eof && set_contains(aux_sym__kwd_qualified_token1_character_set_2, 19, lookahead))) ADVANCE(93); END_STATE(); case 85: ACCEPT_TOKEN(aux_sym__kwd_leading_slash_token1); - if (!aux_sym__kwd_leading_slash_token1_character_set_9(lookahead)) ADVANCE(99); - if (lookahead == '+' || - lookahead == '-') ADVANCE(89); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(71); + if (lookahead == '/') ADVANCE(99); + if (lookahead == 'l') ADVANCE(118); + if ((!eof && set_contains(aux_sym__kwd_qualified_token1_character_set_2, 19, lookahead))) ADVANCE(93); END_STATE(); case 86: ACCEPT_TOKEN(aux_sym__kwd_leading_slash_token1); - if (!aux_sym__kwd_leading_slash_token1_character_set_10(lookahead)) ADVANCE(98); if (lookahead == '/') ADVANCE(99); - if (lookahead == '0') ADVANCE(58); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(60); + if (lookahead == 'r') ADVANCE(88); + if ((!eof && set_contains(aux_sym__kwd_qualified_token1_character_set_2, 19, lookahead))) ADVANCE(93); END_STATE(); case 87: ACCEPT_TOKEN(aux_sym__kwd_leading_slash_token1); - if (!aux_sym__kwd_leading_slash_token1_character_set_10(lookahead)) ADVANCE(98); if (lookahead == '/') ADVANCE(99); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(71); + if (lookahead == 's') ADVANCE(82); + if ((!eof && set_contains(aux_sym__kwd_qualified_token1_character_set_2, 19, lookahead))) ADVANCE(93); END_STATE(); case 88: ACCEPT_TOKEN(aux_sym__kwd_leading_slash_token1); - if (!aux_sym__kwd_leading_slash_token1_character_set_11(lookahead)) ADVANCE(99); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(73); + if (lookahead == '/') ADVANCE(99); + if (lookahead == 'u') ADVANCE(82); + if ((!eof && set_contains(aux_sym__kwd_qualified_token1_character_set_2, 19, lookahead))) ADVANCE(93); END_STATE(); case 89: ACCEPT_TOKEN(aux_sym__kwd_leading_slash_token1); - if (!aux_sym__kwd_leading_slash_token1_character_set_11(lookahead)) ADVANCE(99); + if (lookahead == '/') ADVANCE(99); + if (lookahead == '+' || + lookahead == '-') ADVANCE(90); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(71); + if ((!eof && set_contains(aux_sym__kwd_qualified_token1_character_set_2, 19, lookahead))) ADVANCE(93); END_STATE(); case 90: ACCEPT_TOKEN(aux_sym__kwd_leading_slash_token1); - if (!aux_sym__kwd_leading_slash_token1_character_set_12(lookahead)) ADVANCE(98); if (lookahead == '/') ADVANCE(99); - if (lookahead == 'e') ADVANCE(98); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(71); + if ((!eof && set_contains(aux_sym__kwd_qualified_token1_character_set_2, 19, lookahead))) ADVANCE(93); END_STATE(); case 91: ACCEPT_TOKEN(aux_sym__kwd_leading_slash_token1); - if (!aux_sym__kwd_leading_slash_token1_character_set_13(lookahead)) ADVANCE(98); if (lookahead == '/') ADVANCE(99); - if (lookahead == 'i') ADVANCE(93); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(72); + if ((!eof && set_contains(aux_sym__kwd_qualified_token1_character_set_2, 19, lookahead))) ADVANCE(93); END_STATE(); case 92: ACCEPT_TOKEN(aux_sym__kwd_leading_slash_token1); - if (!aux_sym__kwd_leading_slash_token1_character_set_14(lookahead)) ADVANCE(98); if (lookahead == '/') ADVANCE(99); - if (lookahead == 'l') ADVANCE(95); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(74); + if ((!eof && set_contains(aux_sym__kwd_qualified_token1_character_set_2, 19, lookahead))) ADVANCE(93); END_STATE(); case 93: ACCEPT_TOKEN(aux_sym__kwd_leading_slash_token1); - if (!aux_sym__kwd_leading_slash_token1_character_set_14(lookahead)) ADVANCE(98); if (lookahead == '/') ADVANCE(99); - if (lookahead == 'l') ADVANCE(118); + if ((!eof && set_contains(aux_sym__kwd_qualified_token1_character_set_2, 19, lookahead))) ADVANCE(93); END_STATE(); case 94: ACCEPT_TOKEN(aux_sym__kwd_leading_slash_token1); - if (!aux_sym__kwd_leading_slash_token1_character_set_15(lookahead)) ADVANCE(98); - if (lookahead == '/') ADVANCE(99); - if (lookahead == 'r') ADVANCE(96); + if (lookahead == '+' || + lookahead == '-') ADVANCE(96); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(71); + if ((!eof && set_contains(aux_sym__kwd_leading_slash_token1_character_set_1, 18, lookahead))) ADVANCE(99); END_STATE(); case 95: ACCEPT_TOKEN(aux_sym__kwd_leading_slash_token1); - if (!aux_sym__kwd_leading_slash_token1_character_set_16(lookahead)) ADVANCE(98); - if (lookahead == '/') ADVANCE(99); - if (lookahead == 's') ADVANCE(90); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(73); + if ((!eof && set_contains(aux_sym__kwd_leading_slash_token1_character_set_1, 18, lookahead))) ADVANCE(99); END_STATE(); case 96: ACCEPT_TOKEN(aux_sym__kwd_leading_slash_token1); - if (!aux_sym__kwd_leading_slash_token1_character_set_17(lookahead)) ADVANCE(98); - if (lookahead == '/') ADVANCE(99); - if (lookahead == 'u') ADVANCE(90); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(71); + if ((!eof && set_contains(aux_sym__kwd_leading_slash_token1_character_set_1, 18, lookahead))) ADVANCE(99); END_STATE(); case 97: ACCEPT_TOKEN(aux_sym__kwd_leading_slash_token1); - if (!aux_sym__kwd_leading_slash_token1_character_set_18(lookahead)) ADVANCE(98); - if (lookahead == '/') ADVANCE(99); - if (lookahead == 'a') ADVANCE(92); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(72); + if ((!eof && set_contains(aux_sym__kwd_leading_slash_token1_character_set_1, 18, lookahead))) ADVANCE(99); END_STATE(); case 98: ACCEPT_TOKEN(aux_sym__kwd_leading_slash_token1); - if (!sym_comment_character_set_1(lookahead)) ADVANCE(98); - if (lookahead == '/') ADVANCE(99); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(74); + if ((!eof && set_contains(aux_sym__kwd_leading_slash_token1_character_set_1, 18, lookahead))) ADVANCE(99); END_STATE(); case 99: ACCEPT_TOKEN(aux_sym__kwd_leading_slash_token1); - if (!aux_sym__kwd_leading_slash_token1_character_set_1(lookahead)) ADVANCE(99); + if ((!eof && set_contains(aux_sym__kwd_leading_slash_token1_character_set_1, 18, lookahead))) ADVANCE(99); END_STATE(); case 100: ACCEPT_TOKEN(aux_sym__kwd_qualified_token1); - if (lookahead == '!') ADVANCE(48); - if (!aux_sym__kwd_qualified_token1_character_set_2(lookahead)) ADVANCE(101); + if (lookahead == '!') ADVANCE(49); if (lookahead == '_') ADVANCE(52); + if ((!eof && set_contains(aux_sym__kwd_qualified_token1_character_set_2, 19, lookahead))) ADVANCE(101); END_STATE(); case 101: ACCEPT_TOKEN(aux_sym__kwd_qualified_token1); - if (!sym_comment_character_set_1(lookahead)) ADVANCE(101); + if ((!eof && set_contains(aux_sym__kwd_qualified_token1_character_set_2, 19, lookahead))) ADVANCE(101); END_STATE(); case 102: ACCEPT_TOKEN(anon_sym_COLON); - if (lookahead == ':') ADVANCE(104); + if (lookahead == ':') ADVANCE(105); + if ((!eof && set_contains(aux_sym__kwd_leading_slash_token1_character_set_1, 18, lookahead))) ADVANCE(99); END_STATE(); case 103: ACCEPT_TOKEN(anon_sym_COLON); - if (!aux_sym__kwd_qualified_token1_character_set_1(lookahead)) ADVANCE(99); - if (lookahead == ':') ADVANCE(105); + if (lookahead == ':') ADVANCE(104); END_STATE(); case 104: ACCEPT_TOKEN(anon_sym_COLON_COLON); END_STATE(); case 105: ACCEPT_TOKEN(anon_sym_COLON_COLON); - if (!aux_sym__kwd_leading_slash_token1_character_set_1(lookahead)) ADVANCE(99); + if ((!eof && set_contains(aux_sym__kwd_leading_slash_token1_character_set_1, 18, lookahead))) ADVANCE(99); END_STATE(); case 106: ACCEPT_TOKEN(aux_sym_str_lit_token1); @@ -2695,23 +2147,23 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 108: ACCEPT_TOKEN(sym_char_lit); - if (lookahead == 'a') ADVANCE(12); + if (lookahead == 'a') ADVANCE(13); END_STATE(); case 109: ACCEPT_TOKEN(sym_char_lit); - if (lookahead == 'a') ADVANCE(11); + if (lookahead == 'a') ADVANCE(12); END_STATE(); case 110: ACCEPT_TOKEN(sym_char_lit); - if (lookahead == 'e') ADVANCE(31); + if (lookahead == 'e') ADVANCE(32); END_STATE(); case 111: ACCEPT_TOKEN(sym_char_lit); - if (lookahead == 'e') ADVANCE(29); + if (lookahead == 'e') ADVANCE(30); END_STATE(); case 112: ACCEPT_TOKEN(sym_char_lit); - if (lookahead == 'o') ADVANCE(26); + if (lookahead == 'o') ADVANCE(27); END_STATE(); case 113: ACCEPT_TOKEN(sym_char_lit); @@ -2733,100 +2185,100 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym_char_lit); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(38); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(39); END_STATE(); case 118: ACCEPT_TOKEN(sym_nil_lit); - if (!sym_comment_character_set_1(lookahead)) ADVANCE(98); if (lookahead == '/') ADVANCE(99); + if ((!eof && set_contains(aux_sym__kwd_qualified_token1_character_set_2, 19, lookahead))) ADVANCE(93); END_STATE(); case 119: ACCEPT_TOKEN(sym_nil_lit); - if (!sym_comment_character_set_1(lookahead)) ADVANCE(134); + if ((!eof && set_contains(aux_sym__kwd_qualified_token1_character_set_2, 19, lookahead))) ADVANCE(134); END_STATE(); case 120: ACCEPT_TOKEN(sym_bool_lit); - if (!sym_comment_character_set_1(lookahead)) ADVANCE(134); + if ((!eof && set_contains(aux_sym__kwd_qualified_token1_character_set_2, 19, lookahead))) ADVANCE(134); END_STATE(); case 121: ACCEPT_TOKEN(aux_sym__sym_qualified_token1); if (lookahead == '0') ADVANCE(64); - if (!aux_sym__kwd_leading_slash_token1_character_set_10(lookahead)) ADVANCE(134); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(66); + if ((!eof && set_contains(aux_sym__kwd_qualified_token1_character_set_2, 19, lookahead))) ADVANCE(134); END_STATE(); case 122: ACCEPT_TOKEN(aux_sym__sym_qualified_token1); if (lookahead == 'a') ADVANCE(125); - if (!sym_comment_character_set_1(lookahead)) ADVANCE(134); + if ((!eof && set_contains(aux_sym__kwd_qualified_token1_character_set_2, 19, lookahead))) ADVANCE(134); END_STATE(); case 123: ACCEPT_TOKEN(aux_sym__sym_qualified_token1); if (lookahead == 'e') ADVANCE(120); - if (!sym_comment_character_set_1(lookahead)) ADVANCE(134); + if ((!eof && set_contains(aux_sym__kwd_qualified_token1_character_set_2, 19, lookahead))) ADVANCE(134); END_STATE(); case 124: ACCEPT_TOKEN(aux_sym__sym_qualified_token1); if (lookahead == 'i') ADVANCE(126); - if (!sym_comment_character_set_1(lookahead)) ADVANCE(134); + if ((!eof && set_contains(aux_sym__kwd_qualified_token1_character_set_2, 19, lookahead))) ADVANCE(134); END_STATE(); case 125: ACCEPT_TOKEN(aux_sym__sym_qualified_token1); if (lookahead == 'l') ADVANCE(128); - if (!sym_comment_character_set_1(lookahead)) ADVANCE(134); + if ((!eof && set_contains(aux_sym__kwd_qualified_token1_character_set_2, 19, lookahead))) ADVANCE(134); END_STATE(); case 126: ACCEPT_TOKEN(aux_sym__sym_qualified_token1); if (lookahead == 'l') ADVANCE(119); - if (!sym_comment_character_set_1(lookahead)) ADVANCE(134); + if ((!eof && set_contains(aux_sym__kwd_qualified_token1_character_set_2, 19, lookahead))) ADVANCE(134); END_STATE(); case 127: ACCEPT_TOKEN(aux_sym__sym_qualified_token1); if (lookahead == 'r') ADVANCE(129); - if (!sym_comment_character_set_1(lookahead)) ADVANCE(134); + if ((!eof && set_contains(aux_sym__kwd_qualified_token1_character_set_2, 19, lookahead))) ADVANCE(134); END_STATE(); case 128: ACCEPT_TOKEN(aux_sym__sym_qualified_token1); if (lookahead == 's') ADVANCE(123); - if (!sym_comment_character_set_1(lookahead)) ADVANCE(134); + if ((!eof && set_contains(aux_sym__kwd_qualified_token1_character_set_2, 19, lookahead))) ADVANCE(134); END_STATE(); case 129: ACCEPT_TOKEN(aux_sym__sym_qualified_token1); if (lookahead == 'u') ADVANCE(123); - if (!sym_comment_character_set_1(lookahead)) ADVANCE(134); + if ((!eof && set_contains(aux_sym__kwd_qualified_token1_character_set_2, 19, lookahead))) ADVANCE(134); END_STATE(); case 130: ACCEPT_TOKEN(aux_sym__sym_qualified_token1); if (lookahead == '+' || - lookahead == '-') ADVANCE(133); - if (!aux_sym__kwd_leading_slash_token1_character_set_10(lookahead)) ADVANCE(134); + lookahead == '-') ADVANCE(131); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(71); + if ((!eof && set_contains(aux_sym__kwd_qualified_token1_character_set_2, 19, lookahead))) ADVANCE(134); END_STATE(); case 131: ACCEPT_TOKEN(aux_sym__sym_qualified_token1); - if (!aux_sym__kwd_leading_slash_token1_character_set_4(lookahead)) ADVANCE(134); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(74); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(71); + if ((!eof && set_contains(aux_sym__kwd_qualified_token1_character_set_2, 19, lookahead))) ADVANCE(134); END_STATE(); case 132: ACCEPT_TOKEN(aux_sym__sym_qualified_token1); - if (!aux_sym__kwd_leading_slash_token1_character_set_6(lookahead)) ADVANCE(134); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || ('a' <= lookahead && lookahead <= 'f')) ADVANCE(72); + if ((!eof && set_contains(aux_sym__kwd_qualified_token1_character_set_2, 19, lookahead))) ADVANCE(134); END_STATE(); case 133: ACCEPT_TOKEN(aux_sym__sym_qualified_token1); - if (!aux_sym__kwd_leading_slash_token1_character_set_10(lookahead)) ADVANCE(134); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(71); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(74); + if ((!eof && set_contains(aux_sym__kwd_qualified_token1_character_set_2, 19, lookahead))) ADVANCE(134); END_STATE(); case 134: ACCEPT_TOKEN(aux_sym__sym_qualified_token1); - if (!sym_comment_character_set_1(lookahead)) ADVANCE(134); + if ((!eof && set_contains(aux_sym__kwd_qualified_token1_character_set_2, 19, lookahead))) ADVANCE(134); END_STATE(); case 135: ACCEPT_TOKEN(aux_sym__sym_qualified_token2); - if (!aux_sym__kwd_leading_slash_token1_character_set_1(lookahead)) ADVANCE(135); + if ((!eof && set_contains(aux_sym__kwd_leading_slash_token1_character_set_1, 18, lookahead))) ADVANCE(135); END_STATE(); case 136: ACCEPT_TOKEN(anon_sym_CARET); @@ -2873,24 +2325,24 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 146: ACCEPT_TOKEN(anon_sym_POUND); - if (lookahead == '!') ADVANCE(49); + if (lookahead == '!') ADVANCE(48); if (lookahead == '#') ADVANCE(156); if (lookahead == '\'') ADVANCE(154); if (lookahead == '=') ADVANCE(158); - if (lookahead == '?') ADVANCE(151); + if (lookahead == '?') ADVANCE(150); if (lookahead == '^') ADVANCE(137); if (lookahead == '_') ADVANCE(53); - if (!aux_sym__kwd_leading_slash_token1_character_set_3(lookahead)) ADVANCE(99); + if ((!eof && set_contains(aux_sym__kwd_leading_slash_token1_character_set_1, 18, lookahead))) ADVANCE(99); END_STATE(); case 147: ACCEPT_TOKEN(anon_sym_POUND); - if (lookahead == '!') ADVANCE(49); + if (lookahead == '!') ADVANCE(48); if (lookahead == '\'') ADVANCE(154); if (lookahead == '=') ADVANCE(158); - if (lookahead == '?') ADVANCE(151); + if (lookahead == '?') ADVANCE(150); if (lookahead == '^') ADVANCE(137); if (lookahead == '_') ADVANCE(53); - if (!aux_sym__kwd_leading_slash_token1_character_set_3(lookahead)) ADVANCE(99); + if ((!eof && set_contains(aux_sym__kwd_leading_slash_token1_character_set_1, 18, lookahead))) ADVANCE(99); END_STATE(); case 148: ACCEPT_TOKEN(anon_sym_POUND); @@ -2905,12 +2357,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 150: ACCEPT_TOKEN(anon_sym_POUND_QMARK); - if (!aux_sym__kwd_leading_slash_token1_character_set_1(lookahead)) ADVANCE(99); + if (lookahead == '@') ADVANCE(152); + if ((!eof && set_contains(aux_sym__kwd_leading_slash_token1_character_set_1, 18, lookahead))) ADVANCE(99); END_STATE(); case 151: ACCEPT_TOKEN(anon_sym_POUND_QMARK); - if (!aux_sym__kwd_leading_slash_token1_character_set_1(lookahead)) ADVANCE(99); - if (lookahead == '@') ADVANCE(152); + if ((!eof && set_contains(aux_sym__kwd_leading_slash_token1_character_set_1, 18, lookahead))) ADVANCE(99); END_STATE(); case 152: ACCEPT_TOKEN(anon_sym_POUND_QMARK_AT); @@ -2920,21 +2372,21 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 154: ACCEPT_TOKEN(anon_sym_POUND_SQUOTE); - if (!aux_sym__kwd_leading_slash_token1_character_set_1(lookahead)) ADVANCE(99); + if ((!eof && set_contains(aux_sym__kwd_leading_slash_token1_character_set_1, 18, lookahead))) ADVANCE(99); END_STATE(); case 155: ACCEPT_TOKEN(anon_sym_POUND_POUND); END_STATE(); case 156: ACCEPT_TOKEN(anon_sym_POUND_POUND); - if (!aux_sym__kwd_leading_slash_token1_character_set_1(lookahead)) ADVANCE(99); + if ((!eof && set_contains(aux_sym__kwd_leading_slash_token1_character_set_1, 18, lookahead))) ADVANCE(99); END_STATE(); case 157: ACCEPT_TOKEN(anon_sym_POUND_EQ); END_STATE(); case 158: ACCEPT_TOKEN(anon_sym_POUND_EQ); - if (!aux_sym__kwd_leading_slash_token1_character_set_1(lookahead)) ADVANCE(99); + if ((!eof && set_contains(aux_sym__kwd_leading_slash_token1_character_set_1, 18, lookahead))) ADVANCE(99); END_STATE(); case 159: ACCEPT_TOKEN(anon_sym_AT); @@ -2944,7 +2396,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 161: ACCEPT_TOKEN(anon_sym_SQUOTE); - if (!aux_sym__kwd_leading_slash_token1_character_set_1(lookahead)) ADVANCE(99); + if ((!eof && set_contains(aux_sym__kwd_leading_slash_token1_character_set_1, 18, lookahead))) ADVANCE(99); END_STATE(); case 162: ACCEPT_TOKEN(anon_sym_BQUOTE); @@ -2961,7 +2413,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { } } -static const TSLexMode ts_lex_modes[STATE_COUNT] = { +static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [0] = {.lex_state = 0}, [1] = {.lex_state = 44}, [2] = {.lex_state = 44}, @@ -3285,8 +2737,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [320] = {.lex_state = 1}, [321] = {.lex_state = 1}, [322] = {.lex_state = 1}, - [323] = {.lex_state = 4}, - [324] = {.lex_state = 3}, + [323] = {.lex_state = 3}, + [324] = {.lex_state = 4}, [325] = {.lex_state = 1}, [326] = {.lex_state = 1}, [327] = {.lex_state = 1}, @@ -3405,24 +2857,24 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [440] = {.lex_state = 3}, [441] = {.lex_state = 3}, [442] = {.lex_state = 1}, - [443] = {.lex_state = 5}, - [444] = {.lex_state = 3}, + [443] = {.lex_state = 1}, + [444] = {.lex_state = 1}, [445] = {.lex_state = 1}, - [446] = {.lex_state = 1}, + [446] = {.lex_state = 5}, [447] = {.lex_state = 1}, - [448] = {.lex_state = 1}, - [449] = {.lex_state = 3}, - [450] = {.lex_state = 44}, + [448] = {.lex_state = 3}, + [449] = {.lex_state = 44}, + [450] = {.lex_state = 3}, [451] = {.lex_state = 44}, [452] = {.lex_state = 3}, [453] = {.lex_state = 44}, [454] = {.lex_state = 44}, - [455] = {.lex_state = 6}, + [455] = {.lex_state = 44}, [456] = {.lex_state = 44}, [457] = {.lex_state = 44}, [458] = {.lex_state = 44}, [459] = {.lex_state = 44}, - [460] = {.lex_state = 44}, + [460] = {.lex_state = 6}, [461] = {.lex_state = 44}, [462] = {.lex_state = 44}, [463] = {.lex_state = 44}, @@ -3451,17 +2903,17 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [486] = {.lex_state = 9}, [487] = {.lex_state = 9}, [488] = {.lex_state = 9}, - [489] = {.lex_state = 41}, - [490] = {.lex_state = 40}, - [491] = {.lex_state = 41}, + [489] = {.lex_state = 42}, + [490] = {.lex_state = 41}, + [491] = {.lex_state = 42}, [492] = {.lex_state = 41}, - [493] = {.lex_state = 0}, - [494] = {.lex_state = 40}, - [495] = {.lex_state = 41}, + [493] = {.lex_state = 42}, + [494] = {.lex_state = 42}, + [495] = {.lex_state = 0}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { - [0] = { + [STATE(0)] = { [ts_builtin_sym_end] = ACTIONS(1), [sym__ws] = ACTIONS(1), [sym_comment] = ACTIONS(1), @@ -3496,40 +2948,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE_AT] = ACTIONS(1), [anon_sym_TILDE] = ACTIONS(1), }, - [1] = { - [sym_source] = STATE(493), - [sym__gap] = STATE(19), - [sym_dis_expr] = STATE(19), - [sym__form] = STATE(19), - [sym_kwd_lit] = STATE(19), - [sym_str_lit] = STATE(19), - [sym_sym_lit] = STATE(19), + [STATE(1)] = { + [sym_source] = STATE(495), + [sym__gap] = STATE(6), + [sym_dis_expr] = STATE(6), + [sym__form] = STATE(6), + [sym_kwd_lit] = STATE(6), + [sym_str_lit] = STATE(6), + [sym_sym_lit] = STATE(6), [sym__metadata_lit] = STATE(424), - [sym_meta_lit] = STATE(314), - [sym_old_meta_lit] = STATE(313), - [sym_list_lit] = STATE(19), - [sym__bare_list_lit] = STATE(218), - [sym_map_lit] = STATE(19), - [sym__bare_map_lit] = STATE(219), - [sym_vec_lit] = STATE(19), - [sym__bare_vec_lit] = STATE(226), - [sym_set_lit] = STATE(19), - [sym__bare_set_lit] = STATE(227), - [sym_anon_fn_lit] = STATE(19), - [sym_regex_lit] = STATE(19), - [sym_read_cond_lit] = STATE(19), - [sym_splicing_read_cond_lit] = STATE(19), - [sym_ns_map_lit] = STATE(19), - [sym_var_quoting_lit] = STATE(19), - [sym_sym_val_lit] = STATE(19), - [sym_evaling_lit] = STATE(19), - [sym_tagged_or_ctor_lit] = STATE(19), - [sym_derefing_lit] = STATE(19), - [sym_quoting_lit] = STATE(19), - [sym_syn_quoting_lit] = STATE(19), - [sym_unquote_splicing_lit] = STATE(19), - [sym_unquoting_lit] = STATE(19), - [aux_sym_source_repeat1] = STATE(19), + [sym_meta_lit] = STATE(312), + [sym_old_meta_lit] = STATE(315), + [sym_list_lit] = STATE(6), + [sym__bare_list_lit] = STATE(299), + [sym_map_lit] = STATE(6), + [sym__bare_map_lit] = STATE(214), + [sym_vec_lit] = STATE(6), + [sym__bare_vec_lit] = STATE(217), + [sym_set_lit] = STATE(6), + [sym__bare_set_lit] = STATE(219), + [sym_anon_fn_lit] = STATE(6), + [sym_regex_lit] = STATE(6), + [sym_read_cond_lit] = STATE(6), + [sym_splicing_read_cond_lit] = STATE(6), + [sym_ns_map_lit] = STATE(6), + [sym_var_quoting_lit] = STATE(6), + [sym_sym_val_lit] = STATE(6), + [sym_evaling_lit] = STATE(6), + [sym_tagged_or_ctor_lit] = STATE(6), + [sym_derefing_lit] = STATE(6), + [sym_quoting_lit] = STATE(6), + [sym_syn_quoting_lit] = STATE(6), + [sym_unquote_splicing_lit] = STATE(6), + [sym_unquoting_lit] = STATE(6), + [aux_sym_source_repeat1] = STATE(6), [aux_sym_sym_lit_repeat1] = STATE(305), [ts_builtin_sym_end] = ACTIONS(3), [sym__ws] = ACTIONS(5), @@ -3561,7 +3013,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE_AT] = ACTIONS(49), [anon_sym_TILDE] = ACTIONS(51), }, - [2] = { + [STATE(2)] = { [sym__gap] = STATE(2), [sym_dis_expr] = STATE(2), [sym__form] = STATE(302), @@ -3569,16 +3021,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_str_lit] = STATE(302), [sym_sym_lit] = STATE(302), [sym__metadata_lit] = STATE(424), - [sym_meta_lit] = STATE(314), - [sym_old_meta_lit] = STATE(313), + [sym_meta_lit] = STATE(312), + [sym_old_meta_lit] = STATE(315), [sym_list_lit] = STATE(302), - [sym__bare_list_lit] = STATE(218), + [sym__bare_list_lit] = STATE(299), [sym_map_lit] = STATE(302), - [sym__bare_map_lit] = STATE(219), + [sym__bare_map_lit] = STATE(214), [sym_vec_lit] = STATE(302), - [sym__bare_vec_lit] = STATE(226), + [sym__bare_vec_lit] = STATE(217), [sym_set_lit] = STATE(302), - [sym__bare_set_lit] = STATE(227), + [sym__bare_set_lit] = STATE(219), [sym_anon_fn_lit] = STATE(302), [sym_regex_lit] = STATE(302), [sym_read_cond_lit] = STATE(302), @@ -3627,24 +3079,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE_AT] = ACTIONS(124), [anon_sym_TILDE] = ACTIONS(127), }, - [3] = { - [sym__gap] = STATE(2), - [sym_dis_expr] = STATE(2), + [STATE(3)] = { + [sym__gap] = STATE(7), + [sym_dis_expr] = STATE(7), [sym__form] = STATE(302), [sym_kwd_lit] = STATE(302), [sym_str_lit] = STATE(302), [sym_sym_lit] = STATE(302), [sym__metadata_lit] = STATE(424), - [sym_meta_lit] = STATE(314), - [sym_old_meta_lit] = STATE(313), + [sym_meta_lit] = STATE(312), + [sym_old_meta_lit] = STATE(315), [sym_list_lit] = STATE(302), - [sym__bare_list_lit] = STATE(218), + [sym__bare_list_lit] = STATE(299), [sym_map_lit] = STATE(302), - [sym__bare_map_lit] = STATE(219), + [sym__bare_map_lit] = STATE(214), [sym_vec_lit] = STATE(302), - [sym__bare_vec_lit] = STATE(226), + [sym__bare_vec_lit] = STATE(217), [sym_set_lit] = STATE(302), - [sym__bare_set_lit] = STATE(227), + [sym__bare_set_lit] = STATE(219), [sym_anon_fn_lit] = STATE(302), [sym_regex_lit] = STATE(302), [sym_read_cond_lit] = STATE(302), @@ -3660,7 +3112,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unquote_splicing_lit] = STATE(302), [sym_unquoting_lit] = STATE(302), [aux_sym_sym_lit_repeat1] = STATE(305), - [aux_sym__bare_list_lit_repeat1] = STATE(2), + [aux_sym__bare_list_lit_repeat1] = STATE(7), [sym__ws] = ACTIONS(130), [sym_comment] = ACTIONS(130), [anon_sym_POUND_] = ACTIONS(7), @@ -3691,24 +3143,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE_AT] = ACTIONS(49), [anon_sym_TILDE] = ACTIONS(51), }, - [4] = { - [sym__gap] = STATE(7), - [sym_dis_expr] = STATE(7), + [STATE(4)] = { + [sym__gap] = STATE(9), + [sym_dis_expr] = STATE(9), [sym__form] = STATE(302), [sym_kwd_lit] = STATE(302), [sym_str_lit] = STATE(302), [sym_sym_lit] = STATE(302), [sym__metadata_lit] = STATE(424), - [sym_meta_lit] = STATE(314), - [sym_old_meta_lit] = STATE(313), + [sym_meta_lit] = STATE(312), + [sym_old_meta_lit] = STATE(315), [sym_list_lit] = STATE(302), - [sym__bare_list_lit] = STATE(218), + [sym__bare_list_lit] = STATE(299), [sym_map_lit] = STATE(302), - [sym__bare_map_lit] = STATE(219), + [sym__bare_map_lit] = STATE(214), [sym_vec_lit] = STATE(302), - [sym__bare_vec_lit] = STATE(226), + [sym__bare_vec_lit] = STATE(217), [sym_set_lit] = STATE(302), - [sym__bare_set_lit] = STATE(227), + [sym__bare_set_lit] = STATE(219), [sym_anon_fn_lit] = STATE(302), [sym_regex_lit] = STATE(302), [sym_read_cond_lit] = STATE(302), @@ -3724,7 +3176,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unquote_splicing_lit] = STATE(302), [sym_unquoting_lit] = STATE(302), [aux_sym_sym_lit_repeat1] = STATE(305), - [aux_sym__bare_list_lit_repeat1] = STATE(7), + [aux_sym__bare_list_lit_repeat1] = STATE(9), [sym__ws] = ACTIONS(138), [sym_comment] = ACTIONS(138), [anon_sym_POUND_] = ACTIONS(7), @@ -3755,24 +3207,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE_AT] = ACTIONS(49), [anon_sym_TILDE] = ACTIONS(51), }, - [5] = { - [sym__gap] = STATE(2), - [sym_dis_expr] = STATE(2), + [STATE(5)] = { + [sym__gap] = STATE(8), + [sym_dis_expr] = STATE(8), [sym__form] = STATE(302), [sym_kwd_lit] = STATE(302), [sym_str_lit] = STATE(302), [sym_sym_lit] = STATE(302), [sym__metadata_lit] = STATE(424), - [sym_meta_lit] = STATE(314), - [sym_old_meta_lit] = STATE(313), + [sym_meta_lit] = STATE(312), + [sym_old_meta_lit] = STATE(315), [sym_list_lit] = STATE(302), - [sym__bare_list_lit] = STATE(218), + [sym__bare_list_lit] = STATE(299), [sym_map_lit] = STATE(302), - [sym__bare_map_lit] = STATE(219), + [sym__bare_map_lit] = STATE(214), [sym_vec_lit] = STATE(302), - [sym__bare_vec_lit] = STATE(226), + [sym__bare_vec_lit] = STATE(217), [sym_set_lit] = STATE(302), - [sym__bare_set_lit] = STATE(227), + [sym__bare_set_lit] = STATE(219), [sym_anon_fn_lit] = STATE(302), [sym_regex_lit] = STATE(302), [sym_read_cond_lit] = STATE(302), @@ -3788,9 +3240,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unquote_splicing_lit] = STATE(302), [sym_unquoting_lit] = STATE(302), [aux_sym_sym_lit_repeat1] = STATE(305), - [aux_sym__bare_list_lit_repeat1] = STATE(2), - [sym__ws] = ACTIONS(130), - [sym_comment] = ACTIONS(130), + [aux_sym__bare_list_lit_repeat1] = STATE(8), + [sym__ws] = ACTIONS(142), + [sym_comment] = ACTIONS(142), [anon_sym_POUND_] = ACTIONS(7), [sym_num_lit] = ACTIONS(132), [anon_sym_SLASH] = ACTIONS(9), @@ -3805,8 +3257,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND_CARET] = ACTIONS(23), [anon_sym_LPAREN] = ACTIONS(25), [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_RBRACE] = ACTIONS(144), + [anon_sym_LBRACK] = 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_TILDE_AT] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(51), + }, + [STATE(6)] = { + [sym__gap] = STATE(11), + [sym_dis_expr] = STATE(11), + [sym__form] = STATE(11), + [sym_kwd_lit] = STATE(11), + [sym_str_lit] = STATE(11), + [sym_sym_lit] = STATE(11), + [sym__metadata_lit] = STATE(424), + [sym_meta_lit] = STATE(312), + [sym_old_meta_lit] = STATE(315), + [sym_list_lit] = STATE(11), + [sym__bare_list_lit] = STATE(299), + [sym_map_lit] = STATE(11), + [sym__bare_map_lit] = STATE(214), + [sym_vec_lit] = STATE(11), + [sym__bare_vec_lit] = STATE(217), + [sym_set_lit] = STATE(11), + [sym__bare_set_lit] = STATE(219), + [sym_anon_fn_lit] = STATE(11), + [sym_regex_lit] = STATE(11), + [sym_read_cond_lit] = STATE(11), + [sym_splicing_read_cond_lit] = STATE(11), + [sym_ns_map_lit] = STATE(11), + [sym_var_quoting_lit] = STATE(11), + [sym_sym_val_lit] = STATE(11), + [sym_evaling_lit] = STATE(11), + [sym_tagged_or_ctor_lit] = STATE(11), + [sym_derefing_lit] = STATE(11), + [sym_quoting_lit] = STATE(11), + [sym_syn_quoting_lit] = STATE(11), + [sym_unquote_splicing_lit] = STATE(11), + [sym_unquoting_lit] = STATE(11), + [aux_sym_source_repeat1] = STATE(11), + [aux_sym_sym_lit_repeat1] = STATE(305), + [ts_builtin_sym_end] = ACTIONS(146), + [sym__ws] = ACTIONS(148), + [sym_comment] = ACTIONS(148), + [anon_sym_POUND_] = ACTIONS(7), + [sym_num_lit] = ACTIONS(148), + [anon_sym_SLASH] = ACTIONS(9), + [anon_sym_COLON] = ACTIONS(11), + [anon_sym_COLON_COLON] = ACTIONS(13), + [aux_sym_str_lit_token1] = ACTIONS(15), + [sym_char_lit] = ACTIONS(148), + [sym_nil_lit] = ACTIONS(150), + [sym_bool_lit] = ACTIONS(150), + [aux_sym__sym_qualified_token1] = ACTIONS(19), + [anon_sym_CARET] = ACTIONS(21), + [anon_sym_POUND_CARET] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(27), [anon_sym_LBRACK] = ACTIONS(29), - [anon_sym_RBRACK] = ACTIONS(142), [anon_sym_POUND] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), [anon_sym_POUND_QMARK_AT] = ACTIONS(35), @@ -3819,7 +3335,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE_AT] = ACTIONS(49), [anon_sym_TILDE] = ACTIONS(51), }, - [6] = { + [STATE(7)] = { [sym__gap] = STATE(2), [sym_dis_expr] = STATE(2), [sym__form] = STATE(302), @@ -3827,16 +3343,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_str_lit] = STATE(302), [sym_sym_lit] = STATE(302), [sym__metadata_lit] = STATE(424), - [sym_meta_lit] = STATE(314), - [sym_old_meta_lit] = STATE(313), + [sym_meta_lit] = STATE(312), + [sym_old_meta_lit] = STATE(315), [sym_list_lit] = STATE(302), - [sym__bare_list_lit] = STATE(218), + [sym__bare_list_lit] = STATE(299), [sym_map_lit] = STATE(302), - [sym__bare_map_lit] = STATE(219), + [sym__bare_map_lit] = STATE(214), [sym_vec_lit] = STATE(302), - [sym__bare_vec_lit] = STATE(226), + [sym__bare_vec_lit] = STATE(217), [sym_set_lit] = STATE(302), - [sym__bare_set_lit] = STATE(227), + [sym__bare_set_lit] = STATE(219), [sym_anon_fn_lit] = STATE(302), [sym_regex_lit] = STATE(302), [sym_read_cond_lit] = STATE(302), @@ -3853,8 +3369,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unquoting_lit] = STATE(302), [aux_sym_sym_lit_repeat1] = STATE(305), [aux_sym__bare_list_lit_repeat1] = STATE(2), - [sym__ws] = ACTIONS(130), - [sym_comment] = ACTIONS(130), + [sym__ws] = ACTIONS(152), + [sym_comment] = ACTIONS(152), [anon_sym_POUND_] = ACTIONS(7), [sym_num_lit] = ACTIONS(132), [anon_sym_SLASH] = ACTIONS(9), @@ -3868,8 +3384,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(21), [anon_sym_POUND_CARET] = ACTIONS(23), [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_RPAREN] = ACTIONS(154), [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(144), [anon_sym_LBRACK] = ACTIONS(29), [anon_sym_POUND] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -3883,7 +3399,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE_AT] = ACTIONS(49), [anon_sym_TILDE] = ACTIONS(51), }, - [7] = { + [STATE(8)] = { [sym__gap] = STATE(2), [sym_dis_expr] = STATE(2), [sym__form] = STATE(302), @@ -3891,16 +3407,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_str_lit] = STATE(302), [sym_sym_lit] = STATE(302), [sym__metadata_lit] = STATE(424), - [sym_meta_lit] = STATE(314), - [sym_old_meta_lit] = STATE(313), + [sym_meta_lit] = STATE(312), + [sym_old_meta_lit] = STATE(315), [sym_list_lit] = STATE(302), - [sym__bare_list_lit] = STATE(218), + [sym__bare_list_lit] = STATE(299), [sym_map_lit] = STATE(302), - [sym__bare_map_lit] = STATE(219), + [sym__bare_map_lit] = STATE(214), [sym_vec_lit] = STATE(302), - [sym__bare_vec_lit] = STATE(226), + [sym__bare_vec_lit] = STATE(217), [sym_set_lit] = STATE(302), - [sym__bare_set_lit] = STATE(227), + [sym__bare_set_lit] = STATE(219), [sym_anon_fn_lit] = STATE(302), [sym_regex_lit] = STATE(302), [sym_read_cond_lit] = STATE(302), @@ -3917,8 +3433,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unquoting_lit] = STATE(302), [aux_sym_sym_lit_repeat1] = STATE(305), [aux_sym__bare_list_lit_repeat1] = STATE(2), - [sym__ws] = ACTIONS(130), - [sym_comment] = ACTIONS(130), + [sym__ws] = ACTIONS(152), + [sym_comment] = ACTIONS(152), [anon_sym_POUND_] = ACTIONS(7), [sym_num_lit] = ACTIONS(132), [anon_sym_SLASH] = ACTIONS(9), @@ -3933,8 +3449,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND_CARET] = ACTIONS(23), [anon_sym_LPAREN] = ACTIONS(25), [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_RBRACE] = ACTIONS(156), [anon_sym_LBRACK] = ACTIONS(29), - [anon_sym_RBRACK] = ACTIONS(146), [anon_sym_POUND] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), [anon_sym_POUND_QMARK_AT] = ACTIONS(35), @@ -3947,24 +3463,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE_AT] = ACTIONS(49), [anon_sym_TILDE] = ACTIONS(51), }, - [8] = { - [sym__gap] = STATE(12), - [sym_dis_expr] = STATE(12), + [STATE(9)] = { + [sym__gap] = STATE(2), + [sym_dis_expr] = STATE(2), [sym__form] = STATE(302), [sym_kwd_lit] = STATE(302), [sym_str_lit] = STATE(302), [sym_sym_lit] = STATE(302), [sym__metadata_lit] = STATE(424), - [sym_meta_lit] = STATE(314), - [sym_old_meta_lit] = STATE(313), + [sym_meta_lit] = STATE(312), + [sym_old_meta_lit] = STATE(315), [sym_list_lit] = STATE(302), - [sym__bare_list_lit] = STATE(218), + [sym__bare_list_lit] = STATE(299), [sym_map_lit] = STATE(302), - [sym__bare_map_lit] = STATE(219), + [sym__bare_map_lit] = STATE(214), [sym_vec_lit] = STATE(302), - [sym__bare_vec_lit] = STATE(226), + [sym__bare_vec_lit] = STATE(217), [sym_set_lit] = STATE(302), - [sym__bare_set_lit] = STATE(227), + [sym__bare_set_lit] = STATE(219), [sym_anon_fn_lit] = STATE(302), [sym_regex_lit] = STATE(302), [sym_read_cond_lit] = STATE(302), @@ -3980,9 +3496,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unquote_splicing_lit] = STATE(302), [sym_unquoting_lit] = STATE(302), [aux_sym_sym_lit_repeat1] = STATE(305), - [aux_sym__bare_list_lit_repeat1] = STATE(12), - [sym__ws] = ACTIONS(148), - [sym_comment] = ACTIONS(148), + [aux_sym__bare_list_lit_repeat1] = STATE(2), + [sym__ws] = ACTIONS(152), + [sym_comment] = ACTIONS(152), [anon_sym_POUND_] = ACTIONS(7), [sym_num_lit] = ACTIONS(132), [anon_sym_SLASH] = ACTIONS(9), @@ -3997,8 +3513,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND_CARET] = ACTIONS(23), [anon_sym_LPAREN] = ACTIONS(25), [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(150), [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_RBRACK] = ACTIONS(158), [anon_sym_POUND] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), [anon_sym_POUND_QMARK_AT] = ACTIONS(35), @@ -4011,24 +3527,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE_AT] = ACTIONS(49), [anon_sym_TILDE] = ACTIONS(51), }, - [9] = { - [sym__gap] = STATE(16), - [sym_dis_expr] = STATE(16), + [STATE(10)] = { + [sym__gap] = STATE(12), + [sym_dis_expr] = STATE(12), [sym__form] = STATE(302), [sym_kwd_lit] = STATE(302), [sym_str_lit] = STATE(302), [sym_sym_lit] = STATE(302), [sym__metadata_lit] = STATE(424), - [sym_meta_lit] = STATE(314), - [sym_old_meta_lit] = STATE(313), + [sym_meta_lit] = STATE(312), + [sym_old_meta_lit] = STATE(315), [sym_list_lit] = STATE(302), - [sym__bare_list_lit] = STATE(218), + [sym__bare_list_lit] = STATE(299), [sym_map_lit] = STATE(302), - [sym__bare_map_lit] = STATE(219), + [sym__bare_map_lit] = STATE(214), [sym_vec_lit] = STATE(302), - [sym__bare_vec_lit] = STATE(226), + [sym__bare_vec_lit] = STATE(217), [sym_set_lit] = STATE(302), - [sym__bare_set_lit] = STATE(227), + [sym__bare_set_lit] = STATE(219), [sym_anon_fn_lit] = STATE(302), [sym_regex_lit] = STATE(302), [sym_read_cond_lit] = STATE(302), @@ -4044,9 +3560,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unquote_splicing_lit] = STATE(302), [sym_unquoting_lit] = STATE(302), [aux_sym_sym_lit_repeat1] = STATE(305), - [aux_sym__bare_list_lit_repeat1] = STATE(16), - [sym__ws] = ACTIONS(152), - [sym_comment] = ACTIONS(152), + [aux_sym__bare_list_lit_repeat1] = STATE(12), + [sym__ws] = ACTIONS(160), + [sym_comment] = ACTIONS(160), [anon_sym_POUND_] = ACTIONS(7), [sym_num_lit] = ACTIONS(132), [anon_sym_SLASH] = ACTIONS(9), @@ -4060,8 +3576,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(21), [anon_sym_POUND_CARET] = ACTIONS(23), [anon_sym_LPAREN] = ACTIONS(25), - [anon_sym_RPAREN] = ACTIONS(154), [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_RBRACE] = ACTIONS(162), [anon_sym_LBRACK] = ACTIONS(29), [anon_sym_POUND] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -4075,24 +3591,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE_AT] = ACTIONS(49), [anon_sym_TILDE] = ACTIONS(51), }, - [10] = { - [sym__gap] = STATE(18), - [sym_dis_expr] = STATE(18), + [STATE(11)] = { + [sym__gap] = STATE(11), + [sym_dis_expr] = STATE(11), + [sym__form] = STATE(11), + [sym_kwd_lit] = STATE(11), + [sym_str_lit] = STATE(11), + [sym_sym_lit] = STATE(11), + [sym__metadata_lit] = STATE(424), + [sym_meta_lit] = STATE(312), + [sym_old_meta_lit] = STATE(315), + [sym_list_lit] = STATE(11), + [sym__bare_list_lit] = STATE(299), + [sym_map_lit] = STATE(11), + [sym__bare_map_lit] = STATE(214), + [sym_vec_lit] = STATE(11), + [sym__bare_vec_lit] = STATE(217), + [sym_set_lit] = STATE(11), + [sym__bare_set_lit] = STATE(219), + [sym_anon_fn_lit] = STATE(11), + [sym_regex_lit] = STATE(11), + [sym_read_cond_lit] = STATE(11), + [sym_splicing_read_cond_lit] = STATE(11), + [sym_ns_map_lit] = STATE(11), + [sym_var_quoting_lit] = STATE(11), + [sym_sym_val_lit] = STATE(11), + [sym_evaling_lit] = STATE(11), + [sym_tagged_or_ctor_lit] = STATE(11), + [sym_derefing_lit] = STATE(11), + [sym_quoting_lit] = STATE(11), + [sym_syn_quoting_lit] = STATE(11), + [sym_unquote_splicing_lit] = STATE(11), + [sym_unquoting_lit] = STATE(11), + [aux_sym_source_repeat1] = STATE(11), + [aux_sym_sym_lit_repeat1] = STATE(305), + [ts_builtin_sym_end] = ACTIONS(164), + [sym__ws] = ACTIONS(166), + [sym_comment] = ACTIONS(166), + [anon_sym_POUND_] = ACTIONS(169), + [sym_num_lit] = ACTIONS(166), + [anon_sym_SLASH] = ACTIONS(172), + [anon_sym_COLON] = ACTIONS(175), + [anon_sym_COLON_COLON] = ACTIONS(178), + [aux_sym_str_lit_token1] = ACTIONS(181), + [sym_char_lit] = ACTIONS(166), + [sym_nil_lit] = ACTIONS(184), + [sym_bool_lit] = ACTIONS(184), + [aux_sym__sym_qualified_token1] = ACTIONS(187), + [anon_sym_CARET] = ACTIONS(190), + [anon_sym_POUND_CARET] = ACTIONS(193), + [anon_sym_LPAREN] = ACTIONS(196), + [anon_sym_LBRACE] = ACTIONS(199), + [anon_sym_LBRACK] = ACTIONS(202), + [anon_sym_POUND] = ACTIONS(205), + [anon_sym_POUND_QMARK] = ACTIONS(208), + [anon_sym_POUND_QMARK_AT] = ACTIONS(211), + [anon_sym_POUND_SQUOTE] = ACTIONS(214), + [anon_sym_POUND_POUND] = ACTIONS(217), + [anon_sym_POUND_EQ] = ACTIONS(220), + [anon_sym_AT] = ACTIONS(223), + [anon_sym_SQUOTE] = ACTIONS(226), + [anon_sym_BQUOTE] = ACTIONS(229), + [anon_sym_TILDE_AT] = ACTIONS(232), + [anon_sym_TILDE] = ACTIONS(235), + }, + [STATE(12)] = { + [sym__gap] = STATE(2), + [sym_dis_expr] = STATE(2), [sym__form] = STATE(302), [sym_kwd_lit] = STATE(302), [sym_str_lit] = STATE(302), [sym_sym_lit] = STATE(302), [sym__metadata_lit] = STATE(424), - [sym_meta_lit] = STATE(314), - [sym_old_meta_lit] = STATE(313), + [sym_meta_lit] = STATE(312), + [sym_old_meta_lit] = STATE(315), [sym_list_lit] = STATE(302), - [sym__bare_list_lit] = STATE(218), + [sym__bare_list_lit] = STATE(299), [sym_map_lit] = STATE(302), - [sym__bare_map_lit] = STATE(219), + [sym__bare_map_lit] = STATE(214), [sym_vec_lit] = STATE(302), - [sym__bare_vec_lit] = STATE(226), + [sym__bare_vec_lit] = STATE(217), [sym_set_lit] = STATE(302), - [sym__bare_set_lit] = STATE(227), + [sym__bare_set_lit] = STATE(219), [sym_anon_fn_lit] = STATE(302), [sym_regex_lit] = STATE(302), [sym_read_cond_lit] = STATE(302), @@ -4108,9 +3688,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unquote_splicing_lit] = STATE(302), [sym_unquoting_lit] = STATE(302), [aux_sym_sym_lit_repeat1] = STATE(305), - [aux_sym__bare_list_lit_repeat1] = STATE(18), - [sym__ws] = ACTIONS(156), - [sym_comment] = ACTIONS(156), + [aux_sym__bare_list_lit_repeat1] = STATE(2), + [sym__ws] = ACTIONS(152), + [sym_comment] = ACTIONS(152), [anon_sym_POUND_] = ACTIONS(7), [sym_num_lit] = ACTIONS(132), [anon_sym_SLASH] = ACTIONS(9), @@ -4125,7 +3705,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND_CARET] = ACTIONS(23), [anon_sym_LPAREN] = ACTIONS(25), [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(158), + [anon_sym_RBRACE] = ACTIONS(238), [anon_sym_LBRACK] = ACTIONS(29), [anon_sym_POUND] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -4139,24 +3719,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE_AT] = ACTIONS(49), [anon_sym_TILDE] = ACTIONS(51), }, - [11] = { - [sym__gap] = STATE(5), - [sym_dis_expr] = STATE(5), + [STATE(13)] = { + [sym__gap] = STATE(16), + [sym_dis_expr] = STATE(16), [sym__form] = STATE(302), [sym_kwd_lit] = STATE(302), [sym_str_lit] = STATE(302), [sym_sym_lit] = STATE(302), [sym__metadata_lit] = STATE(424), - [sym_meta_lit] = STATE(314), - [sym_old_meta_lit] = STATE(313), + [sym_meta_lit] = STATE(312), + [sym_old_meta_lit] = STATE(315), [sym_list_lit] = STATE(302), - [sym__bare_list_lit] = STATE(218), + [sym__bare_list_lit] = STATE(299), [sym_map_lit] = STATE(302), - [sym__bare_map_lit] = STATE(219), + [sym__bare_map_lit] = STATE(214), [sym_vec_lit] = STATE(302), - [sym__bare_vec_lit] = STATE(226), + [sym__bare_vec_lit] = STATE(217), [sym_set_lit] = STATE(302), - [sym__bare_set_lit] = STATE(227), + [sym__bare_set_lit] = STATE(219), [sym_anon_fn_lit] = STATE(302), [sym_regex_lit] = STATE(302), [sym_read_cond_lit] = STATE(302), @@ -4172,9 +3752,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unquote_splicing_lit] = STATE(302), [sym_unquoting_lit] = STATE(302), [aux_sym_sym_lit_repeat1] = STATE(305), - [aux_sym__bare_list_lit_repeat1] = STATE(5), - [sym__ws] = ACTIONS(160), - [sym_comment] = ACTIONS(160), + [aux_sym__bare_list_lit_repeat1] = STATE(16), + [sym__ws] = ACTIONS(240), + [sym_comment] = ACTIONS(240), [anon_sym_POUND_] = ACTIONS(7), [sym_num_lit] = ACTIONS(132), [anon_sym_SLASH] = ACTIONS(9), @@ -4188,9 +3768,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(21), [anon_sym_POUND_CARET] = ACTIONS(23), [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_RPAREN] = ACTIONS(242), [anon_sym_LBRACE] = ACTIONS(27), [anon_sym_LBRACK] = ACTIONS(29), - [anon_sym_RBRACK] = ACTIONS(162), [anon_sym_POUND] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), [anon_sym_POUND_QMARK_AT] = ACTIONS(35), @@ -4203,24 +3783,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE_AT] = ACTIONS(49), [anon_sym_TILDE] = ACTIONS(51), }, - [12] = { - [sym__gap] = STATE(2), - [sym_dis_expr] = STATE(2), + [STATE(14)] = { + [sym__gap] = STATE(17), + [sym_dis_expr] = STATE(17), [sym__form] = STATE(302), [sym_kwd_lit] = STATE(302), [sym_str_lit] = STATE(302), [sym_sym_lit] = STATE(302), [sym__metadata_lit] = STATE(424), - [sym_meta_lit] = STATE(314), - [sym_old_meta_lit] = STATE(313), + [sym_meta_lit] = STATE(312), + [sym_old_meta_lit] = STATE(315), [sym_list_lit] = STATE(302), - [sym__bare_list_lit] = STATE(218), + [sym__bare_list_lit] = STATE(299), [sym_map_lit] = STATE(302), - [sym__bare_map_lit] = STATE(219), + [sym__bare_map_lit] = STATE(214), [sym_vec_lit] = STATE(302), - [sym__bare_vec_lit] = STATE(226), + [sym__bare_vec_lit] = STATE(217), [sym_set_lit] = STATE(302), - [sym__bare_set_lit] = STATE(227), + [sym__bare_set_lit] = STATE(219), [sym_anon_fn_lit] = STATE(302), [sym_regex_lit] = STATE(302), [sym_read_cond_lit] = STATE(302), @@ -4236,9 +3816,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unquote_splicing_lit] = STATE(302), [sym_unquoting_lit] = STATE(302), [aux_sym_sym_lit_repeat1] = STATE(305), - [aux_sym__bare_list_lit_repeat1] = STATE(2), - [sym__ws] = ACTIONS(130), - [sym_comment] = ACTIONS(130), + [aux_sym__bare_list_lit_repeat1] = STATE(17), + [sym__ws] = ACTIONS(244), + [sym_comment] = ACTIONS(244), [anon_sym_POUND_] = ACTIONS(7), [sym_num_lit] = ACTIONS(132), [anon_sym_SLASH] = ACTIONS(9), @@ -4253,7 +3833,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND_CARET] = ACTIONS(23), [anon_sym_LPAREN] = ACTIONS(25), [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(164), + [anon_sym_RBRACE] = ACTIONS(246), [anon_sym_LBRACK] = ACTIONS(29), [anon_sym_POUND] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -4267,24 +3847,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE_AT] = ACTIONS(49), [anon_sym_TILDE] = ACTIONS(51), }, - [13] = { - [sym__gap] = STATE(3), - [sym_dis_expr] = STATE(3), + [STATE(15)] = { + [sym__gap] = STATE(18), + [sym_dis_expr] = STATE(18), [sym__form] = STATE(302), [sym_kwd_lit] = STATE(302), [sym_str_lit] = STATE(302), [sym_sym_lit] = STATE(302), [sym__metadata_lit] = STATE(424), - [sym_meta_lit] = STATE(314), - [sym_old_meta_lit] = STATE(313), + [sym_meta_lit] = STATE(312), + [sym_old_meta_lit] = STATE(315), [sym_list_lit] = STATE(302), - [sym__bare_list_lit] = STATE(218), + [sym__bare_list_lit] = STATE(299), [sym_map_lit] = STATE(302), - [sym__bare_map_lit] = STATE(219), + [sym__bare_map_lit] = STATE(214), [sym_vec_lit] = STATE(302), - [sym__bare_vec_lit] = STATE(226), + [sym__bare_vec_lit] = STATE(217), [sym_set_lit] = STATE(302), - [sym__bare_set_lit] = STATE(227), + [sym__bare_set_lit] = STATE(219), [sym_anon_fn_lit] = STATE(302), [sym_regex_lit] = STATE(302), [sym_read_cond_lit] = STATE(302), @@ -4300,9 +3880,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unquote_splicing_lit] = STATE(302), [sym_unquoting_lit] = STATE(302), [aux_sym_sym_lit_repeat1] = STATE(305), - [aux_sym__bare_list_lit_repeat1] = STATE(3), - [sym__ws] = ACTIONS(166), - [sym_comment] = ACTIONS(166), + [aux_sym__bare_list_lit_repeat1] = STATE(18), + [sym__ws] = ACTIONS(248), + [sym_comment] = ACTIONS(248), [anon_sym_POUND_] = ACTIONS(7), [sym_num_lit] = ACTIONS(132), [anon_sym_SLASH] = ACTIONS(9), @@ -4316,9 +3896,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(21), [anon_sym_POUND_CARET] = ACTIONS(23), [anon_sym_LPAREN] = ACTIONS(25), - [anon_sym_RPAREN] = ACTIONS(168), [anon_sym_LBRACE] = ACTIONS(27), [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_RBRACK] = ACTIONS(250), [anon_sym_POUND] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), [anon_sym_POUND_QMARK_AT] = ACTIONS(35), @@ -4331,7 +3911,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE_AT] = ACTIONS(49), [anon_sym_TILDE] = ACTIONS(51), }, - [14] = { + [STATE(16)] = { [sym__gap] = STATE(2), [sym_dis_expr] = STATE(2), [sym__form] = STATE(302), @@ -4339,16 +3919,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_str_lit] = STATE(302), [sym_sym_lit] = STATE(302), [sym__metadata_lit] = STATE(424), - [sym_meta_lit] = STATE(314), - [sym_old_meta_lit] = STATE(313), + [sym_meta_lit] = STATE(312), + [sym_old_meta_lit] = STATE(315), [sym_list_lit] = STATE(302), - [sym__bare_list_lit] = STATE(218), + [sym__bare_list_lit] = STATE(299), [sym_map_lit] = STATE(302), - [sym__bare_map_lit] = STATE(219), + [sym__bare_map_lit] = STATE(214), [sym_vec_lit] = STATE(302), - [sym__bare_vec_lit] = STATE(226), + [sym__bare_vec_lit] = STATE(217), [sym_set_lit] = STATE(302), - [sym__bare_set_lit] = STATE(227), + [sym__bare_set_lit] = STATE(219), [sym_anon_fn_lit] = STATE(302), [sym_regex_lit] = STATE(302), [sym_read_cond_lit] = STATE(302), @@ -4365,8 +3945,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unquoting_lit] = STATE(302), [aux_sym_sym_lit_repeat1] = STATE(305), [aux_sym__bare_list_lit_repeat1] = STATE(2), - [sym__ws] = ACTIONS(130), - [sym_comment] = ACTIONS(130), + [sym__ws] = ACTIONS(152), + [sym_comment] = ACTIONS(152), [anon_sym_POUND_] = ACTIONS(7), [sym_num_lit] = ACTIONS(132), [anon_sym_SLASH] = ACTIONS(9), @@ -4380,8 +3960,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(21), [anon_sym_POUND_CARET] = ACTIONS(23), [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_RPAREN] = ACTIONS(252), [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(170), [anon_sym_LBRACK] = ACTIONS(29), [anon_sym_POUND] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -4395,24 +3975,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE_AT] = ACTIONS(49), [anon_sym_TILDE] = ACTIONS(51), }, - [15] = { - [sym__gap] = STATE(6), - [sym_dis_expr] = STATE(6), + [STATE(17)] = { + [sym__gap] = STATE(2), + [sym_dis_expr] = STATE(2), [sym__form] = STATE(302), [sym_kwd_lit] = STATE(302), [sym_str_lit] = STATE(302), [sym_sym_lit] = STATE(302), [sym__metadata_lit] = STATE(424), - [sym_meta_lit] = STATE(314), - [sym_old_meta_lit] = STATE(313), + [sym_meta_lit] = STATE(312), + [sym_old_meta_lit] = STATE(315), [sym_list_lit] = STATE(302), - [sym__bare_list_lit] = STATE(218), + [sym__bare_list_lit] = STATE(299), [sym_map_lit] = STATE(302), - [sym__bare_map_lit] = STATE(219), + [sym__bare_map_lit] = STATE(214), [sym_vec_lit] = STATE(302), - [sym__bare_vec_lit] = STATE(226), + [sym__bare_vec_lit] = STATE(217), [sym_set_lit] = STATE(302), - [sym__bare_set_lit] = STATE(227), + [sym__bare_set_lit] = STATE(219), [sym_anon_fn_lit] = STATE(302), [sym_regex_lit] = STATE(302), [sym_read_cond_lit] = STATE(302), @@ -4428,9 +4008,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unquote_splicing_lit] = STATE(302), [sym_unquoting_lit] = STATE(302), [aux_sym_sym_lit_repeat1] = STATE(305), - [aux_sym__bare_list_lit_repeat1] = STATE(6), - [sym__ws] = ACTIONS(172), - [sym_comment] = ACTIONS(172), + [aux_sym__bare_list_lit_repeat1] = STATE(2), + [sym__ws] = ACTIONS(152), + [sym_comment] = ACTIONS(152), [anon_sym_POUND_] = ACTIONS(7), [sym_num_lit] = ACTIONS(132), [anon_sym_SLASH] = ACTIONS(9), @@ -4445,7 +4025,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND_CARET] = ACTIONS(23), [anon_sym_LPAREN] = ACTIONS(25), [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(174), + [anon_sym_RBRACE] = ACTIONS(254), [anon_sym_LBRACK] = ACTIONS(29), [anon_sym_POUND] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -4459,7 +4039,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE_AT] = ACTIONS(49), [anon_sym_TILDE] = ACTIONS(51), }, - [16] = { + [STATE(18)] = { [sym__gap] = STATE(2), [sym_dis_expr] = STATE(2), [sym__form] = STATE(302), @@ -4467,16 +4047,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_str_lit] = STATE(302), [sym_sym_lit] = STATE(302), [sym__metadata_lit] = STATE(424), - [sym_meta_lit] = STATE(314), - [sym_old_meta_lit] = STATE(313), + [sym_meta_lit] = STATE(312), + [sym_old_meta_lit] = STATE(315), [sym_list_lit] = STATE(302), - [sym__bare_list_lit] = STATE(218), + [sym__bare_list_lit] = STATE(299), [sym_map_lit] = STATE(302), - [sym__bare_map_lit] = STATE(219), + [sym__bare_map_lit] = STATE(214), [sym_vec_lit] = STATE(302), - [sym__bare_vec_lit] = STATE(226), + [sym__bare_vec_lit] = STATE(217), [sym_set_lit] = STATE(302), - [sym__bare_set_lit] = STATE(227), + [sym__bare_set_lit] = STATE(219), [sym_anon_fn_lit] = STATE(302), [sym_regex_lit] = STATE(302), [sym_read_cond_lit] = STATE(302), @@ -4493,8 +4073,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unquoting_lit] = STATE(302), [aux_sym_sym_lit_repeat1] = STATE(305), [aux_sym__bare_list_lit_repeat1] = STATE(2), - [sym__ws] = ACTIONS(130), - [sym_comment] = ACTIONS(130), + [sym__ws] = ACTIONS(152), + [sym_comment] = ACTIONS(152), [anon_sym_POUND_] = ACTIONS(7), [sym_num_lit] = ACTIONS(132), [anon_sym_SLASH] = ACTIONS(9), @@ -4508,9 +4088,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(21), [anon_sym_POUND_CARET] = ACTIONS(23), [anon_sym_LPAREN] = ACTIONS(25), - [anon_sym_RPAREN] = ACTIONS(176), [anon_sym_LBRACE] = ACTIONS(27), [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_RBRACK] = ACTIONS(256), [anon_sym_POUND] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), [anon_sym_POUND_QMARK_AT] = ACTIONS(35), @@ -4523,24 +4103,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE_AT] = ACTIONS(49), [anon_sym_TILDE] = ACTIONS(51), }, - [17] = { - [sym__gap] = STATE(14), - [sym_dis_expr] = STATE(14), + [STATE(19)] = { + [sym__gap] = STATE(20), + [sym_dis_expr] = STATE(20), [sym__form] = STATE(302), [sym_kwd_lit] = STATE(302), [sym_str_lit] = STATE(302), [sym_sym_lit] = STATE(302), [sym__metadata_lit] = STATE(424), - [sym_meta_lit] = STATE(314), - [sym_old_meta_lit] = STATE(313), + [sym_meta_lit] = STATE(312), + [sym_old_meta_lit] = STATE(315), [sym_list_lit] = STATE(302), - [sym__bare_list_lit] = STATE(218), + [sym__bare_list_lit] = STATE(299), [sym_map_lit] = STATE(302), - [sym__bare_map_lit] = STATE(219), + [sym__bare_map_lit] = STATE(214), [sym_vec_lit] = STATE(302), - [sym__bare_vec_lit] = STATE(226), + [sym__bare_vec_lit] = STATE(217), [sym_set_lit] = STATE(302), - [sym__bare_set_lit] = STATE(227), + [sym__bare_set_lit] = STATE(219), [sym_anon_fn_lit] = STATE(302), [sym_regex_lit] = STATE(302), [sym_read_cond_lit] = STATE(302), @@ -4556,9 +4136,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unquote_splicing_lit] = STATE(302), [sym_unquoting_lit] = STATE(302), [aux_sym_sym_lit_repeat1] = STATE(305), - [aux_sym__bare_list_lit_repeat1] = STATE(14), - [sym__ws] = ACTIONS(178), - [sym_comment] = ACTIONS(178), + [aux_sym__bare_list_lit_repeat1] = STATE(20), + [sym__ws] = ACTIONS(258), + [sym_comment] = ACTIONS(258), [anon_sym_POUND_] = ACTIONS(7), [sym_num_lit] = ACTIONS(132), [anon_sym_SLASH] = ACTIONS(9), @@ -4573,7 +4153,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND_CARET] = ACTIONS(23), [anon_sym_LPAREN] = ACTIONS(25), [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(180), + [anon_sym_RBRACE] = ACTIONS(260), [anon_sym_LBRACK] = ACTIONS(29), [anon_sym_POUND] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -4587,7 +4167,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE_AT] = ACTIONS(49), [anon_sym_TILDE] = ACTIONS(51), }, - [18] = { + [STATE(20)] = { [sym__gap] = STATE(2), [sym_dis_expr] = STATE(2), [sym__form] = STATE(302), @@ -4595,16 +4175,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_str_lit] = STATE(302), [sym_sym_lit] = STATE(302), [sym__metadata_lit] = STATE(424), - [sym_meta_lit] = STATE(314), - [sym_old_meta_lit] = STATE(313), + [sym_meta_lit] = STATE(312), + [sym_old_meta_lit] = STATE(315), [sym_list_lit] = STATE(302), - [sym__bare_list_lit] = STATE(218), + [sym__bare_list_lit] = STATE(299), [sym_map_lit] = STATE(302), - [sym__bare_map_lit] = STATE(219), + [sym__bare_map_lit] = STATE(214), [sym_vec_lit] = STATE(302), - [sym__bare_vec_lit] = STATE(226), + [sym__bare_vec_lit] = STATE(217), [sym_set_lit] = STATE(302), - [sym__bare_set_lit] = STATE(227), + [sym__bare_set_lit] = STATE(219), [sym_anon_fn_lit] = STATE(302), [sym_regex_lit] = STATE(302), [sym_read_cond_lit] = STATE(302), @@ -4621,8 +4201,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unquoting_lit] = STATE(302), [aux_sym_sym_lit_repeat1] = STATE(305), [aux_sym__bare_list_lit_repeat1] = STATE(2), - [sym__ws] = ACTIONS(130), - [sym_comment] = ACTIONS(130), + [sym__ws] = ACTIONS(152), + [sym_comment] = ACTIONS(152), [anon_sym_POUND_] = ACTIONS(7), [sym_num_lit] = ACTIONS(132), [anon_sym_SLASH] = ACTIONS(9), @@ -4637,71 +4217,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND_CARET] = ACTIONS(23), [anon_sym_LPAREN] = ACTIONS(25), [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(182), - [anon_sym_LBRACK] = 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_TILDE_AT] = ACTIONS(49), - [anon_sym_TILDE] = ACTIONS(51), - }, - [19] = { - [sym__gap] = STATE(20), - [sym_dis_expr] = STATE(20), - [sym__form] = STATE(20), - [sym_kwd_lit] = STATE(20), - [sym_str_lit] = STATE(20), - [sym_sym_lit] = STATE(20), - [sym__metadata_lit] = STATE(424), - [sym_meta_lit] = STATE(314), - [sym_old_meta_lit] = STATE(313), - [sym_list_lit] = STATE(20), - [sym__bare_list_lit] = STATE(218), - [sym_map_lit] = STATE(20), - [sym__bare_map_lit] = STATE(219), - [sym_vec_lit] = STATE(20), - [sym__bare_vec_lit] = STATE(226), - [sym_set_lit] = STATE(20), - [sym__bare_set_lit] = STATE(227), - [sym_anon_fn_lit] = STATE(20), - [sym_regex_lit] = STATE(20), - [sym_read_cond_lit] = STATE(20), - [sym_splicing_read_cond_lit] = STATE(20), - [sym_ns_map_lit] = STATE(20), - [sym_var_quoting_lit] = STATE(20), - [sym_sym_val_lit] = STATE(20), - [sym_evaling_lit] = STATE(20), - [sym_tagged_or_ctor_lit] = STATE(20), - [sym_derefing_lit] = STATE(20), - [sym_quoting_lit] = STATE(20), - [sym_syn_quoting_lit] = STATE(20), - [sym_unquote_splicing_lit] = STATE(20), - [sym_unquoting_lit] = STATE(20), - [aux_sym_source_repeat1] = STATE(20), - [aux_sym_sym_lit_repeat1] = STATE(305), - [ts_builtin_sym_end] = ACTIONS(184), - [sym__ws] = ACTIONS(186), - [sym_comment] = ACTIONS(186), - [anon_sym_POUND_] = ACTIONS(7), - [sym_num_lit] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(9), - [anon_sym_COLON] = ACTIONS(11), - [anon_sym_COLON_COLON] = ACTIONS(13), - [aux_sym_str_lit_token1] = ACTIONS(15), - [sym_char_lit] = ACTIONS(186), - [sym_nil_lit] = ACTIONS(188), - [sym_bool_lit] = ACTIONS(188), - [aux_sym__sym_qualified_token1] = ACTIONS(19), - [anon_sym_CARET] = ACTIONS(21), - [anon_sym_POUND_CARET] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_RBRACE] = ACTIONS(262), [anon_sym_LBRACK] = ACTIONS(29), [anon_sym_POUND] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -4715,104 +4231,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE_AT] = ACTIONS(49), [anon_sym_TILDE] = ACTIONS(51), }, - [20] = { - [sym__gap] = STATE(20), - [sym_dis_expr] = STATE(20), - [sym__form] = STATE(20), - [sym_kwd_lit] = STATE(20), - [sym_str_lit] = STATE(20), - [sym_sym_lit] = STATE(20), - [sym__metadata_lit] = STATE(424), - [sym_meta_lit] = STATE(314), - [sym_old_meta_lit] = STATE(313), - [sym_list_lit] = STATE(20), - [sym__bare_list_lit] = STATE(218), - [sym_map_lit] = STATE(20), - [sym__bare_map_lit] = STATE(219), - [sym_vec_lit] = STATE(20), - [sym__bare_vec_lit] = STATE(226), - [sym_set_lit] = STATE(20), - [sym__bare_set_lit] = STATE(227), - [sym_anon_fn_lit] = STATE(20), - [sym_regex_lit] = STATE(20), - [sym_read_cond_lit] = STATE(20), - [sym_splicing_read_cond_lit] = STATE(20), - [sym_ns_map_lit] = STATE(20), - [sym_var_quoting_lit] = STATE(20), - [sym_sym_val_lit] = STATE(20), - [sym_evaling_lit] = STATE(20), - [sym_tagged_or_ctor_lit] = STATE(20), - [sym_derefing_lit] = STATE(20), - [sym_quoting_lit] = STATE(20), - [sym_syn_quoting_lit] = STATE(20), - [sym_unquote_splicing_lit] = STATE(20), - [sym_unquoting_lit] = STATE(20), - [aux_sym_source_repeat1] = STATE(20), - [aux_sym_sym_lit_repeat1] = STATE(305), - [ts_builtin_sym_end] = ACTIONS(190), - [sym__ws] = ACTIONS(192), - [sym_comment] = ACTIONS(192), - [anon_sym_POUND_] = ACTIONS(195), - [sym_num_lit] = ACTIONS(192), - [anon_sym_SLASH] = ACTIONS(198), - [anon_sym_COLON] = ACTIONS(201), - [anon_sym_COLON_COLON] = ACTIONS(204), - [aux_sym_str_lit_token1] = ACTIONS(207), - [sym_char_lit] = ACTIONS(192), - [sym_nil_lit] = ACTIONS(210), - [sym_bool_lit] = ACTIONS(210), - [aux_sym__sym_qualified_token1] = ACTIONS(213), - [anon_sym_CARET] = ACTIONS(216), - [anon_sym_POUND_CARET] = ACTIONS(219), - [anon_sym_LPAREN] = ACTIONS(222), - [anon_sym_LBRACE] = ACTIONS(225), - [anon_sym_LBRACK] = ACTIONS(228), - [anon_sym_POUND] = ACTIONS(231), - [anon_sym_POUND_QMARK] = ACTIONS(234), - [anon_sym_POUND_QMARK_AT] = ACTIONS(237), - [anon_sym_POUND_SQUOTE] = ACTIONS(240), - [anon_sym_POUND_POUND] = ACTIONS(243), - [anon_sym_POUND_EQ] = ACTIONS(246), - [anon_sym_AT] = ACTIONS(249), - [anon_sym_SQUOTE] = ACTIONS(252), - [anon_sym_BQUOTE] = ACTIONS(255), - [anon_sym_TILDE_AT] = ACTIONS(258), - [anon_sym_TILDE] = ACTIONS(261), - }, - [21] = { - [sym__gap] = STATE(301), - [sym_dis_expr] = STATE(301), - [sym__form] = STATE(420), - [sym_kwd_lit] = STATE(420), - [sym_str_lit] = STATE(420), - [sym_sym_lit] = STATE(420), + [STATE(21)] = { + [sym__gap] = STATE(201), + [sym_dis_expr] = STATE(201), + [sym__form] = STATE(352), + [sym_kwd_lit] = STATE(352), + [sym_str_lit] = STATE(352), + [sym_sym_lit] = STATE(352), [sym__metadata_lit] = STATE(424), - [sym_meta_lit] = STATE(314), - [sym_old_meta_lit] = STATE(313), - [sym_list_lit] = STATE(420), - [sym__bare_list_lit] = STATE(392), - [sym_map_lit] = STATE(420), + [sym_meta_lit] = STATE(312), + [sym_old_meta_lit] = STATE(315), + [sym_list_lit] = STATE(352), + [sym__bare_list_lit] = STATE(402), + [sym_map_lit] = STATE(352), [sym__bare_map_lit] = STATE(403), - [sym_vec_lit] = STATE(420), - [sym__bare_vec_lit] = STATE(423), - [sym_set_lit] = STATE(420), - [sym__bare_set_lit] = STATE(374), - [sym_anon_fn_lit] = STATE(420), - [sym_regex_lit] = STATE(420), - [sym_read_cond_lit] = STATE(420), - [sym_splicing_read_cond_lit] = STATE(420), - [sym_ns_map_lit] = STATE(420), - [sym_var_quoting_lit] = STATE(420), - [sym_sym_val_lit] = STATE(420), - [sym_evaling_lit] = STATE(420), - [sym_tagged_or_ctor_lit] = STATE(420), - [sym_derefing_lit] = STATE(420), - [sym_quoting_lit] = STATE(420), - [sym_syn_quoting_lit] = STATE(420), - [sym_unquote_splicing_lit] = STATE(420), - [sym_unquoting_lit] = STATE(420), - [aux_sym_dis_expr_repeat1] = STATE(301), - [aux_sym_sym_lit_repeat1] = STATE(304), + [sym_vec_lit] = STATE(352), + [sym__bare_vec_lit] = STATE(404), + [sym_set_lit] = STATE(352), + [sym__bare_set_lit] = STATE(405), + [sym_anon_fn_lit] = STATE(352), + [sym_regex_lit] = STATE(352), + [sym_read_cond_lit] = STATE(352), + [sym_splicing_read_cond_lit] = STATE(352), + [sym_ns_map_lit] = STATE(352), + [sym_var_quoting_lit] = STATE(352), + [sym_sym_val_lit] = STATE(352), + [sym_evaling_lit] = STATE(352), + [sym_tagged_or_ctor_lit] = STATE(352), + [sym_derefing_lit] = STATE(352), + [sym_quoting_lit] = STATE(352), + [sym_syn_quoting_lit] = STATE(352), + [sym_unquote_splicing_lit] = STATE(352), + [sym_unquoting_lit] = STATE(352), + [aux_sym_dis_expr_repeat1] = STATE(201), + [aux_sym_sym_lit_repeat1] = STATE(307), [sym__ws] = ACTIONS(264), [sym_comment] = ACTIONS(264), [anon_sym_POUND_] = ACTIONS(7), @@ -4842,39 +4294,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE_AT] = ACTIONS(304), [anon_sym_TILDE] = ACTIONS(306), }, - [22] = { - [sym__gap] = STATE(114), - [sym_dis_expr] = STATE(114), - [sym__form] = STATE(267), - [sym_kwd_lit] = STATE(267), - [sym_str_lit] = STATE(267), - [sym_sym_lit] = STATE(267), + [STATE(22)] = { + [sym__gap] = STATE(27), + [sym_dis_expr] = STATE(27), + [sym__form] = STATE(216), + [sym_kwd_lit] = STATE(216), + [sym_str_lit] = STATE(216), + [sym_sym_lit] = STATE(216), [sym__metadata_lit] = STATE(424), - [sym_meta_lit] = STATE(314), - [sym_old_meta_lit] = STATE(313), - [sym_list_lit] = STATE(267), - [sym__bare_list_lit] = STATE(218), - [sym_map_lit] = STATE(267), - [sym__bare_map_lit] = STATE(219), - [sym_vec_lit] = STATE(267), - [sym__bare_vec_lit] = STATE(226), - [sym_set_lit] = STATE(267), - [sym__bare_set_lit] = STATE(227), - [sym_anon_fn_lit] = STATE(267), - [sym_regex_lit] = STATE(267), - [sym_read_cond_lit] = STATE(267), - [sym_splicing_read_cond_lit] = STATE(267), - [sym_ns_map_lit] = STATE(267), - [sym_var_quoting_lit] = STATE(267), - [sym_sym_val_lit] = STATE(267), - [sym_evaling_lit] = STATE(267), - [sym_tagged_or_ctor_lit] = STATE(267), - [sym_derefing_lit] = STATE(267), - [sym_quoting_lit] = STATE(267), - [sym_syn_quoting_lit] = STATE(267), - [sym_unquote_splicing_lit] = STATE(267), - [sym_unquoting_lit] = STATE(267), - [aux_sym_dis_expr_repeat1] = STATE(114), + [sym_meta_lit] = STATE(312), + [sym_old_meta_lit] = STATE(315), + [sym_list_lit] = STATE(216), + [sym__bare_list_lit] = STATE(299), + [sym_map_lit] = STATE(216), + [sym__bare_map_lit] = STATE(214), + [sym_vec_lit] = STATE(216), + [sym__bare_vec_lit] = STATE(217), + [sym_set_lit] = STATE(216), + [sym__bare_set_lit] = STATE(219), + [sym_anon_fn_lit] = STATE(216), + [sym_regex_lit] = STATE(216), + [sym_read_cond_lit] = STATE(216), + [sym_splicing_read_cond_lit] = STATE(216), + [sym_ns_map_lit] = STATE(216), + [sym_var_quoting_lit] = STATE(216), + [sym_sym_val_lit] = STATE(216), + [sym_evaling_lit] = STATE(216), + [sym_tagged_or_ctor_lit] = STATE(216), + [sym_derefing_lit] = STATE(216), + [sym_quoting_lit] = STATE(216), + [sym_syn_quoting_lit] = STATE(216), + [sym_unquote_splicing_lit] = STATE(216), + [sym_unquoting_lit] = STATE(216), + [aux_sym_dis_expr_repeat1] = STATE(27), [aux_sym_sym_lit_repeat1] = STATE(305), [sym__ws] = ACTIONS(308), [sym_comment] = ACTIONS(308), @@ -4905,178 +4357,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE_AT] = ACTIONS(49), [anon_sym_TILDE] = ACTIONS(51), }, - [23] = { - [sym__gap] = STATE(104), - [sym_dis_expr] = STATE(104), - [sym__form] = STATE(347), - [sym_kwd_lit] = STATE(347), - [sym_str_lit] = STATE(347), - [sym_sym_lit] = STATE(347), + [STATE(23)] = { + [sym__gap] = STATE(40), + [sym_dis_expr] = STATE(40), + [sym__form] = STATE(242), + [sym_kwd_lit] = STATE(242), + [sym_str_lit] = STATE(242), + [sym_sym_lit] = STATE(242), [sym__metadata_lit] = STATE(424), - [sym_meta_lit] = STATE(314), - [sym_old_meta_lit] = STATE(313), - [sym_list_lit] = STATE(347), - [sym__bare_list_lit] = STATE(392), - [sym_map_lit] = STATE(347), - [sym__bare_map_lit] = STATE(403), - [sym_vec_lit] = STATE(347), - [sym__bare_vec_lit] = STATE(423), - [sym_set_lit] = STATE(347), - [sym__bare_set_lit] = STATE(374), - [sym_anon_fn_lit] = STATE(347), - [sym_regex_lit] = STATE(347), - [sym_read_cond_lit] = STATE(347), - [sym_splicing_read_cond_lit] = STATE(347), - [sym_ns_map_lit] = STATE(347), - [sym_var_quoting_lit] = STATE(347), - [sym_sym_val_lit] = STATE(347), - [sym_evaling_lit] = STATE(347), - [sym_tagged_or_ctor_lit] = STATE(347), - [sym_derefing_lit] = STATE(347), - [sym_quoting_lit] = STATE(347), - [sym_syn_quoting_lit] = STATE(347), - [sym_unquote_splicing_lit] = STATE(347), - [sym_unquoting_lit] = STATE(347), - [aux_sym_dis_expr_repeat1] = STATE(104), - [aux_sym_sym_lit_repeat1] = STATE(304), + [sym_meta_lit] = STATE(312), + [sym_old_meta_lit] = STATE(315), + [sym_list_lit] = STATE(242), + [sym__bare_list_lit] = STATE(299), + [sym_map_lit] = STATE(242), + [sym__bare_map_lit] = STATE(214), + [sym_vec_lit] = STATE(242), + [sym__bare_vec_lit] = STATE(217), + [sym_set_lit] = STATE(242), + [sym__bare_set_lit] = STATE(219), + [sym_anon_fn_lit] = STATE(242), + [sym_regex_lit] = STATE(242), + [sym_read_cond_lit] = STATE(242), + [sym_splicing_read_cond_lit] = STATE(242), + [sym_ns_map_lit] = STATE(242), + [sym_var_quoting_lit] = STATE(242), + [sym_sym_val_lit] = STATE(242), + [sym_evaling_lit] = STATE(242), + [sym_tagged_or_ctor_lit] = STATE(242), + [sym_derefing_lit] = STATE(242), + [sym_quoting_lit] = STATE(242), + [sym_syn_quoting_lit] = STATE(242), + [sym_unquote_splicing_lit] = STATE(242), + [sym_unquoting_lit] = STATE(242), + [aux_sym_dis_expr_repeat1] = STATE(40), + [aux_sym_sym_lit_repeat1] = STATE(305), [sym__ws] = ACTIONS(314), [sym_comment] = ACTIONS(314), [anon_sym_POUND_] = ACTIONS(7), [sym_num_lit] = ACTIONS(316), - [anon_sym_SLASH] = ACTIONS(268), - [anon_sym_COLON] = ACTIONS(270), - [anon_sym_COLON_COLON] = ACTIONS(272), - [aux_sym_str_lit_token1] = ACTIONS(274), + [anon_sym_SLASH] = ACTIONS(9), + [anon_sym_COLON] = ACTIONS(11), + [anon_sym_COLON_COLON] = ACTIONS(13), + [aux_sym_str_lit_token1] = ACTIONS(15), [sym_char_lit] = ACTIONS(316), [sym_nil_lit] = ACTIONS(318), [sym_bool_lit] = ACTIONS(318), - [aux_sym__sym_qualified_token1] = ACTIONS(278), - [anon_sym_CARET] = ACTIONS(21), - [anon_sym_POUND_CARET] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(280), - [anon_sym_LBRACE] = ACTIONS(282), - [anon_sym_LBRACK] = ACTIONS(284), - [anon_sym_POUND] = ACTIONS(286), - [anon_sym_POUND_QMARK] = ACTIONS(288), - [anon_sym_POUND_QMARK_AT] = ACTIONS(290), - [anon_sym_POUND_SQUOTE] = ACTIONS(292), - [anon_sym_POUND_POUND] = ACTIONS(294), - [anon_sym_POUND_EQ] = ACTIONS(296), - [anon_sym_AT] = ACTIONS(298), - [anon_sym_SQUOTE] = ACTIONS(300), - [anon_sym_BQUOTE] = ACTIONS(302), - [anon_sym_TILDE_AT] = ACTIONS(304), - [anon_sym_TILDE] = ACTIONS(306), - }, - [24] = { - [sym__gap] = STATE(70), - [sym_dis_expr] = STATE(70), - [sym__form] = STATE(244), - [sym_kwd_lit] = STATE(244), - [sym_str_lit] = STATE(244), - [sym_sym_lit] = STATE(244), - [sym__metadata_lit] = STATE(424), - [sym_meta_lit] = STATE(314), - [sym_old_meta_lit] = STATE(313), - [sym_list_lit] = STATE(244), - [sym__bare_list_lit] = STATE(218), - [sym_map_lit] = STATE(244), - [sym__bare_map_lit] = STATE(219), - [sym_vec_lit] = STATE(244), - [sym__bare_vec_lit] = STATE(226), - [sym_set_lit] = STATE(244), - [sym__bare_set_lit] = STATE(227), - [sym_anon_fn_lit] = STATE(244), - [sym_regex_lit] = STATE(244), - [sym_read_cond_lit] = STATE(244), - [sym_splicing_read_cond_lit] = STATE(244), - [sym_ns_map_lit] = STATE(244), - [sym_var_quoting_lit] = STATE(244), - [sym_sym_val_lit] = STATE(244), - [sym_evaling_lit] = STATE(244), - [sym_tagged_or_ctor_lit] = STATE(244), - [sym_derefing_lit] = STATE(244), - [sym_quoting_lit] = STATE(244), - [sym_syn_quoting_lit] = STATE(244), - [sym_unquote_splicing_lit] = STATE(244), - [sym_unquoting_lit] = STATE(244), - [aux_sym_dis_expr_repeat1] = STATE(70), - [aux_sym_sym_lit_repeat1] = STATE(305), - [sym__ws] = ACTIONS(320), - [sym_comment] = ACTIONS(320), - [anon_sym_POUND_] = ACTIONS(7), - [sym_num_lit] = ACTIONS(322), - [anon_sym_SLASH] = ACTIONS(9), - [anon_sym_COLON] = ACTIONS(11), - [anon_sym_COLON_COLON] = ACTIONS(13), - [aux_sym_str_lit_token1] = ACTIONS(15), - [sym_char_lit] = ACTIONS(322), - [sym_nil_lit] = ACTIONS(324), - [sym_bool_lit] = ACTIONS(324), - [aux_sym__sym_qualified_token1] = ACTIONS(19), - [anon_sym_CARET] = ACTIONS(21), - [anon_sym_POUND_CARET] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_LBRACK] = 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_TILDE_AT] = ACTIONS(49), - [anon_sym_TILDE] = ACTIONS(51), - }, - [25] = { - [sym__gap] = STATE(72), - [sym_dis_expr] = STATE(72), - [sym__form] = STATE(245), - [sym_kwd_lit] = STATE(245), - [sym_str_lit] = STATE(245), - [sym_sym_lit] = STATE(245), - [sym__metadata_lit] = STATE(424), - [sym_meta_lit] = STATE(314), - [sym_old_meta_lit] = STATE(313), - [sym_list_lit] = STATE(245), - [sym__bare_list_lit] = STATE(218), - [sym_map_lit] = STATE(245), - [sym__bare_map_lit] = STATE(219), - [sym_vec_lit] = STATE(245), - [sym__bare_vec_lit] = STATE(226), - [sym_set_lit] = STATE(245), - [sym__bare_set_lit] = STATE(227), - [sym_anon_fn_lit] = STATE(245), - [sym_regex_lit] = STATE(245), - [sym_read_cond_lit] = STATE(245), - [sym_splicing_read_cond_lit] = STATE(245), - [sym_ns_map_lit] = STATE(245), - [sym_var_quoting_lit] = STATE(245), - [sym_sym_val_lit] = STATE(245), - [sym_evaling_lit] = STATE(245), - [sym_tagged_or_ctor_lit] = STATE(245), - [sym_derefing_lit] = STATE(245), - [sym_quoting_lit] = STATE(245), - [sym_syn_quoting_lit] = STATE(245), - [sym_unquote_splicing_lit] = STATE(245), - [sym_unquoting_lit] = STATE(245), - [aux_sym_dis_expr_repeat1] = STATE(72), - [aux_sym_sym_lit_repeat1] = STATE(305), - [sym__ws] = ACTIONS(326), - [sym_comment] = ACTIONS(326), - [anon_sym_POUND_] = ACTIONS(7), - [sym_num_lit] = ACTIONS(328), - [anon_sym_SLASH] = ACTIONS(9), - [anon_sym_COLON] = ACTIONS(11), - [anon_sym_COLON_COLON] = ACTIONS(13), - [aux_sym_str_lit_token1] = ACTIONS(15), - [sym_char_lit] = ACTIONS(328), - [sym_nil_lit] = ACTIONS(330), - [sym_bool_lit] = ACTIONS(330), - [aux_sym__sym_qualified_token1] = ACTIONS(19), + [aux_sym__sym_qualified_token1] = ACTIONS(19), [anon_sym_CARET] = ACTIONS(21), [anon_sym_POUND_CARET] = ACTIONS(23), [anon_sym_LPAREN] = ACTIONS(25), @@ -5094,24 +4420,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE_AT] = ACTIONS(49), [anon_sym_TILDE] = ACTIONS(51), }, - [26] = { - [sym__gap] = STATE(74), - [sym_dis_expr] = STATE(74), + [STATE(24)] = { + [sym__gap] = STATE(301), + [sym_dis_expr] = STATE(301), [sym__form] = STATE(246), [sym_kwd_lit] = STATE(246), [sym_str_lit] = STATE(246), [sym_sym_lit] = STATE(246), [sym__metadata_lit] = STATE(424), - [sym_meta_lit] = STATE(314), - [sym_old_meta_lit] = STATE(313), + [sym_meta_lit] = STATE(312), + [sym_old_meta_lit] = STATE(315), [sym_list_lit] = STATE(246), - [sym__bare_list_lit] = STATE(218), + [sym__bare_list_lit] = STATE(299), [sym_map_lit] = STATE(246), - [sym__bare_map_lit] = STATE(219), + [sym__bare_map_lit] = STATE(214), [sym_vec_lit] = STATE(246), - [sym__bare_vec_lit] = STATE(226), + [sym__bare_vec_lit] = STATE(217), [sym_set_lit] = STATE(246), - [sym__bare_set_lit] = STATE(227), + [sym__bare_set_lit] = STATE(219), [sym_anon_fn_lit] = STATE(246), [sym_regex_lit] = STATE(246), [sym_read_cond_lit] = STATE(246), @@ -5126,19 +4452,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_syn_quoting_lit] = STATE(246), [sym_unquote_splicing_lit] = STATE(246), [sym_unquoting_lit] = STATE(246), - [aux_sym_dis_expr_repeat1] = STATE(74), + [aux_sym_dis_expr_repeat1] = STATE(301), [aux_sym_sym_lit_repeat1] = STATE(305), - [sym__ws] = ACTIONS(332), - [sym_comment] = ACTIONS(332), + [sym__ws] = ACTIONS(320), + [sym_comment] = ACTIONS(320), [anon_sym_POUND_] = ACTIONS(7), - [sym_num_lit] = ACTIONS(334), + [sym_num_lit] = ACTIONS(322), [anon_sym_SLASH] = ACTIONS(9), [anon_sym_COLON] = ACTIONS(11), [anon_sym_COLON_COLON] = ACTIONS(13), [aux_sym_str_lit_token1] = ACTIONS(15), - [sym_char_lit] = ACTIONS(334), - [sym_nil_lit] = ACTIONS(336), - [sym_bool_lit] = ACTIONS(336), + [sym_char_lit] = ACTIONS(322), + [sym_nil_lit] = ACTIONS(324), + [sym_bool_lit] = ACTIONS(324), [aux_sym__sym_qualified_token1] = ACTIONS(19), [anon_sym_CARET] = ACTIONS(21), [anon_sym_POUND_CARET] = ACTIONS(23), @@ -5157,24 +4483,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE_AT] = ACTIONS(49), [anon_sym_TILDE] = ACTIONS(51), }, - [27] = { - [sym__gap] = STATE(76), - [sym_dis_expr] = STATE(76), + [STATE(25)] = { + [sym__gap] = STATE(301), + [sym_dis_expr] = STATE(301), [sym__form] = STATE(247), [sym_kwd_lit] = STATE(247), [sym_str_lit] = STATE(247), [sym_sym_lit] = STATE(247), [sym__metadata_lit] = STATE(424), - [sym_meta_lit] = STATE(314), - [sym_old_meta_lit] = STATE(313), + [sym_meta_lit] = STATE(312), + [sym_old_meta_lit] = STATE(315), [sym_list_lit] = STATE(247), - [sym__bare_list_lit] = STATE(218), + [sym__bare_list_lit] = STATE(299), [sym_map_lit] = STATE(247), - [sym__bare_map_lit] = STATE(219), + [sym__bare_map_lit] = STATE(214), [sym_vec_lit] = STATE(247), - [sym__bare_vec_lit] = STATE(226), + [sym__bare_vec_lit] = STATE(217), [sym_set_lit] = STATE(247), - [sym__bare_set_lit] = STATE(227), + [sym__bare_set_lit] = STATE(219), [sym_anon_fn_lit] = STATE(247), [sym_regex_lit] = STATE(247), [sym_read_cond_lit] = STATE(247), @@ -5189,19 +4515,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_syn_quoting_lit] = STATE(247), [sym_unquote_splicing_lit] = STATE(247), [sym_unquoting_lit] = STATE(247), - [aux_sym_dis_expr_repeat1] = STATE(76), + [aux_sym_dis_expr_repeat1] = STATE(301), [aux_sym_sym_lit_repeat1] = STATE(305), - [sym__ws] = ACTIONS(338), - [sym_comment] = ACTIONS(338), + [sym__ws] = ACTIONS(320), + [sym_comment] = ACTIONS(320), [anon_sym_POUND_] = ACTIONS(7), - [sym_num_lit] = ACTIONS(340), + [sym_num_lit] = ACTIONS(326), [anon_sym_SLASH] = ACTIONS(9), [anon_sym_COLON] = ACTIONS(11), [anon_sym_COLON_COLON] = ACTIONS(13), [aux_sym_str_lit_token1] = ACTIONS(15), - [sym_char_lit] = ACTIONS(340), - [sym_nil_lit] = ACTIONS(342), - [sym_bool_lit] = ACTIONS(342), + [sym_char_lit] = ACTIONS(326), + [sym_nil_lit] = ACTIONS(328), + [sym_bool_lit] = ACTIONS(328), [aux_sym__sym_qualified_token1] = ACTIONS(19), [anon_sym_CARET] = ACTIONS(21), [anon_sym_POUND_CARET] = ACTIONS(23), @@ -5220,51 +4546,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE_AT] = ACTIONS(49), [anon_sym_TILDE] = ACTIONS(51), }, - [28] = { - [sym__gap] = STATE(78), - [sym_dis_expr] = STATE(78), - [sym__form] = STATE(248), - [sym_kwd_lit] = STATE(248), - [sym_str_lit] = STATE(248), - [sym_sym_lit] = STATE(248), + [STATE(26)] = { + [sym__gap] = STATE(301), + [sym_dis_expr] = STATE(301), + [sym__form] = STATE(249), + [sym_kwd_lit] = STATE(249), + [sym_str_lit] = STATE(249), + [sym_sym_lit] = STATE(249), [sym__metadata_lit] = STATE(424), - [sym_meta_lit] = STATE(314), - [sym_old_meta_lit] = STATE(313), - [sym_list_lit] = STATE(248), - [sym__bare_list_lit] = STATE(218), - [sym_map_lit] = STATE(248), - [sym__bare_map_lit] = STATE(219), - [sym_vec_lit] = STATE(248), - [sym__bare_vec_lit] = STATE(226), - [sym_set_lit] = STATE(248), - [sym__bare_set_lit] = STATE(227), - [sym_anon_fn_lit] = STATE(248), - [sym_regex_lit] = STATE(248), - [sym_read_cond_lit] = STATE(248), - [sym_splicing_read_cond_lit] = STATE(248), - [sym_ns_map_lit] = STATE(248), - [sym_var_quoting_lit] = STATE(248), - [sym_sym_val_lit] = STATE(248), - [sym_evaling_lit] = STATE(248), - [sym_tagged_or_ctor_lit] = STATE(248), - [sym_derefing_lit] = STATE(248), - [sym_quoting_lit] = STATE(248), - [sym_syn_quoting_lit] = STATE(248), - [sym_unquote_splicing_lit] = STATE(248), - [sym_unquoting_lit] = STATE(248), - [aux_sym_dis_expr_repeat1] = STATE(78), + [sym_meta_lit] = STATE(312), + [sym_old_meta_lit] = STATE(315), + [sym_list_lit] = STATE(249), + [sym__bare_list_lit] = STATE(299), + [sym_map_lit] = STATE(249), + [sym__bare_map_lit] = STATE(214), + [sym_vec_lit] = STATE(249), + [sym__bare_vec_lit] = STATE(217), + [sym_set_lit] = STATE(249), + [sym__bare_set_lit] = STATE(219), + [sym_anon_fn_lit] = STATE(249), + [sym_regex_lit] = STATE(249), + [sym_read_cond_lit] = STATE(249), + [sym_splicing_read_cond_lit] = STATE(249), + [sym_ns_map_lit] = STATE(249), + [sym_var_quoting_lit] = STATE(249), + [sym_sym_val_lit] = STATE(249), + [sym_evaling_lit] = STATE(249), + [sym_tagged_or_ctor_lit] = STATE(249), + [sym_derefing_lit] = STATE(249), + [sym_quoting_lit] = STATE(249), + [sym_syn_quoting_lit] = STATE(249), + [sym_unquote_splicing_lit] = STATE(249), + [sym_unquoting_lit] = STATE(249), + [aux_sym_dis_expr_repeat1] = STATE(301), [aux_sym_sym_lit_repeat1] = STATE(305), - [sym__ws] = ACTIONS(344), - [sym_comment] = ACTIONS(344), + [sym__ws] = ACTIONS(320), + [sym_comment] = ACTIONS(320), [anon_sym_POUND_] = ACTIONS(7), - [sym_num_lit] = ACTIONS(346), + [sym_num_lit] = ACTIONS(330), [anon_sym_SLASH] = ACTIONS(9), [anon_sym_COLON] = ACTIONS(11), [anon_sym_COLON_COLON] = ACTIONS(13), [aux_sym_str_lit_token1] = ACTIONS(15), - [sym_char_lit] = ACTIONS(346), - [sym_nil_lit] = ACTIONS(348), - [sym_bool_lit] = ACTIONS(348), + [sym_char_lit] = ACTIONS(330), + [sym_nil_lit] = ACTIONS(332), + [sym_bool_lit] = ACTIONS(332), [aux_sym__sym_qualified_token1] = ACTIONS(19), [anon_sym_CARET] = ACTIONS(21), [anon_sym_POUND_CARET] = ACTIONS(23), @@ -5283,681 +4609,366 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE_AT] = ACTIONS(49), [anon_sym_TILDE] = ACTIONS(51), }, - [29] = { + [STATE(27)] = { [sym__gap] = STATE(301), [sym_dis_expr] = STATE(301), - [sym__form] = STATE(334), - [sym_kwd_lit] = STATE(334), - [sym_str_lit] = STATE(334), - [sym_sym_lit] = STATE(334), + [sym__form] = STATE(250), + [sym_kwd_lit] = STATE(250), + [sym_str_lit] = STATE(250), + [sym_sym_lit] = STATE(250), [sym__metadata_lit] = STATE(424), - [sym_meta_lit] = STATE(314), - [sym_old_meta_lit] = STATE(313), - [sym_list_lit] = STATE(334), - [sym__bare_list_lit] = STATE(392), - [sym_map_lit] = STATE(334), - [sym__bare_map_lit] = STATE(403), - [sym_vec_lit] = STATE(334), - [sym__bare_vec_lit] = STATE(423), - [sym_set_lit] = STATE(334), - [sym__bare_set_lit] = STATE(374), - [sym_anon_fn_lit] = STATE(334), - [sym_regex_lit] = STATE(334), - [sym_read_cond_lit] = STATE(334), - [sym_splicing_read_cond_lit] = STATE(334), - [sym_ns_map_lit] = STATE(334), - [sym_var_quoting_lit] = STATE(334), - [sym_sym_val_lit] = STATE(334), - [sym_evaling_lit] = STATE(334), - [sym_tagged_or_ctor_lit] = STATE(334), - [sym_derefing_lit] = STATE(334), - [sym_quoting_lit] = STATE(334), - [sym_syn_quoting_lit] = STATE(334), - [sym_unquote_splicing_lit] = STATE(334), - [sym_unquoting_lit] = STATE(334), + [sym_meta_lit] = STATE(312), + [sym_old_meta_lit] = STATE(315), + [sym_list_lit] = STATE(250), + [sym__bare_list_lit] = STATE(299), + [sym_map_lit] = STATE(250), + [sym__bare_map_lit] = STATE(214), + [sym_vec_lit] = STATE(250), + [sym__bare_vec_lit] = STATE(217), + [sym_set_lit] = STATE(250), + [sym__bare_set_lit] = STATE(219), + [sym_anon_fn_lit] = STATE(250), + [sym_regex_lit] = STATE(250), + [sym_read_cond_lit] = STATE(250), + [sym_splicing_read_cond_lit] = STATE(250), + [sym_ns_map_lit] = STATE(250), + [sym_var_quoting_lit] = STATE(250), + [sym_sym_val_lit] = STATE(250), + [sym_evaling_lit] = STATE(250), + [sym_tagged_or_ctor_lit] = STATE(250), + [sym_derefing_lit] = STATE(250), + [sym_quoting_lit] = STATE(250), + [sym_syn_quoting_lit] = STATE(250), + [sym_unquote_splicing_lit] = STATE(250), + [sym_unquoting_lit] = STATE(250), [aux_sym_dis_expr_repeat1] = STATE(301), - [aux_sym_sym_lit_repeat1] = STATE(307), - [sym__ws] = ACTIONS(264), - [sym_comment] = ACTIONS(264), + [aux_sym_sym_lit_repeat1] = STATE(305), + [sym__ws] = ACTIONS(320), + [sym_comment] = ACTIONS(320), [anon_sym_POUND_] = ACTIONS(7), - [sym_num_lit] = ACTIONS(350), - [anon_sym_SLASH] = ACTIONS(268), - [anon_sym_COLON] = ACTIONS(352), - [anon_sym_COLON_COLON] = ACTIONS(354), - [aux_sym_str_lit_token1] = ACTIONS(274), - [sym_char_lit] = ACTIONS(350), - [sym_nil_lit] = ACTIONS(356), - [sym_bool_lit] = ACTIONS(356), - [aux_sym__sym_qualified_token1] = ACTIONS(278), + [sym_num_lit] = ACTIONS(334), + [anon_sym_SLASH] = ACTIONS(9), + [anon_sym_COLON] = ACTIONS(11), + [anon_sym_COLON_COLON] = ACTIONS(13), + [aux_sym_str_lit_token1] = ACTIONS(15), + [sym_char_lit] = ACTIONS(334), + [sym_nil_lit] = ACTIONS(336), + [sym_bool_lit] = ACTIONS(336), + [aux_sym__sym_qualified_token1] = ACTIONS(19), [anon_sym_CARET] = ACTIONS(21), [anon_sym_POUND_CARET] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(280), - [anon_sym_LBRACE] = ACTIONS(282), - [anon_sym_LBRACK] = ACTIONS(284), - [anon_sym_POUND] = ACTIONS(358), - [anon_sym_POUND_QMARK] = ACTIONS(288), - [anon_sym_POUND_QMARK_AT] = ACTIONS(290), - [anon_sym_POUND_SQUOTE] = ACTIONS(360), - [anon_sym_POUND_POUND] = ACTIONS(362), - [anon_sym_POUND_EQ] = ACTIONS(296), - [anon_sym_AT] = ACTIONS(364), - [anon_sym_SQUOTE] = ACTIONS(366), - [anon_sym_BQUOTE] = ACTIONS(368), - [anon_sym_TILDE_AT] = ACTIONS(370), - [anon_sym_TILDE] = ACTIONS(372), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_LBRACK] = 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_TILDE_AT] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(51), }, - [30] = { + [STATE(28)] = { [sym__gap] = STATE(301), [sym_dis_expr] = STATE(301), - [sym__form] = STATE(417), - [sym_kwd_lit] = STATE(417), - [sym_str_lit] = STATE(417), - [sym_sym_lit] = STATE(417), + [sym__form] = STATE(251), + [sym_kwd_lit] = STATE(251), + [sym_str_lit] = STATE(251), + [sym_sym_lit] = STATE(251), [sym__metadata_lit] = STATE(424), - [sym_meta_lit] = STATE(314), - [sym_old_meta_lit] = STATE(313), - [sym_list_lit] = STATE(417), - [sym__bare_list_lit] = STATE(392), - [sym_map_lit] = STATE(417), - [sym__bare_map_lit] = STATE(403), - [sym_vec_lit] = STATE(417), - [sym__bare_vec_lit] = STATE(423), - [sym_set_lit] = STATE(417), - [sym__bare_set_lit] = STATE(374), - [sym_anon_fn_lit] = STATE(417), - [sym_regex_lit] = STATE(417), - [sym_read_cond_lit] = STATE(417), - [sym_splicing_read_cond_lit] = STATE(417), - [sym_ns_map_lit] = STATE(417), - [sym_var_quoting_lit] = STATE(417), - [sym_sym_val_lit] = STATE(417), - [sym_evaling_lit] = STATE(417), - [sym_tagged_or_ctor_lit] = STATE(417), - [sym_derefing_lit] = STATE(417), - [sym_quoting_lit] = STATE(417), - [sym_syn_quoting_lit] = STATE(417), - [sym_unquote_splicing_lit] = STATE(417), - [sym_unquoting_lit] = STATE(417), + [sym_meta_lit] = STATE(312), + [sym_old_meta_lit] = STATE(315), + [sym_list_lit] = STATE(251), + [sym__bare_list_lit] = STATE(299), + [sym_map_lit] = STATE(251), + [sym__bare_map_lit] = STATE(214), + [sym_vec_lit] = STATE(251), + [sym__bare_vec_lit] = STATE(217), + [sym_set_lit] = STATE(251), + [sym__bare_set_lit] = STATE(219), + [sym_anon_fn_lit] = STATE(251), + [sym_regex_lit] = STATE(251), + [sym_read_cond_lit] = STATE(251), + [sym_splicing_read_cond_lit] = STATE(251), + [sym_ns_map_lit] = STATE(251), + [sym_var_quoting_lit] = STATE(251), + [sym_sym_val_lit] = STATE(251), + [sym_evaling_lit] = STATE(251), + [sym_tagged_or_ctor_lit] = STATE(251), + [sym_derefing_lit] = STATE(251), + [sym_quoting_lit] = STATE(251), + [sym_syn_quoting_lit] = STATE(251), + [sym_unquote_splicing_lit] = STATE(251), + [sym_unquoting_lit] = STATE(251), [aux_sym_dis_expr_repeat1] = STATE(301), - [aux_sym_sym_lit_repeat1] = STATE(307), - [sym__ws] = ACTIONS(264), - [sym_comment] = ACTIONS(264), + [aux_sym_sym_lit_repeat1] = STATE(305), + [sym__ws] = ACTIONS(320), + [sym_comment] = ACTIONS(320), [anon_sym_POUND_] = ACTIONS(7), - [sym_num_lit] = ACTIONS(374), - [anon_sym_SLASH] = ACTIONS(268), - [anon_sym_COLON] = ACTIONS(352), - [anon_sym_COLON_COLON] = ACTIONS(354), - [aux_sym_str_lit_token1] = ACTIONS(274), - [sym_char_lit] = ACTIONS(374), - [sym_nil_lit] = ACTIONS(376), - [sym_bool_lit] = ACTIONS(376), - [aux_sym__sym_qualified_token1] = ACTIONS(278), + [sym_num_lit] = ACTIONS(338), + [anon_sym_SLASH] = ACTIONS(9), + [anon_sym_COLON] = ACTIONS(11), + [anon_sym_COLON_COLON] = ACTIONS(13), + [aux_sym_str_lit_token1] = ACTIONS(15), + [sym_char_lit] = ACTIONS(338), + [sym_nil_lit] = ACTIONS(340), + [sym_bool_lit] = ACTIONS(340), + [aux_sym__sym_qualified_token1] = ACTIONS(19), [anon_sym_CARET] = ACTIONS(21), [anon_sym_POUND_CARET] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(280), - [anon_sym_LBRACE] = ACTIONS(282), - [anon_sym_LBRACK] = ACTIONS(284), - [anon_sym_POUND] = ACTIONS(358), - [anon_sym_POUND_QMARK] = ACTIONS(288), - [anon_sym_POUND_QMARK_AT] = ACTIONS(290), - [anon_sym_POUND_SQUOTE] = ACTIONS(360), - [anon_sym_POUND_POUND] = ACTIONS(362), - [anon_sym_POUND_EQ] = ACTIONS(296), - [anon_sym_AT] = ACTIONS(364), - [anon_sym_SQUOTE] = ACTIONS(366), - [anon_sym_BQUOTE] = ACTIONS(368), - [anon_sym_TILDE_AT] = ACTIONS(370), - [anon_sym_TILDE] = ACTIONS(372), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_LBRACK] = 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_TILDE_AT] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(51), }, - [31] = { + [STATE(29)] = { [sym__gap] = STATE(301), [sym_dis_expr] = STATE(301), - [sym__form] = STATE(389), - [sym_kwd_lit] = STATE(389), - [sym_str_lit] = STATE(389), - [sym_sym_lit] = STATE(389), + [sym__form] = STATE(252), + [sym_kwd_lit] = STATE(252), + [sym_str_lit] = STATE(252), + [sym_sym_lit] = STATE(252), [sym__metadata_lit] = STATE(424), - [sym_meta_lit] = STATE(314), - [sym_old_meta_lit] = STATE(313), - [sym_list_lit] = STATE(389), - [sym__bare_list_lit] = STATE(392), - [sym_map_lit] = STATE(389), - [sym__bare_map_lit] = STATE(403), - [sym_vec_lit] = STATE(389), - [sym__bare_vec_lit] = STATE(423), - [sym_set_lit] = STATE(389), - [sym__bare_set_lit] = STATE(374), - [sym_anon_fn_lit] = STATE(389), - [sym_regex_lit] = STATE(389), - [sym_read_cond_lit] = STATE(389), - [sym_splicing_read_cond_lit] = STATE(389), - [sym_ns_map_lit] = STATE(389), - [sym_var_quoting_lit] = STATE(389), - [sym_sym_val_lit] = STATE(389), - [sym_evaling_lit] = STATE(389), - [sym_tagged_or_ctor_lit] = STATE(389), - [sym_derefing_lit] = STATE(389), - [sym_quoting_lit] = STATE(389), - [sym_syn_quoting_lit] = STATE(389), - [sym_unquote_splicing_lit] = STATE(389), - [sym_unquoting_lit] = STATE(389), + [sym_meta_lit] = STATE(312), + [sym_old_meta_lit] = STATE(315), + [sym_list_lit] = STATE(252), + [sym__bare_list_lit] = STATE(299), + [sym_map_lit] = STATE(252), + [sym__bare_map_lit] = STATE(214), + [sym_vec_lit] = STATE(252), + [sym__bare_vec_lit] = STATE(217), + [sym_set_lit] = STATE(252), + [sym__bare_set_lit] = STATE(219), + [sym_anon_fn_lit] = STATE(252), + [sym_regex_lit] = STATE(252), + [sym_read_cond_lit] = STATE(252), + [sym_splicing_read_cond_lit] = STATE(252), + [sym_ns_map_lit] = STATE(252), + [sym_var_quoting_lit] = STATE(252), + [sym_sym_val_lit] = STATE(252), + [sym_evaling_lit] = STATE(252), + [sym_tagged_or_ctor_lit] = STATE(252), + [sym_derefing_lit] = STATE(252), + [sym_quoting_lit] = STATE(252), + [sym_syn_quoting_lit] = STATE(252), + [sym_unquote_splicing_lit] = STATE(252), + [sym_unquoting_lit] = STATE(252), [aux_sym_dis_expr_repeat1] = STATE(301), - [aux_sym_sym_lit_repeat1] = STATE(304), - [sym__ws] = ACTIONS(264), - [sym_comment] = ACTIONS(264), + [aux_sym_sym_lit_repeat1] = STATE(305), + [sym__ws] = ACTIONS(320), + [sym_comment] = ACTIONS(320), [anon_sym_POUND_] = ACTIONS(7), - [sym_num_lit] = ACTIONS(378), - [anon_sym_SLASH] = ACTIONS(268), - [anon_sym_COLON] = ACTIONS(270), - [anon_sym_COLON_COLON] = ACTIONS(272), - [aux_sym_str_lit_token1] = ACTIONS(274), - [sym_char_lit] = ACTIONS(378), - [sym_nil_lit] = ACTIONS(380), - [sym_bool_lit] = ACTIONS(380), - [aux_sym__sym_qualified_token1] = ACTIONS(278), + [sym_num_lit] = ACTIONS(342), + [anon_sym_SLASH] = ACTIONS(9), + [anon_sym_COLON] = ACTIONS(11), + [anon_sym_COLON_COLON] = ACTIONS(13), + [aux_sym_str_lit_token1] = ACTIONS(15), + [sym_char_lit] = ACTIONS(342), + [sym_nil_lit] = ACTIONS(344), + [sym_bool_lit] = ACTIONS(344), + [aux_sym__sym_qualified_token1] = ACTIONS(19), [anon_sym_CARET] = ACTIONS(21), [anon_sym_POUND_CARET] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(280), - [anon_sym_LBRACE] = ACTIONS(282), - [anon_sym_LBRACK] = ACTIONS(284), - [anon_sym_POUND] = ACTIONS(286), - [anon_sym_POUND_QMARK] = ACTIONS(288), - [anon_sym_POUND_QMARK_AT] = ACTIONS(290), - [anon_sym_POUND_SQUOTE] = ACTIONS(292), - [anon_sym_POUND_POUND] = ACTIONS(294), - [anon_sym_POUND_EQ] = ACTIONS(296), - [anon_sym_AT] = ACTIONS(298), - [anon_sym_SQUOTE] = ACTIONS(300), - [anon_sym_BQUOTE] = ACTIONS(302), - [anon_sym_TILDE_AT] = ACTIONS(304), - [anon_sym_TILDE] = ACTIONS(306), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_LBRACK] = 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_TILDE_AT] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(51), }, - [32] = { - [sym__gap] = STATE(165), - [sym_dis_expr] = STATE(165), - [sym__form] = STATE(357), - [sym_kwd_lit] = STATE(357), - [sym_str_lit] = STATE(357), - [sym_sym_lit] = STATE(357), - [sym__metadata_lit] = STATE(424), - [sym_meta_lit] = STATE(314), - [sym_old_meta_lit] = STATE(313), - [sym_list_lit] = STATE(357), - [sym__bare_list_lit] = STATE(392), - [sym_map_lit] = STATE(357), - [sym__bare_map_lit] = STATE(403), - [sym_vec_lit] = STATE(357), - [sym__bare_vec_lit] = STATE(423), - [sym_set_lit] = STATE(357), - [sym__bare_set_lit] = STATE(374), - [sym_anon_fn_lit] = STATE(357), - [sym_regex_lit] = STATE(357), - [sym_read_cond_lit] = STATE(357), - [sym_splicing_read_cond_lit] = STATE(357), - [sym_ns_map_lit] = STATE(357), - [sym_var_quoting_lit] = STATE(357), - [sym_sym_val_lit] = STATE(357), - [sym_evaling_lit] = STATE(357), - [sym_tagged_or_ctor_lit] = STATE(357), - [sym_derefing_lit] = STATE(357), - [sym_quoting_lit] = STATE(357), - [sym_syn_quoting_lit] = STATE(357), - [sym_unquote_splicing_lit] = STATE(357), - [sym_unquoting_lit] = STATE(357), - [aux_sym_dis_expr_repeat1] = STATE(165), - [aux_sym_sym_lit_repeat1] = STATE(307), - [sym__ws] = ACTIONS(382), - [sym_comment] = ACTIONS(382), - [anon_sym_POUND_] = ACTIONS(7), - [sym_num_lit] = ACTIONS(384), - [anon_sym_SLASH] = ACTIONS(268), - [anon_sym_COLON] = ACTIONS(352), - [anon_sym_COLON_COLON] = ACTIONS(354), - [aux_sym_str_lit_token1] = ACTIONS(274), - [sym_char_lit] = ACTIONS(384), - [sym_nil_lit] = ACTIONS(386), - [sym_bool_lit] = ACTIONS(386), - [aux_sym__sym_qualified_token1] = ACTIONS(278), - [anon_sym_CARET] = ACTIONS(21), - [anon_sym_POUND_CARET] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(280), - [anon_sym_LBRACE] = ACTIONS(282), - [anon_sym_LBRACK] = ACTIONS(284), - [anon_sym_POUND] = ACTIONS(358), - [anon_sym_POUND_QMARK] = ACTIONS(288), - [anon_sym_POUND_QMARK_AT] = ACTIONS(290), - [anon_sym_POUND_SQUOTE] = ACTIONS(360), - [anon_sym_POUND_POUND] = ACTIONS(362), - [anon_sym_POUND_EQ] = ACTIONS(296), - [anon_sym_AT] = ACTIONS(364), - [anon_sym_SQUOTE] = ACTIONS(366), - [anon_sym_BQUOTE] = ACTIONS(368), - [anon_sym_TILDE_AT] = ACTIONS(370), - [anon_sym_TILDE] = ACTIONS(372), - }, - [33] = { - [sym__gap] = STATE(161), - [sym_dis_expr] = STATE(161), - [sym__form] = STATE(362), - [sym_kwd_lit] = STATE(362), - [sym_str_lit] = STATE(362), - [sym_sym_lit] = STATE(362), - [sym__metadata_lit] = STATE(424), - [sym_meta_lit] = STATE(314), - [sym_old_meta_lit] = STATE(313), - [sym_list_lit] = STATE(362), - [sym__bare_list_lit] = STATE(392), - [sym_map_lit] = STATE(362), - [sym__bare_map_lit] = STATE(403), - [sym_vec_lit] = STATE(362), - [sym__bare_vec_lit] = STATE(423), - [sym_set_lit] = STATE(362), - [sym__bare_set_lit] = STATE(374), - [sym_anon_fn_lit] = STATE(362), - [sym_regex_lit] = STATE(362), - [sym_read_cond_lit] = STATE(362), - [sym_splicing_read_cond_lit] = STATE(362), - [sym_ns_map_lit] = STATE(362), - [sym_var_quoting_lit] = STATE(362), - [sym_sym_val_lit] = STATE(362), - [sym_evaling_lit] = STATE(362), - [sym_tagged_or_ctor_lit] = STATE(362), - [sym_derefing_lit] = STATE(362), - [sym_quoting_lit] = STATE(362), - [sym_syn_quoting_lit] = STATE(362), - [sym_unquote_splicing_lit] = STATE(362), - [sym_unquoting_lit] = STATE(362), - [aux_sym_dis_expr_repeat1] = STATE(161), - [aux_sym_sym_lit_repeat1] = STATE(307), - [sym__ws] = ACTIONS(388), - [sym_comment] = ACTIONS(388), - [anon_sym_POUND_] = ACTIONS(7), - [sym_num_lit] = ACTIONS(390), - [anon_sym_SLASH] = ACTIONS(268), - [anon_sym_COLON] = ACTIONS(352), - [anon_sym_COLON_COLON] = ACTIONS(354), - [aux_sym_str_lit_token1] = ACTIONS(274), - [sym_char_lit] = ACTIONS(390), - [sym_nil_lit] = ACTIONS(392), - [sym_bool_lit] = ACTIONS(392), - [aux_sym__sym_qualified_token1] = ACTIONS(278), - [anon_sym_CARET] = ACTIONS(21), - [anon_sym_POUND_CARET] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(280), - [anon_sym_LBRACE] = ACTIONS(282), - [anon_sym_LBRACK] = ACTIONS(284), - [anon_sym_POUND] = ACTIONS(358), - [anon_sym_POUND_QMARK] = ACTIONS(288), - [anon_sym_POUND_QMARK_AT] = ACTIONS(290), - [anon_sym_POUND_SQUOTE] = ACTIONS(360), - [anon_sym_POUND_POUND] = ACTIONS(362), - [anon_sym_POUND_EQ] = ACTIONS(296), - [anon_sym_AT] = ACTIONS(364), - [anon_sym_SQUOTE] = ACTIONS(366), - [anon_sym_BQUOTE] = ACTIONS(368), - [anon_sym_TILDE_AT] = ACTIONS(370), - [anon_sym_TILDE] = ACTIONS(372), - }, - [34] = { + [STATE(30)] = { [sym__gap] = STATE(301), [sym_dis_expr] = STATE(301), - [sym__form] = STATE(364), - [sym_kwd_lit] = STATE(364), - [sym_str_lit] = STATE(364), - [sym_sym_lit] = STATE(364), + [sym__form] = STATE(253), + [sym_kwd_lit] = STATE(253), + [sym_str_lit] = STATE(253), + [sym_sym_lit] = STATE(253), [sym__metadata_lit] = STATE(424), - [sym_meta_lit] = STATE(314), - [sym_old_meta_lit] = STATE(313), - [sym_list_lit] = STATE(364), - [sym__bare_list_lit] = STATE(392), - [sym_map_lit] = STATE(364), - [sym__bare_map_lit] = STATE(403), - [sym_vec_lit] = STATE(364), - [sym__bare_vec_lit] = STATE(423), - [sym_set_lit] = STATE(364), - [sym__bare_set_lit] = STATE(374), - [sym_anon_fn_lit] = STATE(364), - [sym_regex_lit] = STATE(364), - [sym_read_cond_lit] = STATE(364), - [sym_splicing_read_cond_lit] = STATE(364), - [sym_ns_map_lit] = STATE(364), - [sym_var_quoting_lit] = STATE(364), - [sym_sym_val_lit] = STATE(364), - [sym_evaling_lit] = STATE(364), - [sym_tagged_or_ctor_lit] = STATE(364), - [sym_derefing_lit] = STATE(364), - [sym_quoting_lit] = STATE(364), - [sym_syn_quoting_lit] = STATE(364), - [sym_unquote_splicing_lit] = STATE(364), - [sym_unquoting_lit] = STATE(364), + [sym_meta_lit] = STATE(312), + [sym_old_meta_lit] = STATE(315), + [sym_list_lit] = STATE(253), + [sym__bare_list_lit] = STATE(299), + [sym_map_lit] = STATE(253), + [sym__bare_map_lit] = STATE(214), + [sym_vec_lit] = STATE(253), + [sym__bare_vec_lit] = STATE(217), + [sym_set_lit] = STATE(253), + [sym__bare_set_lit] = STATE(219), + [sym_anon_fn_lit] = STATE(253), + [sym_regex_lit] = STATE(253), + [sym_read_cond_lit] = STATE(253), + [sym_splicing_read_cond_lit] = STATE(253), + [sym_ns_map_lit] = STATE(253), + [sym_var_quoting_lit] = STATE(253), + [sym_sym_val_lit] = STATE(253), + [sym_evaling_lit] = STATE(253), + [sym_tagged_or_ctor_lit] = STATE(253), + [sym_derefing_lit] = STATE(253), + [sym_quoting_lit] = STATE(253), + [sym_syn_quoting_lit] = STATE(253), + [sym_unquote_splicing_lit] = STATE(253), + [sym_unquoting_lit] = STATE(253), [aux_sym_dis_expr_repeat1] = STATE(301), - [aux_sym_sym_lit_repeat1] = STATE(307), - [sym__ws] = ACTIONS(264), - [sym_comment] = ACTIONS(264), - [anon_sym_POUND_] = ACTIONS(7), - [sym_num_lit] = ACTIONS(394), - [anon_sym_SLASH] = ACTIONS(268), - [anon_sym_COLON] = ACTIONS(352), - [anon_sym_COLON_COLON] = ACTIONS(354), - [aux_sym_str_lit_token1] = ACTIONS(274), - [sym_char_lit] = ACTIONS(394), - [sym_nil_lit] = ACTIONS(396), - [sym_bool_lit] = ACTIONS(396), - [aux_sym__sym_qualified_token1] = ACTIONS(278), - [anon_sym_CARET] = ACTIONS(21), - [anon_sym_POUND_CARET] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(280), - [anon_sym_LBRACE] = ACTIONS(282), - [anon_sym_LBRACK] = ACTIONS(284), - [anon_sym_POUND] = ACTIONS(358), - [anon_sym_POUND_QMARK] = ACTIONS(288), - [anon_sym_POUND_QMARK_AT] = ACTIONS(290), - [anon_sym_POUND_SQUOTE] = ACTIONS(360), - [anon_sym_POUND_POUND] = ACTIONS(362), - [anon_sym_POUND_EQ] = ACTIONS(296), - [anon_sym_AT] = ACTIONS(364), - [anon_sym_SQUOTE] = ACTIONS(366), - [anon_sym_BQUOTE] = ACTIONS(368), - [anon_sym_TILDE_AT] = ACTIONS(370), - [anon_sym_TILDE] = ACTIONS(372), - }, - [35] = { - [sym__gap] = STATE(140), - [sym_dis_expr] = STATE(140), - [sym__form] = STATE(378), - [sym_kwd_lit] = STATE(378), - [sym_str_lit] = STATE(378), - [sym_sym_lit] = STATE(378), - [sym__metadata_lit] = STATE(424), - [sym_meta_lit] = STATE(314), - [sym_old_meta_lit] = STATE(313), - [sym_list_lit] = STATE(378), - [sym__bare_list_lit] = STATE(392), - [sym_map_lit] = STATE(378), - [sym__bare_map_lit] = STATE(403), - [sym_vec_lit] = STATE(378), - [sym__bare_vec_lit] = STATE(423), - [sym_set_lit] = STATE(378), - [sym__bare_set_lit] = STATE(374), - [sym_anon_fn_lit] = STATE(378), - [sym_regex_lit] = STATE(378), - [sym_read_cond_lit] = STATE(378), - [sym_splicing_read_cond_lit] = STATE(378), - [sym_ns_map_lit] = STATE(378), - [sym_var_quoting_lit] = STATE(378), - [sym_sym_val_lit] = STATE(378), - [sym_evaling_lit] = STATE(378), - [sym_tagged_or_ctor_lit] = STATE(378), - [sym_derefing_lit] = STATE(378), - [sym_quoting_lit] = STATE(378), - [sym_syn_quoting_lit] = STATE(378), - [sym_unquote_splicing_lit] = STATE(378), - [sym_unquoting_lit] = STATE(378), - [aux_sym_dis_expr_repeat1] = STATE(140), - [aux_sym_sym_lit_repeat1] = STATE(307), - [sym__ws] = ACTIONS(398), - [sym_comment] = ACTIONS(398), - [anon_sym_POUND_] = ACTIONS(7), - [sym_num_lit] = ACTIONS(400), - [anon_sym_SLASH] = ACTIONS(268), - [anon_sym_COLON] = ACTIONS(352), - [anon_sym_COLON_COLON] = ACTIONS(354), - [aux_sym_str_lit_token1] = ACTIONS(274), - [sym_char_lit] = ACTIONS(400), - [sym_nil_lit] = ACTIONS(402), - [sym_bool_lit] = ACTIONS(402), - [aux_sym__sym_qualified_token1] = ACTIONS(278), - [anon_sym_CARET] = ACTIONS(21), - [anon_sym_POUND_CARET] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(280), - [anon_sym_LBRACE] = ACTIONS(282), - [anon_sym_LBRACK] = ACTIONS(284), - [anon_sym_POUND] = ACTIONS(358), - [anon_sym_POUND_QMARK] = ACTIONS(288), - [anon_sym_POUND_QMARK_AT] = ACTIONS(290), - [anon_sym_POUND_SQUOTE] = ACTIONS(360), - [anon_sym_POUND_POUND] = ACTIONS(362), - [anon_sym_POUND_EQ] = ACTIONS(296), - [anon_sym_AT] = ACTIONS(364), - [anon_sym_SQUOTE] = ACTIONS(366), - [anon_sym_BQUOTE] = ACTIONS(368), - [anon_sym_TILDE_AT] = ACTIONS(370), - [anon_sym_TILDE] = ACTIONS(372), - }, - [36] = { - [sym__gap] = STATE(124), - [sym_dis_expr] = STATE(124), - [sym__form] = STATE(384), - [sym_kwd_lit] = STATE(384), - [sym_str_lit] = STATE(384), - [sym_sym_lit] = STATE(384), - [sym__metadata_lit] = STATE(424), - [sym_meta_lit] = STATE(314), - [sym_old_meta_lit] = STATE(313), - [sym_list_lit] = STATE(384), - [sym__bare_list_lit] = STATE(392), - [sym_map_lit] = STATE(384), - [sym__bare_map_lit] = STATE(403), - [sym_vec_lit] = STATE(384), - [sym__bare_vec_lit] = STATE(423), - [sym_set_lit] = STATE(384), - [sym__bare_set_lit] = STATE(374), - [sym_anon_fn_lit] = STATE(384), - [sym_regex_lit] = STATE(384), - [sym_read_cond_lit] = STATE(384), - [sym_splicing_read_cond_lit] = STATE(384), - [sym_ns_map_lit] = STATE(384), - [sym_var_quoting_lit] = STATE(384), - [sym_sym_val_lit] = STATE(384), - [sym_evaling_lit] = STATE(384), - [sym_tagged_or_ctor_lit] = STATE(384), - [sym_derefing_lit] = STATE(384), - [sym_quoting_lit] = STATE(384), - [sym_syn_quoting_lit] = STATE(384), - [sym_unquote_splicing_lit] = STATE(384), - [sym_unquoting_lit] = STATE(384), - [aux_sym_dis_expr_repeat1] = STATE(124), - [aux_sym_sym_lit_repeat1] = STATE(307), - [sym__ws] = ACTIONS(404), - [sym_comment] = ACTIONS(404), - [anon_sym_POUND_] = ACTIONS(7), - [sym_num_lit] = ACTIONS(406), - [anon_sym_SLASH] = ACTIONS(268), - [anon_sym_COLON] = ACTIONS(352), - [anon_sym_COLON_COLON] = ACTIONS(354), - [aux_sym_str_lit_token1] = ACTIONS(274), - [sym_char_lit] = ACTIONS(406), - [sym_nil_lit] = ACTIONS(408), - [sym_bool_lit] = ACTIONS(408), - [aux_sym__sym_qualified_token1] = ACTIONS(278), - [anon_sym_CARET] = ACTIONS(21), - [anon_sym_POUND_CARET] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(280), - [anon_sym_LBRACE] = ACTIONS(282), - [anon_sym_LBRACK] = ACTIONS(284), - [anon_sym_POUND] = ACTIONS(358), - [anon_sym_POUND_QMARK] = ACTIONS(288), - [anon_sym_POUND_QMARK_AT] = ACTIONS(290), - [anon_sym_POUND_SQUOTE] = ACTIONS(360), - [anon_sym_POUND_POUND] = ACTIONS(362), - [anon_sym_POUND_EQ] = ACTIONS(296), - [anon_sym_AT] = ACTIONS(364), - [anon_sym_SQUOTE] = ACTIONS(366), - [anon_sym_BQUOTE] = ACTIONS(368), - [anon_sym_TILDE_AT] = ACTIONS(370), - [anon_sym_TILDE] = ACTIONS(372), - }, - [37] = { - [sym__gap] = STATE(117), - [sym_dis_expr] = STATE(117), - [sym__form] = STATE(410), - [sym_kwd_lit] = STATE(410), - [sym_str_lit] = STATE(410), - [sym_sym_lit] = STATE(410), - [sym__metadata_lit] = STATE(424), - [sym_meta_lit] = STATE(314), - [sym_old_meta_lit] = STATE(313), - [sym_list_lit] = STATE(410), - [sym__bare_list_lit] = STATE(392), - [sym_map_lit] = STATE(410), - [sym__bare_map_lit] = STATE(403), - [sym_vec_lit] = STATE(410), - [sym__bare_vec_lit] = STATE(423), - [sym_set_lit] = STATE(410), - [sym__bare_set_lit] = STATE(374), - [sym_anon_fn_lit] = STATE(410), - [sym_regex_lit] = STATE(410), - [sym_read_cond_lit] = STATE(410), - [sym_splicing_read_cond_lit] = STATE(410), - [sym_ns_map_lit] = STATE(410), - [sym_var_quoting_lit] = STATE(410), - [sym_sym_val_lit] = STATE(410), - [sym_evaling_lit] = STATE(410), - [sym_tagged_or_ctor_lit] = STATE(410), - [sym_derefing_lit] = STATE(410), - [sym_quoting_lit] = STATE(410), - [sym_syn_quoting_lit] = STATE(410), - [sym_unquote_splicing_lit] = STATE(410), - [sym_unquoting_lit] = STATE(410), - [aux_sym_dis_expr_repeat1] = STATE(117), - [aux_sym_sym_lit_repeat1] = STATE(307), - [sym__ws] = ACTIONS(410), - [sym_comment] = ACTIONS(410), + [aux_sym_sym_lit_repeat1] = STATE(305), + [sym__ws] = ACTIONS(320), + [sym_comment] = ACTIONS(320), [anon_sym_POUND_] = ACTIONS(7), - [sym_num_lit] = ACTIONS(412), - [anon_sym_SLASH] = ACTIONS(268), - [anon_sym_COLON] = ACTIONS(352), - [anon_sym_COLON_COLON] = ACTIONS(354), - [aux_sym_str_lit_token1] = ACTIONS(274), - [sym_char_lit] = ACTIONS(412), - [sym_nil_lit] = ACTIONS(414), - [sym_bool_lit] = ACTIONS(414), - [aux_sym__sym_qualified_token1] = ACTIONS(278), + [sym_num_lit] = ACTIONS(346), + [anon_sym_SLASH] = ACTIONS(9), + [anon_sym_COLON] = ACTIONS(11), + [anon_sym_COLON_COLON] = ACTIONS(13), + [aux_sym_str_lit_token1] = ACTIONS(15), + [sym_char_lit] = ACTIONS(346), + [sym_nil_lit] = ACTIONS(348), + [sym_bool_lit] = ACTIONS(348), + [aux_sym__sym_qualified_token1] = ACTIONS(19), [anon_sym_CARET] = ACTIONS(21), [anon_sym_POUND_CARET] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(280), - [anon_sym_LBRACE] = ACTIONS(282), - [anon_sym_LBRACK] = ACTIONS(284), - [anon_sym_POUND] = ACTIONS(358), - [anon_sym_POUND_QMARK] = ACTIONS(288), - [anon_sym_POUND_QMARK_AT] = ACTIONS(290), - [anon_sym_POUND_SQUOTE] = ACTIONS(360), - [anon_sym_POUND_POUND] = ACTIONS(362), - [anon_sym_POUND_EQ] = ACTIONS(296), - [anon_sym_AT] = ACTIONS(364), - [anon_sym_SQUOTE] = ACTIONS(366), - [anon_sym_BQUOTE] = ACTIONS(368), - [anon_sym_TILDE_AT] = ACTIONS(370), - [anon_sym_TILDE] = ACTIONS(372), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_LBRACK] = 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_TILDE_AT] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(51), }, - [38] = { - [sym__gap] = STATE(29), - [sym_dis_expr] = STATE(29), - [sym__form] = STATE(391), - [sym_kwd_lit] = STATE(391), - [sym_str_lit] = STATE(391), - [sym_sym_lit] = STATE(391), + [STATE(31)] = { + [sym__gap] = STATE(28), + [sym_dis_expr] = STATE(28), + [sym__form] = STATE(218), + [sym_kwd_lit] = STATE(218), + [sym_str_lit] = STATE(218), + [sym_sym_lit] = STATE(218), [sym__metadata_lit] = STATE(424), - [sym_meta_lit] = STATE(314), - [sym_old_meta_lit] = STATE(313), - [sym_list_lit] = STATE(391), - [sym__bare_list_lit] = STATE(392), - [sym_map_lit] = STATE(391), - [sym__bare_map_lit] = STATE(403), - [sym_vec_lit] = STATE(391), - [sym__bare_vec_lit] = STATE(423), - [sym_set_lit] = STATE(391), - [sym__bare_set_lit] = STATE(374), - [sym_anon_fn_lit] = STATE(391), - [sym_regex_lit] = STATE(391), - [sym_read_cond_lit] = STATE(391), - [sym_splicing_read_cond_lit] = STATE(391), - [sym_ns_map_lit] = STATE(391), - [sym_var_quoting_lit] = STATE(391), - [sym_sym_val_lit] = STATE(391), - [sym_evaling_lit] = STATE(391), - [sym_tagged_or_ctor_lit] = STATE(391), - [sym_derefing_lit] = STATE(391), - [sym_quoting_lit] = STATE(391), - [sym_syn_quoting_lit] = STATE(391), - [sym_unquote_splicing_lit] = STATE(391), - [sym_unquoting_lit] = STATE(391), - [aux_sym_dis_expr_repeat1] = STATE(29), - [aux_sym_sym_lit_repeat1] = STATE(307), - [sym__ws] = ACTIONS(416), - [sym_comment] = ACTIONS(416), + [sym_meta_lit] = STATE(312), + [sym_old_meta_lit] = STATE(315), + [sym_list_lit] = STATE(218), + [sym__bare_list_lit] = STATE(299), + [sym_map_lit] = STATE(218), + [sym__bare_map_lit] = STATE(214), + [sym_vec_lit] = STATE(218), + [sym__bare_vec_lit] = STATE(217), + [sym_set_lit] = STATE(218), + [sym__bare_set_lit] = STATE(219), + [sym_anon_fn_lit] = STATE(218), + [sym_regex_lit] = STATE(218), + [sym_read_cond_lit] = STATE(218), + [sym_splicing_read_cond_lit] = STATE(218), + [sym_ns_map_lit] = STATE(218), + [sym_var_quoting_lit] = STATE(218), + [sym_sym_val_lit] = STATE(218), + [sym_evaling_lit] = STATE(218), + [sym_tagged_or_ctor_lit] = STATE(218), + [sym_derefing_lit] = STATE(218), + [sym_quoting_lit] = STATE(218), + [sym_syn_quoting_lit] = STATE(218), + [sym_unquote_splicing_lit] = STATE(218), + [sym_unquoting_lit] = STATE(218), + [aux_sym_dis_expr_repeat1] = STATE(28), + [aux_sym_sym_lit_repeat1] = STATE(305), + [sym__ws] = ACTIONS(350), + [sym_comment] = ACTIONS(350), [anon_sym_POUND_] = ACTIONS(7), - [sym_num_lit] = ACTIONS(418), - [anon_sym_SLASH] = ACTIONS(268), - [anon_sym_COLON] = ACTIONS(352), - [anon_sym_COLON_COLON] = ACTIONS(354), - [aux_sym_str_lit_token1] = ACTIONS(274), - [sym_char_lit] = ACTIONS(418), - [sym_nil_lit] = ACTIONS(420), - [sym_bool_lit] = ACTIONS(420), - [aux_sym__sym_qualified_token1] = ACTIONS(278), + [sym_num_lit] = ACTIONS(352), + [anon_sym_SLASH] = ACTIONS(9), + [anon_sym_COLON] = ACTIONS(11), + [anon_sym_COLON_COLON] = ACTIONS(13), + [aux_sym_str_lit_token1] = ACTIONS(15), + [sym_char_lit] = ACTIONS(352), + [sym_nil_lit] = ACTIONS(354), + [sym_bool_lit] = ACTIONS(354), + [aux_sym__sym_qualified_token1] = ACTIONS(19), [anon_sym_CARET] = ACTIONS(21), [anon_sym_POUND_CARET] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(280), - [anon_sym_LBRACE] = ACTIONS(282), - [anon_sym_LBRACK] = ACTIONS(284), - [anon_sym_POUND] = ACTIONS(358), - [anon_sym_POUND_QMARK] = ACTIONS(288), - [anon_sym_POUND_QMARK_AT] = ACTIONS(290), - [anon_sym_POUND_SQUOTE] = ACTIONS(360), - [anon_sym_POUND_POUND] = ACTIONS(362), - [anon_sym_POUND_EQ] = ACTIONS(296), - [anon_sym_AT] = ACTIONS(364), - [anon_sym_SQUOTE] = ACTIONS(366), - [anon_sym_BQUOTE] = ACTIONS(368), - [anon_sym_TILDE_AT] = ACTIONS(370), - [anon_sym_TILDE] = ACTIONS(372), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_LBRACK] = 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_TILDE_AT] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(51), }, - [39] = { - [sym__gap] = STATE(301), - [sym_dis_expr] = STATE(301), - [sym__form] = STATE(257), - [sym_kwd_lit] = STATE(257), - [sym_str_lit] = STATE(257), - [sym_sym_lit] = STATE(257), + [STATE(32)] = { + [sym__gap] = STATE(43), + [sym_dis_expr] = STATE(43), + [sym__form] = STATE(300), + [sym_kwd_lit] = STATE(300), + [sym_str_lit] = STATE(300), + [sym_sym_lit] = STATE(300), [sym__metadata_lit] = STATE(424), - [sym_meta_lit] = STATE(314), - [sym_old_meta_lit] = STATE(313), - [sym_list_lit] = STATE(257), - [sym__bare_list_lit] = STATE(218), - [sym_map_lit] = STATE(257), - [sym__bare_map_lit] = STATE(219), - [sym_vec_lit] = STATE(257), - [sym__bare_vec_lit] = STATE(226), - [sym_set_lit] = STATE(257), - [sym__bare_set_lit] = STATE(227), - [sym_anon_fn_lit] = STATE(257), - [sym_regex_lit] = STATE(257), - [sym_read_cond_lit] = STATE(257), - [sym_splicing_read_cond_lit] = STATE(257), - [sym_ns_map_lit] = STATE(257), - [sym_var_quoting_lit] = STATE(257), - [sym_sym_val_lit] = STATE(257), - [sym_evaling_lit] = STATE(257), - [sym_tagged_or_ctor_lit] = STATE(257), - [sym_derefing_lit] = STATE(257), - [sym_quoting_lit] = STATE(257), - [sym_syn_quoting_lit] = STATE(257), - [sym_unquote_splicing_lit] = STATE(257), - [sym_unquoting_lit] = STATE(257), - [aux_sym_dis_expr_repeat1] = STATE(301), + [sym_meta_lit] = STATE(312), + [sym_old_meta_lit] = STATE(315), + [sym_list_lit] = STATE(300), + [sym__bare_list_lit] = STATE(299), + [sym_map_lit] = STATE(300), + [sym__bare_map_lit] = STATE(214), + [sym_vec_lit] = STATE(300), + [sym__bare_vec_lit] = STATE(217), + [sym_set_lit] = STATE(300), + [sym__bare_set_lit] = STATE(219), + [sym_anon_fn_lit] = STATE(300), + [sym_regex_lit] = STATE(300), + [sym_read_cond_lit] = STATE(300), + [sym_splicing_read_cond_lit] = STATE(300), + [sym_ns_map_lit] = STATE(300), + [sym_var_quoting_lit] = STATE(300), + [sym_sym_val_lit] = STATE(300), + [sym_evaling_lit] = STATE(300), + [sym_tagged_or_ctor_lit] = STATE(300), + [sym_derefing_lit] = STATE(300), + [sym_quoting_lit] = STATE(300), + [sym_syn_quoting_lit] = STATE(300), + [sym_unquote_splicing_lit] = STATE(300), + [sym_unquoting_lit] = STATE(300), + [aux_sym_dis_expr_repeat1] = STATE(43), [aux_sym_sym_lit_repeat1] = STATE(305), - [sym__ws] = ACTIONS(264), - [sym_comment] = ACTIONS(264), + [sym__ws] = ACTIONS(356), + [sym_comment] = ACTIONS(356), [anon_sym_POUND_] = ACTIONS(7), - [sym_num_lit] = ACTIONS(422), + [sym_num_lit] = ACTIONS(358), [anon_sym_SLASH] = ACTIONS(9), [anon_sym_COLON] = ACTIONS(11), [anon_sym_COLON_COLON] = ACTIONS(13), [aux_sym_str_lit_token1] = ACTIONS(15), - [sym_char_lit] = ACTIONS(422), - [sym_nil_lit] = ACTIONS(424), - [sym_bool_lit] = ACTIONS(424), + [sym_char_lit] = ACTIONS(358), + [sym_nil_lit] = ACTIONS(360), + [sym_bool_lit] = ACTIONS(360), [aux_sym__sym_qualified_token1] = ACTIONS(19), [anon_sym_CARET] = ACTIONS(21), [anon_sym_POUND_CARET] = ACTIONS(23), @@ -5976,1500 +4987,1122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE_AT] = ACTIONS(49), [anon_sym_TILDE] = ACTIONS(51), }, - [40] = { - [sym__gap] = STATE(301), - [sym_dis_expr] = STATE(301), - [sym__form] = STATE(420), - [sym_kwd_lit] = STATE(420), - [sym_str_lit] = STATE(420), - [sym_sym_lit] = STATE(420), + [STATE(33)] = { + [sym__gap] = STATE(44), + [sym_dis_expr] = STATE(44), + [sym__form] = STATE(261), + [sym_kwd_lit] = STATE(261), + [sym_str_lit] = STATE(261), + [sym_sym_lit] = STATE(261), [sym__metadata_lit] = STATE(424), - [sym_meta_lit] = STATE(314), - [sym_old_meta_lit] = STATE(313), - [sym_list_lit] = STATE(420), - [sym__bare_list_lit] = STATE(392), - [sym_map_lit] = STATE(420), - [sym__bare_map_lit] = STATE(403), - [sym_vec_lit] = STATE(420), - [sym__bare_vec_lit] = STATE(423), - [sym_set_lit] = STATE(420), - [sym__bare_set_lit] = STATE(374), - [sym_anon_fn_lit] = STATE(420), - [sym_regex_lit] = STATE(420), - [sym_read_cond_lit] = STATE(420), - [sym_splicing_read_cond_lit] = STATE(420), - [sym_ns_map_lit] = STATE(420), - [sym_var_quoting_lit] = STATE(420), - [sym_sym_val_lit] = STATE(420), - [sym_evaling_lit] = STATE(420), - [sym_tagged_or_ctor_lit] = STATE(420), - [sym_derefing_lit] = STATE(420), - [sym_quoting_lit] = STATE(420), - [sym_syn_quoting_lit] = STATE(420), - [sym_unquote_splicing_lit] = STATE(420), - [sym_unquoting_lit] = STATE(420), - [aux_sym_dis_expr_repeat1] = STATE(301), - [aux_sym_sym_lit_repeat1] = STATE(306), - [sym__ws] = ACTIONS(264), - [sym_comment] = ACTIONS(264), + [sym_meta_lit] = STATE(312), + [sym_old_meta_lit] = STATE(315), + [sym_list_lit] = STATE(261), + [sym__bare_list_lit] = STATE(299), + [sym_map_lit] = STATE(261), + [sym__bare_map_lit] = STATE(214), + [sym_vec_lit] = STATE(261), + [sym__bare_vec_lit] = STATE(217), + [sym_set_lit] = STATE(261), + [sym__bare_set_lit] = STATE(219), + [sym_anon_fn_lit] = STATE(261), + [sym_regex_lit] = STATE(261), + [sym_read_cond_lit] = STATE(261), + [sym_splicing_read_cond_lit] = STATE(261), + [sym_ns_map_lit] = STATE(261), + [sym_var_quoting_lit] = STATE(261), + [sym_sym_val_lit] = STATE(261), + [sym_evaling_lit] = STATE(261), + [sym_tagged_or_ctor_lit] = STATE(261), + [sym_derefing_lit] = STATE(261), + [sym_quoting_lit] = STATE(261), + [sym_syn_quoting_lit] = STATE(261), + [sym_unquote_splicing_lit] = STATE(261), + [sym_unquoting_lit] = STATE(261), + [aux_sym_dis_expr_repeat1] = STATE(44), + [aux_sym_sym_lit_repeat1] = STATE(305), + [sym__ws] = ACTIONS(362), + [sym_comment] = ACTIONS(362), [anon_sym_POUND_] = ACTIONS(7), - [sym_num_lit] = ACTIONS(266), - [anon_sym_SLASH] = ACTIONS(268), - [anon_sym_COLON] = ACTIONS(426), - [anon_sym_COLON_COLON] = ACTIONS(428), - [aux_sym_str_lit_token1] = ACTIONS(274), - [sym_char_lit] = ACTIONS(266), - [sym_nil_lit] = ACTIONS(276), - [sym_bool_lit] = ACTIONS(276), - [aux_sym__sym_qualified_token1] = ACTIONS(278), + [sym_num_lit] = ACTIONS(364), + [anon_sym_SLASH] = ACTIONS(9), + [anon_sym_COLON] = ACTIONS(11), + [anon_sym_COLON_COLON] = ACTIONS(13), + [aux_sym_str_lit_token1] = ACTIONS(15), + [sym_char_lit] = ACTIONS(364), + [sym_nil_lit] = ACTIONS(366), + [sym_bool_lit] = ACTIONS(366), + [aux_sym__sym_qualified_token1] = ACTIONS(19), [anon_sym_CARET] = ACTIONS(21), [anon_sym_POUND_CARET] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(280), - [anon_sym_LBRACE] = ACTIONS(282), - [anon_sym_LBRACK] = ACTIONS(284), - [anon_sym_POUND] = ACTIONS(430), - [anon_sym_POUND_QMARK] = ACTIONS(288), - [anon_sym_POUND_QMARK_AT] = ACTIONS(290), - [anon_sym_POUND_SQUOTE] = ACTIONS(432), - [anon_sym_POUND_POUND] = ACTIONS(434), - [anon_sym_POUND_EQ] = ACTIONS(296), - [anon_sym_AT] = ACTIONS(436), - [anon_sym_SQUOTE] = ACTIONS(438), - [anon_sym_BQUOTE] = ACTIONS(440), - [anon_sym_TILDE_AT] = ACTIONS(442), - [anon_sym_TILDE] = ACTIONS(444), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_LBRACK] = 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_TILDE_AT] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(51), }, - [41] = { - [sym__gap] = STATE(30), - [sym_dis_expr] = STATE(30), - [sym__form] = STATE(393), - [sym_kwd_lit] = STATE(393), - [sym_str_lit] = STATE(393), - [sym_sym_lit] = STATE(393), + [STATE(34)] = { + [sym__gap] = STATE(45), + [sym_dis_expr] = STATE(45), + [sym__form] = STATE(262), + [sym_kwd_lit] = STATE(262), + [sym_str_lit] = STATE(262), + [sym_sym_lit] = STATE(262), [sym__metadata_lit] = STATE(424), - [sym_meta_lit] = STATE(314), - [sym_old_meta_lit] = STATE(313), - [sym_list_lit] = STATE(393), - [sym__bare_list_lit] = STATE(392), - [sym_map_lit] = STATE(393), - [sym__bare_map_lit] = STATE(403), - [sym_vec_lit] = STATE(393), - [sym__bare_vec_lit] = STATE(423), - [sym_set_lit] = STATE(393), - [sym__bare_set_lit] = STATE(374), - [sym_anon_fn_lit] = STATE(393), - [sym_regex_lit] = STATE(393), - [sym_read_cond_lit] = STATE(393), - [sym_splicing_read_cond_lit] = STATE(393), - [sym_ns_map_lit] = STATE(393), - [sym_var_quoting_lit] = STATE(393), - [sym_sym_val_lit] = STATE(393), - [sym_evaling_lit] = STATE(393), - [sym_tagged_or_ctor_lit] = STATE(393), - [sym_derefing_lit] = STATE(393), - [sym_quoting_lit] = STATE(393), - [sym_syn_quoting_lit] = STATE(393), - [sym_unquote_splicing_lit] = STATE(393), - [sym_unquoting_lit] = STATE(393), - [aux_sym_dis_expr_repeat1] = STATE(30), - [aux_sym_sym_lit_repeat1] = STATE(307), - [sym__ws] = ACTIONS(446), - [sym_comment] = ACTIONS(446), + [sym_meta_lit] = STATE(312), + [sym_old_meta_lit] = STATE(315), + [sym_list_lit] = STATE(262), + [sym__bare_list_lit] = STATE(299), + [sym_map_lit] = STATE(262), + [sym__bare_map_lit] = STATE(214), + [sym_vec_lit] = STATE(262), + [sym__bare_vec_lit] = STATE(217), + [sym_set_lit] = STATE(262), + [sym__bare_set_lit] = STATE(219), + [sym_anon_fn_lit] = STATE(262), + [sym_regex_lit] = STATE(262), + [sym_read_cond_lit] = STATE(262), + [sym_splicing_read_cond_lit] = STATE(262), + [sym_ns_map_lit] = STATE(262), + [sym_var_quoting_lit] = STATE(262), + [sym_sym_val_lit] = STATE(262), + [sym_evaling_lit] = STATE(262), + [sym_tagged_or_ctor_lit] = STATE(262), + [sym_derefing_lit] = STATE(262), + [sym_quoting_lit] = STATE(262), + [sym_syn_quoting_lit] = STATE(262), + [sym_unquote_splicing_lit] = STATE(262), + [sym_unquoting_lit] = STATE(262), + [aux_sym_dis_expr_repeat1] = STATE(45), + [aux_sym_sym_lit_repeat1] = STATE(305), + [sym__ws] = ACTIONS(368), + [sym_comment] = ACTIONS(368), [anon_sym_POUND_] = ACTIONS(7), - [sym_num_lit] = ACTIONS(448), - [anon_sym_SLASH] = ACTIONS(268), - [anon_sym_COLON] = ACTIONS(352), - [anon_sym_COLON_COLON] = ACTIONS(354), - [aux_sym_str_lit_token1] = ACTIONS(274), - [sym_char_lit] = ACTIONS(448), - [sym_nil_lit] = ACTIONS(450), - [sym_bool_lit] = ACTIONS(450), - [aux_sym__sym_qualified_token1] = ACTIONS(278), + [sym_num_lit] = ACTIONS(370), + [anon_sym_SLASH] = ACTIONS(9), + [anon_sym_COLON] = ACTIONS(11), + [anon_sym_COLON_COLON] = ACTIONS(13), + [aux_sym_str_lit_token1] = ACTIONS(15), + [sym_char_lit] = ACTIONS(370), + [sym_nil_lit] = ACTIONS(372), + [sym_bool_lit] = ACTIONS(372), + [aux_sym__sym_qualified_token1] = ACTIONS(19), [anon_sym_CARET] = ACTIONS(21), [anon_sym_POUND_CARET] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(280), - [anon_sym_LBRACE] = ACTIONS(282), - [anon_sym_LBRACK] = ACTIONS(284), - [anon_sym_POUND] = ACTIONS(358), - [anon_sym_POUND_QMARK] = ACTIONS(288), - [anon_sym_POUND_QMARK_AT] = ACTIONS(290), - [anon_sym_POUND_SQUOTE] = ACTIONS(360), - [anon_sym_POUND_POUND] = ACTIONS(362), - [anon_sym_POUND_EQ] = ACTIONS(296), - [anon_sym_AT] = ACTIONS(364), - [anon_sym_SQUOTE] = ACTIONS(366), - [anon_sym_BQUOTE] = ACTIONS(368), - [anon_sym_TILDE_AT] = ACTIONS(370), - [anon_sym_TILDE] = ACTIONS(372), - }, - [42] = { - [sym__gap] = STATE(119), - [sym_dis_expr] = STATE(119), - [sym__form] = STATE(405), - [sym_kwd_lit] = STATE(405), - [sym_str_lit] = STATE(405), - [sym_sym_lit] = STATE(405), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_LBRACK] = 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_TILDE_AT] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(51), + }, + [STATE(35)] = { + [sym__gap] = STATE(46), + [sym_dis_expr] = STATE(46), + [sym__form] = STATE(264), + [sym_kwd_lit] = STATE(264), + [sym_str_lit] = STATE(264), + [sym_sym_lit] = STATE(264), [sym__metadata_lit] = STATE(424), - [sym_meta_lit] = STATE(314), - [sym_old_meta_lit] = STATE(313), - [sym_list_lit] = STATE(405), - [sym__bare_list_lit] = STATE(392), - [sym_map_lit] = STATE(405), - [sym__bare_map_lit] = STATE(403), - [sym_vec_lit] = STATE(405), - [sym__bare_vec_lit] = STATE(423), - [sym_set_lit] = STATE(405), - [sym__bare_set_lit] = STATE(374), - [sym_anon_fn_lit] = STATE(405), - [sym_regex_lit] = STATE(405), - [sym_read_cond_lit] = STATE(405), - [sym_splicing_read_cond_lit] = STATE(405), - [sym_ns_map_lit] = STATE(405), - [sym_var_quoting_lit] = STATE(405), - [sym_sym_val_lit] = STATE(405), - [sym_evaling_lit] = STATE(405), - [sym_tagged_or_ctor_lit] = STATE(405), - [sym_derefing_lit] = STATE(405), - [sym_quoting_lit] = STATE(405), - [sym_syn_quoting_lit] = STATE(405), - [sym_unquote_splicing_lit] = STATE(405), - [sym_unquoting_lit] = STATE(405), - [aux_sym_dis_expr_repeat1] = STATE(119), - [aux_sym_sym_lit_repeat1] = STATE(307), - [sym__ws] = ACTIONS(452), - [sym_comment] = ACTIONS(452), + [sym_meta_lit] = STATE(312), + [sym_old_meta_lit] = STATE(315), + [sym_list_lit] = STATE(264), + [sym__bare_list_lit] = STATE(299), + [sym_map_lit] = STATE(264), + [sym__bare_map_lit] = STATE(214), + [sym_vec_lit] = STATE(264), + [sym__bare_vec_lit] = STATE(217), + [sym_set_lit] = STATE(264), + [sym__bare_set_lit] = STATE(219), + [sym_anon_fn_lit] = STATE(264), + [sym_regex_lit] = STATE(264), + [sym_read_cond_lit] = STATE(264), + [sym_splicing_read_cond_lit] = STATE(264), + [sym_ns_map_lit] = STATE(264), + [sym_var_quoting_lit] = STATE(264), + [sym_sym_val_lit] = STATE(264), + [sym_evaling_lit] = STATE(264), + [sym_tagged_or_ctor_lit] = STATE(264), + [sym_derefing_lit] = STATE(264), + [sym_quoting_lit] = STATE(264), + [sym_syn_quoting_lit] = STATE(264), + [sym_unquote_splicing_lit] = STATE(264), + [sym_unquoting_lit] = STATE(264), + [aux_sym_dis_expr_repeat1] = STATE(46), + [aux_sym_sym_lit_repeat1] = STATE(305), + [sym__ws] = ACTIONS(374), + [sym_comment] = ACTIONS(374), [anon_sym_POUND_] = ACTIONS(7), - [sym_num_lit] = ACTIONS(454), - [anon_sym_SLASH] = ACTIONS(268), - [anon_sym_COLON] = ACTIONS(352), - [anon_sym_COLON_COLON] = ACTIONS(354), - [aux_sym_str_lit_token1] = ACTIONS(274), - [sym_char_lit] = ACTIONS(454), - [sym_nil_lit] = ACTIONS(456), - [sym_bool_lit] = ACTIONS(456), - [aux_sym__sym_qualified_token1] = ACTIONS(278), + [sym_num_lit] = ACTIONS(376), + [anon_sym_SLASH] = ACTIONS(9), + [anon_sym_COLON] = ACTIONS(11), + [anon_sym_COLON_COLON] = ACTIONS(13), + [aux_sym_str_lit_token1] = ACTIONS(15), + [sym_char_lit] = ACTIONS(376), + [sym_nil_lit] = ACTIONS(378), + [sym_bool_lit] = ACTIONS(378), + [aux_sym__sym_qualified_token1] = ACTIONS(19), [anon_sym_CARET] = ACTIONS(21), [anon_sym_POUND_CARET] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(280), - [anon_sym_LBRACE] = ACTIONS(282), - [anon_sym_LBRACK] = ACTIONS(284), - [anon_sym_POUND] = ACTIONS(358), - [anon_sym_POUND_QMARK] = ACTIONS(288), - [anon_sym_POUND_QMARK_AT] = ACTIONS(290), - [anon_sym_POUND_SQUOTE] = ACTIONS(360), - [anon_sym_POUND_POUND] = ACTIONS(362), - [anon_sym_POUND_EQ] = ACTIONS(296), - [anon_sym_AT] = ACTIONS(364), - [anon_sym_SQUOTE] = ACTIONS(366), - [anon_sym_BQUOTE] = ACTIONS(368), - [anon_sym_TILDE_AT] = ACTIONS(370), - [anon_sym_TILDE] = ACTIONS(372), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_LBRACK] = 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_TILDE_AT] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(51), }, - [43] = { - [sym__gap] = STATE(301), - [sym_dis_expr] = STATE(301), - [sym__form] = STATE(369), - [sym_kwd_lit] = STATE(369), - [sym_str_lit] = STATE(369), - [sym_sym_lit] = STATE(369), + [STATE(36)] = { + [sym__gap] = STATE(47), + [sym_dis_expr] = STATE(47), + [sym__form] = STATE(265), + [sym_kwd_lit] = STATE(265), + [sym_str_lit] = STATE(265), + [sym_sym_lit] = STATE(265), [sym__metadata_lit] = STATE(424), - [sym_meta_lit] = STATE(314), - [sym_old_meta_lit] = STATE(313), - [sym_list_lit] = STATE(369), - [sym__bare_list_lit] = STATE(392), - [sym_map_lit] = STATE(369), - [sym__bare_map_lit] = STATE(403), - [sym_vec_lit] = STATE(369), - [sym__bare_vec_lit] = STATE(423), - [sym_set_lit] = STATE(369), - [sym__bare_set_lit] = STATE(374), - [sym_anon_fn_lit] = STATE(369), - [sym_regex_lit] = STATE(369), - [sym_read_cond_lit] = STATE(369), - [sym_splicing_read_cond_lit] = STATE(369), - [sym_ns_map_lit] = STATE(369), - [sym_var_quoting_lit] = STATE(369), - [sym_sym_val_lit] = STATE(369), - [sym_evaling_lit] = STATE(369), - [sym_tagged_or_ctor_lit] = STATE(369), - [sym_derefing_lit] = STATE(369), - [sym_quoting_lit] = STATE(369), - [sym_syn_quoting_lit] = STATE(369), - [sym_unquote_splicing_lit] = STATE(369), - [sym_unquoting_lit] = STATE(369), - [aux_sym_dis_expr_repeat1] = STATE(301), - [aux_sym_sym_lit_repeat1] = STATE(307), - [sym__ws] = ACTIONS(264), - [sym_comment] = ACTIONS(264), + [sym_meta_lit] = STATE(312), + [sym_old_meta_lit] = STATE(315), + [sym_list_lit] = STATE(265), + [sym__bare_list_lit] = STATE(299), + [sym_map_lit] = STATE(265), + [sym__bare_map_lit] = STATE(214), + [sym_vec_lit] = STATE(265), + [sym__bare_vec_lit] = STATE(217), + [sym_set_lit] = STATE(265), + [sym__bare_set_lit] = STATE(219), + [sym_anon_fn_lit] = STATE(265), + [sym_regex_lit] = STATE(265), + [sym_read_cond_lit] = STATE(265), + [sym_splicing_read_cond_lit] = STATE(265), + [sym_ns_map_lit] = STATE(265), + [sym_var_quoting_lit] = STATE(265), + [sym_sym_val_lit] = STATE(265), + [sym_evaling_lit] = STATE(265), + [sym_tagged_or_ctor_lit] = STATE(265), + [sym_derefing_lit] = STATE(265), + [sym_quoting_lit] = STATE(265), + [sym_syn_quoting_lit] = STATE(265), + [sym_unquote_splicing_lit] = STATE(265), + [sym_unquoting_lit] = STATE(265), + [aux_sym_dis_expr_repeat1] = STATE(47), + [aux_sym_sym_lit_repeat1] = STATE(305), + [sym__ws] = ACTIONS(380), + [sym_comment] = ACTIONS(380), [anon_sym_POUND_] = ACTIONS(7), - [sym_num_lit] = ACTIONS(458), - [anon_sym_SLASH] = ACTIONS(268), - [anon_sym_COLON] = ACTIONS(352), - [anon_sym_COLON_COLON] = ACTIONS(354), - [aux_sym_str_lit_token1] = ACTIONS(274), - [sym_char_lit] = ACTIONS(458), - [sym_nil_lit] = ACTIONS(460), - [sym_bool_lit] = ACTIONS(460), - [aux_sym__sym_qualified_token1] = ACTIONS(278), + [sym_num_lit] = ACTIONS(382), + [anon_sym_SLASH] = ACTIONS(9), + [anon_sym_COLON] = ACTIONS(11), + [anon_sym_COLON_COLON] = ACTIONS(13), + [aux_sym_str_lit_token1] = ACTIONS(15), + [sym_char_lit] = ACTIONS(382), + [sym_nil_lit] = ACTIONS(384), + [sym_bool_lit] = ACTIONS(384), + [aux_sym__sym_qualified_token1] = ACTIONS(19), [anon_sym_CARET] = ACTIONS(21), [anon_sym_POUND_CARET] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(280), - [anon_sym_LBRACE] = ACTIONS(282), - [anon_sym_LBRACK] = ACTIONS(284), - [anon_sym_POUND] = ACTIONS(358), - [anon_sym_POUND_QMARK] = ACTIONS(288), - [anon_sym_POUND_QMARK_AT] = ACTIONS(290), - [anon_sym_POUND_SQUOTE] = ACTIONS(360), - [anon_sym_POUND_POUND] = ACTIONS(362), - [anon_sym_POUND_EQ] = ACTIONS(296), - [anon_sym_AT] = ACTIONS(364), - [anon_sym_SQUOTE] = ACTIONS(366), - [anon_sym_BQUOTE] = ACTIONS(368), - [anon_sym_TILDE_AT] = ACTIONS(370), - [anon_sym_TILDE] = ACTIONS(372), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_LBRACK] = 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_TILDE_AT] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(51), }, - [44] = { - [sym__gap] = STATE(301), - [sym_dis_expr] = STATE(301), - [sym__form] = STATE(399), - [sym_kwd_lit] = STATE(399), - [sym_str_lit] = STATE(399), - [sym_sym_lit] = STATE(399), + [STATE(37)] = { + [sym__gap] = STATE(48), + [sym_dis_expr] = STATE(48), + [sym__form] = STATE(266), + [sym_kwd_lit] = STATE(266), + [sym_str_lit] = STATE(266), + [sym_sym_lit] = STATE(266), [sym__metadata_lit] = STATE(424), - [sym_meta_lit] = STATE(314), - [sym_old_meta_lit] = STATE(313), - [sym_list_lit] = STATE(399), - [sym__bare_list_lit] = STATE(392), - [sym_map_lit] = STATE(399), - [sym__bare_map_lit] = STATE(403), - [sym_vec_lit] = STATE(399), - [sym__bare_vec_lit] = STATE(423), - [sym_set_lit] = STATE(399), - [sym__bare_set_lit] = STATE(374), - [sym_anon_fn_lit] = STATE(399), - [sym_regex_lit] = STATE(399), - [sym_read_cond_lit] = STATE(399), - [sym_splicing_read_cond_lit] = STATE(399), - [sym_ns_map_lit] = STATE(399), - [sym_var_quoting_lit] = STATE(399), - [sym_sym_val_lit] = STATE(399), - [sym_evaling_lit] = STATE(399), - [sym_tagged_or_ctor_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), - [aux_sym_dis_expr_repeat1] = STATE(301), - [aux_sym_sym_lit_repeat1] = STATE(306), - [sym__ws] = ACTIONS(264), - [sym_comment] = ACTIONS(264), + [sym_meta_lit] = STATE(312), + [sym_old_meta_lit] = STATE(315), + [sym_list_lit] = STATE(266), + [sym__bare_list_lit] = STATE(299), + [sym_map_lit] = STATE(266), + [sym__bare_map_lit] = STATE(214), + [sym_vec_lit] = STATE(266), + [sym__bare_vec_lit] = STATE(217), + [sym_set_lit] = STATE(266), + [sym__bare_set_lit] = STATE(219), + [sym_anon_fn_lit] = STATE(266), + [sym_regex_lit] = STATE(266), + [sym_read_cond_lit] = STATE(266), + [sym_splicing_read_cond_lit] = STATE(266), + [sym_ns_map_lit] = STATE(266), + [sym_var_quoting_lit] = STATE(266), + [sym_sym_val_lit] = STATE(266), + [sym_evaling_lit] = STATE(266), + [sym_tagged_or_ctor_lit] = STATE(266), + [sym_derefing_lit] = STATE(266), + [sym_quoting_lit] = STATE(266), + [sym_syn_quoting_lit] = STATE(266), + [sym_unquote_splicing_lit] = STATE(266), + [sym_unquoting_lit] = STATE(266), + [aux_sym_dis_expr_repeat1] = STATE(48), + [aux_sym_sym_lit_repeat1] = STATE(305), + [sym__ws] = ACTIONS(386), + [sym_comment] = ACTIONS(386), [anon_sym_POUND_] = ACTIONS(7), - [sym_num_lit] = ACTIONS(462), - [anon_sym_SLASH] = ACTIONS(268), - [anon_sym_COLON] = ACTIONS(426), - [anon_sym_COLON_COLON] = ACTIONS(428), - [aux_sym_str_lit_token1] = ACTIONS(274), - [sym_char_lit] = ACTIONS(462), - [sym_nil_lit] = ACTIONS(464), - [sym_bool_lit] = ACTIONS(464), - [aux_sym__sym_qualified_token1] = ACTIONS(278), + [sym_num_lit] = ACTIONS(388), + [anon_sym_SLASH] = ACTIONS(9), + [anon_sym_COLON] = ACTIONS(11), + [anon_sym_COLON_COLON] = ACTIONS(13), + [aux_sym_str_lit_token1] = ACTIONS(15), + [sym_char_lit] = ACTIONS(388), + [sym_nil_lit] = ACTIONS(390), + [sym_bool_lit] = ACTIONS(390), + [aux_sym__sym_qualified_token1] = ACTIONS(19), [anon_sym_CARET] = ACTIONS(21), [anon_sym_POUND_CARET] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(280), - [anon_sym_LBRACE] = ACTIONS(282), - [anon_sym_LBRACK] = ACTIONS(284), - [anon_sym_POUND] = ACTIONS(430), - [anon_sym_POUND_QMARK] = ACTIONS(288), - [anon_sym_POUND_QMARK_AT] = ACTIONS(290), - [anon_sym_POUND_SQUOTE] = ACTIONS(432), - [anon_sym_POUND_POUND] = ACTIONS(434), - [anon_sym_POUND_EQ] = ACTIONS(296), - [anon_sym_AT] = ACTIONS(436), - [anon_sym_SQUOTE] = ACTIONS(438), - [anon_sym_BQUOTE] = ACTIONS(440), - [anon_sym_TILDE_AT] = ACTIONS(442), - [anon_sym_TILDE] = ACTIONS(444), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_LBRACK] = 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_TILDE_AT] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(51), }, - [45] = { - [sym__gap] = STATE(301), - [sym_dis_expr] = STATE(301), - [sym__form] = STATE(412), - [sym_kwd_lit] = STATE(412), - [sym_str_lit] = STATE(412), - [sym_sym_lit] = STATE(412), + [STATE(38)] = { + [sym__gap] = STATE(29), + [sym_dis_expr] = STATE(29), + [sym__form] = STATE(220), + [sym_kwd_lit] = STATE(220), + [sym_str_lit] = STATE(220), + [sym_sym_lit] = STATE(220), [sym__metadata_lit] = STATE(424), - [sym_meta_lit] = STATE(314), - [sym_old_meta_lit] = STATE(313), - [sym_list_lit] = STATE(412), - [sym__bare_list_lit] = STATE(392), - [sym_map_lit] = STATE(412), - [sym__bare_map_lit] = STATE(403), - [sym_vec_lit] = STATE(412), - [sym__bare_vec_lit] = STATE(423), - [sym_set_lit] = STATE(412), - [sym__bare_set_lit] = STATE(374), - [sym_anon_fn_lit] = STATE(412), - [sym_regex_lit] = STATE(412), - [sym_read_cond_lit] = STATE(412), - [sym_splicing_read_cond_lit] = STATE(412), - [sym_ns_map_lit] = STATE(412), - [sym_var_quoting_lit] = STATE(412), - [sym_sym_val_lit] = STATE(412), - [sym_evaling_lit] = STATE(412), - [sym_tagged_or_ctor_lit] = STATE(412), - [sym_derefing_lit] = STATE(412), - [sym_quoting_lit] = STATE(412), - [sym_syn_quoting_lit] = STATE(412), - [sym_unquote_splicing_lit] = STATE(412), - [sym_unquoting_lit] = STATE(412), - [aux_sym_dis_expr_repeat1] = STATE(301), - [aux_sym_sym_lit_repeat1] = STATE(307), - [sym__ws] = ACTIONS(264), - [sym_comment] = ACTIONS(264), + [sym_meta_lit] = STATE(312), + [sym_old_meta_lit] = STATE(315), + [sym_list_lit] = STATE(220), + [sym__bare_list_lit] = STATE(299), + [sym_map_lit] = STATE(220), + [sym__bare_map_lit] = STATE(214), + [sym_vec_lit] = STATE(220), + [sym__bare_vec_lit] = STATE(217), + [sym_set_lit] = STATE(220), + [sym__bare_set_lit] = STATE(219), + [sym_anon_fn_lit] = STATE(220), + [sym_regex_lit] = STATE(220), + [sym_read_cond_lit] = STATE(220), + [sym_splicing_read_cond_lit] = STATE(220), + [sym_ns_map_lit] = STATE(220), + [sym_var_quoting_lit] = STATE(220), + [sym_sym_val_lit] = STATE(220), + [sym_evaling_lit] = STATE(220), + [sym_tagged_or_ctor_lit] = STATE(220), + [sym_derefing_lit] = STATE(220), + [sym_quoting_lit] = STATE(220), + [sym_syn_quoting_lit] = STATE(220), + [sym_unquote_splicing_lit] = STATE(220), + [sym_unquoting_lit] = STATE(220), + [aux_sym_dis_expr_repeat1] = STATE(29), + [aux_sym_sym_lit_repeat1] = STATE(305), + [sym__ws] = ACTIONS(392), + [sym_comment] = ACTIONS(392), [anon_sym_POUND_] = ACTIONS(7), - [sym_num_lit] = ACTIONS(466), - [anon_sym_SLASH] = ACTIONS(268), - [anon_sym_COLON] = ACTIONS(352), - [anon_sym_COLON_COLON] = ACTIONS(354), - [aux_sym_str_lit_token1] = ACTIONS(274), - [sym_char_lit] = ACTIONS(466), - [sym_nil_lit] = ACTIONS(468), - [sym_bool_lit] = ACTIONS(468), - [aux_sym__sym_qualified_token1] = ACTIONS(278), + [sym_num_lit] = ACTIONS(394), + [anon_sym_SLASH] = ACTIONS(9), + [anon_sym_COLON] = ACTIONS(11), + [anon_sym_COLON_COLON] = ACTIONS(13), + [aux_sym_str_lit_token1] = ACTIONS(15), + [sym_char_lit] = ACTIONS(394), + [sym_nil_lit] = ACTIONS(396), + [sym_bool_lit] = ACTIONS(396), + [aux_sym__sym_qualified_token1] = ACTIONS(19), [anon_sym_CARET] = ACTIONS(21), [anon_sym_POUND_CARET] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(280), - [anon_sym_LBRACE] = ACTIONS(282), - [anon_sym_LBRACK] = ACTIONS(284), - [anon_sym_POUND] = ACTIONS(358), - [anon_sym_POUND_QMARK] = ACTIONS(288), - [anon_sym_POUND_QMARK_AT] = ACTIONS(290), - [anon_sym_POUND_SQUOTE] = ACTIONS(360), - [anon_sym_POUND_POUND] = ACTIONS(362), - [anon_sym_POUND_EQ] = ACTIONS(296), - [anon_sym_AT] = ACTIONS(364), - [anon_sym_SQUOTE] = ACTIONS(366), - [anon_sym_BQUOTE] = ACTIONS(368), - [anon_sym_TILDE_AT] = ACTIONS(370), - [anon_sym_TILDE] = ACTIONS(372), - }, - [46] = { - [sym__gap] = STATE(301), - [sym_dis_expr] = STATE(301), - [sym__form] = STATE(389), - [sym_kwd_lit] = STATE(389), - [sym_str_lit] = STATE(389), - [sym_sym_lit] = STATE(389), - [sym__metadata_lit] = STATE(424), - [sym_meta_lit] = STATE(314), - [sym_old_meta_lit] = STATE(313), - [sym_list_lit] = STATE(389), - [sym__bare_list_lit] = STATE(392), - [sym_map_lit] = STATE(389), - [sym__bare_map_lit] = STATE(403), - [sym_vec_lit] = STATE(389), - [sym__bare_vec_lit] = STATE(423), - [sym_set_lit] = STATE(389), - [sym__bare_set_lit] = STATE(374), - [sym_anon_fn_lit] = STATE(389), - [sym_regex_lit] = STATE(389), - [sym_read_cond_lit] = STATE(389), - [sym_splicing_read_cond_lit] = STATE(389), - [sym_ns_map_lit] = STATE(389), - [sym_var_quoting_lit] = STATE(389), - [sym_sym_val_lit] = STATE(389), - [sym_evaling_lit] = STATE(389), - [sym_tagged_or_ctor_lit] = STATE(389), - [sym_derefing_lit] = STATE(389), - [sym_quoting_lit] = STATE(389), - [sym_syn_quoting_lit] = STATE(389), - [sym_unquote_splicing_lit] = STATE(389), - [sym_unquoting_lit] = STATE(389), - [aux_sym_dis_expr_repeat1] = STATE(301), - [aux_sym_sym_lit_repeat1] = STATE(306), - [sym__ws] = ACTIONS(264), - [sym_comment] = ACTIONS(264), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_LBRACK] = 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_TILDE_AT] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(51), + }, + [STATE(39)] = { + [sym__gap] = STATE(30), + [sym_dis_expr] = STATE(30), + [sym__form] = STATE(222), + [sym_kwd_lit] = STATE(222), + [sym_str_lit] = STATE(222), + [sym_sym_lit] = STATE(222), + [sym__metadata_lit] = STATE(424), + [sym_meta_lit] = STATE(312), + [sym_old_meta_lit] = STATE(315), + [sym_list_lit] = STATE(222), + [sym__bare_list_lit] = STATE(299), + [sym_map_lit] = STATE(222), + [sym__bare_map_lit] = STATE(214), + [sym_vec_lit] = STATE(222), + [sym__bare_vec_lit] = STATE(217), + [sym_set_lit] = STATE(222), + [sym__bare_set_lit] = STATE(219), + [sym_anon_fn_lit] = STATE(222), + [sym_regex_lit] = STATE(222), + [sym_read_cond_lit] = STATE(222), + [sym_splicing_read_cond_lit] = STATE(222), + [sym_ns_map_lit] = STATE(222), + [sym_var_quoting_lit] = STATE(222), + [sym_sym_val_lit] = STATE(222), + [sym_evaling_lit] = STATE(222), + [sym_tagged_or_ctor_lit] = STATE(222), + [sym_derefing_lit] = STATE(222), + [sym_quoting_lit] = STATE(222), + [sym_syn_quoting_lit] = STATE(222), + [sym_unquote_splicing_lit] = STATE(222), + [sym_unquoting_lit] = STATE(222), + [aux_sym_dis_expr_repeat1] = STATE(30), + [aux_sym_sym_lit_repeat1] = STATE(305), + [sym__ws] = ACTIONS(398), + [sym_comment] = ACTIONS(398), [anon_sym_POUND_] = ACTIONS(7), - [sym_num_lit] = ACTIONS(378), - [anon_sym_SLASH] = ACTIONS(268), - [anon_sym_COLON] = ACTIONS(426), - [anon_sym_COLON_COLON] = ACTIONS(428), - [aux_sym_str_lit_token1] = ACTIONS(274), - [sym_char_lit] = ACTIONS(378), - [sym_nil_lit] = ACTIONS(380), - [sym_bool_lit] = ACTIONS(380), - [aux_sym__sym_qualified_token1] = ACTIONS(278), + [sym_num_lit] = ACTIONS(400), + [anon_sym_SLASH] = ACTIONS(9), + [anon_sym_COLON] = ACTIONS(11), + [anon_sym_COLON_COLON] = ACTIONS(13), + [aux_sym_str_lit_token1] = ACTIONS(15), + [sym_char_lit] = ACTIONS(400), + [sym_nil_lit] = ACTIONS(402), + [sym_bool_lit] = ACTIONS(402), + [aux_sym__sym_qualified_token1] = ACTIONS(19), [anon_sym_CARET] = ACTIONS(21), [anon_sym_POUND_CARET] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(280), - [anon_sym_LBRACE] = ACTIONS(282), - [anon_sym_LBRACK] = ACTIONS(284), - [anon_sym_POUND] = ACTIONS(430), - [anon_sym_POUND_QMARK] = ACTIONS(288), - [anon_sym_POUND_QMARK_AT] = ACTIONS(290), - [anon_sym_POUND_SQUOTE] = ACTIONS(432), - [anon_sym_POUND_POUND] = ACTIONS(434), - [anon_sym_POUND_EQ] = ACTIONS(296), - [anon_sym_AT] = ACTIONS(436), - [anon_sym_SQUOTE] = ACTIONS(438), - [anon_sym_BQUOTE] = ACTIONS(440), - [anon_sym_TILDE_AT] = ACTIONS(442), - [anon_sym_TILDE] = ACTIONS(444), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_LBRACK] = 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_TILDE_AT] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(51), }, - [47] = { + [STATE(40)] = { [sym__gap] = STATE(301), [sym_dis_expr] = STATE(301), - [sym__form] = STATE(414), - [sym_kwd_lit] = STATE(414), - [sym_str_lit] = STATE(414), - [sym_sym_lit] = STATE(414), + [sym__form] = STATE(271), + [sym_kwd_lit] = STATE(271), + [sym_str_lit] = STATE(271), + [sym_sym_lit] = STATE(271), [sym__metadata_lit] = STATE(424), - [sym_meta_lit] = STATE(314), - [sym_old_meta_lit] = STATE(313), - [sym_list_lit] = STATE(414), - [sym__bare_list_lit] = STATE(392), - [sym_map_lit] = STATE(414), - [sym__bare_map_lit] = STATE(403), - [sym_vec_lit] = STATE(414), - [sym__bare_vec_lit] = STATE(423), - [sym_set_lit] = STATE(414), - [sym__bare_set_lit] = STATE(374), - [sym_anon_fn_lit] = STATE(414), - [sym_regex_lit] = STATE(414), - [sym_read_cond_lit] = STATE(414), - [sym_splicing_read_cond_lit] = STATE(414), - [sym_ns_map_lit] = STATE(414), - [sym_var_quoting_lit] = STATE(414), - [sym_sym_val_lit] = STATE(414), - [sym_evaling_lit] = STATE(414), - [sym_tagged_or_ctor_lit] = STATE(414), - [sym_derefing_lit] = STATE(414), - [sym_quoting_lit] = STATE(414), - [sym_syn_quoting_lit] = STATE(414), - [sym_unquote_splicing_lit] = STATE(414), - [sym_unquoting_lit] = STATE(414), + [sym_meta_lit] = STATE(312), + [sym_old_meta_lit] = STATE(315), + [sym_list_lit] = STATE(271), + [sym__bare_list_lit] = STATE(299), + [sym_map_lit] = STATE(271), + [sym__bare_map_lit] = STATE(214), + [sym_vec_lit] = STATE(271), + [sym__bare_vec_lit] = STATE(217), + [sym_set_lit] = STATE(271), + [sym__bare_set_lit] = STATE(219), + [sym_anon_fn_lit] = STATE(271), + [sym_regex_lit] = STATE(271), + [sym_read_cond_lit] = STATE(271), + [sym_splicing_read_cond_lit] = STATE(271), + [sym_ns_map_lit] = STATE(271), + [sym_var_quoting_lit] = STATE(271), + [sym_sym_val_lit] = STATE(271), + [sym_evaling_lit] = STATE(271), + [sym_tagged_or_ctor_lit] = STATE(271), + [sym_derefing_lit] = STATE(271), + [sym_quoting_lit] = STATE(271), + [sym_syn_quoting_lit] = STATE(271), + [sym_unquote_splicing_lit] = STATE(271), + [sym_unquoting_lit] = STATE(271), [aux_sym_dis_expr_repeat1] = STATE(301), - [aux_sym_sym_lit_repeat1] = STATE(307), - [sym__ws] = ACTIONS(264), - [sym_comment] = ACTIONS(264), + [aux_sym_sym_lit_repeat1] = STATE(305), + [sym__ws] = ACTIONS(320), + [sym_comment] = ACTIONS(320), [anon_sym_POUND_] = ACTIONS(7), - [sym_num_lit] = ACTIONS(470), - [anon_sym_SLASH] = ACTIONS(268), - [anon_sym_COLON] = ACTIONS(352), - [anon_sym_COLON_COLON] = ACTIONS(354), - [aux_sym_str_lit_token1] = ACTIONS(274), - [sym_char_lit] = ACTIONS(470), - [sym_nil_lit] = ACTIONS(472), - [sym_bool_lit] = ACTIONS(472), - [aux_sym__sym_qualified_token1] = ACTIONS(278), + [sym_num_lit] = ACTIONS(404), + [anon_sym_SLASH] = ACTIONS(9), + [anon_sym_COLON] = ACTIONS(11), + [anon_sym_COLON_COLON] = ACTIONS(13), + [aux_sym_str_lit_token1] = ACTIONS(15), + [sym_char_lit] = ACTIONS(404), + [sym_nil_lit] = ACTIONS(406), + [sym_bool_lit] = ACTIONS(406), + [aux_sym__sym_qualified_token1] = ACTIONS(19), [anon_sym_CARET] = ACTIONS(21), [anon_sym_POUND_CARET] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(280), - [anon_sym_LBRACE] = ACTIONS(282), - [anon_sym_LBRACK] = ACTIONS(284), - [anon_sym_POUND] = ACTIONS(358), - [anon_sym_POUND_QMARK] = ACTIONS(288), - [anon_sym_POUND_QMARK_AT] = ACTIONS(290), - [anon_sym_POUND_SQUOTE] = ACTIONS(360), - [anon_sym_POUND_POUND] = ACTIONS(362), - [anon_sym_POUND_EQ] = ACTIONS(296), - [anon_sym_AT] = ACTIONS(364), - [anon_sym_SQUOTE] = ACTIONS(366), - [anon_sym_BQUOTE] = ACTIONS(368), - [anon_sym_TILDE_AT] = ACTIONS(370), - [anon_sym_TILDE] = ACTIONS(372), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_LBRACK] = 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_TILDE_AT] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(51), }, - [48] = { - [sym__gap] = STATE(301), - [sym_dis_expr] = STATE(301), - [sym__form] = STATE(415), - [sym_kwd_lit] = STATE(415), - [sym_str_lit] = STATE(415), - [sym_sym_lit] = STATE(415), + [STATE(41)] = { + [sym__gap] = STATE(49), + [sym_dis_expr] = STATE(49), + [sym__form] = STATE(272), + [sym_kwd_lit] = STATE(272), + [sym_str_lit] = STATE(272), + [sym_sym_lit] = STATE(272), [sym__metadata_lit] = STATE(424), - [sym_meta_lit] = STATE(314), - [sym_old_meta_lit] = STATE(313), - [sym_list_lit] = STATE(415), - [sym__bare_list_lit] = STATE(392), - [sym_map_lit] = STATE(415), - [sym__bare_map_lit] = STATE(403), - [sym_vec_lit] = STATE(415), - [sym__bare_vec_lit] = STATE(423), - [sym_set_lit] = STATE(415), - [sym__bare_set_lit] = STATE(374), - [sym_anon_fn_lit] = STATE(415), - [sym_regex_lit] = STATE(415), - [sym_read_cond_lit] = STATE(415), - [sym_splicing_read_cond_lit] = STATE(415), - [sym_ns_map_lit] = STATE(415), - [sym_var_quoting_lit] = STATE(415), - [sym_sym_val_lit] = STATE(415), - [sym_evaling_lit] = STATE(415), - [sym_tagged_or_ctor_lit] = STATE(415), - [sym_derefing_lit] = STATE(415), - [sym_quoting_lit] = STATE(415), - [sym_syn_quoting_lit] = STATE(415), - [sym_unquote_splicing_lit] = STATE(415), - [sym_unquoting_lit] = STATE(415), - [aux_sym_dis_expr_repeat1] = STATE(301), - [aux_sym_sym_lit_repeat1] = STATE(307), - [sym__ws] = ACTIONS(264), - [sym_comment] = ACTIONS(264), + [sym_meta_lit] = STATE(312), + [sym_old_meta_lit] = STATE(315), + [sym_list_lit] = STATE(272), + [sym__bare_list_lit] = STATE(299), + [sym_map_lit] = STATE(272), + [sym__bare_map_lit] = STATE(214), + [sym_vec_lit] = STATE(272), + [sym__bare_vec_lit] = STATE(217), + [sym_set_lit] = STATE(272), + [sym__bare_set_lit] = STATE(219), + [sym_anon_fn_lit] = STATE(272), + [sym_regex_lit] = STATE(272), + [sym_read_cond_lit] = STATE(272), + [sym_splicing_read_cond_lit] = STATE(272), + [sym_ns_map_lit] = STATE(272), + [sym_var_quoting_lit] = STATE(272), + [sym_sym_val_lit] = STATE(272), + [sym_evaling_lit] = STATE(272), + [sym_tagged_or_ctor_lit] = STATE(272), + [sym_derefing_lit] = STATE(272), + [sym_quoting_lit] = STATE(272), + [sym_syn_quoting_lit] = STATE(272), + [sym_unquote_splicing_lit] = STATE(272), + [sym_unquoting_lit] = STATE(272), + [aux_sym_dis_expr_repeat1] = STATE(49), + [aux_sym_sym_lit_repeat1] = STATE(305), + [sym__ws] = ACTIONS(408), + [sym_comment] = ACTIONS(408), [anon_sym_POUND_] = ACTIONS(7), - [sym_num_lit] = ACTIONS(474), - [anon_sym_SLASH] = ACTIONS(268), - [anon_sym_COLON] = ACTIONS(352), - [anon_sym_COLON_COLON] = ACTIONS(354), - [aux_sym_str_lit_token1] = ACTIONS(274), - [sym_char_lit] = ACTIONS(474), - [sym_nil_lit] = ACTIONS(476), - [sym_bool_lit] = ACTIONS(476), - [aux_sym__sym_qualified_token1] = ACTIONS(278), + [sym_num_lit] = ACTIONS(410), + [anon_sym_SLASH] = ACTIONS(9), + [anon_sym_COLON] = ACTIONS(11), + [anon_sym_COLON_COLON] = ACTIONS(13), + [aux_sym_str_lit_token1] = ACTIONS(15), + [sym_char_lit] = ACTIONS(410), + [sym_nil_lit] = ACTIONS(412), + [sym_bool_lit] = ACTIONS(412), + [aux_sym__sym_qualified_token1] = ACTIONS(19), [anon_sym_CARET] = ACTIONS(21), [anon_sym_POUND_CARET] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(280), - [anon_sym_LBRACE] = ACTIONS(282), - [anon_sym_LBRACK] = ACTIONS(284), - [anon_sym_POUND] = ACTIONS(358), - [anon_sym_POUND_QMARK] = ACTIONS(288), - [anon_sym_POUND_QMARK_AT] = ACTIONS(290), - [anon_sym_POUND_SQUOTE] = ACTIONS(360), - [anon_sym_POUND_POUND] = ACTIONS(362), - [anon_sym_POUND_EQ] = ACTIONS(296), - [anon_sym_AT] = ACTIONS(364), - [anon_sym_SQUOTE] = ACTIONS(366), - [anon_sym_BQUOTE] = ACTIONS(368), - [anon_sym_TILDE_AT] = ACTIONS(370), - [anon_sym_TILDE] = ACTIONS(372), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_LBRACK] = 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_TILDE_AT] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(51), }, - [49] = { - [sym__gap] = STATE(301), - [sym_dis_expr] = STATE(301), - [sym__form] = STATE(416), - [sym_kwd_lit] = STATE(416), - [sym_str_lit] = STATE(416), - [sym_sym_lit] = STATE(416), + [STATE(42)] = { + [sym__gap] = STATE(50), + [sym_dis_expr] = STATE(50), + [sym__form] = STATE(275), + [sym_kwd_lit] = STATE(275), + [sym_str_lit] = STATE(275), + [sym_sym_lit] = STATE(275), [sym__metadata_lit] = STATE(424), - [sym_meta_lit] = STATE(314), - [sym_old_meta_lit] = STATE(313), - [sym_list_lit] = STATE(416), - [sym__bare_list_lit] = STATE(392), - [sym_map_lit] = STATE(416), - [sym__bare_map_lit] = STATE(403), - [sym_vec_lit] = STATE(416), - [sym__bare_vec_lit] = STATE(423), - [sym_set_lit] = STATE(416), - [sym__bare_set_lit] = STATE(374), - [sym_anon_fn_lit] = STATE(416), - [sym_regex_lit] = STATE(416), - [sym_read_cond_lit] = STATE(416), - [sym_splicing_read_cond_lit] = STATE(416), - [sym_ns_map_lit] = STATE(416), - [sym_var_quoting_lit] = STATE(416), - [sym_sym_val_lit] = STATE(416), - [sym_evaling_lit] = STATE(416), - [sym_tagged_or_ctor_lit] = STATE(416), - [sym_derefing_lit] = STATE(416), - [sym_quoting_lit] = STATE(416), - [sym_syn_quoting_lit] = STATE(416), - [sym_unquote_splicing_lit] = STATE(416), - [sym_unquoting_lit] = STATE(416), - [aux_sym_dis_expr_repeat1] = STATE(301), - [aux_sym_sym_lit_repeat1] = STATE(307), - [sym__ws] = ACTIONS(264), - [sym_comment] = ACTIONS(264), + [sym_meta_lit] = STATE(312), + [sym_old_meta_lit] = STATE(315), + [sym_list_lit] = STATE(275), + [sym__bare_list_lit] = STATE(299), + [sym_map_lit] = STATE(275), + [sym__bare_map_lit] = STATE(214), + [sym_vec_lit] = STATE(275), + [sym__bare_vec_lit] = STATE(217), + [sym_set_lit] = STATE(275), + [sym__bare_set_lit] = STATE(219), + [sym_anon_fn_lit] = STATE(275), + [sym_regex_lit] = STATE(275), + [sym_read_cond_lit] = STATE(275), + [sym_splicing_read_cond_lit] = STATE(275), + [sym_ns_map_lit] = STATE(275), + [sym_var_quoting_lit] = STATE(275), + [sym_sym_val_lit] = STATE(275), + [sym_evaling_lit] = STATE(275), + [sym_tagged_or_ctor_lit] = STATE(275), + [sym_derefing_lit] = STATE(275), + [sym_quoting_lit] = STATE(275), + [sym_syn_quoting_lit] = STATE(275), + [sym_unquote_splicing_lit] = STATE(275), + [sym_unquoting_lit] = STATE(275), + [aux_sym_dis_expr_repeat1] = STATE(50), + [aux_sym_sym_lit_repeat1] = STATE(305), + [sym__ws] = ACTIONS(414), + [sym_comment] = ACTIONS(414), [anon_sym_POUND_] = ACTIONS(7), - [sym_num_lit] = ACTIONS(478), - [anon_sym_SLASH] = ACTIONS(268), - [anon_sym_COLON] = ACTIONS(352), - [anon_sym_COLON_COLON] = ACTIONS(354), - [aux_sym_str_lit_token1] = ACTIONS(274), - [sym_char_lit] = ACTIONS(478), - [sym_nil_lit] = ACTIONS(480), - [sym_bool_lit] = ACTIONS(480), - [aux_sym__sym_qualified_token1] = ACTIONS(278), + [sym_num_lit] = ACTIONS(416), + [anon_sym_SLASH] = ACTIONS(9), + [anon_sym_COLON] = ACTIONS(11), + [anon_sym_COLON_COLON] = ACTIONS(13), + [aux_sym_str_lit_token1] = ACTIONS(15), + [sym_char_lit] = ACTIONS(416), + [sym_nil_lit] = ACTIONS(418), + [sym_bool_lit] = ACTIONS(418), + [aux_sym__sym_qualified_token1] = ACTIONS(19), [anon_sym_CARET] = ACTIONS(21), [anon_sym_POUND_CARET] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(280), - [anon_sym_LBRACE] = ACTIONS(282), - [anon_sym_LBRACK] = ACTIONS(284), - [anon_sym_POUND] = ACTIONS(358), - [anon_sym_POUND_QMARK] = ACTIONS(288), - [anon_sym_POUND_QMARK_AT] = ACTIONS(290), - [anon_sym_POUND_SQUOTE] = ACTIONS(360), - [anon_sym_POUND_POUND] = ACTIONS(362), - [anon_sym_POUND_EQ] = ACTIONS(296), - [anon_sym_AT] = ACTIONS(364), - [anon_sym_SQUOTE] = ACTIONS(366), - [anon_sym_BQUOTE] = ACTIONS(368), - [anon_sym_TILDE_AT] = ACTIONS(370), - [anon_sym_TILDE] = ACTIONS(372), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_LBRACK] = 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_TILDE_AT] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(51), }, - [50] = { + [STATE(43)] = { [sym__gap] = STATE(301), [sym_dis_expr] = STATE(301), - [sym__form] = STATE(419), - [sym_kwd_lit] = STATE(419), - [sym_str_lit] = STATE(419), - [sym_sym_lit] = STATE(419), + [sym__form] = STATE(279), + [sym_kwd_lit] = STATE(279), + [sym_str_lit] = STATE(279), + [sym_sym_lit] = STATE(279), [sym__metadata_lit] = STATE(424), - [sym_meta_lit] = STATE(314), - [sym_old_meta_lit] = STATE(313), - [sym_list_lit] = STATE(419), - [sym__bare_list_lit] = STATE(392), - [sym_map_lit] = STATE(419), - [sym__bare_map_lit] = STATE(403), - [sym_vec_lit] = STATE(419), - [sym__bare_vec_lit] = STATE(423), - [sym_set_lit] = STATE(419), - [sym__bare_set_lit] = STATE(374), - [sym_anon_fn_lit] = STATE(419), - [sym_regex_lit] = STATE(419), - [sym_read_cond_lit] = STATE(419), - [sym_splicing_read_cond_lit] = STATE(419), - [sym_ns_map_lit] = STATE(419), - [sym_var_quoting_lit] = STATE(419), - [sym_sym_val_lit] = STATE(419), - [sym_evaling_lit] = STATE(419), - [sym_tagged_or_ctor_lit] = STATE(419), - [sym_derefing_lit] = STATE(419), - [sym_quoting_lit] = STATE(419), - [sym_syn_quoting_lit] = STATE(419), - [sym_unquote_splicing_lit] = STATE(419), - [sym_unquoting_lit] = STATE(419), + [sym_meta_lit] = STATE(312), + [sym_old_meta_lit] = STATE(315), + [sym_list_lit] = STATE(279), + [sym__bare_list_lit] = STATE(299), + [sym_map_lit] = STATE(279), + [sym__bare_map_lit] = STATE(214), + [sym_vec_lit] = STATE(279), + [sym__bare_vec_lit] = STATE(217), + [sym_set_lit] = STATE(279), + [sym__bare_set_lit] = STATE(219), + [sym_anon_fn_lit] = STATE(279), + [sym_regex_lit] = STATE(279), + [sym_read_cond_lit] = STATE(279), + [sym_splicing_read_cond_lit] = STATE(279), + [sym_ns_map_lit] = STATE(279), + [sym_var_quoting_lit] = STATE(279), + [sym_sym_val_lit] = STATE(279), + [sym_evaling_lit] = STATE(279), + [sym_tagged_or_ctor_lit] = STATE(279), + [sym_derefing_lit] = STATE(279), + [sym_quoting_lit] = STATE(279), + [sym_syn_quoting_lit] = STATE(279), + [sym_unquote_splicing_lit] = STATE(279), + [sym_unquoting_lit] = STATE(279), [aux_sym_dis_expr_repeat1] = STATE(301), - [aux_sym_sym_lit_repeat1] = STATE(307), - [sym__ws] = ACTIONS(264), - [sym_comment] = ACTIONS(264), + [aux_sym_sym_lit_repeat1] = STATE(305), + [sym__ws] = ACTIONS(320), + [sym_comment] = ACTIONS(320), [anon_sym_POUND_] = ACTIONS(7), - [sym_num_lit] = ACTIONS(482), - [anon_sym_SLASH] = ACTIONS(268), - [anon_sym_COLON] = ACTIONS(352), - [anon_sym_COLON_COLON] = ACTIONS(354), - [aux_sym_str_lit_token1] = ACTIONS(274), - [sym_char_lit] = ACTIONS(482), - [sym_nil_lit] = ACTIONS(484), - [sym_bool_lit] = ACTIONS(484), - [aux_sym__sym_qualified_token1] = ACTIONS(278), + [sym_num_lit] = ACTIONS(420), + [anon_sym_SLASH] = ACTIONS(9), + [anon_sym_COLON] = ACTIONS(11), + [anon_sym_COLON_COLON] = ACTIONS(13), + [aux_sym_str_lit_token1] = ACTIONS(15), + [sym_char_lit] = ACTIONS(420), + [sym_nil_lit] = ACTIONS(422), + [sym_bool_lit] = ACTIONS(422), + [aux_sym__sym_qualified_token1] = ACTIONS(19), [anon_sym_CARET] = ACTIONS(21), [anon_sym_POUND_CARET] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(280), - [anon_sym_LBRACE] = ACTIONS(282), - [anon_sym_LBRACK] = ACTIONS(284), - [anon_sym_POUND] = ACTIONS(358), - [anon_sym_POUND_QMARK] = ACTIONS(288), - [anon_sym_POUND_QMARK_AT] = ACTIONS(290), - [anon_sym_POUND_SQUOTE] = ACTIONS(360), - [anon_sym_POUND_POUND] = ACTIONS(362), - [anon_sym_POUND_EQ] = ACTIONS(296), - [anon_sym_AT] = ACTIONS(364), - [anon_sym_SQUOTE] = ACTIONS(366), - [anon_sym_BQUOTE] = ACTIONS(368), - [anon_sym_TILDE_AT] = ACTIONS(370), - [anon_sym_TILDE] = ACTIONS(372), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_LBRACK] = 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_TILDE_AT] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(51), }, - [51] = { + [STATE(44)] = { [sym__gap] = STATE(301), [sym_dis_expr] = STATE(301), - [sym__form] = STATE(420), - [sym_kwd_lit] = STATE(420), - [sym_str_lit] = STATE(420), - [sym_sym_lit] = STATE(420), + [sym__form] = STATE(283), + [sym_kwd_lit] = STATE(283), + [sym_str_lit] = STATE(283), + [sym_sym_lit] = STATE(283), [sym__metadata_lit] = STATE(424), - [sym_meta_lit] = STATE(314), - [sym_old_meta_lit] = STATE(313), - [sym_list_lit] = STATE(420), - [sym__bare_list_lit] = STATE(392), - [sym_map_lit] = STATE(420), - [sym__bare_map_lit] = STATE(403), - [sym_vec_lit] = STATE(420), - [sym__bare_vec_lit] = STATE(423), - [sym_set_lit] = STATE(420), - [sym__bare_set_lit] = STATE(374), - [sym_anon_fn_lit] = STATE(420), - [sym_regex_lit] = STATE(420), - [sym_read_cond_lit] = STATE(420), - [sym_splicing_read_cond_lit] = STATE(420), - [sym_ns_map_lit] = STATE(420), - [sym_var_quoting_lit] = STATE(420), - [sym_sym_val_lit] = STATE(420), - [sym_evaling_lit] = STATE(420), - [sym_tagged_or_ctor_lit] = STATE(420), - [sym_derefing_lit] = STATE(420), - [sym_quoting_lit] = STATE(420), - [sym_syn_quoting_lit] = STATE(420), - [sym_unquote_splicing_lit] = STATE(420), - [sym_unquoting_lit] = STATE(420), + [sym_meta_lit] = STATE(312), + [sym_old_meta_lit] = STATE(315), + [sym_list_lit] = STATE(283), + [sym__bare_list_lit] = STATE(299), + [sym_map_lit] = STATE(283), + [sym__bare_map_lit] = STATE(214), + [sym_vec_lit] = STATE(283), + [sym__bare_vec_lit] = STATE(217), + [sym_set_lit] = STATE(283), + [sym__bare_set_lit] = STATE(219), + [sym_anon_fn_lit] = STATE(283), + [sym_regex_lit] = STATE(283), + [sym_read_cond_lit] = STATE(283), + [sym_splicing_read_cond_lit] = STATE(283), + [sym_ns_map_lit] = STATE(283), + [sym_var_quoting_lit] = STATE(283), + [sym_sym_val_lit] = STATE(283), + [sym_evaling_lit] = STATE(283), + [sym_tagged_or_ctor_lit] = STATE(283), + [sym_derefing_lit] = STATE(283), + [sym_quoting_lit] = STATE(283), + [sym_syn_quoting_lit] = STATE(283), + [sym_unquote_splicing_lit] = STATE(283), + [sym_unquoting_lit] = STATE(283), [aux_sym_dis_expr_repeat1] = STATE(301), - [aux_sym_sym_lit_repeat1] = STATE(307), - [sym__ws] = ACTIONS(264), - [sym_comment] = ACTIONS(264), + [aux_sym_sym_lit_repeat1] = STATE(305), + [sym__ws] = ACTIONS(320), + [sym_comment] = ACTIONS(320), [anon_sym_POUND_] = ACTIONS(7), - [sym_num_lit] = ACTIONS(266), - [anon_sym_SLASH] = ACTIONS(268), - [anon_sym_COLON] = ACTIONS(352), - [anon_sym_COLON_COLON] = ACTIONS(354), - [aux_sym_str_lit_token1] = ACTIONS(274), - [sym_char_lit] = ACTIONS(266), - [sym_nil_lit] = ACTIONS(276), - [sym_bool_lit] = ACTIONS(276), - [aux_sym__sym_qualified_token1] = ACTIONS(278), + [sym_num_lit] = ACTIONS(424), + [anon_sym_SLASH] = ACTIONS(9), + [anon_sym_COLON] = ACTIONS(11), + [anon_sym_COLON_COLON] = ACTIONS(13), + [aux_sym_str_lit_token1] = ACTIONS(15), + [sym_char_lit] = ACTIONS(424), + [sym_nil_lit] = ACTIONS(426), + [sym_bool_lit] = ACTIONS(426), + [aux_sym__sym_qualified_token1] = ACTIONS(19), [anon_sym_CARET] = ACTIONS(21), [anon_sym_POUND_CARET] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(280), - [anon_sym_LBRACE] = ACTIONS(282), - [anon_sym_LBRACK] = ACTIONS(284), - [anon_sym_POUND] = ACTIONS(358), - [anon_sym_POUND_QMARK] = ACTIONS(288), - [anon_sym_POUND_QMARK_AT] = ACTIONS(290), - [anon_sym_POUND_SQUOTE] = ACTIONS(360), - [anon_sym_POUND_POUND] = ACTIONS(362), - [anon_sym_POUND_EQ] = ACTIONS(296), - [anon_sym_AT] = ACTIONS(364), - [anon_sym_SQUOTE] = ACTIONS(366), - [anon_sym_BQUOTE] = ACTIONS(368), - [anon_sym_TILDE_AT] = ACTIONS(370), - [anon_sym_TILDE] = ACTIONS(372), - }, - [52] = { - [sym__gap] = STATE(34), - [sym_dis_expr] = STATE(34), - [sym__form] = STATE(409), - [sym_kwd_lit] = STATE(409), - [sym_str_lit] = STATE(409), - [sym_sym_lit] = STATE(409), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_LBRACK] = 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_TILDE_AT] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(51), + }, + [STATE(45)] = { + [sym__gap] = STATE(301), + [sym_dis_expr] = STATE(301), + [sym__form] = STATE(284), + [sym_kwd_lit] = STATE(284), + [sym_str_lit] = STATE(284), + [sym_sym_lit] = STATE(284), [sym__metadata_lit] = STATE(424), - [sym_meta_lit] = STATE(314), - [sym_old_meta_lit] = STATE(313), - [sym_list_lit] = STATE(409), - [sym__bare_list_lit] = STATE(392), - [sym_map_lit] = STATE(409), - [sym__bare_map_lit] = STATE(403), - [sym_vec_lit] = STATE(409), - [sym__bare_vec_lit] = STATE(423), - [sym_set_lit] = STATE(409), - [sym__bare_set_lit] = STATE(374), - [sym_anon_fn_lit] = STATE(409), - [sym_regex_lit] = STATE(409), - [sym_read_cond_lit] = STATE(409), - [sym_splicing_read_cond_lit] = STATE(409), - [sym_ns_map_lit] = STATE(409), - [sym_var_quoting_lit] = STATE(409), - [sym_sym_val_lit] = STATE(409), - [sym_evaling_lit] = STATE(409), - [sym_tagged_or_ctor_lit] = STATE(409), - [sym_derefing_lit] = STATE(409), - [sym_quoting_lit] = STATE(409), - [sym_syn_quoting_lit] = STATE(409), - [sym_unquote_splicing_lit] = STATE(409), - [sym_unquoting_lit] = STATE(409), - [aux_sym_dis_expr_repeat1] = STATE(34), - [aux_sym_sym_lit_repeat1] = STATE(307), - [sym__ws] = ACTIONS(486), - [sym_comment] = ACTIONS(486), + [sym_meta_lit] = STATE(312), + [sym_old_meta_lit] = STATE(315), + [sym_list_lit] = STATE(284), + [sym__bare_list_lit] = STATE(299), + [sym_map_lit] = STATE(284), + [sym__bare_map_lit] = STATE(214), + [sym_vec_lit] = STATE(284), + [sym__bare_vec_lit] = STATE(217), + [sym_set_lit] = STATE(284), + [sym__bare_set_lit] = STATE(219), + [sym_anon_fn_lit] = STATE(284), + [sym_regex_lit] = STATE(284), + [sym_read_cond_lit] = STATE(284), + [sym_splicing_read_cond_lit] = STATE(284), + [sym_ns_map_lit] = STATE(284), + [sym_var_quoting_lit] = STATE(284), + [sym_sym_val_lit] = STATE(284), + [sym_evaling_lit] = STATE(284), + [sym_tagged_or_ctor_lit] = STATE(284), + [sym_derefing_lit] = STATE(284), + [sym_quoting_lit] = STATE(284), + [sym_syn_quoting_lit] = STATE(284), + [sym_unquote_splicing_lit] = STATE(284), + [sym_unquoting_lit] = STATE(284), + [aux_sym_dis_expr_repeat1] = STATE(301), + [aux_sym_sym_lit_repeat1] = STATE(305), + [sym__ws] = ACTIONS(320), + [sym_comment] = ACTIONS(320), [anon_sym_POUND_] = ACTIONS(7), - [sym_num_lit] = ACTIONS(488), - [anon_sym_SLASH] = ACTIONS(268), - [anon_sym_COLON] = ACTIONS(352), - [anon_sym_COLON_COLON] = ACTIONS(354), - [aux_sym_str_lit_token1] = ACTIONS(274), - [sym_char_lit] = ACTIONS(488), - [sym_nil_lit] = ACTIONS(490), - [sym_bool_lit] = ACTIONS(490), - [aux_sym__sym_qualified_token1] = ACTIONS(278), + [sym_num_lit] = ACTIONS(428), + [anon_sym_SLASH] = ACTIONS(9), + [anon_sym_COLON] = ACTIONS(11), + [anon_sym_COLON_COLON] = ACTIONS(13), + [aux_sym_str_lit_token1] = ACTIONS(15), + [sym_char_lit] = ACTIONS(428), + [sym_nil_lit] = ACTIONS(430), + [sym_bool_lit] = ACTIONS(430), + [aux_sym__sym_qualified_token1] = ACTIONS(19), [anon_sym_CARET] = ACTIONS(21), [anon_sym_POUND_CARET] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(280), - [anon_sym_LBRACE] = ACTIONS(282), - [anon_sym_LBRACK] = ACTIONS(284), - [anon_sym_POUND] = ACTIONS(358), - [anon_sym_POUND_QMARK] = ACTIONS(288), - [anon_sym_POUND_QMARK_AT] = ACTIONS(290), - [anon_sym_POUND_SQUOTE] = ACTIONS(360), - [anon_sym_POUND_POUND] = ACTIONS(362), - [anon_sym_POUND_EQ] = ACTIONS(296), - [anon_sym_AT] = ACTIONS(364), - [anon_sym_SQUOTE] = ACTIONS(366), - [anon_sym_BQUOTE] = ACTIONS(368), - [anon_sym_TILDE_AT] = ACTIONS(370), - [anon_sym_TILDE] = ACTIONS(372), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_LBRACK] = 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_TILDE_AT] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(51), }, - [53] = { + [STATE(46)] = { [sym__gap] = STATE(301), [sym_dis_expr] = STATE(301), - [sym__form] = STATE(386), - [sym_kwd_lit] = STATE(386), - [sym_str_lit] = STATE(386), - [sym_sym_lit] = STATE(386), + [sym__form] = STATE(285), + [sym_kwd_lit] = STATE(285), + [sym_str_lit] = STATE(285), + [sym_sym_lit] = STATE(285), [sym__metadata_lit] = STATE(424), - [sym_meta_lit] = STATE(314), - [sym_old_meta_lit] = STATE(313), - [sym_list_lit] = STATE(386), - [sym__bare_list_lit] = STATE(392), - [sym_map_lit] = STATE(386), - [sym__bare_map_lit] = STATE(403), - [sym_vec_lit] = STATE(386), - [sym__bare_vec_lit] = STATE(423), - [sym_set_lit] = STATE(386), - [sym__bare_set_lit] = STATE(374), - [sym_anon_fn_lit] = STATE(386), - [sym_regex_lit] = STATE(386), - [sym_read_cond_lit] = STATE(386), - [sym_splicing_read_cond_lit] = STATE(386), - [sym_ns_map_lit] = STATE(386), - [sym_var_quoting_lit] = STATE(386), - [sym_sym_val_lit] = STATE(386), - [sym_evaling_lit] = STATE(386), - [sym_tagged_or_ctor_lit] = STATE(386), - [sym_derefing_lit] = STATE(386), - [sym_quoting_lit] = STATE(386), - [sym_syn_quoting_lit] = STATE(386), - [sym_unquote_splicing_lit] = STATE(386), - [sym_unquoting_lit] = STATE(386), + [sym_meta_lit] = STATE(312), + [sym_old_meta_lit] = STATE(315), + [sym_list_lit] = STATE(285), + [sym__bare_list_lit] = STATE(299), + [sym_map_lit] = STATE(285), + [sym__bare_map_lit] = STATE(214), + [sym_vec_lit] = STATE(285), + [sym__bare_vec_lit] = STATE(217), + [sym_set_lit] = STATE(285), + [sym__bare_set_lit] = STATE(219), + [sym_anon_fn_lit] = STATE(285), + [sym_regex_lit] = STATE(285), + [sym_read_cond_lit] = STATE(285), + [sym_splicing_read_cond_lit] = STATE(285), + [sym_ns_map_lit] = STATE(285), + [sym_var_quoting_lit] = STATE(285), + [sym_sym_val_lit] = STATE(285), + [sym_evaling_lit] = STATE(285), + [sym_tagged_or_ctor_lit] = STATE(285), + [sym_derefing_lit] = STATE(285), + [sym_quoting_lit] = STATE(285), + [sym_syn_quoting_lit] = STATE(285), + [sym_unquote_splicing_lit] = STATE(285), + [sym_unquoting_lit] = STATE(285), [aux_sym_dis_expr_repeat1] = STATE(301), - [aux_sym_sym_lit_repeat1] = STATE(306), - [sym__ws] = ACTIONS(264), - [sym_comment] = ACTIONS(264), + [aux_sym_sym_lit_repeat1] = STATE(305), + [sym__ws] = ACTIONS(320), + [sym_comment] = ACTIONS(320), [anon_sym_POUND_] = ACTIONS(7), - [sym_num_lit] = ACTIONS(492), - [anon_sym_SLASH] = ACTIONS(268), - [anon_sym_COLON] = ACTIONS(426), - [anon_sym_COLON_COLON] = ACTIONS(428), - [aux_sym_str_lit_token1] = ACTIONS(274), - [sym_char_lit] = ACTIONS(492), - [sym_nil_lit] = ACTIONS(494), - [sym_bool_lit] = ACTIONS(494), - [aux_sym__sym_qualified_token1] = ACTIONS(278), + [sym_num_lit] = ACTIONS(432), + [anon_sym_SLASH] = ACTIONS(9), + [anon_sym_COLON] = ACTIONS(11), + [anon_sym_COLON_COLON] = ACTIONS(13), + [aux_sym_str_lit_token1] = ACTIONS(15), + [sym_char_lit] = ACTIONS(432), + [sym_nil_lit] = ACTIONS(434), + [sym_bool_lit] = ACTIONS(434), + [aux_sym__sym_qualified_token1] = ACTIONS(19), [anon_sym_CARET] = ACTIONS(21), [anon_sym_POUND_CARET] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(280), - [anon_sym_LBRACE] = ACTIONS(282), - [anon_sym_LBRACK] = ACTIONS(284), - [anon_sym_POUND] = ACTIONS(430), - [anon_sym_POUND_QMARK] = ACTIONS(288), - [anon_sym_POUND_QMARK_AT] = ACTIONS(290), - [anon_sym_POUND_SQUOTE] = ACTIONS(432), - [anon_sym_POUND_POUND] = ACTIONS(434), - [anon_sym_POUND_EQ] = ACTIONS(296), - [anon_sym_AT] = ACTIONS(436), - [anon_sym_SQUOTE] = ACTIONS(438), - [anon_sym_BQUOTE] = ACTIONS(440), - [anon_sym_TILDE_AT] = ACTIONS(442), - [anon_sym_TILDE] = ACTIONS(444), - }, - [54] = { - [sym__gap] = STATE(21), - [sym_dis_expr] = STATE(21), - [sym__form] = STATE(345), - [sym_kwd_lit] = STATE(345), - [sym_str_lit] = STATE(345), - [sym_sym_lit] = STATE(345), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_LBRACK] = 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_TILDE_AT] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(51), + }, + [STATE(47)] = { + [sym__gap] = STATE(301), + [sym_dis_expr] = STATE(301), + [sym__form] = STATE(286), + [sym_kwd_lit] = STATE(286), + [sym_str_lit] = STATE(286), + [sym_sym_lit] = STATE(286), [sym__metadata_lit] = STATE(424), - [sym_meta_lit] = STATE(314), - [sym_old_meta_lit] = STATE(313), - [sym_list_lit] = STATE(345), - [sym__bare_list_lit] = STATE(392), - [sym_map_lit] = STATE(345), - [sym__bare_map_lit] = STATE(403), - [sym_vec_lit] = STATE(345), - [sym__bare_vec_lit] = STATE(423), - [sym_set_lit] = STATE(345), - [sym__bare_set_lit] = STATE(374), - [sym_anon_fn_lit] = STATE(345), - [sym_regex_lit] = STATE(345), - [sym_read_cond_lit] = STATE(345), - [sym_splicing_read_cond_lit] = STATE(345), - [sym_ns_map_lit] = STATE(345), - [sym_var_quoting_lit] = STATE(345), - [sym_sym_val_lit] = STATE(345), - [sym_evaling_lit] = STATE(345), - [sym_tagged_or_ctor_lit] = STATE(345), - [sym_derefing_lit] = STATE(345), - [sym_quoting_lit] = STATE(345), - [sym_syn_quoting_lit] = STATE(345), - [sym_unquote_splicing_lit] = STATE(345), - [sym_unquoting_lit] = STATE(345), - [aux_sym_dis_expr_repeat1] = STATE(21), - [aux_sym_sym_lit_repeat1] = STATE(304), - [sym__ws] = ACTIONS(496), - [sym_comment] = ACTIONS(496), + [sym_meta_lit] = STATE(312), + [sym_old_meta_lit] = STATE(315), + [sym_list_lit] = STATE(286), + [sym__bare_list_lit] = STATE(299), + [sym_map_lit] = STATE(286), + [sym__bare_map_lit] = STATE(214), + [sym_vec_lit] = STATE(286), + [sym__bare_vec_lit] = STATE(217), + [sym_set_lit] = STATE(286), + [sym__bare_set_lit] = STATE(219), + [sym_anon_fn_lit] = STATE(286), + [sym_regex_lit] = STATE(286), + [sym_read_cond_lit] = STATE(286), + [sym_splicing_read_cond_lit] = STATE(286), + [sym_ns_map_lit] = STATE(286), + [sym_var_quoting_lit] = STATE(286), + [sym_sym_val_lit] = STATE(286), + [sym_evaling_lit] = STATE(286), + [sym_tagged_or_ctor_lit] = STATE(286), + [sym_derefing_lit] = STATE(286), + [sym_quoting_lit] = STATE(286), + [sym_syn_quoting_lit] = STATE(286), + [sym_unquote_splicing_lit] = STATE(286), + [sym_unquoting_lit] = STATE(286), + [aux_sym_dis_expr_repeat1] = STATE(301), + [aux_sym_sym_lit_repeat1] = STATE(305), + [sym__ws] = ACTIONS(320), + [sym_comment] = ACTIONS(320), [anon_sym_POUND_] = ACTIONS(7), - [sym_num_lit] = ACTIONS(498), - [anon_sym_SLASH] = ACTIONS(268), - [anon_sym_COLON] = ACTIONS(270), - [anon_sym_COLON_COLON] = ACTIONS(272), - [aux_sym_str_lit_token1] = ACTIONS(274), - [sym_char_lit] = ACTIONS(498), - [sym_nil_lit] = ACTIONS(500), - [sym_bool_lit] = ACTIONS(500), - [aux_sym__sym_qualified_token1] = ACTIONS(278), + [sym_num_lit] = ACTIONS(436), + [anon_sym_SLASH] = ACTIONS(9), + [anon_sym_COLON] = ACTIONS(11), + [anon_sym_COLON_COLON] = ACTIONS(13), + [aux_sym_str_lit_token1] = ACTIONS(15), + [sym_char_lit] = ACTIONS(436), + [sym_nil_lit] = ACTIONS(438), + [sym_bool_lit] = ACTIONS(438), + [aux_sym__sym_qualified_token1] = ACTIONS(19), [anon_sym_CARET] = ACTIONS(21), [anon_sym_POUND_CARET] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(280), - [anon_sym_LBRACE] = ACTIONS(282), - [anon_sym_LBRACK] = ACTIONS(284), - [anon_sym_POUND] = ACTIONS(286), - [anon_sym_POUND_QMARK] = ACTIONS(288), - [anon_sym_POUND_QMARK_AT] = ACTIONS(290), - [anon_sym_POUND_SQUOTE] = ACTIONS(292), - [anon_sym_POUND_POUND] = ACTIONS(294), - [anon_sym_POUND_EQ] = ACTIONS(296), - [anon_sym_AT] = ACTIONS(298), - [anon_sym_SQUOTE] = ACTIONS(300), - [anon_sym_BQUOTE] = ACTIONS(302), - [anon_sym_TILDE_AT] = ACTIONS(304), - [anon_sym_TILDE] = ACTIONS(306), - }, - [55] = { - [sym__gap] = STATE(43), - [sym_dis_expr] = STATE(43), - [sym__form] = STATE(371), - [sym_kwd_lit] = STATE(371), - [sym_str_lit] = STATE(371), - [sym_sym_lit] = STATE(371), - [sym__metadata_lit] = STATE(424), - [sym_meta_lit] = STATE(314), - [sym_old_meta_lit] = STATE(313), - [sym_list_lit] = STATE(371), - [sym__bare_list_lit] = STATE(392), - [sym_map_lit] = STATE(371), - [sym__bare_map_lit] = STATE(403), - [sym_vec_lit] = STATE(371), - [sym__bare_vec_lit] = STATE(423), - [sym_set_lit] = STATE(371), - [sym__bare_set_lit] = STATE(374), - [sym_anon_fn_lit] = STATE(371), - [sym_regex_lit] = STATE(371), - [sym_read_cond_lit] = STATE(371), - [sym_splicing_read_cond_lit] = STATE(371), - [sym_ns_map_lit] = STATE(371), - [sym_var_quoting_lit] = STATE(371), - [sym_sym_val_lit] = STATE(371), - [sym_evaling_lit] = STATE(371), - [sym_tagged_or_ctor_lit] = STATE(371), - [sym_derefing_lit] = STATE(371), - [sym_quoting_lit] = STATE(371), - [sym_syn_quoting_lit] = STATE(371), - [sym_unquote_splicing_lit] = STATE(371), - [sym_unquoting_lit] = STATE(371), - [aux_sym_dis_expr_repeat1] = STATE(43), - [aux_sym_sym_lit_repeat1] = STATE(307), - [sym__ws] = ACTIONS(502), - [sym_comment] = ACTIONS(502), - [anon_sym_POUND_] = ACTIONS(7), - [sym_num_lit] = ACTIONS(504), - [anon_sym_SLASH] = ACTIONS(268), - [anon_sym_COLON] = ACTIONS(352), - [anon_sym_COLON_COLON] = ACTIONS(354), - [aux_sym_str_lit_token1] = ACTIONS(274), - [sym_char_lit] = ACTIONS(504), - [sym_nil_lit] = ACTIONS(506), - [sym_bool_lit] = ACTIONS(506), - [aux_sym__sym_qualified_token1] = ACTIONS(278), - [anon_sym_CARET] = ACTIONS(21), - [anon_sym_POUND_CARET] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(280), - [anon_sym_LBRACE] = ACTIONS(282), - [anon_sym_LBRACK] = ACTIONS(284), - [anon_sym_POUND] = ACTIONS(358), - [anon_sym_POUND_QMARK] = ACTIONS(288), - [anon_sym_POUND_QMARK_AT] = ACTIONS(290), - [anon_sym_POUND_SQUOTE] = ACTIONS(360), - [anon_sym_POUND_POUND] = ACTIONS(362), - [anon_sym_POUND_EQ] = ACTIONS(296), - [anon_sym_AT] = ACTIONS(364), - [anon_sym_SQUOTE] = ACTIONS(366), - [anon_sym_BQUOTE] = ACTIONS(368), - [anon_sym_TILDE_AT] = ACTIONS(370), - [anon_sym_TILDE] = ACTIONS(372), - }, - [56] = { - [sym__gap] = STATE(45), - [sym_dis_expr] = STATE(45), - [sym__form] = STATE(370), - [sym_kwd_lit] = STATE(370), - [sym_str_lit] = STATE(370), - [sym_sym_lit] = STATE(370), - [sym__metadata_lit] = STATE(424), - [sym_meta_lit] = STATE(314), - [sym_old_meta_lit] = STATE(313), - [sym_list_lit] = STATE(370), - [sym__bare_list_lit] = STATE(392), - [sym_map_lit] = STATE(370), - [sym__bare_map_lit] = STATE(403), - [sym_vec_lit] = STATE(370), - [sym__bare_vec_lit] = STATE(423), - [sym_set_lit] = STATE(370), - [sym__bare_set_lit] = STATE(374), - [sym_anon_fn_lit] = STATE(370), - [sym_regex_lit] = STATE(370), - [sym_read_cond_lit] = STATE(370), - [sym_splicing_read_cond_lit] = STATE(370), - [sym_ns_map_lit] = STATE(370), - [sym_var_quoting_lit] = STATE(370), - [sym_sym_val_lit] = STATE(370), - [sym_evaling_lit] = STATE(370), - [sym_tagged_or_ctor_lit] = STATE(370), - [sym_derefing_lit] = STATE(370), - [sym_quoting_lit] = STATE(370), - [sym_syn_quoting_lit] = STATE(370), - [sym_unquote_splicing_lit] = STATE(370), - [sym_unquoting_lit] = STATE(370), - [aux_sym_dis_expr_repeat1] = STATE(45), - [aux_sym_sym_lit_repeat1] = STATE(307), - [sym__ws] = ACTIONS(508), - [sym_comment] = ACTIONS(508), - [anon_sym_POUND_] = ACTIONS(7), - [sym_num_lit] = ACTIONS(510), - [anon_sym_SLASH] = ACTIONS(268), - [anon_sym_COLON] = ACTIONS(352), - [anon_sym_COLON_COLON] = ACTIONS(354), - [aux_sym_str_lit_token1] = ACTIONS(274), - [sym_char_lit] = ACTIONS(510), - [sym_nil_lit] = ACTIONS(512), - [sym_bool_lit] = ACTIONS(512), - [aux_sym__sym_qualified_token1] = ACTIONS(278), - [anon_sym_CARET] = ACTIONS(21), - [anon_sym_POUND_CARET] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(280), - [anon_sym_LBRACE] = ACTIONS(282), - [anon_sym_LBRACK] = ACTIONS(284), - [anon_sym_POUND] = ACTIONS(358), - [anon_sym_POUND_QMARK] = ACTIONS(288), - [anon_sym_POUND_QMARK_AT] = ACTIONS(290), - [anon_sym_POUND_SQUOTE] = ACTIONS(360), - [anon_sym_POUND_POUND] = ACTIONS(362), - [anon_sym_POUND_EQ] = ACTIONS(296), - [anon_sym_AT] = ACTIONS(364), - [anon_sym_SQUOTE] = ACTIONS(366), - [anon_sym_BQUOTE] = ACTIONS(368), - [anon_sym_TILDE_AT] = ACTIONS(370), - [anon_sym_TILDE] = ACTIONS(372), - }, - [57] = { - [sym__gap] = STATE(47), - [sym_dis_expr] = STATE(47), - [sym__form] = STATE(367), - [sym_kwd_lit] = STATE(367), - [sym_str_lit] = STATE(367), - [sym_sym_lit] = STATE(367), - [sym__metadata_lit] = STATE(424), - [sym_meta_lit] = STATE(314), - [sym_old_meta_lit] = STATE(313), - [sym_list_lit] = STATE(367), - [sym__bare_list_lit] = STATE(392), - [sym_map_lit] = STATE(367), - [sym__bare_map_lit] = STATE(403), - [sym_vec_lit] = STATE(367), - [sym__bare_vec_lit] = STATE(423), - [sym_set_lit] = STATE(367), - [sym__bare_set_lit] = STATE(374), - [sym_anon_fn_lit] = STATE(367), - [sym_regex_lit] = STATE(367), - [sym_read_cond_lit] = STATE(367), - [sym_splicing_read_cond_lit] = STATE(367), - [sym_ns_map_lit] = STATE(367), - [sym_var_quoting_lit] = STATE(367), - [sym_sym_val_lit] = STATE(367), - [sym_evaling_lit] = STATE(367), - [sym_tagged_or_ctor_lit] = STATE(367), - [sym_derefing_lit] = STATE(367), - [sym_quoting_lit] = STATE(367), - [sym_syn_quoting_lit] = STATE(367), - [sym_unquote_splicing_lit] = STATE(367), - [sym_unquoting_lit] = STATE(367), - [aux_sym_dis_expr_repeat1] = STATE(47), - [aux_sym_sym_lit_repeat1] = STATE(307), - [sym__ws] = ACTIONS(514), - [sym_comment] = ACTIONS(514), - [anon_sym_POUND_] = ACTIONS(7), - [sym_num_lit] = ACTIONS(516), - [anon_sym_SLASH] = ACTIONS(268), - [anon_sym_COLON] = ACTIONS(352), - [anon_sym_COLON_COLON] = ACTIONS(354), - [aux_sym_str_lit_token1] = ACTIONS(274), - [sym_char_lit] = ACTIONS(516), - [sym_nil_lit] = ACTIONS(518), - [sym_bool_lit] = ACTIONS(518), - [aux_sym__sym_qualified_token1] = ACTIONS(278), - [anon_sym_CARET] = ACTIONS(21), - [anon_sym_POUND_CARET] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(280), - [anon_sym_LBRACE] = ACTIONS(282), - [anon_sym_LBRACK] = ACTIONS(284), - [anon_sym_POUND] = ACTIONS(358), - [anon_sym_POUND_QMARK] = ACTIONS(288), - [anon_sym_POUND_QMARK_AT] = ACTIONS(290), - [anon_sym_POUND_SQUOTE] = ACTIONS(360), - [anon_sym_POUND_POUND] = ACTIONS(362), - [anon_sym_POUND_EQ] = ACTIONS(296), - [anon_sym_AT] = ACTIONS(364), - [anon_sym_SQUOTE] = ACTIONS(366), - [anon_sym_BQUOTE] = ACTIONS(368), - [anon_sym_TILDE_AT] = ACTIONS(370), - [anon_sym_TILDE] = ACTIONS(372), - }, - [58] = { - [sym__gap] = STATE(48), - [sym_dis_expr] = STATE(48), - [sym__form] = STATE(366), - [sym_kwd_lit] = STATE(366), - [sym_str_lit] = STATE(366), - [sym_sym_lit] = STATE(366), - [sym__metadata_lit] = STATE(424), - [sym_meta_lit] = STATE(314), - [sym_old_meta_lit] = STATE(313), - [sym_list_lit] = STATE(366), - [sym__bare_list_lit] = STATE(392), - [sym_map_lit] = STATE(366), - [sym__bare_map_lit] = STATE(403), - [sym_vec_lit] = STATE(366), - [sym__bare_vec_lit] = STATE(423), - [sym_set_lit] = STATE(366), - [sym__bare_set_lit] = STATE(374), - [sym_anon_fn_lit] = STATE(366), - [sym_regex_lit] = STATE(366), - [sym_read_cond_lit] = STATE(366), - [sym_splicing_read_cond_lit] = STATE(366), - [sym_ns_map_lit] = STATE(366), - [sym_var_quoting_lit] = STATE(366), - [sym_sym_val_lit] = STATE(366), - [sym_evaling_lit] = STATE(366), - [sym_tagged_or_ctor_lit] = STATE(366), - [sym_derefing_lit] = STATE(366), - [sym_quoting_lit] = STATE(366), - [sym_syn_quoting_lit] = STATE(366), - [sym_unquote_splicing_lit] = STATE(366), - [sym_unquoting_lit] = STATE(366), - [aux_sym_dis_expr_repeat1] = STATE(48), - [aux_sym_sym_lit_repeat1] = STATE(307), - [sym__ws] = ACTIONS(520), - [sym_comment] = ACTIONS(520), - [anon_sym_POUND_] = ACTIONS(7), - [sym_num_lit] = ACTIONS(522), - [anon_sym_SLASH] = ACTIONS(268), - [anon_sym_COLON] = ACTIONS(352), - [anon_sym_COLON_COLON] = ACTIONS(354), - [aux_sym_str_lit_token1] = ACTIONS(274), - [sym_char_lit] = ACTIONS(522), - [sym_nil_lit] = ACTIONS(524), - [sym_bool_lit] = ACTIONS(524), - [aux_sym__sym_qualified_token1] = ACTIONS(278), - [anon_sym_CARET] = ACTIONS(21), - [anon_sym_POUND_CARET] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(280), - [anon_sym_LBRACE] = ACTIONS(282), - [anon_sym_LBRACK] = ACTIONS(284), - [anon_sym_POUND] = ACTIONS(358), - [anon_sym_POUND_QMARK] = ACTIONS(288), - [anon_sym_POUND_QMARK_AT] = ACTIONS(290), - [anon_sym_POUND_SQUOTE] = ACTIONS(360), - [anon_sym_POUND_POUND] = ACTIONS(362), - [anon_sym_POUND_EQ] = ACTIONS(296), - [anon_sym_AT] = ACTIONS(364), - [anon_sym_SQUOTE] = ACTIONS(366), - [anon_sym_BQUOTE] = ACTIONS(368), - [anon_sym_TILDE_AT] = ACTIONS(370), - [anon_sym_TILDE] = ACTIONS(372), - }, - [59] = { - [sym__gap] = STATE(49), - [sym_dis_expr] = STATE(49), - [sym__form] = STATE(355), - [sym_kwd_lit] = STATE(355), - [sym_str_lit] = STATE(355), - [sym_sym_lit] = STATE(355), - [sym__metadata_lit] = STATE(424), - [sym_meta_lit] = STATE(314), - [sym_old_meta_lit] = STATE(313), - [sym_list_lit] = STATE(355), - [sym__bare_list_lit] = STATE(392), - [sym_map_lit] = STATE(355), - [sym__bare_map_lit] = STATE(403), - [sym_vec_lit] = STATE(355), - [sym__bare_vec_lit] = STATE(423), - [sym_set_lit] = STATE(355), - [sym__bare_set_lit] = STATE(374), - [sym_anon_fn_lit] = STATE(355), - [sym_regex_lit] = STATE(355), - [sym_read_cond_lit] = STATE(355), - [sym_splicing_read_cond_lit] = STATE(355), - [sym_ns_map_lit] = STATE(355), - [sym_var_quoting_lit] = STATE(355), - [sym_sym_val_lit] = STATE(355), - [sym_evaling_lit] = STATE(355), - [sym_tagged_or_ctor_lit] = STATE(355), - [sym_derefing_lit] = STATE(355), - [sym_quoting_lit] = STATE(355), - [sym_syn_quoting_lit] = STATE(355), - [sym_unquote_splicing_lit] = STATE(355), - [sym_unquoting_lit] = STATE(355), - [aux_sym_dis_expr_repeat1] = STATE(49), - [aux_sym_sym_lit_repeat1] = STATE(307), - [sym__ws] = ACTIONS(526), - [sym_comment] = ACTIONS(526), - [anon_sym_POUND_] = ACTIONS(7), - [sym_num_lit] = ACTIONS(528), - [anon_sym_SLASH] = ACTIONS(268), - [anon_sym_COLON] = ACTIONS(352), - [anon_sym_COLON_COLON] = ACTIONS(354), - [aux_sym_str_lit_token1] = ACTIONS(274), - [sym_char_lit] = ACTIONS(528), - [sym_nil_lit] = ACTIONS(530), - [sym_bool_lit] = ACTIONS(530), - [aux_sym__sym_qualified_token1] = ACTIONS(278), - [anon_sym_CARET] = ACTIONS(21), - [anon_sym_POUND_CARET] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(280), - [anon_sym_LBRACE] = ACTIONS(282), - [anon_sym_LBRACK] = ACTIONS(284), - [anon_sym_POUND] = ACTIONS(358), - [anon_sym_POUND_QMARK] = ACTIONS(288), - [anon_sym_POUND_QMARK_AT] = ACTIONS(290), - [anon_sym_POUND_SQUOTE] = ACTIONS(360), - [anon_sym_POUND_POUND] = ACTIONS(362), - [anon_sym_POUND_EQ] = ACTIONS(296), - [anon_sym_AT] = ACTIONS(364), - [anon_sym_SQUOTE] = ACTIONS(366), - [anon_sym_BQUOTE] = ACTIONS(368), - [anon_sym_TILDE_AT] = ACTIONS(370), - [anon_sym_TILDE] = ACTIONS(372), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_LBRACK] = 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_TILDE_AT] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(51), }, - [60] = { - [sym__gap] = STATE(50), - [sym_dis_expr] = STATE(50), - [sym__form] = STATE(347), - [sym_kwd_lit] = STATE(347), - [sym_str_lit] = STATE(347), - [sym_sym_lit] = STATE(347), - [sym__metadata_lit] = STATE(424), - [sym_meta_lit] = STATE(314), - [sym_old_meta_lit] = STATE(313), - [sym_list_lit] = STATE(347), - [sym__bare_list_lit] = STATE(392), - [sym_map_lit] = STATE(347), - [sym__bare_map_lit] = STATE(403), - [sym_vec_lit] = STATE(347), - [sym__bare_vec_lit] = STATE(423), - [sym_set_lit] = STATE(347), - [sym__bare_set_lit] = STATE(374), - [sym_anon_fn_lit] = STATE(347), - [sym_regex_lit] = STATE(347), - [sym_read_cond_lit] = STATE(347), - [sym_splicing_read_cond_lit] = STATE(347), - [sym_ns_map_lit] = STATE(347), - [sym_var_quoting_lit] = STATE(347), - [sym_sym_val_lit] = STATE(347), - [sym_evaling_lit] = STATE(347), - [sym_tagged_or_ctor_lit] = STATE(347), - [sym_derefing_lit] = STATE(347), - [sym_quoting_lit] = STATE(347), - [sym_syn_quoting_lit] = STATE(347), - [sym_unquote_splicing_lit] = STATE(347), - [sym_unquoting_lit] = STATE(347), - [aux_sym_dis_expr_repeat1] = STATE(50), - [aux_sym_sym_lit_repeat1] = STATE(307), - [sym__ws] = ACTIONS(532), - [sym_comment] = ACTIONS(532), - [anon_sym_POUND_] = ACTIONS(7), - [sym_num_lit] = ACTIONS(316), - [anon_sym_SLASH] = ACTIONS(268), - [anon_sym_COLON] = ACTIONS(352), - [anon_sym_COLON_COLON] = ACTIONS(354), - [aux_sym_str_lit_token1] = ACTIONS(274), - [sym_char_lit] = ACTIONS(316), - [sym_nil_lit] = ACTIONS(318), - [sym_bool_lit] = ACTIONS(318), - [aux_sym__sym_qualified_token1] = ACTIONS(278), - [anon_sym_CARET] = ACTIONS(21), - [anon_sym_POUND_CARET] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(280), - [anon_sym_LBRACE] = ACTIONS(282), - [anon_sym_LBRACK] = ACTIONS(284), - [anon_sym_POUND] = ACTIONS(358), - [anon_sym_POUND_QMARK] = ACTIONS(288), - [anon_sym_POUND_QMARK_AT] = ACTIONS(290), - [anon_sym_POUND_SQUOTE] = ACTIONS(360), - [anon_sym_POUND_POUND] = ACTIONS(362), - [anon_sym_POUND_EQ] = ACTIONS(296), - [anon_sym_AT] = ACTIONS(364), - [anon_sym_SQUOTE] = ACTIONS(366), - [anon_sym_BQUOTE] = ACTIONS(368), - [anon_sym_TILDE_AT] = ACTIONS(370), - [anon_sym_TILDE] = ACTIONS(372), - }, - [61] = { - [sym__gap] = STATE(51), - [sym_dis_expr] = STATE(51), - [sym__form] = STATE(345), - [sym_kwd_lit] = STATE(345), - [sym_str_lit] = STATE(345), - [sym_sym_lit] = STATE(345), + [STATE(48)] = { + [sym__gap] = STATE(301), + [sym_dis_expr] = STATE(301), + [sym__form] = STATE(287), + [sym_kwd_lit] = STATE(287), + [sym_str_lit] = STATE(287), + [sym_sym_lit] = STATE(287), [sym__metadata_lit] = STATE(424), - [sym_meta_lit] = STATE(314), - [sym_old_meta_lit] = STATE(313), - [sym_list_lit] = STATE(345), - [sym__bare_list_lit] = STATE(392), - [sym_map_lit] = STATE(345), - [sym__bare_map_lit] = STATE(403), - [sym_vec_lit] = STATE(345), - [sym__bare_vec_lit] = STATE(423), - [sym_set_lit] = STATE(345), - [sym__bare_set_lit] = STATE(374), - [sym_anon_fn_lit] = STATE(345), - [sym_regex_lit] = STATE(345), - [sym_read_cond_lit] = STATE(345), - [sym_splicing_read_cond_lit] = STATE(345), - [sym_ns_map_lit] = STATE(345), - [sym_var_quoting_lit] = STATE(345), - [sym_sym_val_lit] = STATE(345), - [sym_evaling_lit] = STATE(345), - [sym_tagged_or_ctor_lit] = STATE(345), - [sym_derefing_lit] = STATE(345), - [sym_quoting_lit] = STATE(345), - [sym_syn_quoting_lit] = STATE(345), - [sym_unquote_splicing_lit] = STATE(345), - [sym_unquoting_lit] = STATE(345), - [aux_sym_dis_expr_repeat1] = STATE(51), - [aux_sym_sym_lit_repeat1] = STATE(307), - [sym__ws] = ACTIONS(534), - [sym_comment] = ACTIONS(534), + [sym_meta_lit] = STATE(312), + [sym_old_meta_lit] = STATE(315), + [sym_list_lit] = STATE(287), + [sym__bare_list_lit] = STATE(299), + [sym_map_lit] = STATE(287), + [sym__bare_map_lit] = STATE(214), + [sym_vec_lit] = STATE(287), + [sym__bare_vec_lit] = STATE(217), + [sym_set_lit] = STATE(287), + [sym__bare_set_lit] = STATE(219), + [sym_anon_fn_lit] = STATE(287), + [sym_regex_lit] = STATE(287), + [sym_read_cond_lit] = STATE(287), + [sym_splicing_read_cond_lit] = STATE(287), + [sym_ns_map_lit] = STATE(287), + [sym_var_quoting_lit] = STATE(287), + [sym_sym_val_lit] = STATE(287), + [sym_evaling_lit] = STATE(287), + [sym_tagged_or_ctor_lit] = STATE(287), + [sym_derefing_lit] = STATE(287), + [sym_quoting_lit] = STATE(287), + [sym_syn_quoting_lit] = STATE(287), + [sym_unquote_splicing_lit] = STATE(287), + [sym_unquoting_lit] = STATE(287), + [aux_sym_dis_expr_repeat1] = STATE(301), + [aux_sym_sym_lit_repeat1] = STATE(305), + [sym__ws] = ACTIONS(320), + [sym_comment] = ACTIONS(320), [anon_sym_POUND_] = ACTIONS(7), - [sym_num_lit] = ACTIONS(498), - [anon_sym_SLASH] = ACTIONS(268), - [anon_sym_COLON] = ACTIONS(352), - [anon_sym_COLON_COLON] = ACTIONS(354), - [aux_sym_str_lit_token1] = ACTIONS(274), - [sym_char_lit] = ACTIONS(498), - [sym_nil_lit] = ACTIONS(500), - [sym_bool_lit] = ACTIONS(500), - [aux_sym__sym_qualified_token1] = ACTIONS(278), + [sym_num_lit] = ACTIONS(440), + [anon_sym_SLASH] = ACTIONS(9), + [anon_sym_COLON] = ACTIONS(11), + [anon_sym_COLON_COLON] = ACTIONS(13), + [aux_sym_str_lit_token1] = ACTIONS(15), + [sym_char_lit] = ACTIONS(440), + [sym_nil_lit] = ACTIONS(442), + [sym_bool_lit] = ACTIONS(442), + [aux_sym__sym_qualified_token1] = ACTIONS(19), [anon_sym_CARET] = ACTIONS(21), [anon_sym_POUND_CARET] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(280), - [anon_sym_LBRACE] = ACTIONS(282), - [anon_sym_LBRACK] = ACTIONS(284), - [anon_sym_POUND] = ACTIONS(358), - [anon_sym_POUND_QMARK] = ACTIONS(288), - [anon_sym_POUND_QMARK_AT] = ACTIONS(290), - [anon_sym_POUND_SQUOTE] = ACTIONS(360), - [anon_sym_POUND_POUND] = ACTIONS(362), - [anon_sym_POUND_EQ] = ACTIONS(296), - [anon_sym_AT] = ACTIONS(364), - [anon_sym_SQUOTE] = ACTIONS(366), - [anon_sym_BQUOTE] = ACTIONS(368), - [anon_sym_TILDE_AT] = ACTIONS(370), - [anon_sym_TILDE] = ACTIONS(372), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_LBRACK] = 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_TILDE_AT] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(51), }, - [62] = { + [STATE(49)] = { [sym__gap] = STATE(301), [sym_dis_expr] = STATE(301), - [sym__form] = STATE(389), - [sym_kwd_lit] = STATE(389), - [sym_str_lit] = STATE(389), - [sym_sym_lit] = STATE(389), + [sym__form] = STATE(288), + [sym_kwd_lit] = STATE(288), + [sym_str_lit] = STATE(288), + [sym_sym_lit] = STATE(288), [sym__metadata_lit] = STATE(424), - [sym_meta_lit] = STATE(314), - [sym_old_meta_lit] = STATE(313), - [sym_list_lit] = STATE(389), - [sym__bare_list_lit] = STATE(392), - [sym_map_lit] = STATE(389), - [sym__bare_map_lit] = STATE(403), - [sym_vec_lit] = STATE(389), - [sym__bare_vec_lit] = STATE(423), - [sym_set_lit] = STATE(389), - [sym__bare_set_lit] = STATE(374), - [sym_anon_fn_lit] = STATE(389), - [sym_regex_lit] = STATE(389), - [sym_read_cond_lit] = STATE(389), - [sym_splicing_read_cond_lit] = STATE(389), - [sym_ns_map_lit] = STATE(389), - [sym_var_quoting_lit] = STATE(389), - [sym_sym_val_lit] = STATE(389), - [sym_evaling_lit] = STATE(389), - [sym_tagged_or_ctor_lit] = STATE(389), - [sym_derefing_lit] = STATE(389), - [sym_quoting_lit] = STATE(389), - [sym_syn_quoting_lit] = STATE(389), - [sym_unquote_splicing_lit] = STATE(389), - [sym_unquoting_lit] = STATE(389), + [sym_meta_lit] = STATE(312), + [sym_old_meta_lit] = STATE(315), + [sym_list_lit] = STATE(288), + [sym__bare_list_lit] = STATE(299), + [sym_map_lit] = STATE(288), + [sym__bare_map_lit] = STATE(214), + [sym_vec_lit] = STATE(288), + [sym__bare_vec_lit] = STATE(217), + [sym_set_lit] = STATE(288), + [sym__bare_set_lit] = STATE(219), + [sym_anon_fn_lit] = STATE(288), + [sym_regex_lit] = STATE(288), + [sym_read_cond_lit] = STATE(288), + [sym_splicing_read_cond_lit] = STATE(288), + [sym_ns_map_lit] = STATE(288), + [sym_var_quoting_lit] = STATE(288), + [sym_sym_val_lit] = STATE(288), + [sym_evaling_lit] = STATE(288), + [sym_tagged_or_ctor_lit] = STATE(288), + [sym_derefing_lit] = STATE(288), + [sym_quoting_lit] = STATE(288), + [sym_syn_quoting_lit] = STATE(288), + [sym_unquote_splicing_lit] = STATE(288), + [sym_unquoting_lit] = STATE(288), [aux_sym_dis_expr_repeat1] = STATE(301), - [aux_sym_sym_lit_repeat1] = STATE(307), - [sym__ws] = ACTIONS(264), - [sym_comment] = ACTIONS(264), + [aux_sym_sym_lit_repeat1] = STATE(305), + [sym__ws] = ACTIONS(320), + [sym_comment] = ACTIONS(320), [anon_sym_POUND_] = ACTIONS(7), - [sym_num_lit] = ACTIONS(378), - [anon_sym_SLASH] = ACTIONS(268), - [anon_sym_COLON] = ACTIONS(352), - [anon_sym_COLON_COLON] = ACTIONS(354), - [aux_sym_str_lit_token1] = ACTIONS(274), - [sym_char_lit] = ACTIONS(378), - [sym_nil_lit] = ACTIONS(380), - [sym_bool_lit] = ACTIONS(380), - [aux_sym__sym_qualified_token1] = ACTIONS(278), - [anon_sym_CARET] = ACTIONS(21), - [anon_sym_POUND_CARET] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(280), - [anon_sym_LBRACE] = ACTIONS(282), - [anon_sym_LBRACK] = ACTIONS(284), - [anon_sym_POUND] = ACTIONS(358), - [anon_sym_POUND_QMARK] = ACTIONS(288), - [anon_sym_POUND_QMARK_AT] = ACTIONS(290), - [anon_sym_POUND_SQUOTE] = ACTIONS(360), - [anon_sym_POUND_POUND] = ACTIONS(362), - [anon_sym_POUND_EQ] = ACTIONS(296), - [anon_sym_AT] = ACTIONS(364), - [anon_sym_SQUOTE] = ACTIONS(366), - [anon_sym_BQUOTE] = ACTIONS(368), - [anon_sym_TILDE_AT] = ACTIONS(370), - [anon_sym_TILDE] = ACTIONS(372), + [sym_num_lit] = ACTIONS(444), + [anon_sym_SLASH] = ACTIONS(9), + [anon_sym_COLON] = ACTIONS(11), + [anon_sym_COLON_COLON] = ACTIONS(13), + [aux_sym_str_lit_token1] = ACTIONS(15), + [sym_char_lit] = ACTIONS(444), + [sym_nil_lit] = ACTIONS(446), + [sym_bool_lit] = ACTIONS(446), + [aux_sym__sym_qualified_token1] = ACTIONS(19), + [anon_sym_CARET] = ACTIONS(21), + [anon_sym_POUND_CARET] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_LBRACK] = 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_TILDE_AT] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(51), }, - [63] = { + [STATE(50)] = { [sym__gap] = STATE(301), [sym_dis_expr] = STATE(301), - [sym__form] = STATE(270), - [sym_kwd_lit] = STATE(270), - [sym_str_lit] = STATE(270), - [sym_sym_lit] = STATE(270), + [sym__form] = STATE(290), + [sym_kwd_lit] = STATE(290), + [sym_str_lit] = STATE(290), + [sym_sym_lit] = STATE(290), [sym__metadata_lit] = STATE(424), - [sym_meta_lit] = STATE(314), - [sym_old_meta_lit] = STATE(313), - [sym_list_lit] = STATE(270), - [sym__bare_list_lit] = STATE(218), - [sym_map_lit] = STATE(270), - [sym__bare_map_lit] = STATE(219), - [sym_vec_lit] = STATE(270), - [sym__bare_vec_lit] = STATE(226), - [sym_set_lit] = STATE(270), - [sym__bare_set_lit] = STATE(227), - [sym_anon_fn_lit] = STATE(270), - [sym_regex_lit] = STATE(270), - [sym_read_cond_lit] = STATE(270), - [sym_splicing_read_cond_lit] = STATE(270), - [sym_ns_map_lit] = STATE(270), - [sym_var_quoting_lit] = STATE(270), - [sym_sym_val_lit] = STATE(270), - [sym_evaling_lit] = STATE(270), - [sym_tagged_or_ctor_lit] = STATE(270), - [sym_derefing_lit] = STATE(270), - [sym_quoting_lit] = STATE(270), - [sym_syn_quoting_lit] = STATE(270), - [sym_unquote_splicing_lit] = STATE(270), - [sym_unquoting_lit] = STATE(270), + [sym_meta_lit] = STATE(312), + [sym_old_meta_lit] = STATE(315), + [sym_list_lit] = STATE(290), + [sym__bare_list_lit] = STATE(299), + [sym_map_lit] = STATE(290), + [sym__bare_map_lit] = STATE(214), + [sym_vec_lit] = STATE(290), + [sym__bare_vec_lit] = STATE(217), + [sym_set_lit] = STATE(290), + [sym__bare_set_lit] = STATE(219), + [sym_anon_fn_lit] = STATE(290), + [sym_regex_lit] = STATE(290), + [sym_read_cond_lit] = STATE(290), + [sym_splicing_read_cond_lit] = STATE(290), + [sym_ns_map_lit] = STATE(290), + [sym_var_quoting_lit] = STATE(290), + [sym_sym_val_lit] = STATE(290), + [sym_evaling_lit] = STATE(290), + [sym_tagged_or_ctor_lit] = STATE(290), + [sym_derefing_lit] = STATE(290), + [sym_quoting_lit] = STATE(290), + [sym_syn_quoting_lit] = STATE(290), + [sym_unquote_splicing_lit] = STATE(290), + [sym_unquoting_lit] = STATE(290), [aux_sym_dis_expr_repeat1] = STATE(301), [aux_sym_sym_lit_repeat1] = STATE(305), - [sym__ws] = ACTIONS(264), - [sym_comment] = ACTIONS(264), + [sym__ws] = ACTIONS(320), + [sym_comment] = ACTIONS(320), [anon_sym_POUND_] = ACTIONS(7), - [sym_num_lit] = ACTIONS(536), + [sym_num_lit] = ACTIONS(448), [anon_sym_SLASH] = ACTIONS(9), [anon_sym_COLON] = ACTIONS(11), [anon_sym_COLON_COLON] = ACTIONS(13), [aux_sym_str_lit_token1] = ACTIONS(15), - [sym_char_lit] = ACTIONS(536), - [sym_nil_lit] = ACTIONS(538), - [sym_bool_lit] = ACTIONS(538), + [sym_char_lit] = ACTIONS(448), + [sym_nil_lit] = ACTIONS(450), + [sym_bool_lit] = ACTIONS(450), [aux_sym__sym_qualified_token1] = ACTIONS(19), [anon_sym_CARET] = ACTIONS(21), [anon_sym_POUND_CARET] = ACTIONS(23), @@ -7488,114 +6121,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE_AT] = ACTIONS(49), [anon_sym_TILDE] = ACTIONS(51), }, - [64] = { - [sym__gap] = STATE(301), - [sym_dis_expr] = STATE(301), - [sym__form] = STATE(399), - [sym_kwd_lit] = STATE(399), - [sym_str_lit] = STATE(399), - [sym_sym_lit] = STATE(399), + [STATE(51)] = { + [sym__gap] = STATE(52), + [sym_dis_expr] = STATE(52), + [sym__form] = STATE(292), + [sym_kwd_lit] = STATE(292), + [sym_str_lit] = STATE(292), + [sym_sym_lit] = STATE(292), [sym__metadata_lit] = STATE(424), - [sym_meta_lit] = STATE(314), - [sym_old_meta_lit] = STATE(313), - [sym_list_lit] = STATE(399), - [sym__bare_list_lit] = STATE(392), - [sym_map_lit] = STATE(399), - [sym__bare_map_lit] = STATE(403), - [sym_vec_lit] = STATE(399), - [sym__bare_vec_lit] = STATE(423), - [sym_set_lit] = STATE(399), - [sym__bare_set_lit] = STATE(374), - [sym_anon_fn_lit] = STATE(399), - [sym_regex_lit] = STATE(399), - [sym_read_cond_lit] = STATE(399), - [sym_splicing_read_cond_lit] = STATE(399), - [sym_ns_map_lit] = STATE(399), - [sym_var_quoting_lit] = STATE(399), - [sym_sym_val_lit] = STATE(399), - [sym_evaling_lit] = STATE(399), - [sym_tagged_or_ctor_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), - [aux_sym_dis_expr_repeat1] = STATE(301), - [aux_sym_sym_lit_repeat1] = STATE(307), - [sym__ws] = ACTIONS(264), - [sym_comment] = ACTIONS(264), + [sym_meta_lit] = STATE(312), + [sym_old_meta_lit] = STATE(315), + [sym_list_lit] = STATE(292), + [sym__bare_list_lit] = STATE(299), + [sym_map_lit] = STATE(292), + [sym__bare_map_lit] = STATE(214), + [sym_vec_lit] = STATE(292), + [sym__bare_vec_lit] = STATE(217), + [sym_set_lit] = STATE(292), + [sym__bare_set_lit] = STATE(219), + [sym_anon_fn_lit] = STATE(292), + [sym_regex_lit] = STATE(292), + [sym_read_cond_lit] = STATE(292), + [sym_splicing_read_cond_lit] = STATE(292), + [sym_ns_map_lit] = STATE(292), + [sym_var_quoting_lit] = STATE(292), + [sym_sym_val_lit] = STATE(292), + [sym_evaling_lit] = STATE(292), + [sym_tagged_or_ctor_lit] = STATE(292), + [sym_derefing_lit] = STATE(292), + [sym_quoting_lit] = STATE(292), + [sym_syn_quoting_lit] = STATE(292), + [sym_unquote_splicing_lit] = STATE(292), + [sym_unquoting_lit] = STATE(292), + [aux_sym_dis_expr_repeat1] = STATE(52), + [aux_sym_sym_lit_repeat1] = STATE(305), + [sym__ws] = ACTIONS(452), + [sym_comment] = ACTIONS(452), [anon_sym_POUND_] = ACTIONS(7), - [sym_num_lit] = ACTIONS(462), - [anon_sym_SLASH] = ACTIONS(268), - [anon_sym_COLON] = ACTIONS(352), - [anon_sym_COLON_COLON] = ACTIONS(354), - [aux_sym_str_lit_token1] = ACTIONS(274), - [sym_char_lit] = ACTIONS(462), - [sym_nil_lit] = ACTIONS(464), - [sym_bool_lit] = ACTIONS(464), - [aux_sym__sym_qualified_token1] = ACTIONS(278), + [sym_num_lit] = ACTIONS(454), + [anon_sym_SLASH] = ACTIONS(9), + [anon_sym_COLON] = ACTIONS(11), + [anon_sym_COLON_COLON] = ACTIONS(13), + [aux_sym_str_lit_token1] = ACTIONS(15), + [sym_char_lit] = ACTIONS(454), + [sym_nil_lit] = ACTIONS(456), + [sym_bool_lit] = ACTIONS(456), + [aux_sym__sym_qualified_token1] = ACTIONS(19), [anon_sym_CARET] = ACTIONS(21), [anon_sym_POUND_CARET] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(280), - [anon_sym_LBRACE] = ACTIONS(282), - [anon_sym_LBRACK] = ACTIONS(284), - [anon_sym_POUND] = ACTIONS(358), - [anon_sym_POUND_QMARK] = ACTIONS(288), - [anon_sym_POUND_QMARK_AT] = ACTIONS(290), - [anon_sym_POUND_SQUOTE] = ACTIONS(360), - [anon_sym_POUND_POUND] = ACTIONS(362), - [anon_sym_POUND_EQ] = ACTIONS(296), - [anon_sym_AT] = ACTIONS(364), - [anon_sym_SQUOTE] = ACTIONS(366), - [anon_sym_BQUOTE] = ACTIONS(368), - [anon_sym_TILDE_AT] = ACTIONS(370), - [anon_sym_TILDE] = ACTIONS(372), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_LBRACK] = 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_TILDE_AT] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(51), }, - [65] = { + [STATE(52)] = { [sym__gap] = STATE(301), [sym_dis_expr] = STATE(301), - [sym__form] = STATE(271), - [sym_kwd_lit] = STATE(271), - [sym_str_lit] = STATE(271), - [sym_sym_lit] = STATE(271), + [sym__form] = STATE(294), + [sym_kwd_lit] = STATE(294), + [sym_str_lit] = STATE(294), + [sym_sym_lit] = STATE(294), [sym__metadata_lit] = STATE(424), - [sym_meta_lit] = STATE(314), - [sym_old_meta_lit] = STATE(313), - [sym_list_lit] = STATE(271), - [sym__bare_list_lit] = STATE(218), - [sym_map_lit] = STATE(271), - [sym__bare_map_lit] = STATE(219), - [sym_vec_lit] = STATE(271), - [sym__bare_vec_lit] = STATE(226), - [sym_set_lit] = STATE(271), - [sym__bare_set_lit] = STATE(227), - [sym_anon_fn_lit] = STATE(271), - [sym_regex_lit] = STATE(271), - [sym_read_cond_lit] = STATE(271), - [sym_splicing_read_cond_lit] = STATE(271), - [sym_ns_map_lit] = STATE(271), - [sym_var_quoting_lit] = STATE(271), - [sym_sym_val_lit] = STATE(271), - [sym_evaling_lit] = STATE(271), - [sym_tagged_or_ctor_lit] = STATE(271), - [sym_derefing_lit] = STATE(271), - [sym_quoting_lit] = STATE(271), - [sym_syn_quoting_lit] = STATE(271), - [sym_unquote_splicing_lit] = STATE(271), - [sym_unquoting_lit] = STATE(271), + [sym_meta_lit] = STATE(312), + [sym_old_meta_lit] = STATE(315), + [sym_list_lit] = STATE(294), + [sym__bare_list_lit] = STATE(299), + [sym_map_lit] = STATE(294), + [sym__bare_map_lit] = STATE(214), + [sym_vec_lit] = STATE(294), + [sym__bare_vec_lit] = STATE(217), + [sym_set_lit] = STATE(294), + [sym__bare_set_lit] = STATE(219), + [sym_anon_fn_lit] = STATE(294), + [sym_regex_lit] = STATE(294), + [sym_read_cond_lit] = STATE(294), + [sym_splicing_read_cond_lit] = STATE(294), + [sym_ns_map_lit] = STATE(294), + [sym_var_quoting_lit] = STATE(294), + [sym_sym_val_lit] = STATE(294), + [sym_evaling_lit] = STATE(294), + [sym_tagged_or_ctor_lit] = STATE(294), + [sym_derefing_lit] = STATE(294), + [sym_quoting_lit] = STATE(294), + [sym_syn_quoting_lit] = STATE(294), + [sym_unquote_splicing_lit] = STATE(294), + [sym_unquoting_lit] = STATE(294), [aux_sym_dis_expr_repeat1] = STATE(301), [aux_sym_sym_lit_repeat1] = STATE(305), - [sym__ws] = ACTIONS(264), - [sym_comment] = ACTIONS(264), + [sym__ws] = ACTIONS(320), + [sym_comment] = ACTIONS(320), [anon_sym_POUND_] = ACTIONS(7), - [sym_num_lit] = ACTIONS(540), + [sym_num_lit] = ACTIONS(458), [anon_sym_SLASH] = ACTIONS(9), [anon_sym_COLON] = ACTIONS(11), [anon_sym_COLON_COLON] = ACTIONS(13), [aux_sym_str_lit_token1] = ACTIONS(15), - [sym_char_lit] = ACTIONS(540), - [sym_nil_lit] = ACTIONS(542), - [sym_bool_lit] = ACTIONS(542), + [sym_char_lit] = ACTIONS(458), + [sym_nil_lit] = ACTIONS(460), + [sym_bool_lit] = ACTIONS(460), [aux_sym__sym_qualified_token1] = ACTIONS(19), [anon_sym_CARET] = ACTIONS(21), [anon_sym_POUND_CARET] = ACTIONS(23), @@ -7614,1221 +6247,1221 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE_AT] = ACTIONS(49), [anon_sym_TILDE] = ACTIONS(51), }, - [66] = { + [STATE(53)] = { [sym__gap] = STATE(62), [sym_dis_expr] = STATE(62), - [sym__form] = STATE(363), - [sym_kwd_lit] = STATE(363), - [sym_str_lit] = STATE(363), - [sym_sym_lit] = STATE(363), + [sym__form] = STATE(418), + [sym_kwd_lit] = STATE(418), + [sym_str_lit] = STATE(418), + [sym_sym_lit] = STATE(418), [sym__metadata_lit] = STATE(424), - [sym_meta_lit] = STATE(314), - [sym_old_meta_lit] = STATE(313), - [sym_list_lit] = STATE(363), - [sym__bare_list_lit] = STATE(392), - [sym_map_lit] = STATE(363), + [sym_meta_lit] = STATE(312), + [sym_old_meta_lit] = STATE(315), + [sym_list_lit] = STATE(418), + [sym__bare_list_lit] = STATE(402), + [sym_map_lit] = STATE(418), [sym__bare_map_lit] = STATE(403), - [sym_vec_lit] = STATE(363), - [sym__bare_vec_lit] = STATE(423), - [sym_set_lit] = STATE(363), - [sym__bare_set_lit] = STATE(374), - [sym_anon_fn_lit] = STATE(363), - [sym_regex_lit] = STATE(363), - [sym_read_cond_lit] = STATE(363), - [sym_splicing_read_cond_lit] = STATE(363), - [sym_ns_map_lit] = STATE(363), - [sym_var_quoting_lit] = STATE(363), - [sym_sym_val_lit] = STATE(363), - [sym_evaling_lit] = STATE(363), - [sym_tagged_or_ctor_lit] = STATE(363), - [sym_derefing_lit] = STATE(363), - [sym_quoting_lit] = STATE(363), - [sym_syn_quoting_lit] = STATE(363), - [sym_unquote_splicing_lit] = STATE(363), - [sym_unquoting_lit] = STATE(363), + [sym_vec_lit] = STATE(418), + [sym__bare_vec_lit] = STATE(404), + [sym_set_lit] = STATE(418), + [sym__bare_set_lit] = STATE(405), + [sym_anon_fn_lit] = STATE(418), + [sym_regex_lit] = STATE(418), + [sym_read_cond_lit] = STATE(418), + [sym_splicing_read_cond_lit] = STATE(418), + [sym_ns_map_lit] = STATE(418), + [sym_var_quoting_lit] = STATE(418), + [sym_sym_val_lit] = STATE(418), + [sym_evaling_lit] = STATE(418), + [sym_tagged_or_ctor_lit] = STATE(418), + [sym_derefing_lit] = STATE(418), + [sym_quoting_lit] = STATE(418), + [sym_syn_quoting_lit] = STATE(418), + [sym_unquote_splicing_lit] = STATE(418), + [sym_unquoting_lit] = STATE(418), [aux_sym_dis_expr_repeat1] = STATE(62), - [aux_sym_sym_lit_repeat1] = STATE(307), - [sym__ws] = ACTIONS(544), - [sym_comment] = ACTIONS(544), + [aux_sym_sym_lit_repeat1] = STATE(306), + [sym__ws] = ACTIONS(462), + [sym_comment] = ACTIONS(462), + [anon_sym_POUND_] = ACTIONS(7), + [sym_num_lit] = ACTIONS(464), + [anon_sym_SLASH] = ACTIONS(268), + [anon_sym_COLON] = ACTIONS(466), + [anon_sym_COLON_COLON] = ACTIONS(468), + [aux_sym_str_lit_token1] = ACTIONS(274), + [sym_char_lit] = ACTIONS(464), + [sym_nil_lit] = ACTIONS(470), + [sym_bool_lit] = ACTIONS(470), + [aux_sym__sym_qualified_token1] = ACTIONS(278), + [anon_sym_CARET] = ACTIONS(21), + [anon_sym_POUND_CARET] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(280), + [anon_sym_LBRACE] = ACTIONS(282), + [anon_sym_LBRACK] = ACTIONS(284), + [anon_sym_POUND] = ACTIONS(472), + [anon_sym_POUND_QMARK] = ACTIONS(288), + [anon_sym_POUND_QMARK_AT] = ACTIONS(290), + [anon_sym_POUND_SQUOTE] = ACTIONS(474), + [anon_sym_POUND_POUND] = ACTIONS(476), + [anon_sym_POUND_EQ] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(478), + [anon_sym_SQUOTE] = ACTIONS(480), + [anon_sym_BQUOTE] = ACTIONS(482), + [anon_sym_TILDE_AT] = ACTIONS(484), + [anon_sym_TILDE] = ACTIONS(486), + }, + [STATE(54)] = { + [sym__gap] = STATE(63), + [sym_dis_expr] = STATE(63), + [sym__form] = STATE(419), + [sym_kwd_lit] = STATE(419), + [sym_str_lit] = STATE(419), + [sym_sym_lit] = STATE(419), + [sym__metadata_lit] = STATE(424), + [sym_meta_lit] = STATE(312), + [sym_old_meta_lit] = STATE(315), + [sym_list_lit] = STATE(419), + [sym__bare_list_lit] = STATE(402), + [sym_map_lit] = STATE(419), + [sym__bare_map_lit] = STATE(403), + [sym_vec_lit] = STATE(419), + [sym__bare_vec_lit] = STATE(404), + [sym_set_lit] = STATE(419), + [sym__bare_set_lit] = STATE(405), + [sym_anon_fn_lit] = STATE(419), + [sym_regex_lit] = STATE(419), + [sym_read_cond_lit] = STATE(419), + [sym_splicing_read_cond_lit] = STATE(419), + [sym_ns_map_lit] = STATE(419), + [sym_var_quoting_lit] = STATE(419), + [sym_sym_val_lit] = STATE(419), + [sym_evaling_lit] = STATE(419), + [sym_tagged_or_ctor_lit] = STATE(419), + [sym_derefing_lit] = STATE(419), + [sym_quoting_lit] = STATE(419), + [sym_syn_quoting_lit] = STATE(419), + [sym_unquote_splicing_lit] = STATE(419), + [sym_unquoting_lit] = STATE(419), + [aux_sym_dis_expr_repeat1] = STATE(63), + [aux_sym_sym_lit_repeat1] = STATE(306), + [sym__ws] = ACTIONS(488), + [sym_comment] = ACTIONS(488), [anon_sym_POUND_] = ACTIONS(7), - [sym_num_lit] = ACTIONS(546), + [sym_num_lit] = ACTIONS(490), [anon_sym_SLASH] = ACTIONS(268), - [anon_sym_COLON] = ACTIONS(352), - [anon_sym_COLON_COLON] = ACTIONS(354), + [anon_sym_COLON] = ACTIONS(466), + [anon_sym_COLON_COLON] = ACTIONS(468), [aux_sym_str_lit_token1] = ACTIONS(274), - [sym_char_lit] = ACTIONS(546), - [sym_nil_lit] = ACTIONS(548), - [sym_bool_lit] = ACTIONS(548), + [sym_char_lit] = ACTIONS(490), + [sym_nil_lit] = ACTIONS(492), + [sym_bool_lit] = ACTIONS(492), [aux_sym__sym_qualified_token1] = ACTIONS(278), [anon_sym_CARET] = ACTIONS(21), [anon_sym_POUND_CARET] = ACTIONS(23), [anon_sym_LPAREN] = ACTIONS(280), [anon_sym_LBRACE] = ACTIONS(282), [anon_sym_LBRACK] = ACTIONS(284), - [anon_sym_POUND] = ACTIONS(358), + [anon_sym_POUND] = ACTIONS(472), [anon_sym_POUND_QMARK] = ACTIONS(288), [anon_sym_POUND_QMARK_AT] = ACTIONS(290), - [anon_sym_POUND_SQUOTE] = ACTIONS(360), - [anon_sym_POUND_POUND] = ACTIONS(362), + [anon_sym_POUND_SQUOTE] = ACTIONS(474), + [anon_sym_POUND_POUND] = ACTIONS(476), [anon_sym_POUND_EQ] = ACTIONS(296), - [anon_sym_AT] = ACTIONS(364), - [anon_sym_SQUOTE] = ACTIONS(366), - [anon_sym_BQUOTE] = ACTIONS(368), - [anon_sym_TILDE_AT] = ACTIONS(370), - [anon_sym_TILDE] = ACTIONS(372), + [anon_sym_AT] = ACTIONS(478), + [anon_sym_SQUOTE] = ACTIONS(480), + [anon_sym_BQUOTE] = ACTIONS(482), + [anon_sym_TILDE_AT] = ACTIONS(484), + [anon_sym_TILDE] = ACTIONS(486), }, - [67] = { + [STATE(55)] = { [sym__gap] = STATE(64), [sym_dis_expr] = STATE(64), - [sym__form] = STATE(361), - [sym_kwd_lit] = STATE(361), - [sym_str_lit] = STATE(361), - [sym_sym_lit] = STATE(361), + [sym__form] = STATE(337), + [sym_kwd_lit] = STATE(337), + [sym_str_lit] = STATE(337), + [sym_sym_lit] = STATE(337), [sym__metadata_lit] = STATE(424), - [sym_meta_lit] = STATE(314), - [sym_old_meta_lit] = STATE(313), - [sym_list_lit] = STATE(361), - [sym__bare_list_lit] = STATE(392), - [sym_map_lit] = STATE(361), + [sym_meta_lit] = STATE(312), + [sym_old_meta_lit] = STATE(315), + [sym_list_lit] = STATE(337), + [sym__bare_list_lit] = STATE(402), + [sym_map_lit] = STATE(337), [sym__bare_map_lit] = STATE(403), - [sym_vec_lit] = STATE(361), - [sym__bare_vec_lit] = STATE(423), - [sym_set_lit] = STATE(361), - [sym__bare_set_lit] = STATE(374), - [sym_anon_fn_lit] = STATE(361), - [sym_regex_lit] = STATE(361), - [sym_read_cond_lit] = STATE(361), - [sym_splicing_read_cond_lit] = STATE(361), - [sym_ns_map_lit] = STATE(361), - [sym_var_quoting_lit] = STATE(361), - [sym_sym_val_lit] = STATE(361), - [sym_evaling_lit] = STATE(361), - [sym_tagged_or_ctor_lit] = STATE(361), - [sym_derefing_lit] = STATE(361), - [sym_quoting_lit] = STATE(361), - [sym_syn_quoting_lit] = STATE(361), - [sym_unquote_splicing_lit] = STATE(361), - [sym_unquoting_lit] = STATE(361), + [sym_vec_lit] = STATE(337), + [sym__bare_vec_lit] = STATE(404), + [sym_set_lit] = STATE(337), + [sym__bare_set_lit] = STATE(405), + [sym_anon_fn_lit] = STATE(337), + [sym_regex_lit] = STATE(337), + [sym_read_cond_lit] = STATE(337), + [sym_splicing_read_cond_lit] = STATE(337), + [sym_ns_map_lit] = STATE(337), + [sym_var_quoting_lit] = STATE(337), + [sym_sym_val_lit] = STATE(337), + [sym_evaling_lit] = STATE(337), + [sym_tagged_or_ctor_lit] = STATE(337), + [sym_derefing_lit] = STATE(337), + [sym_quoting_lit] = STATE(337), + [sym_syn_quoting_lit] = STATE(337), + [sym_unquote_splicing_lit] = STATE(337), + [sym_unquoting_lit] = STATE(337), [aux_sym_dis_expr_repeat1] = STATE(64), - [aux_sym_sym_lit_repeat1] = STATE(307), - [sym__ws] = ACTIONS(550), - [sym_comment] = ACTIONS(550), + [aux_sym_sym_lit_repeat1] = STATE(306), + [sym__ws] = ACTIONS(494), + [sym_comment] = ACTIONS(494), [anon_sym_POUND_] = ACTIONS(7), - [sym_num_lit] = ACTIONS(552), + [sym_num_lit] = ACTIONS(496), [anon_sym_SLASH] = ACTIONS(268), - [anon_sym_COLON] = ACTIONS(352), - [anon_sym_COLON_COLON] = ACTIONS(354), + [anon_sym_COLON] = ACTIONS(466), + [anon_sym_COLON_COLON] = ACTIONS(468), [aux_sym_str_lit_token1] = ACTIONS(274), - [sym_char_lit] = ACTIONS(552), - [sym_nil_lit] = ACTIONS(554), - [sym_bool_lit] = ACTIONS(554), + [sym_char_lit] = ACTIONS(496), + [sym_nil_lit] = ACTIONS(498), + [sym_bool_lit] = ACTIONS(498), [aux_sym__sym_qualified_token1] = ACTIONS(278), [anon_sym_CARET] = ACTIONS(21), [anon_sym_POUND_CARET] = ACTIONS(23), [anon_sym_LPAREN] = ACTIONS(280), [anon_sym_LBRACE] = ACTIONS(282), [anon_sym_LBRACK] = ACTIONS(284), - [anon_sym_POUND] = ACTIONS(358), + [anon_sym_POUND] = ACTIONS(472), [anon_sym_POUND_QMARK] = ACTIONS(288), [anon_sym_POUND_QMARK_AT] = ACTIONS(290), - [anon_sym_POUND_SQUOTE] = ACTIONS(360), - [anon_sym_POUND_POUND] = ACTIONS(362), + [anon_sym_POUND_SQUOTE] = ACTIONS(474), + [anon_sym_POUND_POUND] = ACTIONS(476), [anon_sym_POUND_EQ] = ACTIONS(296), - [anon_sym_AT] = ACTIONS(364), - [anon_sym_SQUOTE] = ACTIONS(366), - [anon_sym_BQUOTE] = ACTIONS(368), - [anon_sym_TILDE_AT] = ACTIONS(370), - [anon_sym_TILDE] = ACTIONS(372), + [anon_sym_AT] = ACTIONS(478), + [anon_sym_SQUOTE] = ACTIONS(480), + [anon_sym_BQUOTE] = ACTIONS(482), + [anon_sym_TILDE_AT] = ACTIONS(484), + [anon_sym_TILDE] = ACTIONS(486), }, - [68] = { - [sym__gap] = STATE(108), - [sym_dis_expr] = STATE(108), - [sym__form] = STATE(333), - [sym_kwd_lit] = STATE(333), - [sym_str_lit] = STATE(333), - [sym_sym_lit] = STATE(333), + [STATE(56)] = { + [sym__gap] = STATE(65), + [sym_dis_expr] = STATE(65), + [sym__form] = STATE(364), + [sym_kwd_lit] = STATE(364), + [sym_str_lit] = STATE(364), + [sym_sym_lit] = STATE(364), [sym__metadata_lit] = STATE(424), - [sym_meta_lit] = STATE(314), - [sym_old_meta_lit] = STATE(313), - [sym_list_lit] = STATE(333), - [sym__bare_list_lit] = STATE(392), - [sym_map_lit] = STATE(333), + [sym_meta_lit] = STATE(312), + [sym_old_meta_lit] = STATE(315), + [sym_list_lit] = STATE(364), + [sym__bare_list_lit] = STATE(402), + [sym_map_lit] = STATE(364), [sym__bare_map_lit] = STATE(403), - [sym_vec_lit] = STATE(333), - [sym__bare_vec_lit] = STATE(423), - [sym_set_lit] = STATE(333), - [sym__bare_set_lit] = STATE(374), - [sym_anon_fn_lit] = STATE(333), - [sym_regex_lit] = STATE(333), - [sym_read_cond_lit] = STATE(333), - [sym_splicing_read_cond_lit] = STATE(333), - [sym_ns_map_lit] = STATE(333), - [sym_var_quoting_lit] = STATE(333), - [sym_sym_val_lit] = STATE(333), - [sym_evaling_lit] = STATE(333), - [sym_tagged_or_ctor_lit] = STATE(333), - [sym_derefing_lit] = STATE(333), - [sym_quoting_lit] = STATE(333), - [sym_syn_quoting_lit] = STATE(333), - [sym_unquote_splicing_lit] = STATE(333), - [sym_unquoting_lit] = STATE(333), - [aux_sym_dis_expr_repeat1] = STATE(108), - [aux_sym_sym_lit_repeat1] = STATE(307), - [sym__ws] = ACTIONS(556), - [sym_comment] = ACTIONS(556), + [sym_vec_lit] = STATE(364), + [sym__bare_vec_lit] = STATE(404), + [sym_set_lit] = STATE(364), + [sym__bare_set_lit] = STATE(405), + [sym_anon_fn_lit] = STATE(364), + [sym_regex_lit] = STATE(364), + [sym_read_cond_lit] = STATE(364), + [sym_splicing_read_cond_lit] = STATE(364), + [sym_ns_map_lit] = STATE(364), + [sym_var_quoting_lit] = STATE(364), + [sym_sym_val_lit] = STATE(364), + [sym_evaling_lit] = STATE(364), + [sym_tagged_or_ctor_lit] = STATE(364), + [sym_derefing_lit] = STATE(364), + [sym_quoting_lit] = STATE(364), + [sym_syn_quoting_lit] = STATE(364), + [sym_unquote_splicing_lit] = STATE(364), + [sym_unquoting_lit] = STATE(364), + [aux_sym_dis_expr_repeat1] = STATE(65), + [aux_sym_sym_lit_repeat1] = STATE(306), + [sym__ws] = ACTIONS(500), + [sym_comment] = ACTIONS(500), [anon_sym_POUND_] = ACTIONS(7), - [sym_num_lit] = ACTIONS(558), + [sym_num_lit] = ACTIONS(502), [anon_sym_SLASH] = ACTIONS(268), - [anon_sym_COLON] = ACTIONS(352), - [anon_sym_COLON_COLON] = ACTIONS(354), + [anon_sym_COLON] = ACTIONS(466), + [anon_sym_COLON_COLON] = ACTIONS(468), [aux_sym_str_lit_token1] = ACTIONS(274), - [sym_char_lit] = ACTIONS(558), - [sym_nil_lit] = ACTIONS(560), - [sym_bool_lit] = ACTIONS(560), + [sym_char_lit] = ACTIONS(502), + [sym_nil_lit] = ACTIONS(504), + [sym_bool_lit] = ACTIONS(504), [aux_sym__sym_qualified_token1] = ACTIONS(278), [anon_sym_CARET] = ACTIONS(21), [anon_sym_POUND_CARET] = ACTIONS(23), [anon_sym_LPAREN] = ACTIONS(280), [anon_sym_LBRACE] = ACTIONS(282), [anon_sym_LBRACK] = ACTIONS(284), - [anon_sym_POUND] = ACTIONS(358), + [anon_sym_POUND] = ACTIONS(472), [anon_sym_POUND_QMARK] = ACTIONS(288), [anon_sym_POUND_QMARK_AT] = ACTIONS(290), - [anon_sym_POUND_SQUOTE] = ACTIONS(360), - [anon_sym_POUND_POUND] = ACTIONS(362), + [anon_sym_POUND_SQUOTE] = ACTIONS(474), + [anon_sym_POUND_POUND] = ACTIONS(476), [anon_sym_POUND_EQ] = ACTIONS(296), - [anon_sym_AT] = ACTIONS(364), - [anon_sym_SQUOTE] = ACTIONS(366), - [anon_sym_BQUOTE] = ACTIONS(368), - [anon_sym_TILDE_AT] = ACTIONS(370), - [anon_sym_TILDE] = ACTIONS(372), - }, - [69] = { - [sym__gap] = STATE(301), - [sym_dis_expr] = STATE(301), - [sym__form] = STATE(332), - [sym_kwd_lit] = STATE(332), - [sym_str_lit] = STATE(332), - [sym_sym_lit] = STATE(332), + [anon_sym_AT] = ACTIONS(478), + [anon_sym_SQUOTE] = ACTIONS(480), + [anon_sym_BQUOTE] = ACTIONS(482), + [anon_sym_TILDE_AT] = ACTIONS(484), + [anon_sym_TILDE] = ACTIONS(486), + }, + [STATE(57)] = { + [sym__gap] = STATE(66), + [sym_dis_expr] = STATE(66), + [sym__form] = STATE(395), + [sym_kwd_lit] = STATE(395), + [sym_str_lit] = STATE(395), + [sym_sym_lit] = STATE(395), [sym__metadata_lit] = STATE(424), - [sym_meta_lit] = STATE(314), - [sym_old_meta_lit] = STATE(313), - [sym_list_lit] = STATE(332), - [sym__bare_list_lit] = STATE(392), - [sym_map_lit] = STATE(332), + [sym_meta_lit] = STATE(312), + [sym_old_meta_lit] = STATE(315), + [sym_list_lit] = STATE(395), + [sym__bare_list_lit] = STATE(402), + [sym_map_lit] = STATE(395), [sym__bare_map_lit] = STATE(403), - [sym_vec_lit] = STATE(332), - [sym__bare_vec_lit] = STATE(423), - [sym_set_lit] = STATE(332), - [sym__bare_set_lit] = STATE(374), - [sym_anon_fn_lit] = STATE(332), - [sym_regex_lit] = STATE(332), - [sym_read_cond_lit] = STATE(332), - [sym_splicing_read_cond_lit] = STATE(332), - [sym_ns_map_lit] = STATE(332), - [sym_var_quoting_lit] = STATE(332), - [sym_sym_val_lit] = STATE(332), - [sym_evaling_lit] = STATE(332), - [sym_tagged_or_ctor_lit] = STATE(332), - [sym_derefing_lit] = STATE(332), - [sym_quoting_lit] = STATE(332), - [sym_syn_quoting_lit] = STATE(332), - [sym_unquote_splicing_lit] = STATE(332), - [sym_unquoting_lit] = STATE(332), - [aux_sym_dis_expr_repeat1] = STATE(301), - [aux_sym_sym_lit_repeat1] = STATE(304), - [sym__ws] = ACTIONS(264), - [sym_comment] = ACTIONS(264), + [sym_vec_lit] = STATE(395), + [sym__bare_vec_lit] = STATE(404), + [sym_set_lit] = STATE(395), + [sym__bare_set_lit] = STATE(405), + [sym_anon_fn_lit] = STATE(395), + [sym_regex_lit] = STATE(395), + [sym_read_cond_lit] = STATE(395), + [sym_splicing_read_cond_lit] = STATE(395), + [sym_ns_map_lit] = STATE(395), + [sym_var_quoting_lit] = STATE(395), + [sym_sym_val_lit] = STATE(395), + [sym_evaling_lit] = STATE(395), + [sym_tagged_or_ctor_lit] = STATE(395), + [sym_derefing_lit] = STATE(395), + [sym_quoting_lit] = STATE(395), + [sym_syn_quoting_lit] = STATE(395), + [sym_unquote_splicing_lit] = STATE(395), + [sym_unquoting_lit] = STATE(395), + [aux_sym_dis_expr_repeat1] = STATE(66), + [aux_sym_sym_lit_repeat1] = STATE(306), + [sym__ws] = ACTIONS(506), + [sym_comment] = ACTIONS(506), [anon_sym_POUND_] = ACTIONS(7), - [sym_num_lit] = ACTIONS(562), + [sym_num_lit] = ACTIONS(508), [anon_sym_SLASH] = ACTIONS(268), - [anon_sym_COLON] = ACTIONS(270), - [anon_sym_COLON_COLON] = ACTIONS(272), - [aux_sym_str_lit_token1] = ACTIONS(274), - [sym_char_lit] = ACTIONS(562), - [sym_nil_lit] = ACTIONS(564), - [sym_bool_lit] = ACTIONS(564), + [anon_sym_COLON] = ACTIONS(466), + [anon_sym_COLON_COLON] = ACTIONS(468), + [aux_sym_str_lit_token1] = ACTIONS(274), + [sym_char_lit] = ACTIONS(508), + [sym_nil_lit] = ACTIONS(510), + [sym_bool_lit] = ACTIONS(510), [aux_sym__sym_qualified_token1] = ACTIONS(278), [anon_sym_CARET] = ACTIONS(21), [anon_sym_POUND_CARET] = ACTIONS(23), [anon_sym_LPAREN] = ACTIONS(280), [anon_sym_LBRACE] = ACTIONS(282), [anon_sym_LBRACK] = ACTIONS(284), - [anon_sym_POUND] = ACTIONS(286), + [anon_sym_POUND] = ACTIONS(472), [anon_sym_POUND_QMARK] = ACTIONS(288), [anon_sym_POUND_QMARK_AT] = ACTIONS(290), - [anon_sym_POUND_SQUOTE] = ACTIONS(292), - [anon_sym_POUND_POUND] = ACTIONS(294), + [anon_sym_POUND_SQUOTE] = ACTIONS(474), + [anon_sym_POUND_POUND] = ACTIONS(476), [anon_sym_POUND_EQ] = ACTIONS(296), - [anon_sym_AT] = ACTIONS(298), - [anon_sym_SQUOTE] = ACTIONS(300), - [anon_sym_BQUOTE] = ACTIONS(302), - [anon_sym_TILDE_AT] = ACTIONS(304), - [anon_sym_TILDE] = ACTIONS(306), - }, - [70] = { - [sym__gap] = STATE(301), - [sym_dis_expr] = STATE(301), - [sym__form] = STATE(275), - [sym_kwd_lit] = STATE(275), - [sym_str_lit] = STATE(275), - [sym_sym_lit] = STATE(275), - [sym__metadata_lit] = STATE(424), - [sym_meta_lit] = STATE(314), - [sym_old_meta_lit] = STATE(313), - [sym_list_lit] = STATE(275), - [sym__bare_list_lit] = STATE(218), - [sym_map_lit] = STATE(275), - [sym__bare_map_lit] = STATE(219), - [sym_vec_lit] = STATE(275), - [sym__bare_vec_lit] = STATE(226), - [sym_set_lit] = STATE(275), - [sym__bare_set_lit] = STATE(227), - [sym_anon_fn_lit] = STATE(275), - [sym_regex_lit] = STATE(275), - [sym_read_cond_lit] = STATE(275), - [sym_splicing_read_cond_lit] = STATE(275), - [sym_ns_map_lit] = STATE(275), - [sym_var_quoting_lit] = STATE(275), - [sym_sym_val_lit] = STATE(275), - [sym_evaling_lit] = STATE(275), - [sym_tagged_or_ctor_lit] = STATE(275), - [sym_derefing_lit] = STATE(275), - [sym_quoting_lit] = STATE(275), - [sym_syn_quoting_lit] = STATE(275), - [sym_unquote_splicing_lit] = STATE(275), - [sym_unquoting_lit] = STATE(275), - [aux_sym_dis_expr_repeat1] = STATE(301), - [aux_sym_sym_lit_repeat1] = STATE(305), - [sym__ws] = ACTIONS(264), - [sym_comment] = ACTIONS(264), - [anon_sym_POUND_] = ACTIONS(7), - [sym_num_lit] = ACTIONS(566), - [anon_sym_SLASH] = ACTIONS(9), - [anon_sym_COLON] = ACTIONS(11), - [anon_sym_COLON_COLON] = ACTIONS(13), - [aux_sym_str_lit_token1] = ACTIONS(15), - [sym_char_lit] = ACTIONS(566), - [sym_nil_lit] = ACTIONS(568), - [sym_bool_lit] = ACTIONS(568), - [aux_sym__sym_qualified_token1] = ACTIONS(19), - [anon_sym_CARET] = ACTIONS(21), - [anon_sym_POUND_CARET] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_LBRACK] = 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_TILDE_AT] = ACTIONS(49), - [anon_sym_TILDE] = ACTIONS(51), - }, - [71] = { - [sym__gap] = STATE(69), - [sym_dis_expr] = STATE(69), - [sym__form] = STATE(331), - [sym_kwd_lit] = STATE(331), - [sym_str_lit] = STATE(331), - [sym_sym_lit] = STATE(331), + [anon_sym_AT] = ACTIONS(478), + [anon_sym_SQUOTE] = ACTIONS(480), + [anon_sym_BQUOTE] = ACTIONS(482), + [anon_sym_TILDE_AT] = ACTIONS(484), + [anon_sym_TILDE] = ACTIONS(486), + }, + [STATE(58)] = { + [sym__gap] = STATE(67), + [sym_dis_expr] = STATE(67), + [sym__form] = STATE(408), + [sym_kwd_lit] = STATE(408), + [sym_str_lit] = STATE(408), + [sym_sym_lit] = STATE(408), [sym__metadata_lit] = STATE(424), - [sym_meta_lit] = STATE(314), - [sym_old_meta_lit] = STATE(313), - [sym_list_lit] = STATE(331), - [sym__bare_list_lit] = STATE(392), - [sym_map_lit] = STATE(331), + [sym_meta_lit] = STATE(312), + [sym_old_meta_lit] = STATE(315), + [sym_list_lit] = STATE(408), + [sym__bare_list_lit] = STATE(402), + [sym_map_lit] = STATE(408), [sym__bare_map_lit] = STATE(403), - [sym_vec_lit] = STATE(331), - [sym__bare_vec_lit] = STATE(423), - [sym_set_lit] = STATE(331), - [sym__bare_set_lit] = STATE(374), - [sym_anon_fn_lit] = STATE(331), - [sym_regex_lit] = STATE(331), - [sym_read_cond_lit] = STATE(331), - [sym_splicing_read_cond_lit] = STATE(331), - [sym_ns_map_lit] = STATE(331), - [sym_var_quoting_lit] = STATE(331), - [sym_sym_val_lit] = STATE(331), - [sym_evaling_lit] = STATE(331), - [sym_tagged_or_ctor_lit] = STATE(331), - [sym_derefing_lit] = STATE(331), - [sym_quoting_lit] = STATE(331), - [sym_syn_quoting_lit] = STATE(331), - [sym_unquote_splicing_lit] = STATE(331), - [sym_unquoting_lit] = STATE(331), - [aux_sym_dis_expr_repeat1] = STATE(69), - [aux_sym_sym_lit_repeat1] = STATE(304), - [sym__ws] = ACTIONS(570), - [sym_comment] = ACTIONS(570), + [sym_vec_lit] = STATE(408), + [sym__bare_vec_lit] = STATE(404), + [sym_set_lit] = STATE(408), + [sym__bare_set_lit] = STATE(405), + [sym_anon_fn_lit] = STATE(408), + [sym_regex_lit] = STATE(408), + [sym_read_cond_lit] = STATE(408), + [sym_splicing_read_cond_lit] = STATE(408), + [sym_ns_map_lit] = STATE(408), + [sym_var_quoting_lit] = STATE(408), + [sym_sym_val_lit] = STATE(408), + [sym_evaling_lit] = STATE(408), + [sym_tagged_or_ctor_lit] = STATE(408), + [sym_derefing_lit] = STATE(408), + [sym_quoting_lit] = STATE(408), + [sym_syn_quoting_lit] = STATE(408), + [sym_unquote_splicing_lit] = STATE(408), + [sym_unquoting_lit] = STATE(408), + [aux_sym_dis_expr_repeat1] = STATE(67), + [aux_sym_sym_lit_repeat1] = STATE(306), + [sym__ws] = ACTIONS(512), + [sym_comment] = ACTIONS(512), [anon_sym_POUND_] = ACTIONS(7), - [sym_num_lit] = ACTIONS(572), + [sym_num_lit] = ACTIONS(514), [anon_sym_SLASH] = ACTIONS(268), - [anon_sym_COLON] = ACTIONS(270), - [anon_sym_COLON_COLON] = ACTIONS(272), + [anon_sym_COLON] = ACTIONS(466), + [anon_sym_COLON_COLON] = ACTIONS(468), [aux_sym_str_lit_token1] = ACTIONS(274), - [sym_char_lit] = ACTIONS(572), - [sym_nil_lit] = ACTIONS(574), - [sym_bool_lit] = ACTIONS(574), + [sym_char_lit] = ACTIONS(514), + [sym_nil_lit] = ACTIONS(516), + [sym_bool_lit] = ACTIONS(516), [aux_sym__sym_qualified_token1] = ACTIONS(278), [anon_sym_CARET] = ACTIONS(21), [anon_sym_POUND_CARET] = ACTIONS(23), [anon_sym_LPAREN] = ACTIONS(280), [anon_sym_LBRACE] = ACTIONS(282), [anon_sym_LBRACK] = ACTIONS(284), - [anon_sym_POUND] = ACTIONS(286), + [anon_sym_POUND] = ACTIONS(472), [anon_sym_POUND_QMARK] = ACTIONS(288), [anon_sym_POUND_QMARK_AT] = ACTIONS(290), - [anon_sym_POUND_SQUOTE] = ACTIONS(292), - [anon_sym_POUND_POUND] = ACTIONS(294), + [anon_sym_POUND_SQUOTE] = ACTIONS(474), + [anon_sym_POUND_POUND] = ACTIONS(476), [anon_sym_POUND_EQ] = ACTIONS(296), - [anon_sym_AT] = ACTIONS(298), - [anon_sym_SQUOTE] = ACTIONS(300), - [anon_sym_BQUOTE] = ACTIONS(302), - [anon_sym_TILDE_AT] = ACTIONS(304), - [anon_sym_TILDE] = ACTIONS(306), - }, - [72] = { - [sym__gap] = STATE(301), - [sym_dis_expr] = STATE(301), - [sym__form] = STATE(276), - [sym_kwd_lit] = STATE(276), - [sym_str_lit] = STATE(276), - [sym_sym_lit] = STATE(276), + [anon_sym_AT] = ACTIONS(478), + [anon_sym_SQUOTE] = ACTIONS(480), + [anon_sym_BQUOTE] = ACTIONS(482), + [anon_sym_TILDE_AT] = ACTIONS(484), + [anon_sym_TILDE] = ACTIONS(486), + }, + [STATE(59)] = { + [sym__gap] = STATE(68), + [sym_dis_expr] = STATE(68), + [sym__form] = STATE(336), + [sym_kwd_lit] = STATE(336), + [sym_str_lit] = STATE(336), + [sym_sym_lit] = STATE(336), [sym__metadata_lit] = STATE(424), - [sym_meta_lit] = STATE(314), - [sym_old_meta_lit] = STATE(313), - [sym_list_lit] = STATE(276), - [sym__bare_list_lit] = STATE(218), - [sym_map_lit] = STATE(276), - [sym__bare_map_lit] = STATE(219), - [sym_vec_lit] = STATE(276), - [sym__bare_vec_lit] = STATE(226), - [sym_set_lit] = STATE(276), - [sym__bare_set_lit] = STATE(227), - [sym_anon_fn_lit] = STATE(276), - [sym_regex_lit] = STATE(276), - [sym_read_cond_lit] = STATE(276), - [sym_splicing_read_cond_lit] = STATE(276), - [sym_ns_map_lit] = STATE(276), - [sym_var_quoting_lit] = STATE(276), - [sym_sym_val_lit] = STATE(276), - [sym_evaling_lit] = STATE(276), - [sym_tagged_or_ctor_lit] = STATE(276), - [sym_derefing_lit] = STATE(276), - [sym_quoting_lit] = STATE(276), - [sym_syn_quoting_lit] = STATE(276), - [sym_unquote_splicing_lit] = STATE(276), - [sym_unquoting_lit] = STATE(276), - [aux_sym_dis_expr_repeat1] = STATE(301), - [aux_sym_sym_lit_repeat1] = STATE(305), - [sym__ws] = ACTIONS(264), - [sym_comment] = ACTIONS(264), + [sym_meta_lit] = STATE(312), + [sym_old_meta_lit] = STATE(315), + [sym_list_lit] = STATE(336), + [sym__bare_list_lit] = STATE(402), + [sym_map_lit] = STATE(336), + [sym__bare_map_lit] = STATE(403), + [sym_vec_lit] = STATE(336), + [sym__bare_vec_lit] = STATE(404), + [sym_set_lit] = STATE(336), + [sym__bare_set_lit] = STATE(405), + [sym_anon_fn_lit] = STATE(336), + [sym_regex_lit] = STATE(336), + [sym_read_cond_lit] = STATE(336), + [sym_splicing_read_cond_lit] = STATE(336), + [sym_ns_map_lit] = STATE(336), + [sym_var_quoting_lit] = STATE(336), + [sym_sym_val_lit] = STATE(336), + [sym_evaling_lit] = STATE(336), + [sym_tagged_or_ctor_lit] = STATE(336), + [sym_derefing_lit] = STATE(336), + [sym_quoting_lit] = STATE(336), + [sym_syn_quoting_lit] = STATE(336), + [sym_unquote_splicing_lit] = STATE(336), + [sym_unquoting_lit] = STATE(336), + [aux_sym_dis_expr_repeat1] = STATE(68), + [aux_sym_sym_lit_repeat1] = STATE(306), + [sym__ws] = ACTIONS(518), + [sym_comment] = ACTIONS(518), [anon_sym_POUND_] = ACTIONS(7), - [sym_num_lit] = ACTIONS(576), - [anon_sym_SLASH] = ACTIONS(9), - [anon_sym_COLON] = ACTIONS(11), - [anon_sym_COLON_COLON] = ACTIONS(13), - [aux_sym_str_lit_token1] = ACTIONS(15), - [sym_char_lit] = ACTIONS(576), - [sym_nil_lit] = ACTIONS(578), - [sym_bool_lit] = ACTIONS(578), - [aux_sym__sym_qualified_token1] = ACTIONS(19), + [sym_num_lit] = ACTIONS(520), + [anon_sym_SLASH] = ACTIONS(268), + [anon_sym_COLON] = ACTIONS(466), + [anon_sym_COLON_COLON] = ACTIONS(468), + [aux_sym_str_lit_token1] = ACTIONS(274), + [sym_char_lit] = ACTIONS(520), + [sym_nil_lit] = ACTIONS(522), + [sym_bool_lit] = ACTIONS(522), + [aux_sym__sym_qualified_token1] = ACTIONS(278), [anon_sym_CARET] = ACTIONS(21), [anon_sym_POUND_CARET] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_LBRACK] = 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_TILDE_AT] = ACTIONS(49), - [anon_sym_TILDE] = ACTIONS(51), + [anon_sym_LPAREN] = ACTIONS(280), + [anon_sym_LBRACE] = ACTIONS(282), + [anon_sym_LBRACK] = ACTIONS(284), + [anon_sym_POUND] = ACTIONS(472), + [anon_sym_POUND_QMARK] = ACTIONS(288), + [anon_sym_POUND_QMARK_AT] = ACTIONS(290), + [anon_sym_POUND_SQUOTE] = ACTIONS(474), + [anon_sym_POUND_POUND] = ACTIONS(476), + [anon_sym_POUND_EQ] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(478), + [anon_sym_SQUOTE] = ACTIONS(480), + [anon_sym_BQUOTE] = ACTIONS(482), + [anon_sym_TILDE_AT] = ACTIONS(484), + [anon_sym_TILDE] = ACTIONS(486), }, - [73] = { + [STATE(60)] = { [sym__gap] = STATE(301), [sym_dis_expr] = STATE(301), - [sym__form] = STATE(329), - [sym_kwd_lit] = STATE(329), - [sym_str_lit] = STATE(329), - [sym_sym_lit] = STATE(329), + [sym__form] = STATE(377), + [sym_kwd_lit] = STATE(377), + [sym_str_lit] = STATE(377), + [sym_sym_lit] = STATE(377), [sym__metadata_lit] = STATE(424), - [sym_meta_lit] = STATE(314), - [sym_old_meta_lit] = STATE(313), - [sym_list_lit] = STATE(329), - [sym__bare_list_lit] = STATE(392), - [sym_map_lit] = STATE(329), + [sym_meta_lit] = STATE(312), + [sym_old_meta_lit] = STATE(315), + [sym_list_lit] = STATE(377), + [sym__bare_list_lit] = STATE(402), + [sym_map_lit] = STATE(377), [sym__bare_map_lit] = STATE(403), - [sym_vec_lit] = STATE(329), - [sym__bare_vec_lit] = STATE(423), - [sym_set_lit] = STATE(329), - [sym__bare_set_lit] = STATE(374), - [sym_anon_fn_lit] = STATE(329), - [sym_regex_lit] = STATE(329), - [sym_read_cond_lit] = STATE(329), - [sym_splicing_read_cond_lit] = STATE(329), - [sym_ns_map_lit] = STATE(329), - [sym_var_quoting_lit] = STATE(329), - [sym_sym_val_lit] = STATE(329), - [sym_evaling_lit] = STATE(329), - [sym_tagged_or_ctor_lit] = STATE(329), - [sym_derefing_lit] = STATE(329), - [sym_quoting_lit] = STATE(329), - [sym_syn_quoting_lit] = STATE(329), - [sym_unquote_splicing_lit] = STATE(329), - [sym_unquoting_lit] = STATE(329), + [sym_vec_lit] = STATE(377), + [sym__bare_vec_lit] = STATE(404), + [sym_set_lit] = STATE(377), + [sym__bare_set_lit] = STATE(405), + [sym_anon_fn_lit] = STATE(377), + [sym_regex_lit] = STATE(377), + [sym_read_cond_lit] = STATE(377), + [sym_splicing_read_cond_lit] = STATE(377), + [sym_ns_map_lit] = STATE(377), + [sym_var_quoting_lit] = STATE(377), + [sym_sym_val_lit] = STATE(377), + [sym_evaling_lit] = STATE(377), + [sym_tagged_or_ctor_lit] = STATE(377), + [sym_derefing_lit] = STATE(377), + [sym_quoting_lit] = STATE(377), + [sym_syn_quoting_lit] = STATE(377), + [sym_unquote_splicing_lit] = STATE(377), + [sym_unquoting_lit] = STATE(377), [aux_sym_dis_expr_repeat1] = STATE(301), [aux_sym_sym_lit_repeat1] = STATE(304), - [sym__ws] = ACTIONS(264), - [sym_comment] = ACTIONS(264), + [sym__ws] = ACTIONS(320), + [sym_comment] = ACTIONS(320), [anon_sym_POUND_] = ACTIONS(7), - [sym_num_lit] = ACTIONS(580), + [sym_num_lit] = ACTIONS(524), [anon_sym_SLASH] = ACTIONS(268), - [anon_sym_COLON] = ACTIONS(270), - [anon_sym_COLON_COLON] = ACTIONS(272), + [anon_sym_COLON] = ACTIONS(526), + [anon_sym_COLON_COLON] = ACTIONS(528), [aux_sym_str_lit_token1] = ACTIONS(274), - [sym_char_lit] = ACTIONS(580), - [sym_nil_lit] = ACTIONS(582), - [sym_bool_lit] = ACTIONS(582), + [sym_char_lit] = ACTIONS(524), + [sym_nil_lit] = ACTIONS(530), + [sym_bool_lit] = ACTIONS(530), [aux_sym__sym_qualified_token1] = ACTIONS(278), [anon_sym_CARET] = ACTIONS(21), [anon_sym_POUND_CARET] = ACTIONS(23), [anon_sym_LPAREN] = ACTIONS(280), [anon_sym_LBRACE] = ACTIONS(282), [anon_sym_LBRACK] = ACTIONS(284), - [anon_sym_POUND] = ACTIONS(286), + [anon_sym_POUND] = ACTIONS(532), [anon_sym_POUND_QMARK] = ACTIONS(288), [anon_sym_POUND_QMARK_AT] = ACTIONS(290), - [anon_sym_POUND_SQUOTE] = ACTIONS(292), - [anon_sym_POUND_POUND] = ACTIONS(294), + [anon_sym_POUND_SQUOTE] = ACTIONS(534), + [anon_sym_POUND_POUND] = ACTIONS(536), [anon_sym_POUND_EQ] = ACTIONS(296), - [anon_sym_AT] = ACTIONS(298), - [anon_sym_SQUOTE] = ACTIONS(300), - [anon_sym_BQUOTE] = ACTIONS(302), - [anon_sym_TILDE_AT] = ACTIONS(304), - [anon_sym_TILDE] = ACTIONS(306), - }, - [74] = { - [sym__gap] = STATE(301), - [sym_dis_expr] = STATE(301), - [sym__form] = STATE(214), - [sym_kwd_lit] = STATE(214), - [sym_str_lit] = STATE(214), - [sym_sym_lit] = STATE(214), - [sym__metadata_lit] = STATE(424), - [sym_meta_lit] = STATE(314), - [sym_old_meta_lit] = STATE(313), - [sym_list_lit] = STATE(214), - [sym__bare_list_lit] = STATE(218), - [sym_map_lit] = STATE(214), - [sym__bare_map_lit] = STATE(219), - [sym_vec_lit] = STATE(214), - [sym__bare_vec_lit] = STATE(226), - [sym_set_lit] = STATE(214), - [sym__bare_set_lit] = STATE(227), - [sym_anon_fn_lit] = STATE(214), - [sym_regex_lit] = STATE(214), - [sym_read_cond_lit] = STATE(214), - [sym_splicing_read_cond_lit] = STATE(214), - [sym_ns_map_lit] = STATE(214), - [sym_var_quoting_lit] = STATE(214), - [sym_sym_val_lit] = STATE(214), - [sym_evaling_lit] = STATE(214), - [sym_tagged_or_ctor_lit] = STATE(214), - [sym_derefing_lit] = STATE(214), - [sym_quoting_lit] = STATE(214), - [sym_syn_quoting_lit] = STATE(214), - [sym_unquote_splicing_lit] = STATE(214), - [sym_unquoting_lit] = STATE(214), - [aux_sym_dis_expr_repeat1] = STATE(301), - [aux_sym_sym_lit_repeat1] = STATE(305), - [sym__ws] = ACTIONS(264), - [sym_comment] = ACTIONS(264), - [anon_sym_POUND_] = ACTIONS(7), - [sym_num_lit] = ACTIONS(584), - [anon_sym_SLASH] = ACTIONS(9), - [anon_sym_COLON] = ACTIONS(11), - [anon_sym_COLON_COLON] = ACTIONS(13), - [aux_sym_str_lit_token1] = ACTIONS(15), - [sym_char_lit] = ACTIONS(584), - [sym_nil_lit] = ACTIONS(586), - [sym_bool_lit] = ACTIONS(586), - [aux_sym__sym_qualified_token1] = ACTIONS(19), - [anon_sym_CARET] = ACTIONS(21), - [anon_sym_POUND_CARET] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_LBRACK] = 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_TILDE_AT] = ACTIONS(49), - [anon_sym_TILDE] = ACTIONS(51), + [anon_sym_AT] = ACTIONS(538), + [anon_sym_SQUOTE] = ACTIONS(540), + [anon_sym_BQUOTE] = ACTIONS(542), + [anon_sym_TILDE_AT] = ACTIONS(544), + [anon_sym_TILDE] = ACTIONS(546), }, - [75] = { - [sym__gap] = STATE(301), - [sym_dis_expr] = STATE(301), - [sym__form] = STATE(327), - [sym_kwd_lit] = STATE(327), - [sym_str_lit] = STATE(327), - [sym_sym_lit] = STATE(327), + [STATE(61)] = { + [sym__gap] = STATE(75), + [sym_dis_expr] = STATE(75), + [sym__form] = STATE(335), + [sym_kwd_lit] = STATE(335), + [sym_str_lit] = STATE(335), + [sym_sym_lit] = STATE(335), [sym__metadata_lit] = STATE(424), - [sym_meta_lit] = STATE(314), - [sym_old_meta_lit] = STATE(313), - [sym_list_lit] = STATE(327), - [sym__bare_list_lit] = STATE(392), - [sym_map_lit] = STATE(327), + [sym_meta_lit] = STATE(312), + [sym_old_meta_lit] = STATE(315), + [sym_list_lit] = STATE(335), + [sym__bare_list_lit] = STATE(402), + [sym_map_lit] = STATE(335), [sym__bare_map_lit] = STATE(403), - [sym_vec_lit] = STATE(327), - [sym__bare_vec_lit] = STATE(423), - [sym_set_lit] = STATE(327), - [sym__bare_set_lit] = STATE(374), - [sym_anon_fn_lit] = STATE(327), - [sym_regex_lit] = STATE(327), - [sym_read_cond_lit] = STATE(327), - [sym_splicing_read_cond_lit] = STATE(327), - [sym_ns_map_lit] = STATE(327), - [sym_var_quoting_lit] = STATE(327), - [sym_sym_val_lit] = STATE(327), - [sym_evaling_lit] = STATE(327), - [sym_tagged_or_ctor_lit] = STATE(327), - [sym_derefing_lit] = STATE(327), - [sym_quoting_lit] = STATE(327), - [sym_syn_quoting_lit] = STATE(327), - [sym_unquote_splicing_lit] = STATE(327), - [sym_unquoting_lit] = STATE(327), - [aux_sym_dis_expr_repeat1] = STATE(301), - [aux_sym_sym_lit_repeat1] = STATE(304), - [sym__ws] = ACTIONS(264), - [sym_comment] = ACTIONS(264), + [sym_vec_lit] = STATE(335), + [sym__bare_vec_lit] = STATE(404), + [sym_set_lit] = STATE(335), + [sym__bare_set_lit] = STATE(405), + [sym_anon_fn_lit] = STATE(335), + [sym_regex_lit] = STATE(335), + [sym_read_cond_lit] = STATE(335), + [sym_splicing_read_cond_lit] = STATE(335), + [sym_ns_map_lit] = STATE(335), + [sym_var_quoting_lit] = STATE(335), + [sym_sym_val_lit] = STATE(335), + [sym_evaling_lit] = STATE(335), + [sym_tagged_or_ctor_lit] = STATE(335), + [sym_derefing_lit] = STATE(335), + [sym_quoting_lit] = STATE(335), + [sym_syn_quoting_lit] = STATE(335), + [sym_unquote_splicing_lit] = STATE(335), + [sym_unquoting_lit] = STATE(335), + [aux_sym_dis_expr_repeat1] = STATE(75), + [aux_sym_sym_lit_repeat1] = STATE(306), + [sym__ws] = ACTIONS(548), + [sym_comment] = ACTIONS(548), [anon_sym_POUND_] = ACTIONS(7), - [sym_num_lit] = ACTIONS(588), + [sym_num_lit] = ACTIONS(550), [anon_sym_SLASH] = ACTIONS(268), - [anon_sym_COLON] = ACTIONS(270), - [anon_sym_COLON_COLON] = ACTIONS(272), + [anon_sym_COLON] = ACTIONS(466), + [anon_sym_COLON_COLON] = ACTIONS(468), [aux_sym_str_lit_token1] = ACTIONS(274), - [sym_char_lit] = ACTIONS(588), - [sym_nil_lit] = ACTIONS(590), - [sym_bool_lit] = ACTIONS(590), + [sym_char_lit] = ACTIONS(550), + [sym_nil_lit] = ACTIONS(552), + [sym_bool_lit] = ACTIONS(552), [aux_sym__sym_qualified_token1] = ACTIONS(278), [anon_sym_CARET] = ACTIONS(21), [anon_sym_POUND_CARET] = ACTIONS(23), [anon_sym_LPAREN] = ACTIONS(280), [anon_sym_LBRACE] = ACTIONS(282), [anon_sym_LBRACK] = ACTIONS(284), - [anon_sym_POUND] = ACTIONS(286), + [anon_sym_POUND] = ACTIONS(472), [anon_sym_POUND_QMARK] = ACTIONS(288), [anon_sym_POUND_QMARK_AT] = ACTIONS(290), - [anon_sym_POUND_SQUOTE] = ACTIONS(292), - [anon_sym_POUND_POUND] = ACTIONS(294), + [anon_sym_POUND_SQUOTE] = ACTIONS(474), + [anon_sym_POUND_POUND] = ACTIONS(476), [anon_sym_POUND_EQ] = ACTIONS(296), - [anon_sym_AT] = ACTIONS(298), - [anon_sym_SQUOTE] = ACTIONS(300), - [anon_sym_BQUOTE] = ACTIONS(302), - [anon_sym_TILDE_AT] = ACTIONS(304), - [anon_sym_TILDE] = ACTIONS(306), + [anon_sym_AT] = ACTIONS(478), + [anon_sym_SQUOTE] = ACTIONS(480), + [anon_sym_BQUOTE] = ACTIONS(482), + [anon_sym_TILDE_AT] = ACTIONS(484), + [anon_sym_TILDE] = ACTIONS(486), }, - [76] = { + [STATE(62)] = { [sym__gap] = STATE(301), [sym_dis_expr] = STATE(301), - [sym__form] = STATE(277), - [sym_kwd_lit] = STATE(277), - [sym_str_lit] = STATE(277), - [sym_sym_lit] = STATE(277), + [sym__form] = STATE(340), + [sym_kwd_lit] = STATE(340), + [sym_str_lit] = STATE(340), + [sym_sym_lit] = STATE(340), [sym__metadata_lit] = STATE(424), - [sym_meta_lit] = STATE(314), - [sym_old_meta_lit] = STATE(313), - [sym_list_lit] = STATE(277), - [sym__bare_list_lit] = STATE(218), - [sym_map_lit] = STATE(277), - [sym__bare_map_lit] = STATE(219), - [sym_vec_lit] = STATE(277), - [sym__bare_vec_lit] = STATE(226), - [sym_set_lit] = STATE(277), - [sym__bare_set_lit] = STATE(227), - [sym_anon_fn_lit] = STATE(277), - [sym_regex_lit] = STATE(277), - [sym_read_cond_lit] = STATE(277), - [sym_splicing_read_cond_lit] = STATE(277), - [sym_ns_map_lit] = STATE(277), - [sym_var_quoting_lit] = STATE(277), - [sym_sym_val_lit] = STATE(277), - [sym_evaling_lit] = STATE(277), - [sym_tagged_or_ctor_lit] = STATE(277), - [sym_derefing_lit] = STATE(277), - [sym_quoting_lit] = STATE(277), - [sym_syn_quoting_lit] = STATE(277), - [sym_unquote_splicing_lit] = STATE(277), - [sym_unquoting_lit] = STATE(277), + [sym_meta_lit] = STATE(312), + [sym_old_meta_lit] = STATE(315), + [sym_list_lit] = STATE(340), + [sym__bare_list_lit] = STATE(402), + [sym_map_lit] = STATE(340), + [sym__bare_map_lit] = STATE(403), + [sym_vec_lit] = STATE(340), + [sym__bare_vec_lit] = STATE(404), + [sym_set_lit] = STATE(340), + [sym__bare_set_lit] = STATE(405), + [sym_anon_fn_lit] = STATE(340), + [sym_regex_lit] = STATE(340), + [sym_read_cond_lit] = STATE(340), + [sym_splicing_read_cond_lit] = STATE(340), + [sym_ns_map_lit] = STATE(340), + [sym_var_quoting_lit] = STATE(340), + [sym_sym_val_lit] = STATE(340), + [sym_evaling_lit] = STATE(340), + [sym_tagged_or_ctor_lit] = STATE(340), + [sym_derefing_lit] = STATE(340), + [sym_quoting_lit] = STATE(340), + [sym_syn_quoting_lit] = STATE(340), + [sym_unquote_splicing_lit] = STATE(340), + [sym_unquoting_lit] = STATE(340), [aux_sym_dis_expr_repeat1] = STATE(301), - [aux_sym_sym_lit_repeat1] = STATE(305), - [sym__ws] = ACTIONS(264), - [sym_comment] = ACTIONS(264), - [anon_sym_POUND_] = ACTIONS(7), - [sym_num_lit] = ACTIONS(592), - [anon_sym_SLASH] = ACTIONS(9), - [anon_sym_COLON] = ACTIONS(11), - [anon_sym_COLON_COLON] = ACTIONS(13), - [aux_sym_str_lit_token1] = ACTIONS(15), - [sym_char_lit] = ACTIONS(592), - [sym_nil_lit] = ACTIONS(594), - [sym_bool_lit] = ACTIONS(594), - [aux_sym__sym_qualified_token1] = ACTIONS(19), - [anon_sym_CARET] = ACTIONS(21), - [anon_sym_POUND_CARET] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_LBRACK] = 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_TILDE_AT] = ACTIONS(49), - [anon_sym_TILDE] = ACTIONS(51), + [aux_sym_sym_lit_repeat1] = STATE(306), + [sym__ws] = ACTIONS(320), + [sym_comment] = ACTIONS(320), + [anon_sym_POUND_] = ACTIONS(7), + [sym_num_lit] = ACTIONS(554), + [anon_sym_SLASH] = ACTIONS(268), + [anon_sym_COLON] = ACTIONS(466), + [anon_sym_COLON_COLON] = ACTIONS(468), + [aux_sym_str_lit_token1] = ACTIONS(274), + [sym_char_lit] = ACTIONS(554), + [sym_nil_lit] = ACTIONS(556), + [sym_bool_lit] = ACTIONS(556), + [aux_sym__sym_qualified_token1] = ACTIONS(278), + [anon_sym_CARET] = ACTIONS(21), + [anon_sym_POUND_CARET] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(280), + [anon_sym_LBRACE] = ACTIONS(282), + [anon_sym_LBRACK] = ACTIONS(284), + [anon_sym_POUND] = ACTIONS(472), + [anon_sym_POUND_QMARK] = ACTIONS(288), + [anon_sym_POUND_QMARK_AT] = ACTIONS(290), + [anon_sym_POUND_SQUOTE] = ACTIONS(474), + [anon_sym_POUND_POUND] = ACTIONS(476), + [anon_sym_POUND_EQ] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(478), + [anon_sym_SQUOTE] = ACTIONS(480), + [anon_sym_BQUOTE] = ACTIONS(482), + [anon_sym_TILDE_AT] = ACTIONS(484), + [anon_sym_TILDE] = ACTIONS(486), }, - [77] = { + [STATE(63)] = { [sym__gap] = STATE(301), [sym_dis_expr] = STATE(301), - [sym__form] = STATE(411), - [sym_kwd_lit] = STATE(411), - [sym_str_lit] = STATE(411), - [sym_sym_lit] = STATE(411), + [sym__form] = STATE(341), + [sym_kwd_lit] = STATE(341), + [sym_str_lit] = STATE(341), + [sym_sym_lit] = STATE(341), [sym__metadata_lit] = STATE(424), - [sym_meta_lit] = STATE(314), - [sym_old_meta_lit] = STATE(313), - [sym_list_lit] = STATE(411), - [sym__bare_list_lit] = STATE(392), - [sym_map_lit] = STATE(411), + [sym_meta_lit] = STATE(312), + [sym_old_meta_lit] = STATE(315), + [sym_list_lit] = STATE(341), + [sym__bare_list_lit] = STATE(402), + [sym_map_lit] = STATE(341), [sym__bare_map_lit] = STATE(403), - [sym_vec_lit] = STATE(411), - [sym__bare_vec_lit] = STATE(423), - [sym_set_lit] = STATE(411), - [sym__bare_set_lit] = STATE(374), - [sym_anon_fn_lit] = STATE(411), - [sym_regex_lit] = STATE(411), - [sym_read_cond_lit] = STATE(411), - [sym_splicing_read_cond_lit] = STATE(411), - [sym_ns_map_lit] = STATE(411), - [sym_var_quoting_lit] = STATE(411), - [sym_sym_val_lit] = STATE(411), - [sym_evaling_lit] = STATE(411), - [sym_tagged_or_ctor_lit] = STATE(411), - [sym_derefing_lit] = STATE(411), - [sym_quoting_lit] = STATE(411), - [sym_syn_quoting_lit] = STATE(411), - [sym_unquote_splicing_lit] = STATE(411), - [sym_unquoting_lit] = STATE(411), + [sym_vec_lit] = STATE(341), + [sym__bare_vec_lit] = STATE(404), + [sym_set_lit] = STATE(341), + [sym__bare_set_lit] = STATE(405), + [sym_anon_fn_lit] = STATE(341), + [sym_regex_lit] = STATE(341), + [sym_read_cond_lit] = STATE(341), + [sym_splicing_read_cond_lit] = STATE(341), + [sym_ns_map_lit] = STATE(341), + [sym_var_quoting_lit] = STATE(341), + [sym_sym_val_lit] = STATE(341), + [sym_evaling_lit] = STATE(341), + [sym_tagged_or_ctor_lit] = STATE(341), + [sym_derefing_lit] = STATE(341), + [sym_quoting_lit] = STATE(341), + [sym_syn_quoting_lit] = STATE(341), + [sym_unquote_splicing_lit] = STATE(341), + [sym_unquoting_lit] = STATE(341), [aux_sym_dis_expr_repeat1] = STATE(301), - [aux_sym_sym_lit_repeat1] = STATE(304), - [sym__ws] = ACTIONS(264), - [sym_comment] = ACTIONS(264), + [aux_sym_sym_lit_repeat1] = STATE(306), + [sym__ws] = ACTIONS(320), + [sym_comment] = ACTIONS(320), [anon_sym_POUND_] = ACTIONS(7), - [sym_num_lit] = ACTIONS(596), + [sym_num_lit] = ACTIONS(558), [anon_sym_SLASH] = ACTIONS(268), - [anon_sym_COLON] = ACTIONS(270), - [anon_sym_COLON_COLON] = ACTIONS(272), + [anon_sym_COLON] = ACTIONS(466), + [anon_sym_COLON_COLON] = ACTIONS(468), [aux_sym_str_lit_token1] = ACTIONS(274), - [sym_char_lit] = ACTIONS(596), - [sym_nil_lit] = ACTIONS(598), - [sym_bool_lit] = ACTIONS(598), + [sym_char_lit] = ACTIONS(558), + [sym_nil_lit] = ACTIONS(560), + [sym_bool_lit] = ACTIONS(560), [aux_sym__sym_qualified_token1] = ACTIONS(278), [anon_sym_CARET] = ACTIONS(21), [anon_sym_POUND_CARET] = ACTIONS(23), [anon_sym_LPAREN] = ACTIONS(280), [anon_sym_LBRACE] = ACTIONS(282), [anon_sym_LBRACK] = ACTIONS(284), - [anon_sym_POUND] = ACTIONS(286), + [anon_sym_POUND] = ACTIONS(472), [anon_sym_POUND_QMARK] = ACTIONS(288), [anon_sym_POUND_QMARK_AT] = ACTIONS(290), - [anon_sym_POUND_SQUOTE] = ACTIONS(292), - [anon_sym_POUND_POUND] = ACTIONS(294), + [anon_sym_POUND_SQUOTE] = ACTIONS(474), + [anon_sym_POUND_POUND] = ACTIONS(476), [anon_sym_POUND_EQ] = ACTIONS(296), - [anon_sym_AT] = ACTIONS(298), - [anon_sym_SQUOTE] = ACTIONS(300), - [anon_sym_BQUOTE] = ACTIONS(302), - [anon_sym_TILDE_AT] = ACTIONS(304), - [anon_sym_TILDE] = ACTIONS(306), + [anon_sym_AT] = ACTIONS(478), + [anon_sym_SQUOTE] = ACTIONS(480), + [anon_sym_BQUOTE] = ACTIONS(482), + [anon_sym_TILDE_AT] = ACTIONS(484), + [anon_sym_TILDE] = ACTIONS(486), }, - [78] = { + [STATE(64)] = { [sym__gap] = STATE(301), [sym_dis_expr] = STATE(301), - [sym__form] = STATE(278), - [sym_kwd_lit] = STATE(278), - [sym_str_lit] = STATE(278), - [sym_sym_lit] = STATE(278), + [sym__form] = STATE(343), + [sym_kwd_lit] = STATE(343), + [sym_str_lit] = STATE(343), + [sym_sym_lit] = STATE(343), [sym__metadata_lit] = STATE(424), - [sym_meta_lit] = STATE(314), - [sym_old_meta_lit] = STATE(313), - [sym_list_lit] = STATE(278), - [sym__bare_list_lit] = STATE(218), - [sym_map_lit] = STATE(278), - [sym__bare_map_lit] = STATE(219), - [sym_vec_lit] = STATE(278), - [sym__bare_vec_lit] = STATE(226), - [sym_set_lit] = STATE(278), - [sym__bare_set_lit] = STATE(227), - [sym_anon_fn_lit] = STATE(278), - [sym_regex_lit] = STATE(278), - [sym_read_cond_lit] = STATE(278), - [sym_splicing_read_cond_lit] = STATE(278), - [sym_ns_map_lit] = STATE(278), - [sym_var_quoting_lit] = STATE(278), - [sym_sym_val_lit] = STATE(278), - [sym_evaling_lit] = STATE(278), - [sym_tagged_or_ctor_lit] = STATE(278), - [sym_derefing_lit] = STATE(278), - [sym_quoting_lit] = STATE(278), - [sym_syn_quoting_lit] = STATE(278), - [sym_unquote_splicing_lit] = STATE(278), - [sym_unquoting_lit] = STATE(278), + [sym_meta_lit] = STATE(312), + [sym_old_meta_lit] = STATE(315), + [sym_list_lit] = STATE(343), + [sym__bare_list_lit] = STATE(402), + [sym_map_lit] = STATE(343), + [sym__bare_map_lit] = STATE(403), + [sym_vec_lit] = STATE(343), + [sym__bare_vec_lit] = STATE(404), + [sym_set_lit] = STATE(343), + [sym__bare_set_lit] = STATE(405), + [sym_anon_fn_lit] = STATE(343), + [sym_regex_lit] = STATE(343), + [sym_read_cond_lit] = STATE(343), + [sym_splicing_read_cond_lit] = STATE(343), + [sym_ns_map_lit] = STATE(343), + [sym_var_quoting_lit] = STATE(343), + [sym_sym_val_lit] = STATE(343), + [sym_evaling_lit] = STATE(343), + [sym_tagged_or_ctor_lit] = STATE(343), + [sym_derefing_lit] = STATE(343), + [sym_quoting_lit] = STATE(343), + [sym_syn_quoting_lit] = STATE(343), + [sym_unquote_splicing_lit] = STATE(343), + [sym_unquoting_lit] = STATE(343), [aux_sym_dis_expr_repeat1] = STATE(301), - [aux_sym_sym_lit_repeat1] = STATE(305), - [sym__ws] = ACTIONS(264), - [sym_comment] = ACTIONS(264), + [aux_sym_sym_lit_repeat1] = STATE(306), + [sym__ws] = ACTIONS(320), + [sym_comment] = ACTIONS(320), [anon_sym_POUND_] = ACTIONS(7), - [sym_num_lit] = ACTIONS(600), - [anon_sym_SLASH] = ACTIONS(9), - [anon_sym_COLON] = ACTIONS(11), - [anon_sym_COLON_COLON] = ACTIONS(13), - [aux_sym_str_lit_token1] = ACTIONS(15), - [sym_char_lit] = ACTIONS(600), - [sym_nil_lit] = ACTIONS(602), - [sym_bool_lit] = ACTIONS(602), - [aux_sym__sym_qualified_token1] = ACTIONS(19), + [sym_num_lit] = ACTIONS(562), + [anon_sym_SLASH] = ACTIONS(268), + [anon_sym_COLON] = ACTIONS(466), + [anon_sym_COLON_COLON] = ACTIONS(468), + [aux_sym_str_lit_token1] = ACTIONS(274), + [sym_char_lit] = ACTIONS(562), + [sym_nil_lit] = ACTIONS(564), + [sym_bool_lit] = ACTIONS(564), + [aux_sym__sym_qualified_token1] = ACTIONS(278), [anon_sym_CARET] = ACTIONS(21), [anon_sym_POUND_CARET] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_LBRACK] = 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_TILDE_AT] = ACTIONS(49), - [anon_sym_TILDE] = ACTIONS(51), + [anon_sym_LPAREN] = ACTIONS(280), + [anon_sym_LBRACE] = ACTIONS(282), + [anon_sym_LBRACK] = ACTIONS(284), + [anon_sym_POUND] = ACTIONS(472), + [anon_sym_POUND_QMARK] = ACTIONS(288), + [anon_sym_POUND_QMARK_AT] = ACTIONS(290), + [anon_sym_POUND_SQUOTE] = ACTIONS(474), + [anon_sym_POUND_POUND] = ACTIONS(476), + [anon_sym_POUND_EQ] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(478), + [anon_sym_SQUOTE] = ACTIONS(480), + [anon_sym_BQUOTE] = ACTIONS(482), + [anon_sym_TILDE_AT] = ACTIONS(484), + [anon_sym_TILDE] = ACTIONS(486), }, - [79] = { + [STATE(65)] = { [sym__gap] = STATE(301), [sym_dis_expr] = STATE(301), - [sym__form] = STATE(385), - [sym_kwd_lit] = STATE(385), - [sym_str_lit] = STATE(385), - [sym_sym_lit] = STATE(385), + [sym__form] = STATE(344), + [sym_kwd_lit] = STATE(344), + [sym_str_lit] = STATE(344), + [sym_sym_lit] = STATE(344), [sym__metadata_lit] = STATE(424), - [sym_meta_lit] = STATE(314), - [sym_old_meta_lit] = STATE(313), - [sym_list_lit] = STATE(385), - [sym__bare_list_lit] = STATE(392), - [sym_map_lit] = STATE(385), + [sym_meta_lit] = STATE(312), + [sym_old_meta_lit] = STATE(315), + [sym_list_lit] = STATE(344), + [sym__bare_list_lit] = STATE(402), + [sym_map_lit] = STATE(344), [sym__bare_map_lit] = STATE(403), - [sym_vec_lit] = STATE(385), - [sym__bare_vec_lit] = STATE(423), - [sym_set_lit] = STATE(385), - [sym__bare_set_lit] = STATE(374), - [sym_anon_fn_lit] = STATE(385), - [sym_regex_lit] = STATE(385), - [sym_read_cond_lit] = STATE(385), - [sym_splicing_read_cond_lit] = STATE(385), - [sym_ns_map_lit] = STATE(385), - [sym_var_quoting_lit] = STATE(385), - [sym_sym_val_lit] = STATE(385), - [sym_evaling_lit] = STATE(385), - [sym_tagged_or_ctor_lit] = STATE(385), - [sym_derefing_lit] = STATE(385), - [sym_quoting_lit] = STATE(385), - [sym_syn_quoting_lit] = STATE(385), - [sym_unquote_splicing_lit] = STATE(385), - [sym_unquoting_lit] = STATE(385), + [sym_vec_lit] = STATE(344), + [sym__bare_vec_lit] = STATE(404), + [sym_set_lit] = STATE(344), + [sym__bare_set_lit] = STATE(405), + [sym_anon_fn_lit] = STATE(344), + [sym_regex_lit] = STATE(344), + [sym_read_cond_lit] = STATE(344), + [sym_splicing_read_cond_lit] = STATE(344), + [sym_ns_map_lit] = STATE(344), + [sym_var_quoting_lit] = STATE(344), + [sym_sym_val_lit] = STATE(344), + [sym_evaling_lit] = STATE(344), + [sym_tagged_or_ctor_lit] = STATE(344), + [sym_derefing_lit] = STATE(344), + [sym_quoting_lit] = STATE(344), + [sym_syn_quoting_lit] = STATE(344), + [sym_unquote_splicing_lit] = STATE(344), + [sym_unquoting_lit] = STATE(344), [aux_sym_dis_expr_repeat1] = STATE(301), - [aux_sym_sym_lit_repeat1] = STATE(304), - [sym__ws] = ACTIONS(264), - [sym_comment] = ACTIONS(264), + [aux_sym_sym_lit_repeat1] = STATE(306), + [sym__ws] = ACTIONS(320), + [sym_comment] = ACTIONS(320), [anon_sym_POUND_] = ACTIONS(7), - [sym_num_lit] = ACTIONS(604), + [sym_num_lit] = ACTIONS(566), [anon_sym_SLASH] = ACTIONS(268), - [anon_sym_COLON] = ACTIONS(270), - [anon_sym_COLON_COLON] = ACTIONS(272), + [anon_sym_COLON] = ACTIONS(466), + [anon_sym_COLON_COLON] = ACTIONS(468), [aux_sym_str_lit_token1] = ACTIONS(274), - [sym_char_lit] = ACTIONS(604), - [sym_nil_lit] = ACTIONS(606), - [sym_bool_lit] = ACTIONS(606), + [sym_char_lit] = ACTIONS(566), + [sym_nil_lit] = ACTIONS(568), + [sym_bool_lit] = ACTIONS(568), [aux_sym__sym_qualified_token1] = ACTIONS(278), [anon_sym_CARET] = ACTIONS(21), [anon_sym_POUND_CARET] = ACTIONS(23), [anon_sym_LPAREN] = ACTIONS(280), [anon_sym_LBRACE] = ACTIONS(282), [anon_sym_LBRACK] = ACTIONS(284), - [anon_sym_POUND] = ACTIONS(286), + [anon_sym_POUND] = ACTIONS(472), [anon_sym_POUND_QMARK] = ACTIONS(288), [anon_sym_POUND_QMARK_AT] = ACTIONS(290), - [anon_sym_POUND_SQUOTE] = ACTIONS(292), - [anon_sym_POUND_POUND] = ACTIONS(294), + [anon_sym_POUND_SQUOTE] = ACTIONS(474), + [anon_sym_POUND_POUND] = ACTIONS(476), [anon_sym_POUND_EQ] = ACTIONS(296), - [anon_sym_AT] = ACTIONS(298), - [anon_sym_SQUOTE] = ACTIONS(300), - [anon_sym_BQUOTE] = ACTIONS(302), - [anon_sym_TILDE_AT] = ACTIONS(304), - [anon_sym_TILDE] = ACTIONS(306), + [anon_sym_AT] = ACTIONS(478), + [anon_sym_SQUOTE] = ACTIONS(480), + [anon_sym_BQUOTE] = ACTIONS(482), + [anon_sym_TILDE_AT] = ACTIONS(484), + [anon_sym_TILDE] = ACTIONS(486), }, - [80] = { + [STATE(66)] = { [sym__gap] = STATE(301), [sym_dis_expr] = STATE(301), - [sym__form] = STATE(335), - [sym_kwd_lit] = STATE(335), - [sym_str_lit] = STATE(335), - [sym_sym_lit] = STATE(335), + [sym__form] = STATE(345), + [sym_kwd_lit] = STATE(345), + [sym_str_lit] = STATE(345), + [sym_sym_lit] = STATE(345), [sym__metadata_lit] = STATE(424), - [sym_meta_lit] = STATE(314), - [sym_old_meta_lit] = STATE(313), - [sym_list_lit] = STATE(335), - [sym__bare_list_lit] = STATE(392), - [sym_map_lit] = STATE(335), + [sym_meta_lit] = STATE(312), + [sym_old_meta_lit] = STATE(315), + [sym_list_lit] = STATE(345), + [sym__bare_list_lit] = STATE(402), + [sym_map_lit] = STATE(345), [sym__bare_map_lit] = STATE(403), - [sym_vec_lit] = STATE(335), - [sym__bare_vec_lit] = STATE(423), - [sym_set_lit] = STATE(335), - [sym__bare_set_lit] = STATE(374), - [sym_anon_fn_lit] = STATE(335), - [sym_regex_lit] = STATE(335), - [sym_read_cond_lit] = STATE(335), - [sym_splicing_read_cond_lit] = STATE(335), - [sym_ns_map_lit] = STATE(335), - [sym_var_quoting_lit] = STATE(335), - [sym_sym_val_lit] = STATE(335), - [sym_evaling_lit] = STATE(335), - [sym_tagged_or_ctor_lit] = STATE(335), - [sym_derefing_lit] = STATE(335), - [sym_quoting_lit] = STATE(335), - [sym_syn_quoting_lit] = STATE(335), - [sym_unquote_splicing_lit] = STATE(335), - [sym_unquoting_lit] = STATE(335), + [sym_vec_lit] = STATE(345), + [sym__bare_vec_lit] = STATE(404), + [sym_set_lit] = STATE(345), + [sym__bare_set_lit] = STATE(405), + [sym_anon_fn_lit] = STATE(345), + [sym_regex_lit] = STATE(345), + [sym_read_cond_lit] = STATE(345), + [sym_splicing_read_cond_lit] = STATE(345), + [sym_ns_map_lit] = STATE(345), + [sym_var_quoting_lit] = STATE(345), + [sym_sym_val_lit] = STATE(345), + [sym_evaling_lit] = STATE(345), + [sym_tagged_or_ctor_lit] = STATE(345), + [sym_derefing_lit] = STATE(345), + [sym_quoting_lit] = STATE(345), + [sym_syn_quoting_lit] = STATE(345), + [sym_unquote_splicing_lit] = STATE(345), + [sym_unquoting_lit] = STATE(345), [aux_sym_dis_expr_repeat1] = STATE(301), - [aux_sym_sym_lit_repeat1] = STATE(304), - [sym__ws] = ACTIONS(264), - [sym_comment] = ACTIONS(264), + [aux_sym_sym_lit_repeat1] = STATE(306), + [sym__ws] = ACTIONS(320), + [sym_comment] = ACTIONS(320), [anon_sym_POUND_] = ACTIONS(7), - [sym_num_lit] = ACTIONS(608), + [sym_num_lit] = ACTIONS(570), [anon_sym_SLASH] = ACTIONS(268), - [anon_sym_COLON] = ACTIONS(270), - [anon_sym_COLON_COLON] = ACTIONS(272), + [anon_sym_COLON] = ACTIONS(466), + [anon_sym_COLON_COLON] = ACTIONS(468), [aux_sym_str_lit_token1] = ACTIONS(274), - [sym_char_lit] = ACTIONS(608), - [sym_nil_lit] = ACTIONS(610), - [sym_bool_lit] = ACTIONS(610), + [sym_char_lit] = ACTIONS(570), + [sym_nil_lit] = ACTIONS(572), + [sym_bool_lit] = ACTIONS(572), [aux_sym__sym_qualified_token1] = ACTIONS(278), [anon_sym_CARET] = ACTIONS(21), [anon_sym_POUND_CARET] = ACTIONS(23), [anon_sym_LPAREN] = ACTIONS(280), [anon_sym_LBRACE] = ACTIONS(282), [anon_sym_LBRACK] = ACTIONS(284), - [anon_sym_POUND] = ACTIONS(286), + [anon_sym_POUND] = ACTIONS(472), [anon_sym_POUND_QMARK] = ACTIONS(288), [anon_sym_POUND_QMARK_AT] = ACTIONS(290), - [anon_sym_POUND_SQUOTE] = ACTIONS(292), - [anon_sym_POUND_POUND] = ACTIONS(294), + [anon_sym_POUND_SQUOTE] = ACTIONS(474), + [anon_sym_POUND_POUND] = ACTIONS(476), [anon_sym_POUND_EQ] = ACTIONS(296), - [anon_sym_AT] = ACTIONS(298), - [anon_sym_SQUOTE] = ACTIONS(300), - [anon_sym_BQUOTE] = ACTIONS(302), - [anon_sym_TILDE_AT] = ACTIONS(304), - [anon_sym_TILDE] = ACTIONS(306), + [anon_sym_AT] = ACTIONS(478), + [anon_sym_SQUOTE] = ACTIONS(480), + [anon_sym_BQUOTE] = ACTIONS(482), + [anon_sym_TILDE_AT] = ACTIONS(484), + [anon_sym_TILDE] = ACTIONS(486), }, - [81] = { + [STATE(67)] = { [sym__gap] = STATE(301), [sym_dis_expr] = STATE(301), - [sym__form] = STATE(334), - [sym_kwd_lit] = STATE(334), - [sym_str_lit] = STATE(334), - [sym_sym_lit] = STATE(334), + [sym__form] = STATE(346), + [sym_kwd_lit] = STATE(346), + [sym_str_lit] = STATE(346), + [sym_sym_lit] = STATE(346), [sym__metadata_lit] = STATE(424), - [sym_meta_lit] = STATE(314), - [sym_old_meta_lit] = STATE(313), - [sym_list_lit] = STATE(334), - [sym__bare_list_lit] = STATE(392), - [sym_map_lit] = STATE(334), + [sym_meta_lit] = STATE(312), + [sym_old_meta_lit] = STATE(315), + [sym_list_lit] = STATE(346), + [sym__bare_list_lit] = STATE(402), + [sym_map_lit] = STATE(346), [sym__bare_map_lit] = STATE(403), - [sym_vec_lit] = STATE(334), - [sym__bare_vec_lit] = STATE(423), - [sym_set_lit] = STATE(334), - [sym__bare_set_lit] = STATE(374), - [sym_anon_fn_lit] = STATE(334), - [sym_regex_lit] = STATE(334), - [sym_read_cond_lit] = STATE(334), - [sym_splicing_read_cond_lit] = STATE(334), - [sym_ns_map_lit] = STATE(334), - [sym_var_quoting_lit] = STATE(334), - [sym_sym_val_lit] = STATE(334), - [sym_evaling_lit] = STATE(334), - [sym_tagged_or_ctor_lit] = STATE(334), - [sym_derefing_lit] = STATE(334), - [sym_quoting_lit] = STATE(334), - [sym_syn_quoting_lit] = STATE(334), - [sym_unquote_splicing_lit] = STATE(334), - [sym_unquoting_lit] = STATE(334), + [sym_vec_lit] = STATE(346), + [sym__bare_vec_lit] = STATE(404), + [sym_set_lit] = STATE(346), + [sym__bare_set_lit] = STATE(405), + [sym_anon_fn_lit] = STATE(346), + [sym_regex_lit] = STATE(346), + [sym_read_cond_lit] = STATE(346), + [sym_splicing_read_cond_lit] = STATE(346), + [sym_ns_map_lit] = STATE(346), + [sym_var_quoting_lit] = STATE(346), + [sym_sym_val_lit] = STATE(346), + [sym_evaling_lit] = STATE(346), + [sym_tagged_or_ctor_lit] = STATE(346), + [sym_derefing_lit] = STATE(346), + [sym_quoting_lit] = STATE(346), + [sym_syn_quoting_lit] = STATE(346), + [sym_unquote_splicing_lit] = STATE(346), + [sym_unquoting_lit] = STATE(346), [aux_sym_dis_expr_repeat1] = STATE(301), - [aux_sym_sym_lit_repeat1] = STATE(304), - [sym__ws] = ACTIONS(264), - [sym_comment] = ACTIONS(264), + [aux_sym_sym_lit_repeat1] = STATE(306), + [sym__ws] = ACTIONS(320), + [sym_comment] = ACTIONS(320), [anon_sym_POUND_] = ACTIONS(7), - [sym_num_lit] = ACTIONS(350), + [sym_num_lit] = ACTIONS(574), [anon_sym_SLASH] = ACTIONS(268), - [anon_sym_COLON] = ACTIONS(270), - [anon_sym_COLON_COLON] = ACTIONS(272), + [anon_sym_COLON] = ACTIONS(466), + [anon_sym_COLON_COLON] = ACTIONS(468), [aux_sym_str_lit_token1] = ACTIONS(274), - [sym_char_lit] = ACTIONS(350), - [sym_nil_lit] = ACTIONS(356), - [sym_bool_lit] = ACTIONS(356), + [sym_char_lit] = ACTIONS(574), + [sym_nil_lit] = ACTIONS(576), + [sym_bool_lit] = ACTIONS(576), [aux_sym__sym_qualified_token1] = ACTIONS(278), [anon_sym_CARET] = ACTIONS(21), [anon_sym_POUND_CARET] = ACTIONS(23), [anon_sym_LPAREN] = ACTIONS(280), [anon_sym_LBRACE] = ACTIONS(282), [anon_sym_LBRACK] = ACTIONS(284), - [anon_sym_POUND] = ACTIONS(286), + [anon_sym_POUND] = ACTIONS(472), [anon_sym_POUND_QMARK] = ACTIONS(288), [anon_sym_POUND_QMARK_AT] = ACTIONS(290), - [anon_sym_POUND_SQUOTE] = ACTIONS(292), - [anon_sym_POUND_POUND] = ACTIONS(294), + [anon_sym_POUND_SQUOTE] = ACTIONS(474), + [anon_sym_POUND_POUND] = ACTIONS(476), [anon_sym_POUND_EQ] = ACTIONS(296), - [anon_sym_AT] = ACTIONS(298), - [anon_sym_SQUOTE] = ACTIONS(300), - [anon_sym_BQUOTE] = ACTIONS(302), - [anon_sym_TILDE_AT] = ACTIONS(304), - [anon_sym_TILDE] = ACTIONS(306), + [anon_sym_AT] = ACTIONS(478), + [anon_sym_SQUOTE] = ACTIONS(480), + [anon_sym_BQUOTE] = ACTIONS(482), + [anon_sym_TILDE_AT] = ACTIONS(484), + [anon_sym_TILDE] = ACTIONS(486), }, - [82] = { + [STATE(68)] = { [sym__gap] = STATE(301), [sym_dis_expr] = STATE(301), - [sym__form] = STATE(417), - [sym_kwd_lit] = STATE(417), - [sym_str_lit] = STATE(417), - [sym_sym_lit] = STATE(417), + [sym__form] = STATE(347), + [sym_kwd_lit] = STATE(347), + [sym_str_lit] = STATE(347), + [sym_sym_lit] = STATE(347), [sym__metadata_lit] = STATE(424), - [sym_meta_lit] = STATE(314), - [sym_old_meta_lit] = STATE(313), - [sym_list_lit] = STATE(417), - [sym__bare_list_lit] = STATE(392), - [sym_map_lit] = STATE(417), + [sym_meta_lit] = STATE(312), + [sym_old_meta_lit] = STATE(315), + [sym_list_lit] = STATE(347), + [sym__bare_list_lit] = STATE(402), + [sym_map_lit] = STATE(347), [sym__bare_map_lit] = STATE(403), - [sym_vec_lit] = STATE(417), - [sym__bare_vec_lit] = STATE(423), - [sym_set_lit] = STATE(417), - [sym__bare_set_lit] = STATE(374), - [sym_anon_fn_lit] = STATE(417), - [sym_regex_lit] = STATE(417), - [sym_read_cond_lit] = STATE(417), - [sym_splicing_read_cond_lit] = STATE(417), - [sym_ns_map_lit] = STATE(417), - [sym_var_quoting_lit] = STATE(417), - [sym_sym_val_lit] = STATE(417), - [sym_evaling_lit] = STATE(417), - [sym_tagged_or_ctor_lit] = STATE(417), - [sym_derefing_lit] = STATE(417), - [sym_quoting_lit] = STATE(417), - [sym_syn_quoting_lit] = STATE(417), - [sym_unquote_splicing_lit] = STATE(417), - [sym_unquoting_lit] = STATE(417), + [sym_vec_lit] = STATE(347), + [sym__bare_vec_lit] = STATE(404), + [sym_set_lit] = STATE(347), + [sym__bare_set_lit] = STATE(405), + [sym_anon_fn_lit] = STATE(347), + [sym_regex_lit] = STATE(347), + [sym_read_cond_lit] = STATE(347), + [sym_splicing_read_cond_lit] = STATE(347), + [sym_ns_map_lit] = STATE(347), + [sym_var_quoting_lit] = STATE(347), + [sym_sym_val_lit] = STATE(347), + [sym_evaling_lit] = STATE(347), + [sym_tagged_or_ctor_lit] = STATE(347), + [sym_derefing_lit] = STATE(347), + [sym_quoting_lit] = STATE(347), + [sym_syn_quoting_lit] = STATE(347), + [sym_unquote_splicing_lit] = STATE(347), + [sym_unquoting_lit] = STATE(347), [aux_sym_dis_expr_repeat1] = STATE(301), - [aux_sym_sym_lit_repeat1] = STATE(304), - [sym__ws] = ACTIONS(264), - [sym_comment] = ACTIONS(264), + [aux_sym_sym_lit_repeat1] = STATE(306), + [sym__ws] = ACTIONS(320), + [sym_comment] = ACTIONS(320), [anon_sym_POUND_] = ACTIONS(7), - [sym_num_lit] = ACTIONS(374), + [sym_num_lit] = ACTIONS(578), [anon_sym_SLASH] = ACTIONS(268), - [anon_sym_COLON] = ACTIONS(270), - [anon_sym_COLON_COLON] = ACTIONS(272), + [anon_sym_COLON] = ACTIONS(466), + [anon_sym_COLON_COLON] = ACTIONS(468), [aux_sym_str_lit_token1] = ACTIONS(274), - [sym_char_lit] = ACTIONS(374), - [sym_nil_lit] = ACTIONS(376), - [sym_bool_lit] = ACTIONS(376), + [sym_char_lit] = ACTIONS(578), + [sym_nil_lit] = ACTIONS(580), + [sym_bool_lit] = ACTIONS(580), [aux_sym__sym_qualified_token1] = ACTIONS(278), [anon_sym_CARET] = ACTIONS(21), [anon_sym_POUND_CARET] = ACTIONS(23), [anon_sym_LPAREN] = ACTIONS(280), [anon_sym_LBRACE] = ACTIONS(282), [anon_sym_LBRACK] = ACTIONS(284), - [anon_sym_POUND] = ACTIONS(286), + [anon_sym_POUND] = ACTIONS(472), [anon_sym_POUND_QMARK] = ACTIONS(288), [anon_sym_POUND_QMARK_AT] = ACTIONS(290), - [anon_sym_POUND_SQUOTE] = ACTIONS(292), - [anon_sym_POUND_POUND] = ACTIONS(294), + [anon_sym_POUND_SQUOTE] = ACTIONS(474), + [anon_sym_POUND_POUND] = ACTIONS(476), [anon_sym_POUND_EQ] = ACTIONS(296), - [anon_sym_AT] = ACTIONS(298), - [anon_sym_SQUOTE] = ACTIONS(300), - [anon_sym_BQUOTE] = ACTIONS(302), - [anon_sym_TILDE_AT] = ACTIONS(304), - [anon_sym_TILDE] = ACTIONS(306), + [anon_sym_AT] = ACTIONS(478), + [anon_sym_SQUOTE] = ACTIONS(480), + [anon_sym_BQUOTE] = ACTIONS(482), + [anon_sym_TILDE_AT] = ACTIONS(484), + [anon_sym_TILDE] = ACTIONS(486), + }, + [STATE(69)] = { + [sym__gap] = STATE(78), + [sym_dis_expr] = STATE(78), + [sym__form] = STATE(352), + [sym_kwd_lit] = STATE(352), + [sym_str_lit] = STATE(352), + [sym_sym_lit] = STATE(352), + [sym__metadata_lit] = STATE(424), + [sym_meta_lit] = STATE(312), + [sym_old_meta_lit] = STATE(315), + [sym_list_lit] = STATE(352), + [sym__bare_list_lit] = STATE(402), + [sym_map_lit] = STATE(352), + [sym__bare_map_lit] = STATE(403), + [sym_vec_lit] = STATE(352), + [sym__bare_vec_lit] = STATE(404), + [sym_set_lit] = STATE(352), + [sym__bare_set_lit] = STATE(405), + [sym_anon_fn_lit] = STATE(352), + [sym_regex_lit] = STATE(352), + [sym_read_cond_lit] = STATE(352), + [sym_splicing_read_cond_lit] = STATE(352), + [sym_ns_map_lit] = STATE(352), + [sym_var_quoting_lit] = STATE(352), + [sym_sym_val_lit] = STATE(352), + [sym_evaling_lit] = STATE(352), + [sym_tagged_or_ctor_lit] = STATE(352), + [sym_derefing_lit] = STATE(352), + [sym_quoting_lit] = STATE(352), + [sym_syn_quoting_lit] = STATE(352), + [sym_unquote_splicing_lit] = STATE(352), + [sym_unquoting_lit] = STATE(352), + [aux_sym_dis_expr_repeat1] = STATE(78), + [aux_sym_sym_lit_repeat1] = STATE(306), + [sym__ws] = ACTIONS(582), + [sym_comment] = ACTIONS(582), + [anon_sym_POUND_] = ACTIONS(7), + [sym_num_lit] = ACTIONS(266), + [anon_sym_SLASH] = ACTIONS(268), + [anon_sym_COLON] = ACTIONS(466), + [anon_sym_COLON_COLON] = ACTIONS(468), + [aux_sym_str_lit_token1] = ACTIONS(274), + [sym_char_lit] = ACTIONS(266), + [sym_nil_lit] = ACTIONS(276), + [sym_bool_lit] = ACTIONS(276), + [aux_sym__sym_qualified_token1] = ACTIONS(278), + [anon_sym_CARET] = ACTIONS(21), + [anon_sym_POUND_CARET] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(280), + [anon_sym_LBRACE] = ACTIONS(282), + [anon_sym_LBRACK] = ACTIONS(284), + [anon_sym_POUND] = ACTIONS(472), + [anon_sym_POUND_QMARK] = ACTIONS(288), + [anon_sym_POUND_QMARK_AT] = ACTIONS(290), + [anon_sym_POUND_SQUOTE] = ACTIONS(474), + [anon_sym_POUND_POUND] = ACTIONS(476), + [anon_sym_POUND_EQ] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(478), + [anon_sym_SQUOTE] = ACTIONS(480), + [anon_sym_BQUOTE] = ACTIONS(482), + [anon_sym_TILDE_AT] = ACTIONS(484), + [anon_sym_TILDE] = ACTIONS(486), }, - [83] = { - [sym__gap] = STATE(301), - [sym_dis_expr] = STATE(301), - [sym__form] = STATE(350), - [sym_kwd_lit] = STATE(350), - [sym_str_lit] = STATE(350), - [sym_sym_lit] = STATE(350), + [STATE(70)] = { + [sym__gap] = STATE(79), + [sym_dis_expr] = STATE(79), + [sym__form] = STATE(358), + [sym_kwd_lit] = STATE(358), + [sym_str_lit] = STATE(358), + [sym_sym_lit] = STATE(358), [sym__metadata_lit] = STATE(424), - [sym_meta_lit] = STATE(314), - [sym_old_meta_lit] = STATE(313), - [sym_list_lit] = STATE(350), - [sym__bare_list_lit] = STATE(392), - [sym_map_lit] = STATE(350), + [sym_meta_lit] = STATE(312), + [sym_old_meta_lit] = STATE(315), + [sym_list_lit] = STATE(358), + [sym__bare_list_lit] = STATE(402), + [sym_map_lit] = STATE(358), [sym__bare_map_lit] = STATE(403), - [sym_vec_lit] = STATE(350), - [sym__bare_vec_lit] = STATE(423), - [sym_set_lit] = STATE(350), - [sym__bare_set_lit] = STATE(374), - [sym_anon_fn_lit] = STATE(350), - [sym_regex_lit] = STATE(350), - [sym_read_cond_lit] = STATE(350), - [sym_splicing_read_cond_lit] = STATE(350), - [sym_ns_map_lit] = STATE(350), - [sym_var_quoting_lit] = STATE(350), - [sym_sym_val_lit] = STATE(350), - [sym_evaling_lit] = STATE(350), - [sym_tagged_or_ctor_lit] = STATE(350), - [sym_derefing_lit] = STATE(350), - [sym_quoting_lit] = STATE(350), - [sym_syn_quoting_lit] = STATE(350), - [sym_unquote_splicing_lit] = STATE(350), - [sym_unquoting_lit] = STATE(350), - [aux_sym_dis_expr_repeat1] = STATE(301), - [aux_sym_sym_lit_repeat1] = STATE(304), - [sym__ws] = ACTIONS(264), - [sym_comment] = ACTIONS(264), + [sym_vec_lit] = STATE(358), + [sym__bare_vec_lit] = STATE(404), + [sym_set_lit] = STATE(358), + [sym__bare_set_lit] = STATE(405), + [sym_anon_fn_lit] = STATE(358), + [sym_regex_lit] = STATE(358), + [sym_read_cond_lit] = STATE(358), + [sym_splicing_read_cond_lit] = STATE(358), + [sym_ns_map_lit] = STATE(358), + [sym_var_quoting_lit] = STATE(358), + [sym_sym_val_lit] = STATE(358), + [sym_evaling_lit] = STATE(358), + [sym_tagged_or_ctor_lit] = STATE(358), + [sym_derefing_lit] = STATE(358), + [sym_quoting_lit] = STATE(358), + [sym_syn_quoting_lit] = STATE(358), + [sym_unquote_splicing_lit] = STATE(358), + [sym_unquoting_lit] = STATE(358), + [aux_sym_dis_expr_repeat1] = STATE(79), + [aux_sym_sym_lit_repeat1] = STATE(306), + [sym__ws] = ACTIONS(584), + [sym_comment] = ACTIONS(584), [anon_sym_POUND_] = ACTIONS(7), - [sym_num_lit] = ACTIONS(612), + [sym_num_lit] = ACTIONS(586), [anon_sym_SLASH] = ACTIONS(268), - [anon_sym_COLON] = ACTIONS(270), - [anon_sym_COLON_COLON] = ACTIONS(272), + [anon_sym_COLON] = ACTIONS(466), + [anon_sym_COLON_COLON] = ACTIONS(468), [aux_sym_str_lit_token1] = ACTIONS(274), - [sym_char_lit] = ACTIONS(612), - [sym_nil_lit] = ACTIONS(614), - [sym_bool_lit] = ACTIONS(614), + [sym_char_lit] = ACTIONS(586), + [sym_nil_lit] = ACTIONS(588), + [sym_bool_lit] = ACTIONS(588), [aux_sym__sym_qualified_token1] = ACTIONS(278), [anon_sym_CARET] = ACTIONS(21), [anon_sym_POUND_CARET] = ACTIONS(23), [anon_sym_LPAREN] = ACTIONS(280), [anon_sym_LBRACE] = ACTIONS(282), [anon_sym_LBRACK] = ACTIONS(284), - [anon_sym_POUND] = ACTIONS(286), + [anon_sym_POUND] = ACTIONS(472), [anon_sym_POUND_QMARK] = ACTIONS(288), [anon_sym_POUND_QMARK_AT] = ACTIONS(290), - [anon_sym_POUND_SQUOTE] = ACTIONS(292), - [anon_sym_POUND_POUND] = ACTIONS(294), + [anon_sym_POUND_SQUOTE] = ACTIONS(474), + [anon_sym_POUND_POUND] = ACTIONS(476), [anon_sym_POUND_EQ] = ACTIONS(296), - [anon_sym_AT] = ACTIONS(298), - [anon_sym_SQUOTE] = ACTIONS(300), - [anon_sym_BQUOTE] = ACTIONS(302), - [anon_sym_TILDE_AT] = ACTIONS(304), - [anon_sym_TILDE] = ACTIONS(306), + [anon_sym_AT] = ACTIONS(478), + [anon_sym_SQUOTE] = ACTIONS(480), + [anon_sym_BQUOTE] = ACTIONS(482), + [anon_sym_TILDE_AT] = ACTIONS(484), + [anon_sym_TILDE] = ACTIONS(486), }, - [84] = { - [sym__gap] = STATE(73), - [sym_dis_expr] = STATE(73), - [sym__form] = STATE(357), - [sym_kwd_lit] = STATE(357), - [sym_str_lit] = STATE(357), - [sym_sym_lit] = STATE(357), + [STATE(71)] = { + [sym__gap] = STATE(80), + [sym_dis_expr] = STATE(80), + [sym__form] = STATE(360), + [sym_kwd_lit] = STATE(360), + [sym_str_lit] = STATE(360), + [sym_sym_lit] = STATE(360), [sym__metadata_lit] = STATE(424), - [sym_meta_lit] = STATE(314), - [sym_old_meta_lit] = STATE(313), - [sym_list_lit] = STATE(357), - [sym__bare_list_lit] = STATE(392), - [sym_map_lit] = STATE(357), + [sym_meta_lit] = STATE(312), + [sym_old_meta_lit] = STATE(315), + [sym_list_lit] = STATE(360), + [sym__bare_list_lit] = STATE(402), + [sym_map_lit] = STATE(360), [sym__bare_map_lit] = STATE(403), - [sym_vec_lit] = STATE(357), - [sym__bare_vec_lit] = STATE(423), - [sym_set_lit] = STATE(357), - [sym__bare_set_lit] = STATE(374), - [sym_anon_fn_lit] = STATE(357), - [sym_regex_lit] = STATE(357), - [sym_read_cond_lit] = STATE(357), - [sym_splicing_read_cond_lit] = STATE(357), - [sym_ns_map_lit] = STATE(357), - [sym_var_quoting_lit] = STATE(357), - [sym_sym_val_lit] = STATE(357), - [sym_evaling_lit] = STATE(357), - [sym_tagged_or_ctor_lit] = STATE(357), - [sym_derefing_lit] = STATE(357), - [sym_quoting_lit] = STATE(357), - [sym_syn_quoting_lit] = STATE(357), - [sym_unquote_splicing_lit] = STATE(357), - [sym_unquoting_lit] = STATE(357), - [aux_sym_dis_expr_repeat1] = STATE(73), - [aux_sym_sym_lit_repeat1] = STATE(304), - [sym__ws] = ACTIONS(616), - [sym_comment] = ACTIONS(616), + [sym_vec_lit] = STATE(360), + [sym__bare_vec_lit] = STATE(404), + [sym_set_lit] = STATE(360), + [sym__bare_set_lit] = STATE(405), + [sym_anon_fn_lit] = STATE(360), + [sym_regex_lit] = STATE(360), + [sym_read_cond_lit] = STATE(360), + [sym_splicing_read_cond_lit] = STATE(360), + [sym_ns_map_lit] = STATE(360), + [sym_var_quoting_lit] = STATE(360), + [sym_sym_val_lit] = STATE(360), + [sym_evaling_lit] = STATE(360), + [sym_tagged_or_ctor_lit] = STATE(360), + [sym_derefing_lit] = STATE(360), + [sym_quoting_lit] = STATE(360), + [sym_syn_quoting_lit] = STATE(360), + [sym_unquote_splicing_lit] = STATE(360), + [sym_unquoting_lit] = STATE(360), + [aux_sym_dis_expr_repeat1] = STATE(80), + [aux_sym_sym_lit_repeat1] = STATE(306), + [sym__ws] = ACTIONS(590), + [sym_comment] = ACTIONS(590), [anon_sym_POUND_] = ACTIONS(7), - [sym_num_lit] = ACTIONS(384), + [sym_num_lit] = ACTIONS(592), [anon_sym_SLASH] = ACTIONS(268), - [anon_sym_COLON] = ACTIONS(270), - [anon_sym_COLON_COLON] = ACTIONS(272), + [anon_sym_COLON] = ACTIONS(466), + [anon_sym_COLON_COLON] = ACTIONS(468), [aux_sym_str_lit_token1] = ACTIONS(274), - [sym_char_lit] = ACTIONS(384), - [sym_nil_lit] = ACTIONS(386), - [sym_bool_lit] = ACTIONS(386), + [sym_char_lit] = ACTIONS(592), + [sym_nil_lit] = ACTIONS(594), + [sym_bool_lit] = ACTIONS(594), [aux_sym__sym_qualified_token1] = ACTIONS(278), [anon_sym_CARET] = ACTIONS(21), [anon_sym_POUND_CARET] = ACTIONS(23), [anon_sym_LPAREN] = ACTIONS(280), [anon_sym_LBRACE] = ACTIONS(282), [anon_sym_LBRACK] = ACTIONS(284), - [anon_sym_POUND] = ACTIONS(286), + [anon_sym_POUND] = ACTIONS(472), [anon_sym_POUND_QMARK] = ACTIONS(288), [anon_sym_POUND_QMARK_AT] = ACTIONS(290), - [anon_sym_POUND_SQUOTE] = ACTIONS(292), - [anon_sym_POUND_POUND] = ACTIONS(294), + [anon_sym_POUND_SQUOTE] = ACTIONS(474), + [anon_sym_POUND_POUND] = ACTIONS(476), [anon_sym_POUND_EQ] = ACTIONS(296), - [anon_sym_AT] = ACTIONS(298), - [anon_sym_SQUOTE] = ACTIONS(300), - [anon_sym_BQUOTE] = ACTIONS(302), - [anon_sym_TILDE_AT] = ACTIONS(304), - [anon_sym_TILDE] = ACTIONS(306), + [anon_sym_AT] = ACTIONS(478), + [anon_sym_SQUOTE] = ACTIONS(480), + [anon_sym_BQUOTE] = ACTIONS(482), + [anon_sym_TILDE_AT] = ACTIONS(484), + [anon_sym_TILDE] = ACTIONS(486), }, - [85] = { - [sym__gap] = STATE(75), - [sym_dis_expr] = STATE(75), + [STATE(72)] = { + [sym__gap] = STATE(81), + [sym_dis_expr] = STATE(81), [sym__form] = STATE(362), [sym_kwd_lit] = STATE(362), [sym_str_lit] = STATE(362), [sym_sym_lit] = STATE(362), [sym__metadata_lit] = STATE(424), - [sym_meta_lit] = STATE(314), - [sym_old_meta_lit] = STATE(313), + [sym_meta_lit] = STATE(312), + [sym_old_meta_lit] = STATE(315), [sym_list_lit] = STATE(362), - [sym__bare_list_lit] = STATE(392), + [sym__bare_list_lit] = STATE(402), [sym_map_lit] = STATE(362), [sym__bare_map_lit] = STATE(403), [sym_vec_lit] = STATE(362), - [sym__bare_vec_lit] = STATE(423), + [sym__bare_vec_lit] = STATE(404), [sym_set_lit] = STATE(362), - [sym__bare_set_lit] = STATE(374), + [sym__bare_set_lit] = STATE(405), [sym_anon_fn_lit] = STATE(362), [sym_regex_lit] = STATE(362), [sym_read_cond_lit] = STATE(362), @@ -8843,1342 +7476,1909 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_syn_quoting_lit] = STATE(362), [sym_unquote_splicing_lit] = STATE(362), [sym_unquoting_lit] = STATE(362), - [aux_sym_dis_expr_repeat1] = STATE(75), - [aux_sym_sym_lit_repeat1] = STATE(304), - [sym__ws] = ACTIONS(618), - [sym_comment] = ACTIONS(618), + [aux_sym_dis_expr_repeat1] = STATE(81), + [aux_sym_sym_lit_repeat1] = STATE(306), + [sym__ws] = ACTIONS(596), + [sym_comment] = ACTIONS(596), [anon_sym_POUND_] = ACTIONS(7), - [sym_num_lit] = ACTIONS(390), + [sym_num_lit] = ACTIONS(598), [anon_sym_SLASH] = ACTIONS(268), - [anon_sym_COLON] = ACTIONS(270), - [anon_sym_COLON_COLON] = ACTIONS(272), + [anon_sym_COLON] = ACTIONS(466), + [anon_sym_COLON_COLON] = ACTIONS(468), [aux_sym_str_lit_token1] = ACTIONS(274), - [sym_char_lit] = ACTIONS(390), - [sym_nil_lit] = ACTIONS(392), - [sym_bool_lit] = ACTIONS(392), + [sym_char_lit] = ACTIONS(598), + [sym_nil_lit] = ACTIONS(600), + [sym_bool_lit] = ACTIONS(600), [aux_sym__sym_qualified_token1] = ACTIONS(278), [anon_sym_CARET] = ACTIONS(21), [anon_sym_POUND_CARET] = ACTIONS(23), [anon_sym_LPAREN] = ACTIONS(280), [anon_sym_LBRACE] = ACTIONS(282), [anon_sym_LBRACK] = ACTIONS(284), - [anon_sym_POUND] = ACTIONS(286), + [anon_sym_POUND] = ACTIONS(472), [anon_sym_POUND_QMARK] = ACTIONS(288), [anon_sym_POUND_QMARK_AT] = ACTIONS(290), - [anon_sym_POUND_SQUOTE] = ACTIONS(292), - [anon_sym_POUND_POUND] = ACTIONS(294), + [anon_sym_POUND_SQUOTE] = ACTIONS(474), + [anon_sym_POUND_POUND] = ACTIONS(476), [anon_sym_POUND_EQ] = ACTIONS(296), - [anon_sym_AT] = ACTIONS(298), - [anon_sym_SQUOTE] = ACTIONS(300), - [anon_sym_BQUOTE] = ACTIONS(302), - [anon_sym_TILDE_AT] = ACTIONS(304), - [anon_sym_TILDE] = ACTIONS(306), + [anon_sym_AT] = ACTIONS(478), + [anon_sym_SQUOTE] = ACTIONS(480), + [anon_sym_BQUOTE] = ACTIONS(482), + [anon_sym_TILDE_AT] = ACTIONS(484), + [anon_sym_TILDE] = ACTIONS(486), }, - [86] = { - [sym__gap] = STATE(138), - [sym_dis_expr] = STATE(138), - [sym__form] = STATE(283), - [sym_kwd_lit] = STATE(283), - [sym_str_lit] = STATE(283), - [sym_sym_lit] = STATE(283), + [STATE(73)] = { + [sym__gap] = STATE(82), + [sym_dis_expr] = STATE(82), + [sym__form] = STATE(365), + [sym_kwd_lit] = STATE(365), + [sym_str_lit] = STATE(365), + [sym_sym_lit] = STATE(365), [sym__metadata_lit] = STATE(424), - [sym_meta_lit] = STATE(314), - [sym_old_meta_lit] = STATE(313), - [sym_list_lit] = STATE(283), - [sym__bare_list_lit] = STATE(218), - [sym_map_lit] = STATE(283), - [sym__bare_map_lit] = STATE(219), - [sym_vec_lit] = STATE(283), - [sym__bare_vec_lit] = STATE(226), - [sym_set_lit] = STATE(283), - [sym__bare_set_lit] = STATE(227), - [sym_anon_fn_lit] = STATE(283), - [sym_regex_lit] = STATE(283), - [sym_read_cond_lit] = STATE(283), - [sym_splicing_read_cond_lit] = STATE(283), - [sym_ns_map_lit] = STATE(283), - [sym_var_quoting_lit] = STATE(283), - [sym_sym_val_lit] = STATE(283), - [sym_evaling_lit] = STATE(283), - [sym_tagged_or_ctor_lit] = STATE(283), - [sym_derefing_lit] = STATE(283), - [sym_quoting_lit] = STATE(283), - [sym_syn_quoting_lit] = STATE(283), - [sym_unquote_splicing_lit] = STATE(283), - [sym_unquoting_lit] = STATE(283), - [aux_sym_dis_expr_repeat1] = STATE(138), - [aux_sym_sym_lit_repeat1] = STATE(305), - [sym__ws] = ACTIONS(620), - [sym_comment] = ACTIONS(620), + [sym_meta_lit] = STATE(312), + [sym_old_meta_lit] = STATE(315), + [sym_list_lit] = STATE(365), + [sym__bare_list_lit] = STATE(402), + [sym_map_lit] = STATE(365), + [sym__bare_map_lit] = STATE(403), + [sym_vec_lit] = STATE(365), + [sym__bare_vec_lit] = STATE(404), + [sym_set_lit] = STATE(365), + [sym__bare_set_lit] = STATE(405), + [sym_anon_fn_lit] = STATE(365), + [sym_regex_lit] = STATE(365), + [sym_read_cond_lit] = STATE(365), + [sym_splicing_read_cond_lit] = STATE(365), + [sym_ns_map_lit] = STATE(365), + [sym_var_quoting_lit] = STATE(365), + [sym_sym_val_lit] = STATE(365), + [sym_evaling_lit] = STATE(365), + [sym_tagged_or_ctor_lit] = STATE(365), + [sym_derefing_lit] = STATE(365), + [sym_quoting_lit] = STATE(365), + [sym_syn_quoting_lit] = STATE(365), + [sym_unquote_splicing_lit] = STATE(365), + [sym_unquoting_lit] = STATE(365), + [aux_sym_dis_expr_repeat1] = STATE(82), + [aux_sym_sym_lit_repeat1] = STATE(306), + [sym__ws] = ACTIONS(602), + [sym_comment] = ACTIONS(602), [anon_sym_POUND_] = ACTIONS(7), - [sym_num_lit] = ACTIONS(622), - [anon_sym_SLASH] = ACTIONS(9), - [anon_sym_COLON] = ACTIONS(11), - [anon_sym_COLON_COLON] = ACTIONS(13), - [aux_sym_str_lit_token1] = ACTIONS(15), - [sym_char_lit] = ACTIONS(622), - [sym_nil_lit] = ACTIONS(624), - [sym_bool_lit] = ACTIONS(624), - [aux_sym__sym_qualified_token1] = ACTIONS(19), + [sym_num_lit] = ACTIONS(604), + [anon_sym_SLASH] = ACTIONS(268), + [anon_sym_COLON] = ACTIONS(466), + [anon_sym_COLON_COLON] = ACTIONS(468), + [aux_sym_str_lit_token1] = ACTIONS(274), + [sym_char_lit] = ACTIONS(604), + [sym_nil_lit] = ACTIONS(606), + [sym_bool_lit] = ACTIONS(606), + [aux_sym__sym_qualified_token1] = ACTIONS(278), [anon_sym_CARET] = ACTIONS(21), [anon_sym_POUND_CARET] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_LBRACK] = 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_TILDE_AT] = ACTIONS(49), - [anon_sym_TILDE] = ACTIONS(51), + [anon_sym_LPAREN] = ACTIONS(280), + [anon_sym_LBRACE] = ACTIONS(282), + [anon_sym_LBRACK] = ACTIONS(284), + [anon_sym_POUND] = ACTIONS(472), + [anon_sym_POUND_QMARK] = ACTIONS(288), + [anon_sym_POUND_QMARK_AT] = ACTIONS(290), + [anon_sym_POUND_SQUOTE] = ACTIONS(474), + [anon_sym_POUND_POUND] = ACTIONS(476), + [anon_sym_POUND_EQ] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(478), + [anon_sym_SQUOTE] = ACTIONS(480), + [anon_sym_BQUOTE] = ACTIONS(482), + [anon_sym_TILDE_AT] = ACTIONS(484), + [anon_sym_TILDE] = ACTIONS(486), + }, + [STATE(74)] = { + [sym__gap] = STATE(83), + [sym_dis_expr] = STATE(83), + [sym__form] = STATE(366), + [sym_kwd_lit] = STATE(366), + [sym_str_lit] = STATE(366), + [sym_sym_lit] = STATE(366), + [sym__metadata_lit] = STATE(424), + [sym_meta_lit] = STATE(312), + [sym_old_meta_lit] = STATE(315), + [sym_list_lit] = STATE(366), + [sym__bare_list_lit] = STATE(402), + [sym_map_lit] = STATE(366), + [sym__bare_map_lit] = STATE(403), + [sym_vec_lit] = STATE(366), + [sym__bare_vec_lit] = STATE(404), + [sym_set_lit] = STATE(366), + [sym__bare_set_lit] = STATE(405), + [sym_anon_fn_lit] = STATE(366), + [sym_regex_lit] = STATE(366), + [sym_read_cond_lit] = STATE(366), + [sym_splicing_read_cond_lit] = STATE(366), + [sym_ns_map_lit] = STATE(366), + [sym_var_quoting_lit] = STATE(366), + [sym_sym_val_lit] = STATE(366), + [sym_evaling_lit] = STATE(366), + [sym_tagged_or_ctor_lit] = STATE(366), + [sym_derefing_lit] = STATE(366), + [sym_quoting_lit] = STATE(366), + [sym_syn_quoting_lit] = STATE(366), + [sym_unquote_splicing_lit] = STATE(366), + [sym_unquoting_lit] = STATE(366), + [aux_sym_dis_expr_repeat1] = STATE(83), + [aux_sym_sym_lit_repeat1] = STATE(306), + [sym__ws] = ACTIONS(608), + [sym_comment] = ACTIONS(608), + [anon_sym_POUND_] = ACTIONS(7), + [sym_num_lit] = ACTIONS(610), + [anon_sym_SLASH] = ACTIONS(268), + [anon_sym_COLON] = ACTIONS(466), + [anon_sym_COLON_COLON] = ACTIONS(468), + [aux_sym_str_lit_token1] = ACTIONS(274), + [sym_char_lit] = ACTIONS(610), + [sym_nil_lit] = ACTIONS(612), + [sym_bool_lit] = ACTIONS(612), + [aux_sym__sym_qualified_token1] = ACTIONS(278), + [anon_sym_CARET] = ACTIONS(21), + [anon_sym_POUND_CARET] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(280), + [anon_sym_LBRACE] = ACTIONS(282), + [anon_sym_LBRACK] = ACTIONS(284), + [anon_sym_POUND] = ACTIONS(472), + [anon_sym_POUND_QMARK] = ACTIONS(288), + [anon_sym_POUND_QMARK_AT] = ACTIONS(290), + [anon_sym_POUND_SQUOTE] = ACTIONS(474), + [anon_sym_POUND_POUND] = ACTIONS(476), + [anon_sym_POUND_EQ] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(478), + [anon_sym_SQUOTE] = ACTIONS(480), + [anon_sym_BQUOTE] = ACTIONS(482), + [anon_sym_TILDE_AT] = ACTIONS(484), + [anon_sym_TILDE] = ACTIONS(486), }, - [87] = { + [STATE(75)] = { [sym__gap] = STATE(301), [sym_dis_expr] = STATE(301), - [sym__form] = STATE(364), - [sym_kwd_lit] = STATE(364), - [sym_str_lit] = STATE(364), - [sym_sym_lit] = STATE(364), + [sym__form] = STATE(370), + [sym_kwd_lit] = STATE(370), + [sym_str_lit] = STATE(370), + [sym_sym_lit] = STATE(370), [sym__metadata_lit] = STATE(424), - [sym_meta_lit] = STATE(314), - [sym_old_meta_lit] = STATE(313), - [sym_list_lit] = STATE(364), - [sym__bare_list_lit] = STATE(392), - [sym_map_lit] = STATE(364), + [sym_meta_lit] = STATE(312), + [sym_old_meta_lit] = STATE(315), + [sym_list_lit] = STATE(370), + [sym__bare_list_lit] = STATE(402), + [sym_map_lit] = STATE(370), [sym__bare_map_lit] = STATE(403), - [sym_vec_lit] = STATE(364), - [sym__bare_vec_lit] = STATE(423), - [sym_set_lit] = STATE(364), - [sym__bare_set_lit] = STATE(374), - [sym_anon_fn_lit] = STATE(364), - [sym_regex_lit] = STATE(364), - [sym_read_cond_lit] = STATE(364), - [sym_splicing_read_cond_lit] = STATE(364), - [sym_ns_map_lit] = STATE(364), - [sym_var_quoting_lit] = STATE(364), - [sym_sym_val_lit] = STATE(364), - [sym_evaling_lit] = STATE(364), - [sym_tagged_or_ctor_lit] = STATE(364), - [sym_derefing_lit] = STATE(364), - [sym_quoting_lit] = STATE(364), - [sym_syn_quoting_lit] = STATE(364), - [sym_unquote_splicing_lit] = STATE(364), - [sym_unquoting_lit] = STATE(364), + [sym_vec_lit] = STATE(370), + [sym__bare_vec_lit] = STATE(404), + [sym_set_lit] = STATE(370), + [sym__bare_set_lit] = STATE(405), + [sym_anon_fn_lit] = STATE(370), + [sym_regex_lit] = STATE(370), + [sym_read_cond_lit] = STATE(370), + [sym_splicing_read_cond_lit] = STATE(370), + [sym_ns_map_lit] = STATE(370), + [sym_var_quoting_lit] = STATE(370), + [sym_sym_val_lit] = STATE(370), + [sym_evaling_lit] = STATE(370), + [sym_tagged_or_ctor_lit] = STATE(370), + [sym_derefing_lit] = STATE(370), + [sym_quoting_lit] = STATE(370), + [sym_syn_quoting_lit] = STATE(370), + [sym_unquote_splicing_lit] = STATE(370), + [sym_unquoting_lit] = STATE(370), [aux_sym_dis_expr_repeat1] = STATE(301), - [aux_sym_sym_lit_repeat1] = STATE(304), - [sym__ws] = ACTIONS(264), - [sym_comment] = ACTIONS(264), + [aux_sym_sym_lit_repeat1] = STATE(306), + [sym__ws] = ACTIONS(320), + [sym_comment] = ACTIONS(320), + [anon_sym_POUND_] = ACTIONS(7), + [sym_num_lit] = ACTIONS(614), + [anon_sym_SLASH] = ACTIONS(268), + [anon_sym_COLON] = ACTIONS(466), + [anon_sym_COLON_COLON] = ACTIONS(468), + [aux_sym_str_lit_token1] = ACTIONS(274), + [sym_char_lit] = ACTIONS(614), + [sym_nil_lit] = ACTIONS(616), + [sym_bool_lit] = ACTIONS(616), + [aux_sym__sym_qualified_token1] = ACTIONS(278), + [anon_sym_CARET] = ACTIONS(21), + [anon_sym_POUND_CARET] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(280), + [anon_sym_LBRACE] = ACTIONS(282), + [anon_sym_LBRACK] = ACTIONS(284), + [anon_sym_POUND] = ACTIONS(472), + [anon_sym_POUND_QMARK] = ACTIONS(288), + [anon_sym_POUND_QMARK_AT] = ACTIONS(290), + [anon_sym_POUND_SQUOTE] = ACTIONS(474), + [anon_sym_POUND_POUND] = ACTIONS(476), + [anon_sym_POUND_EQ] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(478), + [anon_sym_SQUOTE] = ACTIONS(480), + [anon_sym_BQUOTE] = ACTIONS(482), + [anon_sym_TILDE_AT] = ACTIONS(484), + [anon_sym_TILDE] = ACTIONS(486), + }, + [STATE(76)] = { + [sym__gap] = STATE(84), + [sym_dis_expr] = STATE(84), + [sym__form] = STATE(371), + [sym_kwd_lit] = STATE(371), + [sym_str_lit] = STATE(371), + [sym_sym_lit] = STATE(371), + [sym__metadata_lit] = STATE(424), + [sym_meta_lit] = STATE(312), + [sym_old_meta_lit] = STATE(315), + [sym_list_lit] = STATE(371), + [sym__bare_list_lit] = STATE(402), + [sym_map_lit] = STATE(371), + [sym__bare_map_lit] = STATE(403), + [sym_vec_lit] = STATE(371), + [sym__bare_vec_lit] = STATE(404), + [sym_set_lit] = STATE(371), + [sym__bare_set_lit] = STATE(405), + [sym_anon_fn_lit] = STATE(371), + [sym_regex_lit] = STATE(371), + [sym_read_cond_lit] = STATE(371), + [sym_splicing_read_cond_lit] = STATE(371), + [sym_ns_map_lit] = STATE(371), + [sym_var_quoting_lit] = STATE(371), + [sym_sym_val_lit] = STATE(371), + [sym_evaling_lit] = STATE(371), + [sym_tagged_or_ctor_lit] = STATE(371), + [sym_derefing_lit] = STATE(371), + [sym_quoting_lit] = STATE(371), + [sym_syn_quoting_lit] = STATE(371), + [sym_unquote_splicing_lit] = STATE(371), + [sym_unquoting_lit] = STATE(371), + [aux_sym_dis_expr_repeat1] = STATE(84), + [aux_sym_sym_lit_repeat1] = STATE(306), + [sym__ws] = ACTIONS(618), + [sym_comment] = ACTIONS(618), + [anon_sym_POUND_] = ACTIONS(7), + [sym_num_lit] = ACTIONS(620), + [anon_sym_SLASH] = ACTIONS(268), + [anon_sym_COLON] = ACTIONS(466), + [anon_sym_COLON_COLON] = ACTIONS(468), + [aux_sym_str_lit_token1] = ACTIONS(274), + [sym_char_lit] = ACTIONS(620), + [sym_nil_lit] = ACTIONS(622), + [sym_bool_lit] = ACTIONS(622), + [aux_sym__sym_qualified_token1] = ACTIONS(278), + [anon_sym_CARET] = ACTIONS(21), + [anon_sym_POUND_CARET] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(280), + [anon_sym_LBRACE] = ACTIONS(282), + [anon_sym_LBRACK] = ACTIONS(284), + [anon_sym_POUND] = ACTIONS(472), + [anon_sym_POUND_QMARK] = ACTIONS(288), + [anon_sym_POUND_QMARK_AT] = ACTIONS(290), + [anon_sym_POUND_SQUOTE] = ACTIONS(474), + [anon_sym_POUND_POUND] = ACTIONS(476), + [anon_sym_POUND_EQ] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(478), + [anon_sym_SQUOTE] = ACTIONS(480), + [anon_sym_BQUOTE] = ACTIONS(482), + [anon_sym_TILDE_AT] = ACTIONS(484), + [anon_sym_TILDE] = ACTIONS(486), + }, + [STATE(77)] = { + [sym__gap] = STATE(85), + [sym_dis_expr] = STATE(85), + [sym__form] = STATE(376), + [sym_kwd_lit] = STATE(376), + [sym_str_lit] = STATE(376), + [sym_sym_lit] = STATE(376), + [sym__metadata_lit] = STATE(424), + [sym_meta_lit] = STATE(312), + [sym_old_meta_lit] = STATE(315), + [sym_list_lit] = STATE(376), + [sym__bare_list_lit] = STATE(402), + [sym_map_lit] = STATE(376), + [sym__bare_map_lit] = STATE(403), + [sym_vec_lit] = STATE(376), + [sym__bare_vec_lit] = STATE(404), + [sym_set_lit] = STATE(376), + [sym__bare_set_lit] = STATE(405), + [sym_anon_fn_lit] = STATE(376), + [sym_regex_lit] = STATE(376), + [sym_read_cond_lit] = STATE(376), + [sym_splicing_read_cond_lit] = STATE(376), + [sym_ns_map_lit] = STATE(376), + [sym_var_quoting_lit] = STATE(376), + [sym_sym_val_lit] = STATE(376), + [sym_evaling_lit] = STATE(376), + [sym_tagged_or_ctor_lit] = STATE(376), + [sym_derefing_lit] = STATE(376), + [sym_quoting_lit] = STATE(376), + [sym_syn_quoting_lit] = STATE(376), + [sym_unquote_splicing_lit] = STATE(376), + [sym_unquoting_lit] = STATE(376), + [aux_sym_dis_expr_repeat1] = STATE(85), + [aux_sym_sym_lit_repeat1] = STATE(306), + [sym__ws] = ACTIONS(624), + [sym_comment] = ACTIONS(624), [anon_sym_POUND_] = ACTIONS(7), - [sym_num_lit] = ACTIONS(394), + [sym_num_lit] = ACTIONS(626), [anon_sym_SLASH] = ACTIONS(268), - [anon_sym_COLON] = ACTIONS(270), - [anon_sym_COLON_COLON] = ACTIONS(272), + [anon_sym_COLON] = ACTIONS(466), + [anon_sym_COLON_COLON] = ACTIONS(468), [aux_sym_str_lit_token1] = ACTIONS(274), - [sym_char_lit] = ACTIONS(394), - [sym_nil_lit] = ACTIONS(396), - [sym_bool_lit] = ACTIONS(396), + [sym_char_lit] = ACTIONS(626), + [sym_nil_lit] = ACTIONS(628), + [sym_bool_lit] = ACTIONS(628), [aux_sym__sym_qualified_token1] = ACTIONS(278), [anon_sym_CARET] = ACTIONS(21), [anon_sym_POUND_CARET] = ACTIONS(23), [anon_sym_LPAREN] = ACTIONS(280), [anon_sym_LBRACE] = ACTIONS(282), [anon_sym_LBRACK] = ACTIONS(284), - [anon_sym_POUND] = ACTIONS(286), + [anon_sym_POUND] = ACTIONS(472), [anon_sym_POUND_QMARK] = ACTIONS(288), [anon_sym_POUND_QMARK_AT] = ACTIONS(290), - [anon_sym_POUND_SQUOTE] = ACTIONS(292), - [anon_sym_POUND_POUND] = ACTIONS(294), + [anon_sym_POUND_SQUOTE] = ACTIONS(474), + [anon_sym_POUND_POUND] = ACTIONS(476), [anon_sym_POUND_EQ] = ACTIONS(296), - [anon_sym_AT] = ACTIONS(298), - [anon_sym_SQUOTE] = ACTIONS(300), - [anon_sym_BQUOTE] = ACTIONS(302), - [anon_sym_TILDE_AT] = ACTIONS(304), - [anon_sym_TILDE] = ACTIONS(306), + [anon_sym_AT] = ACTIONS(478), + [anon_sym_SQUOTE] = ACTIONS(480), + [anon_sym_BQUOTE] = ACTIONS(482), + [anon_sym_TILDE_AT] = ACTIONS(484), + [anon_sym_TILDE] = ACTIONS(486), }, - [88] = { - [sym__gap] = STATE(144), - [sym_dis_expr] = STATE(144), - [sym__form] = STATE(287), - [sym_kwd_lit] = STATE(287), - [sym_str_lit] = STATE(287), - [sym_sym_lit] = STATE(287), + [STATE(78)] = { + [sym__gap] = STATE(301), + [sym_dis_expr] = STATE(301), + [sym__form] = STATE(381), + [sym_kwd_lit] = STATE(381), + [sym_str_lit] = STATE(381), + [sym_sym_lit] = STATE(381), [sym__metadata_lit] = STATE(424), - [sym_meta_lit] = STATE(314), - [sym_old_meta_lit] = STATE(313), - [sym_list_lit] = STATE(287), - [sym__bare_list_lit] = STATE(218), - [sym_map_lit] = STATE(287), - [sym__bare_map_lit] = STATE(219), - [sym_vec_lit] = STATE(287), - [sym__bare_vec_lit] = STATE(226), - [sym_set_lit] = STATE(287), - [sym__bare_set_lit] = STATE(227), - [sym_anon_fn_lit] = STATE(287), - [sym_regex_lit] = STATE(287), - [sym_read_cond_lit] = STATE(287), - [sym_splicing_read_cond_lit] = STATE(287), - [sym_ns_map_lit] = STATE(287), - [sym_var_quoting_lit] = STATE(287), - [sym_sym_val_lit] = STATE(287), - [sym_evaling_lit] = STATE(287), - [sym_tagged_or_ctor_lit] = STATE(287), - [sym_derefing_lit] = STATE(287), - [sym_quoting_lit] = STATE(287), - [sym_syn_quoting_lit] = STATE(287), - [sym_unquote_splicing_lit] = STATE(287), - [sym_unquoting_lit] = STATE(287), - [aux_sym_dis_expr_repeat1] = STATE(144), - [aux_sym_sym_lit_repeat1] = STATE(305), - [sym__ws] = ACTIONS(626), - [sym_comment] = ACTIONS(626), + [sym_meta_lit] = STATE(312), + [sym_old_meta_lit] = STATE(315), + [sym_list_lit] = STATE(381), + [sym__bare_list_lit] = STATE(402), + [sym_map_lit] = STATE(381), + [sym__bare_map_lit] = STATE(403), + [sym_vec_lit] = STATE(381), + [sym__bare_vec_lit] = STATE(404), + [sym_set_lit] = STATE(381), + [sym__bare_set_lit] = STATE(405), + [sym_anon_fn_lit] = STATE(381), + [sym_regex_lit] = STATE(381), + [sym_read_cond_lit] = STATE(381), + [sym_splicing_read_cond_lit] = STATE(381), + [sym_ns_map_lit] = STATE(381), + [sym_var_quoting_lit] = STATE(381), + [sym_sym_val_lit] = STATE(381), + [sym_evaling_lit] = STATE(381), + [sym_tagged_or_ctor_lit] = STATE(381), + [sym_derefing_lit] = STATE(381), + [sym_quoting_lit] = STATE(381), + [sym_syn_quoting_lit] = STATE(381), + [sym_unquote_splicing_lit] = STATE(381), + [sym_unquoting_lit] = STATE(381), + [aux_sym_dis_expr_repeat1] = STATE(301), + [aux_sym_sym_lit_repeat1] = STATE(306), + [sym__ws] = ACTIONS(320), + [sym_comment] = ACTIONS(320), [anon_sym_POUND_] = ACTIONS(7), - [sym_num_lit] = ACTIONS(628), - [anon_sym_SLASH] = ACTIONS(9), - [anon_sym_COLON] = ACTIONS(11), - [anon_sym_COLON_COLON] = ACTIONS(13), - [aux_sym_str_lit_token1] = ACTIONS(15), - [sym_char_lit] = ACTIONS(628), - [sym_nil_lit] = ACTIONS(630), - [sym_bool_lit] = ACTIONS(630), - [aux_sym__sym_qualified_token1] = ACTIONS(19), + [sym_num_lit] = ACTIONS(630), + [anon_sym_SLASH] = ACTIONS(268), + [anon_sym_COLON] = ACTIONS(466), + [anon_sym_COLON_COLON] = ACTIONS(468), + [aux_sym_str_lit_token1] = ACTIONS(274), + [sym_char_lit] = ACTIONS(630), + [sym_nil_lit] = ACTIONS(632), + [sym_bool_lit] = ACTIONS(632), + [aux_sym__sym_qualified_token1] = ACTIONS(278), [anon_sym_CARET] = ACTIONS(21), [anon_sym_POUND_CARET] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_LBRACK] = 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_TILDE_AT] = ACTIONS(49), - [anon_sym_TILDE] = ACTIONS(51), + [anon_sym_LPAREN] = ACTIONS(280), + [anon_sym_LBRACE] = ACTIONS(282), + [anon_sym_LBRACK] = ACTIONS(284), + [anon_sym_POUND] = ACTIONS(472), + [anon_sym_POUND_QMARK] = ACTIONS(288), + [anon_sym_POUND_QMARK_AT] = ACTIONS(290), + [anon_sym_POUND_SQUOTE] = ACTIONS(474), + [anon_sym_POUND_POUND] = ACTIONS(476), + [anon_sym_POUND_EQ] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(478), + [anon_sym_SQUOTE] = ACTIONS(480), + [anon_sym_BQUOTE] = ACTIONS(482), + [anon_sym_TILDE_AT] = ACTIONS(484), + [anon_sym_TILDE] = ACTIONS(486), }, - [89] = { - [sym__gap] = STATE(146), - [sym_dis_expr] = STATE(146), - [sym__form] = STATE(289), - [sym_kwd_lit] = STATE(289), - [sym_str_lit] = STATE(289), - [sym_sym_lit] = STATE(289), + [STATE(79)] = { + [sym__gap] = STATE(301), + [sym_dis_expr] = STATE(301), + [sym__form] = STATE(385), + [sym_kwd_lit] = STATE(385), + [sym_str_lit] = STATE(385), + [sym_sym_lit] = STATE(385), [sym__metadata_lit] = STATE(424), - [sym_meta_lit] = STATE(314), - [sym_old_meta_lit] = STATE(313), - [sym_list_lit] = STATE(289), - [sym__bare_list_lit] = STATE(218), - [sym_map_lit] = STATE(289), - [sym__bare_map_lit] = STATE(219), - [sym_vec_lit] = STATE(289), - [sym__bare_vec_lit] = STATE(226), - [sym_set_lit] = STATE(289), - [sym__bare_set_lit] = STATE(227), - [sym_anon_fn_lit] = STATE(289), - [sym_regex_lit] = STATE(289), - [sym_read_cond_lit] = STATE(289), - [sym_splicing_read_cond_lit] = STATE(289), - [sym_ns_map_lit] = STATE(289), - [sym_var_quoting_lit] = STATE(289), - [sym_sym_val_lit] = STATE(289), - [sym_evaling_lit] = STATE(289), - [sym_tagged_or_ctor_lit] = STATE(289), - [sym_derefing_lit] = STATE(289), - [sym_quoting_lit] = STATE(289), - [sym_syn_quoting_lit] = STATE(289), - [sym_unquote_splicing_lit] = STATE(289), - [sym_unquoting_lit] = STATE(289), - [aux_sym_dis_expr_repeat1] = STATE(146), - [aux_sym_sym_lit_repeat1] = STATE(305), - [sym__ws] = ACTIONS(632), - [sym_comment] = ACTIONS(632), + [sym_meta_lit] = STATE(312), + [sym_old_meta_lit] = STATE(315), + [sym_list_lit] = STATE(385), + [sym__bare_list_lit] = STATE(402), + [sym_map_lit] = STATE(385), + [sym__bare_map_lit] = STATE(403), + [sym_vec_lit] = STATE(385), + [sym__bare_vec_lit] = STATE(404), + [sym_set_lit] = STATE(385), + [sym__bare_set_lit] = STATE(405), + [sym_anon_fn_lit] = STATE(385), + [sym_regex_lit] = STATE(385), + [sym_read_cond_lit] = STATE(385), + [sym_splicing_read_cond_lit] = STATE(385), + [sym_ns_map_lit] = STATE(385), + [sym_var_quoting_lit] = STATE(385), + [sym_sym_val_lit] = STATE(385), + [sym_evaling_lit] = STATE(385), + [sym_tagged_or_ctor_lit] = STATE(385), + [sym_derefing_lit] = STATE(385), + [sym_quoting_lit] = STATE(385), + [sym_syn_quoting_lit] = STATE(385), + [sym_unquote_splicing_lit] = STATE(385), + [sym_unquoting_lit] = STATE(385), + [aux_sym_dis_expr_repeat1] = STATE(301), + [aux_sym_sym_lit_repeat1] = STATE(306), + [sym__ws] = ACTIONS(320), + [sym_comment] = ACTIONS(320), [anon_sym_POUND_] = ACTIONS(7), [sym_num_lit] = ACTIONS(634), - [anon_sym_SLASH] = ACTIONS(9), - [anon_sym_COLON] = ACTIONS(11), - [anon_sym_COLON_COLON] = ACTIONS(13), - [aux_sym_str_lit_token1] = ACTIONS(15), + [anon_sym_SLASH] = ACTIONS(268), + [anon_sym_COLON] = ACTIONS(466), + [anon_sym_COLON_COLON] = ACTIONS(468), + [aux_sym_str_lit_token1] = ACTIONS(274), [sym_char_lit] = ACTIONS(634), [sym_nil_lit] = ACTIONS(636), [sym_bool_lit] = ACTIONS(636), - [aux_sym__sym_qualified_token1] = ACTIONS(19), - [anon_sym_CARET] = ACTIONS(21), - [anon_sym_POUND_CARET] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_LBRACK] = 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_TILDE_AT] = ACTIONS(49), - [anon_sym_TILDE] = ACTIONS(51), - }, - [90] = { - [sym__gap] = STATE(148), - [sym_dis_expr] = STATE(148), - [sym__form] = STATE(290), - [sym_kwd_lit] = STATE(290), - [sym_str_lit] = STATE(290), - [sym_sym_lit] = STATE(290), - [sym__metadata_lit] = STATE(424), - [sym_meta_lit] = STATE(314), - [sym_old_meta_lit] = STATE(313), - [sym_list_lit] = STATE(290), - [sym__bare_list_lit] = STATE(218), - [sym_map_lit] = STATE(290), - [sym__bare_map_lit] = STATE(219), - [sym_vec_lit] = STATE(290), - [sym__bare_vec_lit] = STATE(226), - [sym_set_lit] = STATE(290), - [sym__bare_set_lit] = STATE(227), - [sym_anon_fn_lit] = STATE(290), - [sym_regex_lit] = STATE(290), - [sym_read_cond_lit] = STATE(290), - [sym_splicing_read_cond_lit] = STATE(290), - [sym_ns_map_lit] = STATE(290), - [sym_var_quoting_lit] = STATE(290), - [sym_sym_val_lit] = STATE(290), - [sym_evaling_lit] = STATE(290), - [sym_tagged_or_ctor_lit] = STATE(290), - [sym_derefing_lit] = STATE(290), - [sym_quoting_lit] = STATE(290), - [sym_syn_quoting_lit] = STATE(290), - [sym_unquote_splicing_lit] = STATE(290), - [sym_unquoting_lit] = STATE(290), - [aux_sym_dis_expr_repeat1] = STATE(148), - [aux_sym_sym_lit_repeat1] = STATE(305), - [sym__ws] = ACTIONS(638), - [sym_comment] = ACTIONS(638), - [anon_sym_POUND_] = ACTIONS(7), - [sym_num_lit] = ACTIONS(640), - [anon_sym_SLASH] = ACTIONS(9), - [anon_sym_COLON] = ACTIONS(11), - [anon_sym_COLON_COLON] = ACTIONS(13), - [aux_sym_str_lit_token1] = ACTIONS(15), - [sym_char_lit] = ACTIONS(640), - [sym_nil_lit] = ACTIONS(642), - [sym_bool_lit] = ACTIONS(642), - [aux_sym__sym_qualified_token1] = ACTIONS(19), - [anon_sym_CARET] = ACTIONS(21), - [anon_sym_POUND_CARET] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_LBRACK] = 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_TILDE_AT] = ACTIONS(49), - [anon_sym_TILDE] = ACTIONS(51), - }, - [91] = { - [sym__gap] = STATE(150), - [sym_dis_expr] = STATE(150), - [sym__form] = STATE(291), - [sym_kwd_lit] = STATE(291), - [sym_str_lit] = STATE(291), - [sym_sym_lit] = STATE(291), - [sym__metadata_lit] = STATE(424), - [sym_meta_lit] = STATE(314), - [sym_old_meta_lit] = STATE(313), - [sym_list_lit] = STATE(291), - [sym__bare_list_lit] = STATE(218), - [sym_map_lit] = STATE(291), - [sym__bare_map_lit] = STATE(219), - [sym_vec_lit] = STATE(291), - [sym__bare_vec_lit] = STATE(226), - [sym_set_lit] = STATE(291), - [sym__bare_set_lit] = STATE(227), - [sym_anon_fn_lit] = STATE(291), - [sym_regex_lit] = STATE(291), - [sym_read_cond_lit] = STATE(291), - [sym_splicing_read_cond_lit] = STATE(291), - [sym_ns_map_lit] = STATE(291), - [sym_var_quoting_lit] = STATE(291), - [sym_sym_val_lit] = STATE(291), - [sym_evaling_lit] = STATE(291), - [sym_tagged_or_ctor_lit] = STATE(291), - [sym_derefing_lit] = STATE(291), - [sym_quoting_lit] = STATE(291), - [sym_syn_quoting_lit] = STATE(291), - [sym_unquote_splicing_lit] = STATE(291), - [sym_unquoting_lit] = STATE(291), - [aux_sym_dis_expr_repeat1] = STATE(150), - [aux_sym_sym_lit_repeat1] = STATE(305), - [sym__ws] = ACTIONS(644), - [sym_comment] = ACTIONS(644), - [anon_sym_POUND_] = ACTIONS(7), - [sym_num_lit] = ACTIONS(646), - [anon_sym_SLASH] = ACTIONS(9), - [anon_sym_COLON] = ACTIONS(11), - [anon_sym_COLON_COLON] = ACTIONS(13), - [aux_sym_str_lit_token1] = ACTIONS(15), - [sym_char_lit] = ACTIONS(646), - [sym_nil_lit] = ACTIONS(648), - [sym_bool_lit] = ACTIONS(648), - [aux_sym__sym_qualified_token1] = ACTIONS(19), + [aux_sym__sym_qualified_token1] = ACTIONS(278), [anon_sym_CARET] = ACTIONS(21), [anon_sym_POUND_CARET] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_LBRACK] = 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_TILDE_AT] = ACTIONS(49), - [anon_sym_TILDE] = ACTIONS(51), + [anon_sym_LPAREN] = ACTIONS(280), + [anon_sym_LBRACE] = ACTIONS(282), + [anon_sym_LBRACK] = ACTIONS(284), + [anon_sym_POUND] = ACTIONS(472), + [anon_sym_POUND_QMARK] = ACTIONS(288), + [anon_sym_POUND_QMARK_AT] = ACTIONS(290), + [anon_sym_POUND_SQUOTE] = ACTIONS(474), + [anon_sym_POUND_POUND] = ACTIONS(476), + [anon_sym_POUND_EQ] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(478), + [anon_sym_SQUOTE] = ACTIONS(480), + [anon_sym_BQUOTE] = ACTIONS(482), + [anon_sym_TILDE_AT] = ACTIONS(484), + [anon_sym_TILDE] = ACTIONS(486), }, - [92] = { - [sym__gap] = STATE(152), - [sym_dis_expr] = STATE(152), - [sym__form] = STATE(263), - [sym_kwd_lit] = STATE(263), - [sym_str_lit] = STATE(263), - [sym_sym_lit] = STATE(263), + [STATE(80)] = { + [sym__gap] = STATE(301), + [sym_dis_expr] = STATE(301), + [sym__form] = STATE(386), + [sym_kwd_lit] = STATE(386), + [sym_str_lit] = STATE(386), + [sym_sym_lit] = STATE(386), [sym__metadata_lit] = STATE(424), - [sym_meta_lit] = STATE(314), - [sym_old_meta_lit] = STATE(313), - [sym_list_lit] = STATE(263), - [sym__bare_list_lit] = STATE(218), - [sym_map_lit] = STATE(263), - [sym__bare_map_lit] = STATE(219), - [sym_vec_lit] = STATE(263), - [sym__bare_vec_lit] = STATE(226), - [sym_set_lit] = STATE(263), - [sym__bare_set_lit] = STATE(227), - [sym_anon_fn_lit] = STATE(263), - [sym_regex_lit] = STATE(263), - [sym_read_cond_lit] = STATE(263), - [sym_splicing_read_cond_lit] = STATE(263), - [sym_ns_map_lit] = STATE(263), - [sym_var_quoting_lit] = STATE(263), - [sym_sym_val_lit] = STATE(263), - [sym_evaling_lit] = STATE(263), - [sym_tagged_or_ctor_lit] = STATE(263), - [sym_derefing_lit] = STATE(263), - [sym_quoting_lit] = STATE(263), - [sym_syn_quoting_lit] = STATE(263), - [sym_unquote_splicing_lit] = STATE(263), - [sym_unquoting_lit] = STATE(263), - [aux_sym_dis_expr_repeat1] = STATE(152), - [aux_sym_sym_lit_repeat1] = STATE(305), - [sym__ws] = ACTIONS(650), - [sym_comment] = ACTIONS(650), - [anon_sym_POUND_] = ACTIONS(7), - [sym_num_lit] = ACTIONS(652), - [anon_sym_SLASH] = ACTIONS(9), - [anon_sym_COLON] = ACTIONS(11), - [anon_sym_COLON_COLON] = ACTIONS(13), - [aux_sym_str_lit_token1] = ACTIONS(15), - [sym_char_lit] = ACTIONS(652), - [sym_nil_lit] = ACTIONS(654), - [sym_bool_lit] = ACTIONS(654), - [aux_sym__sym_qualified_token1] = ACTIONS(19), + [sym_meta_lit] = STATE(312), + [sym_old_meta_lit] = STATE(315), + [sym_list_lit] = STATE(386), + [sym__bare_list_lit] = STATE(402), + [sym_map_lit] = STATE(386), + [sym__bare_map_lit] = STATE(403), + [sym_vec_lit] = STATE(386), + [sym__bare_vec_lit] = STATE(404), + [sym_set_lit] = STATE(386), + [sym__bare_set_lit] = STATE(405), + [sym_anon_fn_lit] = STATE(386), + [sym_regex_lit] = STATE(386), + [sym_read_cond_lit] = STATE(386), + [sym_splicing_read_cond_lit] = STATE(386), + [sym_ns_map_lit] = STATE(386), + [sym_var_quoting_lit] = STATE(386), + [sym_sym_val_lit] = STATE(386), + [sym_evaling_lit] = STATE(386), + [sym_tagged_or_ctor_lit] = STATE(386), + [sym_derefing_lit] = STATE(386), + [sym_quoting_lit] = STATE(386), + [sym_syn_quoting_lit] = STATE(386), + [sym_unquote_splicing_lit] = STATE(386), + [sym_unquoting_lit] = STATE(386), + [aux_sym_dis_expr_repeat1] = STATE(301), + [aux_sym_sym_lit_repeat1] = STATE(306), + [sym__ws] = ACTIONS(320), + [sym_comment] = ACTIONS(320), + [anon_sym_POUND_] = ACTIONS(7), + [sym_num_lit] = ACTIONS(638), + [anon_sym_SLASH] = ACTIONS(268), + [anon_sym_COLON] = ACTIONS(466), + [anon_sym_COLON_COLON] = ACTIONS(468), + [aux_sym_str_lit_token1] = ACTIONS(274), + [sym_char_lit] = ACTIONS(638), + [sym_nil_lit] = ACTIONS(640), + [sym_bool_lit] = ACTIONS(640), + [aux_sym__sym_qualified_token1] = ACTIONS(278), [anon_sym_CARET] = ACTIONS(21), [anon_sym_POUND_CARET] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_LBRACK] = 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_TILDE_AT] = ACTIONS(49), - [anon_sym_TILDE] = ACTIONS(51), + [anon_sym_LPAREN] = ACTIONS(280), + [anon_sym_LBRACE] = ACTIONS(282), + [anon_sym_LBRACK] = ACTIONS(284), + [anon_sym_POUND] = ACTIONS(472), + [anon_sym_POUND_QMARK] = ACTIONS(288), + [anon_sym_POUND_QMARK_AT] = ACTIONS(290), + [anon_sym_POUND_SQUOTE] = ACTIONS(474), + [anon_sym_POUND_POUND] = ACTIONS(476), + [anon_sym_POUND_EQ] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(478), + [anon_sym_SQUOTE] = ACTIONS(480), + [anon_sym_BQUOTE] = ACTIONS(482), + [anon_sym_TILDE_AT] = ACTIONS(484), + [anon_sym_TILDE] = ACTIONS(486), }, - [93] = { - [sym__gap] = STATE(77), - [sym_dis_expr] = STATE(77), - [sym__form] = STATE(378), - [sym_kwd_lit] = STATE(378), - [sym_str_lit] = STATE(378), - [sym_sym_lit] = STATE(378), + [STATE(81)] = { + [sym__gap] = STATE(301), + [sym_dis_expr] = STATE(301), + [sym__form] = STATE(387), + [sym_kwd_lit] = STATE(387), + [sym_str_lit] = STATE(387), + [sym_sym_lit] = STATE(387), [sym__metadata_lit] = STATE(424), - [sym_meta_lit] = STATE(314), - [sym_old_meta_lit] = STATE(313), - [sym_list_lit] = STATE(378), - [sym__bare_list_lit] = STATE(392), - [sym_map_lit] = STATE(378), + [sym_meta_lit] = STATE(312), + [sym_old_meta_lit] = STATE(315), + [sym_list_lit] = STATE(387), + [sym__bare_list_lit] = STATE(402), + [sym_map_lit] = STATE(387), [sym__bare_map_lit] = STATE(403), - [sym_vec_lit] = STATE(378), - [sym__bare_vec_lit] = STATE(423), - [sym_set_lit] = STATE(378), - [sym__bare_set_lit] = STATE(374), - [sym_anon_fn_lit] = STATE(378), - [sym_regex_lit] = STATE(378), - [sym_read_cond_lit] = STATE(378), - [sym_splicing_read_cond_lit] = STATE(378), - [sym_ns_map_lit] = STATE(378), - [sym_var_quoting_lit] = STATE(378), - [sym_sym_val_lit] = STATE(378), - [sym_evaling_lit] = STATE(378), - [sym_tagged_or_ctor_lit] = STATE(378), - [sym_derefing_lit] = STATE(378), - [sym_quoting_lit] = STATE(378), - [sym_syn_quoting_lit] = STATE(378), - [sym_unquote_splicing_lit] = STATE(378), - [sym_unquoting_lit] = STATE(378), - [aux_sym_dis_expr_repeat1] = STATE(77), - [aux_sym_sym_lit_repeat1] = STATE(304), - [sym__ws] = ACTIONS(656), - [sym_comment] = ACTIONS(656), + [sym_vec_lit] = STATE(387), + [sym__bare_vec_lit] = STATE(404), + [sym_set_lit] = STATE(387), + [sym__bare_set_lit] = STATE(405), + [sym_anon_fn_lit] = STATE(387), + [sym_regex_lit] = STATE(387), + [sym_read_cond_lit] = STATE(387), + [sym_splicing_read_cond_lit] = STATE(387), + [sym_ns_map_lit] = STATE(387), + [sym_var_quoting_lit] = STATE(387), + [sym_sym_val_lit] = STATE(387), + [sym_evaling_lit] = STATE(387), + [sym_tagged_or_ctor_lit] = STATE(387), + [sym_derefing_lit] = STATE(387), + [sym_quoting_lit] = STATE(387), + [sym_syn_quoting_lit] = STATE(387), + [sym_unquote_splicing_lit] = STATE(387), + [sym_unquoting_lit] = STATE(387), + [aux_sym_dis_expr_repeat1] = STATE(301), + [aux_sym_sym_lit_repeat1] = STATE(306), + [sym__ws] = ACTIONS(320), + [sym_comment] = ACTIONS(320), [anon_sym_POUND_] = ACTIONS(7), - [sym_num_lit] = ACTIONS(400), + [sym_num_lit] = ACTIONS(642), [anon_sym_SLASH] = ACTIONS(268), - [anon_sym_COLON] = ACTIONS(270), - [anon_sym_COLON_COLON] = ACTIONS(272), + [anon_sym_COLON] = ACTIONS(466), + [anon_sym_COLON_COLON] = ACTIONS(468), [aux_sym_str_lit_token1] = ACTIONS(274), - [sym_char_lit] = ACTIONS(400), - [sym_nil_lit] = ACTIONS(402), - [sym_bool_lit] = ACTIONS(402), + [sym_char_lit] = ACTIONS(642), + [sym_nil_lit] = ACTIONS(644), + [sym_bool_lit] = ACTIONS(644), [aux_sym__sym_qualified_token1] = ACTIONS(278), [anon_sym_CARET] = ACTIONS(21), [anon_sym_POUND_CARET] = ACTIONS(23), [anon_sym_LPAREN] = ACTIONS(280), [anon_sym_LBRACE] = ACTIONS(282), [anon_sym_LBRACK] = ACTIONS(284), - [anon_sym_POUND] = ACTIONS(286), + [anon_sym_POUND] = ACTIONS(472), [anon_sym_POUND_QMARK] = ACTIONS(288), [anon_sym_POUND_QMARK_AT] = ACTIONS(290), - [anon_sym_POUND_SQUOTE] = ACTIONS(292), - [anon_sym_POUND_POUND] = ACTIONS(294), + [anon_sym_POUND_SQUOTE] = ACTIONS(474), + [anon_sym_POUND_POUND] = ACTIONS(476), [anon_sym_POUND_EQ] = ACTIONS(296), - [anon_sym_AT] = ACTIONS(298), - [anon_sym_SQUOTE] = ACTIONS(300), - [anon_sym_BQUOTE] = ACTIONS(302), - [anon_sym_TILDE_AT] = ACTIONS(304), - [anon_sym_TILDE] = ACTIONS(306), + [anon_sym_AT] = ACTIONS(478), + [anon_sym_SQUOTE] = ACTIONS(480), + [anon_sym_BQUOTE] = ACTIONS(482), + [anon_sym_TILDE_AT] = ACTIONS(484), + [anon_sym_TILDE] = ACTIONS(486), }, - [94] = { - [sym__gap] = STATE(79), - [sym_dis_expr] = STATE(79), - [sym__form] = STATE(384), - [sym_kwd_lit] = STATE(384), - [sym_str_lit] = STATE(384), - [sym_sym_lit] = STATE(384), + [STATE(82)] = { + [sym__gap] = STATE(301), + [sym_dis_expr] = STATE(301), + [sym__form] = STATE(388), + [sym_kwd_lit] = STATE(388), + [sym_str_lit] = STATE(388), + [sym_sym_lit] = STATE(388), [sym__metadata_lit] = STATE(424), - [sym_meta_lit] = STATE(314), - [sym_old_meta_lit] = STATE(313), - [sym_list_lit] = STATE(384), - [sym__bare_list_lit] = STATE(392), - [sym_map_lit] = STATE(384), + [sym_meta_lit] = STATE(312), + [sym_old_meta_lit] = STATE(315), + [sym_list_lit] = STATE(388), + [sym__bare_list_lit] = STATE(402), + [sym_map_lit] = STATE(388), [sym__bare_map_lit] = STATE(403), - [sym_vec_lit] = STATE(384), - [sym__bare_vec_lit] = STATE(423), - [sym_set_lit] = STATE(384), - [sym__bare_set_lit] = STATE(374), - [sym_anon_fn_lit] = STATE(384), - [sym_regex_lit] = STATE(384), - [sym_read_cond_lit] = STATE(384), - [sym_splicing_read_cond_lit] = STATE(384), - [sym_ns_map_lit] = STATE(384), - [sym_var_quoting_lit] = STATE(384), - [sym_sym_val_lit] = STATE(384), - [sym_evaling_lit] = STATE(384), - [sym_tagged_or_ctor_lit] = STATE(384), - [sym_derefing_lit] = STATE(384), - [sym_quoting_lit] = STATE(384), - [sym_syn_quoting_lit] = STATE(384), - [sym_unquote_splicing_lit] = STATE(384), - [sym_unquoting_lit] = STATE(384), - [aux_sym_dis_expr_repeat1] = STATE(79), - [aux_sym_sym_lit_repeat1] = STATE(304), - [sym__ws] = ACTIONS(658), - [sym_comment] = ACTIONS(658), + [sym_vec_lit] = STATE(388), + [sym__bare_vec_lit] = STATE(404), + [sym_set_lit] = STATE(388), + [sym__bare_set_lit] = STATE(405), + [sym_anon_fn_lit] = STATE(388), + [sym_regex_lit] = STATE(388), + [sym_read_cond_lit] = STATE(388), + [sym_splicing_read_cond_lit] = STATE(388), + [sym_ns_map_lit] = STATE(388), + [sym_var_quoting_lit] = STATE(388), + [sym_sym_val_lit] = STATE(388), + [sym_evaling_lit] = STATE(388), + [sym_tagged_or_ctor_lit] = STATE(388), + [sym_derefing_lit] = STATE(388), + [sym_quoting_lit] = STATE(388), + [sym_syn_quoting_lit] = STATE(388), + [sym_unquote_splicing_lit] = STATE(388), + [sym_unquoting_lit] = STATE(388), + [aux_sym_dis_expr_repeat1] = STATE(301), + [aux_sym_sym_lit_repeat1] = STATE(306), + [sym__ws] = ACTIONS(320), + [sym_comment] = ACTIONS(320), [anon_sym_POUND_] = ACTIONS(7), - [sym_num_lit] = ACTIONS(406), + [sym_num_lit] = ACTIONS(646), [anon_sym_SLASH] = ACTIONS(268), - [anon_sym_COLON] = ACTIONS(270), - [anon_sym_COLON_COLON] = ACTIONS(272), + [anon_sym_COLON] = ACTIONS(466), + [anon_sym_COLON_COLON] = ACTIONS(468), [aux_sym_str_lit_token1] = ACTIONS(274), - [sym_char_lit] = ACTIONS(406), - [sym_nil_lit] = ACTIONS(408), - [sym_bool_lit] = ACTIONS(408), + [sym_char_lit] = ACTIONS(646), + [sym_nil_lit] = ACTIONS(648), + [sym_bool_lit] = ACTIONS(648), [aux_sym__sym_qualified_token1] = ACTIONS(278), [anon_sym_CARET] = ACTIONS(21), [anon_sym_POUND_CARET] = ACTIONS(23), [anon_sym_LPAREN] = ACTIONS(280), [anon_sym_LBRACE] = ACTIONS(282), [anon_sym_LBRACK] = ACTIONS(284), - [anon_sym_POUND] = ACTIONS(286), + [anon_sym_POUND] = ACTIONS(472), [anon_sym_POUND_QMARK] = ACTIONS(288), [anon_sym_POUND_QMARK_AT] = ACTIONS(290), - [anon_sym_POUND_SQUOTE] = ACTIONS(292), - [anon_sym_POUND_POUND] = ACTIONS(294), + [anon_sym_POUND_SQUOTE] = ACTIONS(474), + [anon_sym_POUND_POUND] = ACTIONS(476), [anon_sym_POUND_EQ] = ACTIONS(296), - [anon_sym_AT] = ACTIONS(298), - [anon_sym_SQUOTE] = ACTIONS(300), - [anon_sym_BQUOTE] = ACTIONS(302), - [anon_sym_TILDE_AT] = ACTIONS(304), - [anon_sym_TILDE] = ACTIONS(306), + [anon_sym_AT] = ACTIONS(478), + [anon_sym_SQUOTE] = ACTIONS(480), + [anon_sym_BQUOTE] = ACTIONS(482), + [anon_sym_TILDE_AT] = ACTIONS(484), + [anon_sym_TILDE] = ACTIONS(486), }, - [95] = { - [sym__gap] = STATE(80), - [sym_dis_expr] = STATE(80), - [sym__form] = STATE(410), - [sym_kwd_lit] = STATE(410), - [sym_str_lit] = STATE(410), - [sym_sym_lit] = STATE(410), + [STATE(83)] = { + [sym__gap] = STATE(301), + [sym_dis_expr] = STATE(301), + [sym__form] = STATE(389), + [sym_kwd_lit] = STATE(389), + [sym_str_lit] = STATE(389), + [sym_sym_lit] = STATE(389), [sym__metadata_lit] = STATE(424), - [sym_meta_lit] = STATE(314), - [sym_old_meta_lit] = STATE(313), - [sym_list_lit] = STATE(410), - [sym__bare_list_lit] = STATE(392), - [sym_map_lit] = STATE(410), + [sym_meta_lit] = STATE(312), + [sym_old_meta_lit] = STATE(315), + [sym_list_lit] = STATE(389), + [sym__bare_list_lit] = STATE(402), + [sym_map_lit] = STATE(389), [sym__bare_map_lit] = STATE(403), - [sym_vec_lit] = STATE(410), - [sym__bare_vec_lit] = STATE(423), - [sym_set_lit] = STATE(410), - [sym__bare_set_lit] = STATE(374), - [sym_anon_fn_lit] = STATE(410), - [sym_regex_lit] = STATE(410), - [sym_read_cond_lit] = STATE(410), - [sym_splicing_read_cond_lit] = STATE(410), - [sym_ns_map_lit] = STATE(410), - [sym_var_quoting_lit] = STATE(410), - [sym_sym_val_lit] = STATE(410), - [sym_evaling_lit] = STATE(410), - [sym_tagged_or_ctor_lit] = STATE(410), - [sym_derefing_lit] = STATE(410), - [sym_quoting_lit] = STATE(410), - [sym_syn_quoting_lit] = STATE(410), - [sym_unquote_splicing_lit] = STATE(410), - [sym_unquoting_lit] = STATE(410), - [aux_sym_dis_expr_repeat1] = STATE(80), - [aux_sym_sym_lit_repeat1] = STATE(304), - [sym__ws] = ACTIONS(660), - [sym_comment] = ACTIONS(660), + [sym_vec_lit] = STATE(389), + [sym__bare_vec_lit] = STATE(404), + [sym_set_lit] = STATE(389), + [sym__bare_set_lit] = STATE(405), + [sym_anon_fn_lit] = STATE(389), + [sym_regex_lit] = STATE(389), + [sym_read_cond_lit] = STATE(389), + [sym_splicing_read_cond_lit] = STATE(389), + [sym_ns_map_lit] = STATE(389), + [sym_var_quoting_lit] = STATE(389), + [sym_sym_val_lit] = STATE(389), + [sym_evaling_lit] = STATE(389), + [sym_tagged_or_ctor_lit] = STATE(389), + [sym_derefing_lit] = STATE(389), + [sym_quoting_lit] = STATE(389), + [sym_syn_quoting_lit] = STATE(389), + [sym_unquote_splicing_lit] = STATE(389), + [sym_unquoting_lit] = STATE(389), + [aux_sym_dis_expr_repeat1] = STATE(301), + [aux_sym_sym_lit_repeat1] = STATE(306), + [sym__ws] = ACTIONS(320), + [sym_comment] = ACTIONS(320), [anon_sym_POUND_] = ACTIONS(7), - [sym_num_lit] = ACTIONS(412), + [sym_num_lit] = ACTIONS(650), [anon_sym_SLASH] = ACTIONS(268), - [anon_sym_COLON] = ACTIONS(270), - [anon_sym_COLON_COLON] = ACTIONS(272), + [anon_sym_COLON] = ACTIONS(466), + [anon_sym_COLON_COLON] = ACTIONS(468), [aux_sym_str_lit_token1] = ACTIONS(274), - [sym_char_lit] = ACTIONS(412), - [sym_nil_lit] = ACTIONS(414), - [sym_bool_lit] = ACTIONS(414), + [sym_char_lit] = ACTIONS(650), + [sym_nil_lit] = ACTIONS(652), + [sym_bool_lit] = ACTIONS(652), [aux_sym__sym_qualified_token1] = ACTIONS(278), [anon_sym_CARET] = ACTIONS(21), [anon_sym_POUND_CARET] = ACTIONS(23), [anon_sym_LPAREN] = ACTIONS(280), [anon_sym_LBRACE] = ACTIONS(282), [anon_sym_LBRACK] = ACTIONS(284), - [anon_sym_POUND] = ACTIONS(286), + [anon_sym_POUND] = ACTIONS(472), [anon_sym_POUND_QMARK] = ACTIONS(288), [anon_sym_POUND_QMARK_AT] = ACTIONS(290), - [anon_sym_POUND_SQUOTE] = ACTIONS(292), - [anon_sym_POUND_POUND] = ACTIONS(294), + [anon_sym_POUND_SQUOTE] = ACTIONS(474), + [anon_sym_POUND_POUND] = ACTIONS(476), [anon_sym_POUND_EQ] = ACTIONS(296), - [anon_sym_AT] = ACTIONS(298), - [anon_sym_SQUOTE] = ACTIONS(300), - [anon_sym_BQUOTE] = ACTIONS(302), - [anon_sym_TILDE_AT] = ACTIONS(304), - [anon_sym_TILDE] = ACTIONS(306), + [anon_sym_AT] = ACTIONS(478), + [anon_sym_SQUOTE] = ACTIONS(480), + [anon_sym_BQUOTE] = ACTIONS(482), + [anon_sym_TILDE_AT] = ACTIONS(484), + [anon_sym_TILDE] = ACTIONS(486), }, - [96] = { - [sym__gap] = STATE(81), - [sym_dis_expr] = STATE(81), - [sym__form] = STATE(391), - [sym_kwd_lit] = STATE(391), - [sym_str_lit] = STATE(391), - [sym_sym_lit] = STATE(391), + [STATE(84)] = { + [sym__gap] = STATE(301), + [sym_dis_expr] = STATE(301), + [sym__form] = STATE(390), + [sym_kwd_lit] = STATE(390), + [sym_str_lit] = STATE(390), + [sym_sym_lit] = STATE(390), [sym__metadata_lit] = STATE(424), - [sym_meta_lit] = STATE(314), - [sym_old_meta_lit] = STATE(313), - [sym_list_lit] = STATE(391), - [sym__bare_list_lit] = STATE(392), - [sym_map_lit] = STATE(391), + [sym_meta_lit] = STATE(312), + [sym_old_meta_lit] = STATE(315), + [sym_list_lit] = STATE(390), + [sym__bare_list_lit] = STATE(402), + [sym_map_lit] = STATE(390), [sym__bare_map_lit] = STATE(403), - [sym_vec_lit] = STATE(391), - [sym__bare_vec_lit] = STATE(423), - [sym_set_lit] = STATE(391), - [sym__bare_set_lit] = STATE(374), - [sym_anon_fn_lit] = STATE(391), - [sym_regex_lit] = STATE(391), - [sym_read_cond_lit] = STATE(391), - [sym_splicing_read_cond_lit] = STATE(391), - [sym_ns_map_lit] = STATE(391), - [sym_var_quoting_lit] = STATE(391), - [sym_sym_val_lit] = STATE(391), - [sym_evaling_lit] = STATE(391), - [sym_tagged_or_ctor_lit] = STATE(391), - [sym_derefing_lit] = STATE(391), - [sym_quoting_lit] = STATE(391), - [sym_syn_quoting_lit] = STATE(391), - [sym_unquote_splicing_lit] = STATE(391), - [sym_unquoting_lit] = STATE(391), - [aux_sym_dis_expr_repeat1] = STATE(81), - [aux_sym_sym_lit_repeat1] = STATE(304), - [sym__ws] = ACTIONS(662), - [sym_comment] = ACTIONS(662), + [sym_vec_lit] = STATE(390), + [sym__bare_vec_lit] = STATE(404), + [sym_set_lit] = STATE(390), + [sym__bare_set_lit] = STATE(405), + [sym_anon_fn_lit] = STATE(390), + [sym_regex_lit] = STATE(390), + [sym_read_cond_lit] = STATE(390), + [sym_splicing_read_cond_lit] = STATE(390), + [sym_ns_map_lit] = STATE(390), + [sym_var_quoting_lit] = STATE(390), + [sym_sym_val_lit] = STATE(390), + [sym_evaling_lit] = STATE(390), + [sym_tagged_or_ctor_lit] = STATE(390), + [sym_derefing_lit] = STATE(390), + [sym_quoting_lit] = STATE(390), + [sym_syn_quoting_lit] = STATE(390), + [sym_unquote_splicing_lit] = STATE(390), + [sym_unquoting_lit] = STATE(390), + [aux_sym_dis_expr_repeat1] = STATE(301), + [aux_sym_sym_lit_repeat1] = STATE(306), + [sym__ws] = ACTIONS(320), + [sym_comment] = ACTIONS(320), [anon_sym_POUND_] = ACTIONS(7), - [sym_num_lit] = ACTIONS(418), + [sym_num_lit] = ACTIONS(654), [anon_sym_SLASH] = ACTIONS(268), - [anon_sym_COLON] = ACTIONS(270), - [anon_sym_COLON_COLON] = ACTIONS(272), + [anon_sym_COLON] = ACTIONS(466), + [anon_sym_COLON_COLON] = ACTIONS(468), [aux_sym_str_lit_token1] = ACTIONS(274), - [sym_char_lit] = ACTIONS(418), - [sym_nil_lit] = ACTIONS(420), - [sym_bool_lit] = ACTIONS(420), + [sym_char_lit] = ACTIONS(654), + [sym_nil_lit] = ACTIONS(656), + [sym_bool_lit] = ACTIONS(656), [aux_sym__sym_qualified_token1] = ACTIONS(278), [anon_sym_CARET] = ACTIONS(21), [anon_sym_POUND_CARET] = ACTIONS(23), [anon_sym_LPAREN] = ACTIONS(280), [anon_sym_LBRACE] = ACTIONS(282), [anon_sym_LBRACK] = ACTIONS(284), - [anon_sym_POUND] = ACTIONS(286), + [anon_sym_POUND] = ACTIONS(472), [anon_sym_POUND_QMARK] = ACTIONS(288), [anon_sym_POUND_QMARK_AT] = ACTIONS(290), - [anon_sym_POUND_SQUOTE] = ACTIONS(292), - [anon_sym_POUND_POUND] = ACTIONS(294), + [anon_sym_POUND_SQUOTE] = ACTIONS(474), + [anon_sym_POUND_POUND] = ACTIONS(476), [anon_sym_POUND_EQ] = ACTIONS(296), - [anon_sym_AT] = ACTIONS(298), - [anon_sym_SQUOTE] = ACTIONS(300), - [anon_sym_BQUOTE] = ACTIONS(302), - [anon_sym_TILDE_AT] = ACTIONS(304), - [anon_sym_TILDE] = ACTIONS(306), + [anon_sym_AT] = ACTIONS(478), + [anon_sym_SQUOTE] = ACTIONS(480), + [anon_sym_BQUOTE] = ACTIONS(482), + [anon_sym_TILDE_AT] = ACTIONS(484), + [anon_sym_TILDE] = ACTIONS(486), }, - [97] = { - [sym__gap] = STATE(82), - [sym_dis_expr] = STATE(82), - [sym__form] = STATE(393), - [sym_kwd_lit] = STATE(393), - [sym_str_lit] = STATE(393), - [sym_sym_lit] = STATE(393), + [STATE(85)] = { + [sym__gap] = STATE(301), + [sym_dis_expr] = STATE(301), + [sym__form] = STATE(392), + [sym_kwd_lit] = STATE(392), + [sym_str_lit] = STATE(392), + [sym_sym_lit] = STATE(392), [sym__metadata_lit] = STATE(424), - [sym_meta_lit] = STATE(314), - [sym_old_meta_lit] = STATE(313), - [sym_list_lit] = STATE(393), - [sym__bare_list_lit] = STATE(392), - [sym_map_lit] = STATE(393), + [sym_meta_lit] = STATE(312), + [sym_old_meta_lit] = STATE(315), + [sym_list_lit] = STATE(392), + [sym__bare_list_lit] = STATE(402), + [sym_map_lit] = STATE(392), [sym__bare_map_lit] = STATE(403), - [sym_vec_lit] = STATE(393), - [sym__bare_vec_lit] = STATE(423), - [sym_set_lit] = STATE(393), - [sym__bare_set_lit] = STATE(374), - [sym_anon_fn_lit] = STATE(393), - [sym_regex_lit] = STATE(393), - [sym_read_cond_lit] = STATE(393), - [sym_splicing_read_cond_lit] = STATE(393), - [sym_ns_map_lit] = STATE(393), - [sym_var_quoting_lit] = STATE(393), - [sym_sym_val_lit] = STATE(393), - [sym_evaling_lit] = STATE(393), - [sym_tagged_or_ctor_lit] = STATE(393), - [sym_derefing_lit] = STATE(393), - [sym_quoting_lit] = STATE(393), - [sym_syn_quoting_lit] = STATE(393), - [sym_unquote_splicing_lit] = STATE(393), - [sym_unquoting_lit] = STATE(393), - [aux_sym_dis_expr_repeat1] = STATE(82), - [aux_sym_sym_lit_repeat1] = STATE(304), - [sym__ws] = ACTIONS(664), - [sym_comment] = ACTIONS(664), + [sym_vec_lit] = STATE(392), + [sym__bare_vec_lit] = STATE(404), + [sym_set_lit] = STATE(392), + [sym__bare_set_lit] = STATE(405), + [sym_anon_fn_lit] = STATE(392), + [sym_regex_lit] = STATE(392), + [sym_read_cond_lit] = STATE(392), + [sym_splicing_read_cond_lit] = STATE(392), + [sym_ns_map_lit] = STATE(392), + [sym_var_quoting_lit] = STATE(392), + [sym_sym_val_lit] = STATE(392), + [sym_evaling_lit] = STATE(392), + [sym_tagged_or_ctor_lit] = STATE(392), + [sym_derefing_lit] = STATE(392), + [sym_quoting_lit] = STATE(392), + [sym_syn_quoting_lit] = STATE(392), + [sym_unquote_splicing_lit] = STATE(392), + [sym_unquoting_lit] = STATE(392), + [aux_sym_dis_expr_repeat1] = STATE(301), + [aux_sym_sym_lit_repeat1] = STATE(306), + [sym__ws] = ACTIONS(320), + [sym_comment] = ACTIONS(320), [anon_sym_POUND_] = ACTIONS(7), - [sym_num_lit] = ACTIONS(448), + [sym_num_lit] = ACTIONS(658), [anon_sym_SLASH] = ACTIONS(268), - [anon_sym_COLON] = ACTIONS(270), - [anon_sym_COLON_COLON] = ACTIONS(272), + [anon_sym_COLON] = ACTIONS(466), + [anon_sym_COLON_COLON] = ACTIONS(468), [aux_sym_str_lit_token1] = ACTIONS(274), - [sym_char_lit] = ACTIONS(448), - [sym_nil_lit] = ACTIONS(450), - [sym_bool_lit] = ACTIONS(450), + [sym_char_lit] = ACTIONS(658), + [sym_nil_lit] = ACTIONS(660), + [sym_bool_lit] = ACTIONS(660), [aux_sym__sym_qualified_token1] = ACTIONS(278), [anon_sym_CARET] = ACTIONS(21), [anon_sym_POUND_CARET] = ACTIONS(23), [anon_sym_LPAREN] = ACTIONS(280), [anon_sym_LBRACE] = ACTIONS(282), [anon_sym_LBRACK] = ACTIONS(284), - [anon_sym_POUND] = ACTIONS(286), + [anon_sym_POUND] = ACTIONS(472), [anon_sym_POUND_QMARK] = ACTIONS(288), [anon_sym_POUND_QMARK_AT] = ACTIONS(290), - [anon_sym_POUND_SQUOTE] = ACTIONS(292), - [anon_sym_POUND_POUND] = ACTIONS(294), + [anon_sym_POUND_SQUOTE] = ACTIONS(474), + [anon_sym_POUND_POUND] = ACTIONS(476), [anon_sym_POUND_EQ] = ACTIONS(296), - [anon_sym_AT] = ACTIONS(298), - [anon_sym_SQUOTE] = ACTIONS(300), - [anon_sym_BQUOTE] = ACTIONS(302), - [anon_sym_TILDE_AT] = ACTIONS(304), - [anon_sym_TILDE] = ACTIONS(306), + [anon_sym_AT] = ACTIONS(478), + [anon_sym_SQUOTE] = ACTIONS(480), + [anon_sym_BQUOTE] = ACTIONS(482), + [anon_sym_TILDE_AT] = ACTIONS(484), + [anon_sym_TILDE] = ACTIONS(486), }, - [98] = { - [sym__gap] = STATE(83), - [sym_dis_expr] = STATE(83), - [sym__form] = STATE(405), - [sym_kwd_lit] = STATE(405), - [sym_str_lit] = STATE(405), - [sym_sym_lit] = STATE(405), + [STATE(86)] = { + [sym__gap] = STATE(87), + [sym_dis_expr] = STATE(87), + [sym__form] = STATE(394), + [sym_kwd_lit] = STATE(394), + [sym_str_lit] = STATE(394), + [sym_sym_lit] = STATE(394), [sym__metadata_lit] = STATE(424), - [sym_meta_lit] = STATE(314), - [sym_old_meta_lit] = STATE(313), - [sym_list_lit] = STATE(405), - [sym__bare_list_lit] = STATE(392), - [sym_map_lit] = STATE(405), + [sym_meta_lit] = STATE(312), + [sym_old_meta_lit] = STATE(315), + [sym_list_lit] = STATE(394), + [sym__bare_list_lit] = STATE(402), + [sym_map_lit] = STATE(394), [sym__bare_map_lit] = STATE(403), - [sym_vec_lit] = STATE(405), - [sym__bare_vec_lit] = STATE(423), - [sym_set_lit] = STATE(405), - [sym__bare_set_lit] = STATE(374), - [sym_anon_fn_lit] = STATE(405), - [sym_regex_lit] = STATE(405), - [sym_read_cond_lit] = STATE(405), - [sym_splicing_read_cond_lit] = STATE(405), - [sym_ns_map_lit] = STATE(405), - [sym_var_quoting_lit] = STATE(405), - [sym_sym_val_lit] = STATE(405), - [sym_evaling_lit] = STATE(405), - [sym_tagged_or_ctor_lit] = STATE(405), - [sym_derefing_lit] = STATE(405), - [sym_quoting_lit] = STATE(405), - [sym_syn_quoting_lit] = STATE(405), - [sym_unquote_splicing_lit] = STATE(405), - [sym_unquoting_lit] = STATE(405), - [aux_sym_dis_expr_repeat1] = STATE(83), - [aux_sym_sym_lit_repeat1] = STATE(304), - [sym__ws] = ACTIONS(666), - [sym_comment] = ACTIONS(666), + [sym_vec_lit] = STATE(394), + [sym__bare_vec_lit] = STATE(404), + [sym_set_lit] = STATE(394), + [sym__bare_set_lit] = STATE(405), + [sym_anon_fn_lit] = STATE(394), + [sym_regex_lit] = STATE(394), + [sym_read_cond_lit] = STATE(394), + [sym_splicing_read_cond_lit] = STATE(394), + [sym_ns_map_lit] = STATE(394), + [sym_var_quoting_lit] = STATE(394), + [sym_sym_val_lit] = STATE(394), + [sym_evaling_lit] = STATE(394), + [sym_tagged_or_ctor_lit] = STATE(394), + [sym_derefing_lit] = STATE(394), + [sym_quoting_lit] = STATE(394), + [sym_syn_quoting_lit] = STATE(394), + [sym_unquote_splicing_lit] = STATE(394), + [sym_unquoting_lit] = STATE(394), + [aux_sym_dis_expr_repeat1] = STATE(87), + [aux_sym_sym_lit_repeat1] = STATE(306), + [sym__ws] = ACTIONS(662), + [sym_comment] = ACTIONS(662), [anon_sym_POUND_] = ACTIONS(7), - [sym_num_lit] = ACTIONS(454), + [sym_num_lit] = ACTIONS(664), [anon_sym_SLASH] = ACTIONS(268), - [anon_sym_COLON] = ACTIONS(270), - [anon_sym_COLON_COLON] = ACTIONS(272), + [anon_sym_COLON] = ACTIONS(466), + [anon_sym_COLON_COLON] = ACTIONS(468), [aux_sym_str_lit_token1] = ACTIONS(274), - [sym_char_lit] = ACTIONS(454), - [sym_nil_lit] = ACTIONS(456), - [sym_bool_lit] = ACTIONS(456), + [sym_char_lit] = ACTIONS(664), + [sym_nil_lit] = ACTIONS(666), + [sym_bool_lit] = ACTIONS(666), [aux_sym__sym_qualified_token1] = ACTIONS(278), [anon_sym_CARET] = ACTIONS(21), [anon_sym_POUND_CARET] = ACTIONS(23), [anon_sym_LPAREN] = ACTIONS(280), [anon_sym_LBRACE] = ACTIONS(282), [anon_sym_LBRACK] = ACTIONS(284), - [anon_sym_POUND] = ACTIONS(286), + [anon_sym_POUND] = ACTIONS(472), [anon_sym_POUND_QMARK] = ACTIONS(288), [anon_sym_POUND_QMARK_AT] = ACTIONS(290), - [anon_sym_POUND_SQUOTE] = ACTIONS(292), - [anon_sym_POUND_POUND] = ACTIONS(294), + [anon_sym_POUND_SQUOTE] = ACTIONS(474), + [anon_sym_POUND_POUND] = ACTIONS(476), [anon_sym_POUND_EQ] = ACTIONS(296), - [anon_sym_AT] = ACTIONS(298), - [anon_sym_SQUOTE] = ACTIONS(300), - [anon_sym_BQUOTE] = ACTIONS(302), - [anon_sym_TILDE_AT] = ACTIONS(304), - [anon_sym_TILDE] = ACTIONS(306), + [anon_sym_AT] = ACTIONS(478), + [anon_sym_SQUOTE] = ACTIONS(480), + [anon_sym_BQUOTE] = ACTIONS(482), + [anon_sym_TILDE_AT] = ACTIONS(484), + [anon_sym_TILDE] = ACTIONS(486), }, - [99] = { + [STATE(87)] = { [sym__gap] = STATE(301), [sym_dis_expr] = STATE(301), - [sym__form] = STATE(369), - [sym_kwd_lit] = STATE(369), - [sym_str_lit] = STATE(369), - [sym_sym_lit] = STATE(369), + [sym__form] = STATE(396), + [sym_kwd_lit] = STATE(396), + [sym_str_lit] = STATE(396), + [sym_sym_lit] = STATE(396), [sym__metadata_lit] = STATE(424), - [sym_meta_lit] = STATE(314), - [sym_old_meta_lit] = STATE(313), - [sym_list_lit] = STATE(369), - [sym__bare_list_lit] = STATE(392), - [sym_map_lit] = STATE(369), + [sym_meta_lit] = STATE(312), + [sym_old_meta_lit] = STATE(315), + [sym_list_lit] = STATE(396), + [sym__bare_list_lit] = STATE(402), + [sym_map_lit] = STATE(396), [sym__bare_map_lit] = STATE(403), - [sym_vec_lit] = STATE(369), - [sym__bare_vec_lit] = STATE(423), - [sym_set_lit] = STATE(369), - [sym__bare_set_lit] = STATE(374), - [sym_anon_fn_lit] = STATE(369), - [sym_regex_lit] = STATE(369), - [sym_read_cond_lit] = STATE(369), - [sym_splicing_read_cond_lit] = STATE(369), - [sym_ns_map_lit] = STATE(369), - [sym_var_quoting_lit] = STATE(369), - [sym_sym_val_lit] = STATE(369), - [sym_evaling_lit] = STATE(369), - [sym_tagged_or_ctor_lit] = STATE(369), - [sym_derefing_lit] = STATE(369), - [sym_quoting_lit] = STATE(369), - [sym_syn_quoting_lit] = STATE(369), - [sym_unquote_splicing_lit] = STATE(369), - [sym_unquoting_lit] = STATE(369), + [sym_vec_lit] = STATE(396), + [sym__bare_vec_lit] = STATE(404), + [sym_set_lit] = STATE(396), + [sym__bare_set_lit] = STATE(405), + [sym_anon_fn_lit] = STATE(396), + [sym_regex_lit] = STATE(396), + [sym_read_cond_lit] = STATE(396), + [sym_splicing_read_cond_lit] = STATE(396), + [sym_ns_map_lit] = STATE(396), + [sym_var_quoting_lit] = STATE(396), + [sym_sym_val_lit] = STATE(396), + [sym_evaling_lit] = STATE(396), + [sym_tagged_or_ctor_lit] = STATE(396), + [sym_derefing_lit] = STATE(396), + [sym_quoting_lit] = STATE(396), + [sym_syn_quoting_lit] = STATE(396), + [sym_unquote_splicing_lit] = STATE(396), + [sym_unquoting_lit] = STATE(396), [aux_sym_dis_expr_repeat1] = STATE(301), - [aux_sym_sym_lit_repeat1] = STATE(304), - [sym__ws] = ACTIONS(264), - [sym_comment] = ACTIONS(264), + [aux_sym_sym_lit_repeat1] = STATE(306), + [sym__ws] = ACTIONS(320), + [sym_comment] = ACTIONS(320), [anon_sym_POUND_] = ACTIONS(7), - [sym_num_lit] = ACTIONS(458), + [sym_num_lit] = ACTIONS(668), [anon_sym_SLASH] = ACTIONS(268), - [anon_sym_COLON] = ACTIONS(270), - [anon_sym_COLON_COLON] = ACTIONS(272), + [anon_sym_COLON] = ACTIONS(466), + [anon_sym_COLON_COLON] = ACTIONS(468), [aux_sym_str_lit_token1] = ACTIONS(274), - [sym_char_lit] = ACTIONS(458), - [sym_nil_lit] = ACTIONS(460), - [sym_bool_lit] = ACTIONS(460), + [sym_char_lit] = ACTIONS(668), + [sym_nil_lit] = ACTIONS(670), + [sym_bool_lit] = ACTIONS(670), [aux_sym__sym_qualified_token1] = ACTIONS(278), [anon_sym_CARET] = ACTIONS(21), [anon_sym_POUND_CARET] = ACTIONS(23), [anon_sym_LPAREN] = ACTIONS(280), [anon_sym_LBRACE] = ACTIONS(282), [anon_sym_LBRACK] = ACTIONS(284), - [anon_sym_POUND] = ACTIONS(286), + [anon_sym_POUND] = ACTIONS(472), [anon_sym_POUND_QMARK] = ACTIONS(288), [anon_sym_POUND_QMARK_AT] = ACTIONS(290), - [anon_sym_POUND_SQUOTE] = ACTIONS(292), - [anon_sym_POUND_POUND] = ACTIONS(294), + [anon_sym_POUND_SQUOTE] = ACTIONS(474), + [anon_sym_POUND_POUND] = ACTIONS(476), [anon_sym_POUND_EQ] = ACTIONS(296), - [anon_sym_AT] = ACTIONS(298), - [anon_sym_SQUOTE] = ACTIONS(300), - [anon_sym_BQUOTE] = ACTIONS(302), - [anon_sym_TILDE_AT] = ACTIONS(304), - [anon_sym_TILDE] = ACTIONS(306), - }, - [100] = { - [sym__gap] = STATE(301), - [sym_dis_expr] = STATE(301), - [sym__form] = STATE(412), - [sym_kwd_lit] = STATE(412), - [sym_str_lit] = STATE(412), - [sym_sym_lit] = STATE(412), + [anon_sym_AT] = ACTIONS(478), + [anon_sym_SQUOTE] = ACTIONS(480), + [anon_sym_BQUOTE] = ACTIONS(482), + [anon_sym_TILDE_AT] = ACTIONS(484), + [anon_sym_TILDE] = ACTIONS(486), + }, + [STATE(88)] = { + [sym__gap] = STATE(60), + [sym_dis_expr] = STATE(60), + [sym__form] = STATE(406), + [sym_kwd_lit] = STATE(406), + [sym_str_lit] = STATE(406), + [sym_sym_lit] = STATE(406), [sym__metadata_lit] = STATE(424), - [sym_meta_lit] = STATE(314), - [sym_old_meta_lit] = STATE(313), - [sym_list_lit] = STATE(412), - [sym__bare_list_lit] = STATE(392), - [sym_map_lit] = STATE(412), + [sym_meta_lit] = STATE(312), + [sym_old_meta_lit] = STATE(315), + [sym_list_lit] = STATE(406), + [sym__bare_list_lit] = STATE(402), + [sym_map_lit] = STATE(406), [sym__bare_map_lit] = STATE(403), - [sym_vec_lit] = STATE(412), - [sym__bare_vec_lit] = STATE(423), - [sym_set_lit] = STATE(412), - [sym__bare_set_lit] = STATE(374), - [sym_anon_fn_lit] = STATE(412), - [sym_regex_lit] = STATE(412), - [sym_read_cond_lit] = STATE(412), - [sym_splicing_read_cond_lit] = STATE(412), - [sym_ns_map_lit] = STATE(412), - [sym_var_quoting_lit] = STATE(412), - [sym_sym_val_lit] = STATE(412), - [sym_evaling_lit] = STATE(412), - [sym_tagged_or_ctor_lit] = STATE(412), - [sym_derefing_lit] = STATE(412), - [sym_quoting_lit] = STATE(412), - [sym_syn_quoting_lit] = STATE(412), - [sym_unquote_splicing_lit] = STATE(412), - [sym_unquoting_lit] = STATE(412), - [aux_sym_dis_expr_repeat1] = STATE(301), + [sym_vec_lit] = STATE(406), + [sym__bare_vec_lit] = STATE(404), + [sym_set_lit] = STATE(406), + [sym__bare_set_lit] = STATE(405), + [sym_anon_fn_lit] = STATE(406), + [sym_regex_lit] = STATE(406), + [sym_read_cond_lit] = STATE(406), + [sym_splicing_read_cond_lit] = STATE(406), + [sym_ns_map_lit] = STATE(406), + [sym_var_quoting_lit] = STATE(406), + [sym_sym_val_lit] = STATE(406), + [sym_evaling_lit] = STATE(406), + [sym_tagged_or_ctor_lit] = STATE(406), + [sym_derefing_lit] = STATE(406), + [sym_quoting_lit] = STATE(406), + [sym_syn_quoting_lit] = STATE(406), + [sym_unquote_splicing_lit] = STATE(406), + [sym_unquoting_lit] = STATE(406), + [aux_sym_dis_expr_repeat1] = STATE(60), [aux_sym_sym_lit_repeat1] = STATE(304), - [sym__ws] = ACTIONS(264), - [sym_comment] = ACTIONS(264), + [sym__ws] = ACTIONS(672), + [sym_comment] = ACTIONS(672), [anon_sym_POUND_] = ACTIONS(7), - [sym_num_lit] = ACTIONS(466), + [sym_num_lit] = ACTIONS(674), [anon_sym_SLASH] = ACTIONS(268), - [anon_sym_COLON] = ACTIONS(270), - [anon_sym_COLON_COLON] = ACTIONS(272), + [anon_sym_COLON] = ACTIONS(526), + [anon_sym_COLON_COLON] = ACTIONS(528), [aux_sym_str_lit_token1] = ACTIONS(274), - [sym_char_lit] = ACTIONS(466), - [sym_nil_lit] = ACTIONS(468), - [sym_bool_lit] = ACTIONS(468), + [sym_char_lit] = ACTIONS(674), + [sym_nil_lit] = ACTIONS(676), + [sym_bool_lit] = ACTIONS(676), [aux_sym__sym_qualified_token1] = ACTIONS(278), [anon_sym_CARET] = ACTIONS(21), [anon_sym_POUND_CARET] = ACTIONS(23), [anon_sym_LPAREN] = ACTIONS(280), [anon_sym_LBRACE] = ACTIONS(282), [anon_sym_LBRACK] = ACTIONS(284), - [anon_sym_POUND] = ACTIONS(286), + [anon_sym_POUND] = ACTIONS(532), [anon_sym_POUND_QMARK] = ACTIONS(288), [anon_sym_POUND_QMARK_AT] = ACTIONS(290), - [anon_sym_POUND_SQUOTE] = ACTIONS(292), - [anon_sym_POUND_POUND] = ACTIONS(294), + [anon_sym_POUND_SQUOTE] = ACTIONS(534), + [anon_sym_POUND_POUND] = ACTIONS(536), [anon_sym_POUND_EQ] = ACTIONS(296), - [anon_sym_AT] = ACTIONS(298), - [anon_sym_SQUOTE] = ACTIONS(300), - [anon_sym_BQUOTE] = ACTIONS(302), - [anon_sym_TILDE_AT] = ACTIONS(304), - [anon_sym_TILDE] = ACTIONS(306), + [anon_sym_AT] = ACTIONS(538), + [anon_sym_SQUOTE] = ACTIONS(540), + [anon_sym_BQUOTE] = ACTIONS(542), + [anon_sym_TILDE_AT] = ACTIONS(544), + [anon_sym_TILDE] = ACTIONS(546), }, - [101] = { - [sym__gap] = STATE(301), - [sym_dis_expr] = STATE(301), - [sym__form] = STATE(414), - [sym_kwd_lit] = STATE(414), - [sym_str_lit] = STATE(414), - [sym_sym_lit] = STATE(414), + [STATE(89)] = { + [sym__gap] = STATE(101), + [sym_dis_expr] = STATE(101), + [sym__form] = STATE(332), + [sym_kwd_lit] = STATE(332), + [sym_str_lit] = STATE(332), + [sym_sym_lit] = STATE(332), [sym__metadata_lit] = STATE(424), - [sym_meta_lit] = STATE(314), - [sym_old_meta_lit] = STATE(313), - [sym_list_lit] = STATE(414), - [sym__bare_list_lit] = STATE(392), - [sym_map_lit] = STATE(414), + [sym_meta_lit] = STATE(312), + [sym_old_meta_lit] = STATE(315), + [sym_list_lit] = STATE(332), + [sym__bare_list_lit] = STATE(402), + [sym_map_lit] = STATE(332), [sym__bare_map_lit] = STATE(403), - [sym_vec_lit] = STATE(414), - [sym__bare_vec_lit] = STATE(423), - [sym_set_lit] = STATE(414), - [sym__bare_set_lit] = STATE(374), - [sym_anon_fn_lit] = STATE(414), - [sym_regex_lit] = STATE(414), - [sym_read_cond_lit] = STATE(414), - [sym_splicing_read_cond_lit] = STATE(414), - [sym_ns_map_lit] = STATE(414), - [sym_var_quoting_lit] = STATE(414), - [sym_sym_val_lit] = STATE(414), - [sym_evaling_lit] = STATE(414), - [sym_tagged_or_ctor_lit] = STATE(414), - [sym_derefing_lit] = STATE(414), - [sym_quoting_lit] = STATE(414), - [sym_syn_quoting_lit] = STATE(414), - [sym_unquote_splicing_lit] = STATE(414), - [sym_unquoting_lit] = STATE(414), - [aux_sym_dis_expr_repeat1] = STATE(301), - [aux_sym_sym_lit_repeat1] = STATE(304), - [sym__ws] = ACTIONS(264), - [sym_comment] = ACTIONS(264), + [sym_vec_lit] = STATE(332), + [sym__bare_vec_lit] = STATE(404), + [sym_set_lit] = STATE(332), + [sym__bare_set_lit] = STATE(405), + [sym_anon_fn_lit] = STATE(332), + [sym_regex_lit] = STATE(332), + [sym_read_cond_lit] = STATE(332), + [sym_splicing_read_cond_lit] = STATE(332), + [sym_ns_map_lit] = STATE(332), + [sym_var_quoting_lit] = STATE(332), + [sym_sym_val_lit] = STATE(332), + [sym_evaling_lit] = STATE(332), + [sym_tagged_or_ctor_lit] = STATE(332), + [sym_derefing_lit] = STATE(332), + [sym_quoting_lit] = STATE(332), + [sym_syn_quoting_lit] = STATE(332), + [sym_unquote_splicing_lit] = STATE(332), + [sym_unquoting_lit] = STATE(332), + [aux_sym_dis_expr_repeat1] = STATE(101), + [aux_sym_sym_lit_repeat1] = STATE(306), + [sym__ws] = ACTIONS(678), + [sym_comment] = ACTIONS(678), [anon_sym_POUND_] = ACTIONS(7), - [sym_num_lit] = ACTIONS(470), + [sym_num_lit] = ACTIONS(680), [anon_sym_SLASH] = ACTIONS(268), - [anon_sym_COLON] = ACTIONS(270), - [anon_sym_COLON_COLON] = ACTIONS(272), + [anon_sym_COLON] = ACTIONS(466), + [anon_sym_COLON_COLON] = ACTIONS(468), [aux_sym_str_lit_token1] = ACTIONS(274), - [sym_char_lit] = ACTIONS(470), - [sym_nil_lit] = ACTIONS(472), - [sym_bool_lit] = ACTIONS(472), + [sym_char_lit] = ACTIONS(680), + [sym_nil_lit] = ACTIONS(682), + [sym_bool_lit] = ACTIONS(682), [aux_sym__sym_qualified_token1] = ACTIONS(278), [anon_sym_CARET] = ACTIONS(21), [anon_sym_POUND_CARET] = ACTIONS(23), [anon_sym_LPAREN] = ACTIONS(280), [anon_sym_LBRACE] = ACTIONS(282), [anon_sym_LBRACK] = ACTIONS(284), - [anon_sym_POUND] = ACTIONS(286), + [anon_sym_POUND] = ACTIONS(472), [anon_sym_POUND_QMARK] = ACTIONS(288), [anon_sym_POUND_QMARK_AT] = ACTIONS(290), - [anon_sym_POUND_SQUOTE] = ACTIONS(292), - [anon_sym_POUND_POUND] = ACTIONS(294), + [anon_sym_POUND_SQUOTE] = ACTIONS(474), + [anon_sym_POUND_POUND] = ACTIONS(476), [anon_sym_POUND_EQ] = ACTIONS(296), - [anon_sym_AT] = ACTIONS(298), - [anon_sym_SQUOTE] = ACTIONS(300), - [anon_sym_BQUOTE] = ACTIONS(302), - [anon_sym_TILDE_AT] = ACTIONS(304), - [anon_sym_TILDE] = ACTIONS(306), + [anon_sym_AT] = ACTIONS(478), + [anon_sym_SQUOTE] = ACTIONS(480), + [anon_sym_BQUOTE] = ACTIONS(482), + [anon_sym_TILDE_AT] = ACTIONS(484), + [anon_sym_TILDE] = ACTIONS(486), }, - [102] = { - [sym__gap] = STATE(301), - [sym_dis_expr] = STATE(301), - [sym__form] = STATE(415), - [sym_kwd_lit] = STATE(415), - [sym_str_lit] = STATE(415), - [sym_sym_lit] = STATE(415), + [STATE(90)] = { + [sym__gap] = STATE(100), + [sym_dis_expr] = STATE(100), + [sym__form] = STATE(401), + [sym_kwd_lit] = STATE(401), + [sym_str_lit] = STATE(401), + [sym_sym_lit] = STATE(401), [sym__metadata_lit] = STATE(424), - [sym_meta_lit] = STATE(314), - [sym_old_meta_lit] = STATE(313), - [sym_list_lit] = STATE(415), - [sym__bare_list_lit] = STATE(392), - [sym_map_lit] = STATE(415), + [sym_meta_lit] = STATE(312), + [sym_old_meta_lit] = STATE(315), + [sym_list_lit] = STATE(401), + [sym__bare_list_lit] = STATE(402), + [sym_map_lit] = STATE(401), [sym__bare_map_lit] = STATE(403), - [sym_vec_lit] = STATE(415), - [sym__bare_vec_lit] = STATE(423), - [sym_set_lit] = STATE(415), - [sym__bare_set_lit] = STATE(374), - [sym_anon_fn_lit] = STATE(415), - [sym_regex_lit] = STATE(415), - [sym_read_cond_lit] = STATE(415), - [sym_splicing_read_cond_lit] = STATE(415), - [sym_ns_map_lit] = STATE(415), - [sym_var_quoting_lit] = STATE(415), - [sym_sym_val_lit] = STATE(415), - [sym_evaling_lit] = STATE(415), - [sym_tagged_or_ctor_lit] = STATE(415), - [sym_derefing_lit] = STATE(415), - [sym_quoting_lit] = STATE(415), - [sym_syn_quoting_lit] = STATE(415), - [sym_unquote_splicing_lit] = STATE(415), - [sym_unquoting_lit] = STATE(415), - [aux_sym_dis_expr_repeat1] = STATE(301), - [aux_sym_sym_lit_repeat1] = STATE(304), - [sym__ws] = ACTIONS(264), - [sym_comment] = ACTIONS(264), + [sym_vec_lit] = STATE(401), + [sym__bare_vec_lit] = STATE(404), + [sym_set_lit] = STATE(401), + [sym__bare_set_lit] = STATE(405), + [sym_anon_fn_lit] = STATE(401), + [sym_regex_lit] = STATE(401), + [sym_read_cond_lit] = STATE(401), + [sym_splicing_read_cond_lit] = STATE(401), + [sym_ns_map_lit] = STATE(401), + [sym_var_quoting_lit] = STATE(401), + [sym_sym_val_lit] = STATE(401), + [sym_evaling_lit] = STATE(401), + [sym_tagged_or_ctor_lit] = STATE(401), + [sym_derefing_lit] = STATE(401), + [sym_quoting_lit] = STATE(401), + [sym_syn_quoting_lit] = STATE(401), + [sym_unquote_splicing_lit] = STATE(401), + [sym_unquoting_lit] = STATE(401), + [aux_sym_dis_expr_repeat1] = STATE(100), + [aux_sym_sym_lit_repeat1] = STATE(306), + [sym__ws] = ACTIONS(684), + [sym_comment] = ACTIONS(684), [anon_sym_POUND_] = ACTIONS(7), - [sym_num_lit] = ACTIONS(474), + [sym_num_lit] = ACTIONS(686), [anon_sym_SLASH] = ACTIONS(268), - [anon_sym_COLON] = ACTIONS(270), - [anon_sym_COLON_COLON] = ACTIONS(272), + [anon_sym_COLON] = ACTIONS(466), + [anon_sym_COLON_COLON] = ACTIONS(468), [aux_sym_str_lit_token1] = ACTIONS(274), - [sym_char_lit] = ACTIONS(474), - [sym_nil_lit] = ACTIONS(476), - [sym_bool_lit] = ACTIONS(476), + [sym_char_lit] = ACTIONS(686), + [sym_nil_lit] = ACTIONS(688), + [sym_bool_lit] = ACTIONS(688), [aux_sym__sym_qualified_token1] = ACTIONS(278), [anon_sym_CARET] = ACTIONS(21), [anon_sym_POUND_CARET] = ACTIONS(23), [anon_sym_LPAREN] = ACTIONS(280), [anon_sym_LBRACE] = ACTIONS(282), [anon_sym_LBRACK] = ACTIONS(284), - [anon_sym_POUND] = ACTIONS(286), + [anon_sym_POUND] = ACTIONS(472), [anon_sym_POUND_QMARK] = ACTIONS(288), [anon_sym_POUND_QMARK_AT] = ACTIONS(290), - [anon_sym_POUND_SQUOTE] = ACTIONS(292), - [anon_sym_POUND_POUND] = ACTIONS(294), + [anon_sym_POUND_SQUOTE] = ACTIONS(474), + [anon_sym_POUND_POUND] = ACTIONS(476), [anon_sym_POUND_EQ] = ACTIONS(296), - [anon_sym_AT] = ACTIONS(298), - [anon_sym_SQUOTE] = ACTIONS(300), - [anon_sym_BQUOTE] = ACTIONS(302), - [anon_sym_TILDE_AT] = ACTIONS(304), - [anon_sym_TILDE] = ACTIONS(306), + [anon_sym_AT] = ACTIONS(478), + [anon_sym_SQUOTE] = ACTIONS(480), + [anon_sym_BQUOTE] = ACTIONS(482), + [anon_sym_TILDE_AT] = ACTIONS(484), + [anon_sym_TILDE] = ACTIONS(486), }, - [103] = { + [STATE(91)] = { [sym__gap] = STATE(301), [sym_dis_expr] = STATE(301), - [sym__form] = STATE(416), - [sym_kwd_lit] = STATE(416), - [sym_str_lit] = STATE(416), - [sym_sym_lit] = STATE(416), + [sym__form] = STATE(234), + [sym_kwd_lit] = STATE(234), + [sym_str_lit] = STATE(234), + [sym_sym_lit] = STATE(234), [sym__metadata_lit] = STATE(424), - [sym_meta_lit] = STATE(314), - [sym_old_meta_lit] = STATE(313), - [sym_list_lit] = STATE(416), - [sym__bare_list_lit] = STATE(392), - [sym_map_lit] = STATE(416), - [sym__bare_map_lit] = STATE(403), - [sym_vec_lit] = STATE(416), - [sym__bare_vec_lit] = STATE(423), - [sym_set_lit] = STATE(416), - [sym__bare_set_lit] = STATE(374), - [sym_anon_fn_lit] = STATE(416), - [sym_regex_lit] = STATE(416), - [sym_read_cond_lit] = STATE(416), - [sym_splicing_read_cond_lit] = STATE(416), - [sym_ns_map_lit] = STATE(416), - [sym_var_quoting_lit] = STATE(416), - [sym_sym_val_lit] = STATE(416), - [sym_evaling_lit] = STATE(416), - [sym_tagged_or_ctor_lit] = STATE(416), - [sym_derefing_lit] = STATE(416), - [sym_quoting_lit] = STATE(416), - [sym_syn_quoting_lit] = STATE(416), - [sym_unquote_splicing_lit] = STATE(416), - [sym_unquoting_lit] = STATE(416), + [sym_meta_lit] = STATE(312), + [sym_old_meta_lit] = STATE(315), + [sym_list_lit] = STATE(234), + [sym__bare_list_lit] = STATE(299), + [sym_map_lit] = STATE(234), + [sym__bare_map_lit] = STATE(214), + [sym_vec_lit] = STATE(234), + [sym__bare_vec_lit] = STATE(217), + [sym_set_lit] = STATE(234), + [sym__bare_set_lit] = STATE(219), + [sym_anon_fn_lit] = STATE(234), + [sym_regex_lit] = STATE(234), + [sym_read_cond_lit] = STATE(234), + [sym_splicing_read_cond_lit] = STATE(234), + [sym_ns_map_lit] = STATE(234), + [sym_var_quoting_lit] = STATE(234), + [sym_sym_val_lit] = STATE(234), + [sym_evaling_lit] = STATE(234), + [sym_tagged_or_ctor_lit] = STATE(234), + [sym_derefing_lit] = STATE(234), + [sym_quoting_lit] = STATE(234), + [sym_syn_quoting_lit] = STATE(234), + [sym_unquote_splicing_lit] = STATE(234), + [sym_unquoting_lit] = STATE(234), [aux_sym_dis_expr_repeat1] = STATE(301), - [aux_sym_sym_lit_repeat1] = STATE(304), - [sym__ws] = ACTIONS(264), - [sym_comment] = ACTIONS(264), + [aux_sym_sym_lit_repeat1] = STATE(305), + [sym__ws] = ACTIONS(320), + [sym_comment] = ACTIONS(320), [anon_sym_POUND_] = ACTIONS(7), - [sym_num_lit] = ACTIONS(478), - [anon_sym_SLASH] = ACTIONS(268), - [anon_sym_COLON] = ACTIONS(270), - [anon_sym_COLON_COLON] = ACTIONS(272), - [aux_sym_str_lit_token1] = ACTIONS(274), - [sym_char_lit] = ACTIONS(478), - [sym_nil_lit] = ACTIONS(480), - [sym_bool_lit] = ACTIONS(480), - [aux_sym__sym_qualified_token1] = ACTIONS(278), + [sym_num_lit] = ACTIONS(690), + [anon_sym_SLASH] = ACTIONS(9), + [anon_sym_COLON] = ACTIONS(11), + [anon_sym_COLON_COLON] = ACTIONS(13), + [aux_sym_str_lit_token1] = ACTIONS(15), + [sym_char_lit] = ACTIONS(690), + [sym_nil_lit] = ACTIONS(692), + [sym_bool_lit] = ACTIONS(692), + [aux_sym__sym_qualified_token1] = ACTIONS(19), + [anon_sym_CARET] = ACTIONS(21), + [anon_sym_POUND_CARET] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_LBRACK] = 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_TILDE_AT] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(51), + }, + [STATE(92)] = { + [sym__gap] = STATE(104), + [sym_dis_expr] = STATE(104), + [sym__form] = STATE(297), + [sym_kwd_lit] = STATE(297), + [sym_str_lit] = STATE(297), + [sym_sym_lit] = STATE(297), + [sym__metadata_lit] = STATE(424), + [sym_meta_lit] = STATE(312), + [sym_old_meta_lit] = STATE(315), + [sym_list_lit] = STATE(297), + [sym__bare_list_lit] = STATE(299), + [sym_map_lit] = STATE(297), + [sym__bare_map_lit] = STATE(214), + [sym_vec_lit] = STATE(297), + [sym__bare_vec_lit] = STATE(217), + [sym_set_lit] = STATE(297), + [sym__bare_set_lit] = STATE(219), + [sym_anon_fn_lit] = STATE(297), + [sym_regex_lit] = STATE(297), + [sym_read_cond_lit] = STATE(297), + [sym_splicing_read_cond_lit] = STATE(297), + [sym_ns_map_lit] = STATE(297), + [sym_var_quoting_lit] = STATE(297), + [sym_sym_val_lit] = STATE(297), + [sym_evaling_lit] = STATE(297), + [sym_tagged_or_ctor_lit] = STATE(297), + [sym_derefing_lit] = STATE(297), + [sym_quoting_lit] = STATE(297), + [sym_syn_quoting_lit] = STATE(297), + [sym_unquote_splicing_lit] = STATE(297), + [sym_unquoting_lit] = STATE(297), + [aux_sym_dis_expr_repeat1] = STATE(104), + [aux_sym_sym_lit_repeat1] = STATE(303), + [sym__ws] = ACTIONS(694), + [sym_comment] = ACTIONS(694), + [anon_sym_POUND_] = ACTIONS(7), + [sym_num_lit] = ACTIONS(696), + [anon_sym_SLASH] = ACTIONS(9), + [anon_sym_COLON] = ACTIONS(698), + [anon_sym_COLON_COLON] = ACTIONS(700), + [aux_sym_str_lit_token1] = ACTIONS(15), + [sym_char_lit] = ACTIONS(696), + [sym_nil_lit] = ACTIONS(702), + [sym_bool_lit] = ACTIONS(702), + [aux_sym__sym_qualified_token1] = ACTIONS(19), + [anon_sym_CARET] = ACTIONS(21), + [anon_sym_POUND_CARET] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_POUND] = ACTIONS(704), + [anon_sym_POUND_QMARK] = ACTIONS(33), + [anon_sym_POUND_QMARK_AT] = ACTIONS(35), + [anon_sym_POUND_SQUOTE] = ACTIONS(706), + [anon_sym_POUND_POUND] = ACTIONS(708), + [anon_sym_POUND_EQ] = ACTIONS(41), + [anon_sym_AT] = ACTIONS(710), + [anon_sym_SQUOTE] = ACTIONS(712), + [anon_sym_BQUOTE] = ACTIONS(714), + [anon_sym_TILDE_AT] = ACTIONS(716), + [anon_sym_TILDE] = ACTIONS(718), + }, + [STATE(93)] = { + [sym__gap] = STATE(105), + [sym_dis_expr] = STATE(105), + [sym__form] = STATE(298), + [sym_kwd_lit] = STATE(298), + [sym_str_lit] = STATE(298), + [sym_sym_lit] = STATE(298), + [sym__metadata_lit] = STATE(424), + [sym_meta_lit] = STATE(312), + [sym_old_meta_lit] = STATE(315), + [sym_list_lit] = STATE(298), + [sym__bare_list_lit] = STATE(299), + [sym_map_lit] = STATE(298), + [sym__bare_map_lit] = STATE(214), + [sym_vec_lit] = STATE(298), + [sym__bare_vec_lit] = STATE(217), + [sym_set_lit] = STATE(298), + [sym__bare_set_lit] = STATE(219), + [sym_anon_fn_lit] = STATE(298), + [sym_regex_lit] = STATE(298), + [sym_read_cond_lit] = STATE(298), + [sym_splicing_read_cond_lit] = STATE(298), + [sym_ns_map_lit] = STATE(298), + [sym_var_quoting_lit] = STATE(298), + [sym_sym_val_lit] = STATE(298), + [sym_evaling_lit] = STATE(298), + [sym_tagged_or_ctor_lit] = STATE(298), + [sym_derefing_lit] = STATE(298), + [sym_quoting_lit] = STATE(298), + [sym_syn_quoting_lit] = STATE(298), + [sym_unquote_splicing_lit] = STATE(298), + [sym_unquoting_lit] = STATE(298), + [aux_sym_dis_expr_repeat1] = STATE(105), + [aux_sym_sym_lit_repeat1] = STATE(303), + [sym__ws] = ACTIONS(720), + [sym_comment] = ACTIONS(720), + [anon_sym_POUND_] = ACTIONS(7), + [sym_num_lit] = ACTIONS(722), + [anon_sym_SLASH] = ACTIONS(9), + [anon_sym_COLON] = ACTIONS(698), + [anon_sym_COLON_COLON] = ACTIONS(700), + [aux_sym_str_lit_token1] = ACTIONS(15), + [sym_char_lit] = ACTIONS(722), + [sym_nil_lit] = ACTIONS(724), + [sym_bool_lit] = ACTIONS(724), + [aux_sym__sym_qualified_token1] = ACTIONS(19), + [anon_sym_CARET] = ACTIONS(21), + [anon_sym_POUND_CARET] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_POUND] = ACTIONS(704), + [anon_sym_POUND_QMARK] = ACTIONS(33), + [anon_sym_POUND_QMARK_AT] = ACTIONS(35), + [anon_sym_POUND_SQUOTE] = ACTIONS(706), + [anon_sym_POUND_POUND] = ACTIONS(708), + [anon_sym_POUND_EQ] = ACTIONS(41), + [anon_sym_AT] = ACTIONS(710), + [anon_sym_SQUOTE] = ACTIONS(712), + [anon_sym_BQUOTE] = ACTIONS(714), + [anon_sym_TILDE_AT] = ACTIONS(716), + [anon_sym_TILDE] = ACTIONS(718), + }, + [STATE(94)] = { + [sym__gap] = STATE(106), + [sym_dis_expr] = STATE(106), + [sym__form] = STATE(215), + [sym_kwd_lit] = STATE(215), + [sym_str_lit] = STATE(215), + [sym_sym_lit] = STATE(215), + [sym__metadata_lit] = STATE(424), + [sym_meta_lit] = STATE(312), + [sym_old_meta_lit] = STATE(315), + [sym_list_lit] = STATE(215), + [sym__bare_list_lit] = STATE(299), + [sym_map_lit] = STATE(215), + [sym__bare_map_lit] = STATE(214), + [sym_vec_lit] = STATE(215), + [sym__bare_vec_lit] = STATE(217), + [sym_set_lit] = STATE(215), + [sym__bare_set_lit] = STATE(219), + [sym_anon_fn_lit] = STATE(215), + [sym_regex_lit] = STATE(215), + [sym_read_cond_lit] = STATE(215), + [sym_splicing_read_cond_lit] = STATE(215), + [sym_ns_map_lit] = STATE(215), + [sym_var_quoting_lit] = STATE(215), + [sym_sym_val_lit] = STATE(215), + [sym_evaling_lit] = STATE(215), + [sym_tagged_or_ctor_lit] = STATE(215), + [sym_derefing_lit] = STATE(215), + [sym_quoting_lit] = STATE(215), + [sym_syn_quoting_lit] = STATE(215), + [sym_unquote_splicing_lit] = STATE(215), + [sym_unquoting_lit] = STATE(215), + [aux_sym_dis_expr_repeat1] = STATE(106), + [aux_sym_sym_lit_repeat1] = STATE(303), + [sym__ws] = ACTIONS(726), + [sym_comment] = ACTIONS(726), + [anon_sym_POUND_] = ACTIONS(7), + [sym_num_lit] = ACTIONS(728), + [anon_sym_SLASH] = ACTIONS(9), + [anon_sym_COLON] = ACTIONS(698), + [anon_sym_COLON_COLON] = ACTIONS(700), + [aux_sym_str_lit_token1] = ACTIONS(15), + [sym_char_lit] = ACTIONS(728), + [sym_nil_lit] = ACTIONS(730), + [sym_bool_lit] = ACTIONS(730), + [aux_sym__sym_qualified_token1] = ACTIONS(19), + [anon_sym_CARET] = ACTIONS(21), + [anon_sym_POUND_CARET] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_POUND] = ACTIONS(704), + [anon_sym_POUND_QMARK] = ACTIONS(33), + [anon_sym_POUND_QMARK_AT] = ACTIONS(35), + [anon_sym_POUND_SQUOTE] = ACTIONS(706), + [anon_sym_POUND_POUND] = ACTIONS(708), + [anon_sym_POUND_EQ] = ACTIONS(41), + [anon_sym_AT] = ACTIONS(710), + [anon_sym_SQUOTE] = ACTIONS(712), + [anon_sym_BQUOTE] = ACTIONS(714), + [anon_sym_TILDE_AT] = ACTIONS(716), + [anon_sym_TILDE] = ACTIONS(718), + }, + [STATE(95)] = { + [sym__gap] = STATE(107), + [sym_dis_expr] = STATE(107), + [sym__form] = STATE(216), + [sym_kwd_lit] = STATE(216), + [sym_str_lit] = STATE(216), + [sym_sym_lit] = STATE(216), + [sym__metadata_lit] = STATE(424), + [sym_meta_lit] = STATE(312), + [sym_old_meta_lit] = STATE(315), + [sym_list_lit] = STATE(216), + [sym__bare_list_lit] = STATE(299), + [sym_map_lit] = STATE(216), + [sym__bare_map_lit] = STATE(214), + [sym_vec_lit] = STATE(216), + [sym__bare_vec_lit] = STATE(217), + [sym_set_lit] = STATE(216), + [sym__bare_set_lit] = STATE(219), + [sym_anon_fn_lit] = STATE(216), + [sym_regex_lit] = STATE(216), + [sym_read_cond_lit] = STATE(216), + [sym_splicing_read_cond_lit] = STATE(216), + [sym_ns_map_lit] = STATE(216), + [sym_var_quoting_lit] = STATE(216), + [sym_sym_val_lit] = STATE(216), + [sym_evaling_lit] = STATE(216), + [sym_tagged_or_ctor_lit] = STATE(216), + [sym_derefing_lit] = STATE(216), + [sym_quoting_lit] = STATE(216), + [sym_syn_quoting_lit] = STATE(216), + [sym_unquote_splicing_lit] = STATE(216), + [sym_unquoting_lit] = STATE(216), + [aux_sym_dis_expr_repeat1] = STATE(107), + [aux_sym_sym_lit_repeat1] = STATE(303), + [sym__ws] = ACTIONS(732), + [sym_comment] = ACTIONS(732), + [anon_sym_POUND_] = ACTIONS(7), + [sym_num_lit] = ACTIONS(310), + [anon_sym_SLASH] = ACTIONS(9), + [anon_sym_COLON] = ACTIONS(698), + [anon_sym_COLON_COLON] = ACTIONS(700), + [aux_sym_str_lit_token1] = ACTIONS(15), + [sym_char_lit] = ACTIONS(310), + [sym_nil_lit] = ACTIONS(312), + [sym_bool_lit] = ACTIONS(312), + [aux_sym__sym_qualified_token1] = ACTIONS(19), + [anon_sym_CARET] = ACTIONS(21), + [anon_sym_POUND_CARET] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_POUND] = ACTIONS(704), + [anon_sym_POUND_QMARK] = ACTIONS(33), + [anon_sym_POUND_QMARK_AT] = ACTIONS(35), + [anon_sym_POUND_SQUOTE] = ACTIONS(706), + [anon_sym_POUND_POUND] = ACTIONS(708), + [anon_sym_POUND_EQ] = ACTIONS(41), + [anon_sym_AT] = ACTIONS(710), + [anon_sym_SQUOTE] = ACTIONS(712), + [anon_sym_BQUOTE] = ACTIONS(714), + [anon_sym_TILDE_AT] = ACTIONS(716), + [anon_sym_TILDE] = ACTIONS(718), + }, + [STATE(96)] = { + [sym__gap] = STATE(108), + [sym_dis_expr] = STATE(108), + [sym__form] = STATE(218), + [sym_kwd_lit] = STATE(218), + [sym_str_lit] = STATE(218), + [sym_sym_lit] = STATE(218), + [sym__metadata_lit] = STATE(424), + [sym_meta_lit] = STATE(312), + [sym_old_meta_lit] = STATE(315), + [sym_list_lit] = STATE(218), + [sym__bare_list_lit] = STATE(299), + [sym_map_lit] = STATE(218), + [sym__bare_map_lit] = STATE(214), + [sym_vec_lit] = STATE(218), + [sym__bare_vec_lit] = STATE(217), + [sym_set_lit] = STATE(218), + [sym__bare_set_lit] = STATE(219), + [sym_anon_fn_lit] = STATE(218), + [sym_regex_lit] = STATE(218), + [sym_read_cond_lit] = STATE(218), + [sym_splicing_read_cond_lit] = STATE(218), + [sym_ns_map_lit] = STATE(218), + [sym_var_quoting_lit] = STATE(218), + [sym_sym_val_lit] = STATE(218), + [sym_evaling_lit] = STATE(218), + [sym_tagged_or_ctor_lit] = STATE(218), + [sym_derefing_lit] = STATE(218), + [sym_quoting_lit] = STATE(218), + [sym_syn_quoting_lit] = STATE(218), + [sym_unquote_splicing_lit] = STATE(218), + [sym_unquoting_lit] = STATE(218), + [aux_sym_dis_expr_repeat1] = STATE(108), + [aux_sym_sym_lit_repeat1] = STATE(303), + [sym__ws] = ACTIONS(734), + [sym_comment] = ACTIONS(734), + [anon_sym_POUND_] = ACTIONS(7), + [sym_num_lit] = ACTIONS(352), + [anon_sym_SLASH] = ACTIONS(9), + [anon_sym_COLON] = ACTIONS(698), + [anon_sym_COLON_COLON] = ACTIONS(700), + [aux_sym_str_lit_token1] = ACTIONS(15), + [sym_char_lit] = ACTIONS(352), + [sym_nil_lit] = ACTIONS(354), + [sym_bool_lit] = ACTIONS(354), + [aux_sym__sym_qualified_token1] = ACTIONS(19), + [anon_sym_CARET] = ACTIONS(21), + [anon_sym_POUND_CARET] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_POUND] = ACTIONS(704), + [anon_sym_POUND_QMARK] = ACTIONS(33), + [anon_sym_POUND_QMARK_AT] = ACTIONS(35), + [anon_sym_POUND_SQUOTE] = ACTIONS(706), + [anon_sym_POUND_POUND] = ACTIONS(708), + [anon_sym_POUND_EQ] = ACTIONS(41), + [anon_sym_AT] = ACTIONS(710), + [anon_sym_SQUOTE] = ACTIONS(712), + [anon_sym_BQUOTE] = ACTIONS(714), + [anon_sym_TILDE_AT] = ACTIONS(716), + [anon_sym_TILDE] = ACTIONS(718), + }, + [STATE(97)] = { + [sym__gap] = STATE(109), + [sym_dis_expr] = STATE(109), + [sym__form] = STATE(220), + [sym_kwd_lit] = STATE(220), + [sym_str_lit] = STATE(220), + [sym_sym_lit] = STATE(220), + [sym__metadata_lit] = STATE(424), + [sym_meta_lit] = STATE(312), + [sym_old_meta_lit] = STATE(315), + [sym_list_lit] = STATE(220), + [sym__bare_list_lit] = STATE(299), + [sym_map_lit] = STATE(220), + [sym__bare_map_lit] = STATE(214), + [sym_vec_lit] = STATE(220), + [sym__bare_vec_lit] = STATE(217), + [sym_set_lit] = STATE(220), + [sym__bare_set_lit] = STATE(219), + [sym_anon_fn_lit] = STATE(220), + [sym_regex_lit] = STATE(220), + [sym_read_cond_lit] = STATE(220), + [sym_splicing_read_cond_lit] = STATE(220), + [sym_ns_map_lit] = STATE(220), + [sym_var_quoting_lit] = STATE(220), + [sym_sym_val_lit] = STATE(220), + [sym_evaling_lit] = STATE(220), + [sym_tagged_or_ctor_lit] = STATE(220), + [sym_derefing_lit] = STATE(220), + [sym_quoting_lit] = STATE(220), + [sym_syn_quoting_lit] = STATE(220), + [sym_unquote_splicing_lit] = STATE(220), + [sym_unquoting_lit] = STATE(220), + [aux_sym_dis_expr_repeat1] = STATE(109), + [aux_sym_sym_lit_repeat1] = STATE(303), + [sym__ws] = ACTIONS(736), + [sym_comment] = ACTIONS(736), + [anon_sym_POUND_] = ACTIONS(7), + [sym_num_lit] = ACTIONS(394), + [anon_sym_SLASH] = ACTIONS(9), + [anon_sym_COLON] = ACTIONS(698), + [anon_sym_COLON_COLON] = ACTIONS(700), + [aux_sym_str_lit_token1] = ACTIONS(15), + [sym_char_lit] = ACTIONS(394), + [sym_nil_lit] = ACTIONS(396), + [sym_bool_lit] = ACTIONS(396), + [aux_sym__sym_qualified_token1] = ACTIONS(19), + [anon_sym_CARET] = ACTIONS(21), + [anon_sym_POUND_CARET] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_POUND] = ACTIONS(704), + [anon_sym_POUND_QMARK] = ACTIONS(33), + [anon_sym_POUND_QMARK_AT] = ACTIONS(35), + [anon_sym_POUND_SQUOTE] = ACTIONS(706), + [anon_sym_POUND_POUND] = ACTIONS(708), + [anon_sym_POUND_EQ] = ACTIONS(41), + [anon_sym_AT] = ACTIONS(710), + [anon_sym_SQUOTE] = ACTIONS(712), + [anon_sym_BQUOTE] = ACTIONS(714), + [anon_sym_TILDE_AT] = ACTIONS(716), + [anon_sym_TILDE] = ACTIONS(718), + }, + [STATE(98)] = { + [sym__gap] = STATE(110), + [sym_dis_expr] = STATE(110), + [sym__form] = STATE(222), + [sym_kwd_lit] = STATE(222), + [sym_str_lit] = STATE(222), + [sym_sym_lit] = STATE(222), + [sym__metadata_lit] = STATE(424), + [sym_meta_lit] = STATE(312), + [sym_old_meta_lit] = STATE(315), + [sym_list_lit] = STATE(222), + [sym__bare_list_lit] = STATE(299), + [sym_map_lit] = STATE(222), + [sym__bare_map_lit] = STATE(214), + [sym_vec_lit] = STATE(222), + [sym__bare_vec_lit] = STATE(217), + [sym_set_lit] = STATE(222), + [sym__bare_set_lit] = STATE(219), + [sym_anon_fn_lit] = STATE(222), + [sym_regex_lit] = STATE(222), + [sym_read_cond_lit] = STATE(222), + [sym_splicing_read_cond_lit] = STATE(222), + [sym_ns_map_lit] = STATE(222), + [sym_var_quoting_lit] = STATE(222), + [sym_sym_val_lit] = STATE(222), + [sym_evaling_lit] = STATE(222), + [sym_tagged_or_ctor_lit] = STATE(222), + [sym_derefing_lit] = STATE(222), + [sym_quoting_lit] = STATE(222), + [sym_syn_quoting_lit] = STATE(222), + [sym_unquote_splicing_lit] = STATE(222), + [sym_unquoting_lit] = STATE(222), + [aux_sym_dis_expr_repeat1] = STATE(110), + [aux_sym_sym_lit_repeat1] = STATE(303), + [sym__ws] = ACTIONS(738), + [sym_comment] = ACTIONS(738), + [anon_sym_POUND_] = ACTIONS(7), + [sym_num_lit] = ACTIONS(400), + [anon_sym_SLASH] = ACTIONS(9), + [anon_sym_COLON] = ACTIONS(698), + [anon_sym_COLON_COLON] = ACTIONS(700), + [aux_sym_str_lit_token1] = ACTIONS(15), + [sym_char_lit] = ACTIONS(400), + [sym_nil_lit] = ACTIONS(402), + [sym_bool_lit] = ACTIONS(402), + [aux_sym__sym_qualified_token1] = ACTIONS(19), + [anon_sym_CARET] = ACTIONS(21), + [anon_sym_POUND_CARET] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_POUND] = ACTIONS(704), + [anon_sym_POUND_QMARK] = ACTIONS(33), + [anon_sym_POUND_QMARK_AT] = ACTIONS(35), + [anon_sym_POUND_SQUOTE] = ACTIONS(706), + [anon_sym_POUND_POUND] = ACTIONS(708), + [anon_sym_POUND_EQ] = ACTIONS(41), + [anon_sym_AT] = ACTIONS(710), + [anon_sym_SQUOTE] = ACTIONS(712), + [anon_sym_BQUOTE] = ACTIONS(714), + [anon_sym_TILDE_AT] = ACTIONS(716), + [anon_sym_TILDE] = ACTIONS(718), + }, + [STATE(99)] = { + [sym__gap] = STATE(301), + [sym_dis_expr] = STATE(301), + [sym__form] = STATE(234), + [sym_kwd_lit] = STATE(234), + [sym_str_lit] = STATE(234), + [sym_sym_lit] = STATE(234), + [sym__metadata_lit] = STATE(424), + [sym_meta_lit] = STATE(312), + [sym_old_meta_lit] = STATE(315), + [sym_list_lit] = STATE(234), + [sym__bare_list_lit] = STATE(299), + [sym_map_lit] = STATE(234), + [sym__bare_map_lit] = STATE(214), + [sym_vec_lit] = STATE(234), + [sym__bare_vec_lit] = STATE(217), + [sym_set_lit] = STATE(234), + [sym__bare_set_lit] = STATE(219), + [sym_anon_fn_lit] = STATE(234), + [sym_regex_lit] = STATE(234), + [sym_read_cond_lit] = STATE(234), + [sym_splicing_read_cond_lit] = STATE(234), + [sym_ns_map_lit] = STATE(234), + [sym_var_quoting_lit] = STATE(234), + [sym_sym_val_lit] = STATE(234), + [sym_evaling_lit] = STATE(234), + [sym_tagged_or_ctor_lit] = STATE(234), + [sym_derefing_lit] = STATE(234), + [sym_quoting_lit] = STATE(234), + [sym_syn_quoting_lit] = STATE(234), + [sym_unquote_splicing_lit] = STATE(234), + [sym_unquoting_lit] = STATE(234), + [aux_sym_dis_expr_repeat1] = STATE(301), + [aux_sym_sym_lit_repeat1] = STATE(303), + [sym__ws] = ACTIONS(320), + [sym_comment] = ACTIONS(320), + [anon_sym_POUND_] = ACTIONS(7), + [sym_num_lit] = ACTIONS(690), + [anon_sym_SLASH] = ACTIONS(9), + [anon_sym_COLON] = ACTIONS(698), + [anon_sym_COLON_COLON] = ACTIONS(700), + [aux_sym_str_lit_token1] = ACTIONS(15), + [sym_char_lit] = ACTIONS(690), + [sym_nil_lit] = ACTIONS(692), + [sym_bool_lit] = ACTIONS(692), + [aux_sym__sym_qualified_token1] = ACTIONS(19), [anon_sym_CARET] = ACTIONS(21), [anon_sym_POUND_CARET] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(280), - [anon_sym_LBRACE] = ACTIONS(282), - [anon_sym_LBRACK] = ACTIONS(284), - [anon_sym_POUND] = ACTIONS(286), - [anon_sym_POUND_QMARK] = ACTIONS(288), - [anon_sym_POUND_QMARK_AT] = ACTIONS(290), - [anon_sym_POUND_SQUOTE] = ACTIONS(292), - [anon_sym_POUND_POUND] = ACTIONS(294), - [anon_sym_POUND_EQ] = ACTIONS(296), - [anon_sym_AT] = ACTIONS(298), - [anon_sym_SQUOTE] = ACTIONS(300), - [anon_sym_BQUOTE] = ACTIONS(302), - [anon_sym_TILDE_AT] = ACTIONS(304), - [anon_sym_TILDE] = ACTIONS(306), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_POUND] = ACTIONS(704), + [anon_sym_POUND_QMARK] = ACTIONS(33), + [anon_sym_POUND_QMARK_AT] = ACTIONS(35), + [anon_sym_POUND_SQUOTE] = ACTIONS(706), + [anon_sym_POUND_POUND] = ACTIONS(708), + [anon_sym_POUND_EQ] = ACTIONS(41), + [anon_sym_AT] = ACTIONS(710), + [anon_sym_SQUOTE] = ACTIONS(712), + [anon_sym_BQUOTE] = ACTIONS(714), + [anon_sym_TILDE_AT] = ACTIONS(716), + [anon_sym_TILDE] = ACTIONS(718), }, - [104] = { + [STATE(100)] = { [sym__gap] = STATE(301), [sym_dis_expr] = STATE(301), - [sym__form] = STATE(419), - [sym_kwd_lit] = STATE(419), - [sym_str_lit] = STATE(419), - [sym_sym_lit] = STATE(419), + [sym__form] = STATE(329), + [sym_kwd_lit] = STATE(329), + [sym_str_lit] = STATE(329), + [sym_sym_lit] = STATE(329), [sym__metadata_lit] = STATE(424), - [sym_meta_lit] = STATE(314), - [sym_old_meta_lit] = STATE(313), - [sym_list_lit] = STATE(419), - [sym__bare_list_lit] = STATE(392), - [sym_map_lit] = STATE(419), + [sym_meta_lit] = STATE(312), + [sym_old_meta_lit] = STATE(315), + [sym_list_lit] = STATE(329), + [sym__bare_list_lit] = STATE(402), + [sym_map_lit] = STATE(329), [sym__bare_map_lit] = STATE(403), - [sym_vec_lit] = STATE(419), - [sym__bare_vec_lit] = STATE(423), - [sym_set_lit] = STATE(419), - [sym__bare_set_lit] = STATE(374), - [sym_anon_fn_lit] = STATE(419), - [sym_regex_lit] = STATE(419), - [sym_read_cond_lit] = STATE(419), - [sym_splicing_read_cond_lit] = STATE(419), - [sym_ns_map_lit] = STATE(419), - [sym_var_quoting_lit] = STATE(419), - [sym_sym_val_lit] = STATE(419), - [sym_evaling_lit] = STATE(419), - [sym_tagged_or_ctor_lit] = STATE(419), - [sym_derefing_lit] = STATE(419), - [sym_quoting_lit] = STATE(419), - [sym_syn_quoting_lit] = STATE(419), - [sym_unquote_splicing_lit] = STATE(419), - [sym_unquoting_lit] = STATE(419), + [sym_vec_lit] = STATE(329), + [sym__bare_vec_lit] = STATE(404), + [sym_set_lit] = STATE(329), + [sym__bare_set_lit] = STATE(405), + [sym_anon_fn_lit] = STATE(329), + [sym_regex_lit] = STATE(329), + [sym_read_cond_lit] = STATE(329), + [sym_splicing_read_cond_lit] = STATE(329), + [sym_ns_map_lit] = STATE(329), + [sym_var_quoting_lit] = STATE(329), + [sym_sym_val_lit] = STATE(329), + [sym_evaling_lit] = STATE(329), + [sym_tagged_or_ctor_lit] = STATE(329), + [sym_derefing_lit] = STATE(329), + [sym_quoting_lit] = STATE(329), + [sym_syn_quoting_lit] = STATE(329), + [sym_unquote_splicing_lit] = STATE(329), + [sym_unquoting_lit] = STATE(329), [aux_sym_dis_expr_repeat1] = STATE(301), - [aux_sym_sym_lit_repeat1] = STATE(304), - [sym__ws] = ACTIONS(264), - [sym_comment] = ACTIONS(264), + [aux_sym_sym_lit_repeat1] = STATE(306), + [sym__ws] = ACTIONS(320), + [sym_comment] = ACTIONS(320), [anon_sym_POUND_] = ACTIONS(7), - [sym_num_lit] = ACTIONS(482), + [sym_num_lit] = ACTIONS(740), [anon_sym_SLASH] = ACTIONS(268), - [anon_sym_COLON] = ACTIONS(270), - [anon_sym_COLON_COLON] = ACTIONS(272), + [anon_sym_COLON] = ACTIONS(466), + [anon_sym_COLON_COLON] = ACTIONS(468), [aux_sym_str_lit_token1] = ACTIONS(274), - [sym_char_lit] = ACTIONS(482), - [sym_nil_lit] = ACTIONS(484), - [sym_bool_lit] = ACTIONS(484), + [sym_char_lit] = ACTIONS(740), + [sym_nil_lit] = ACTIONS(742), + [sym_bool_lit] = ACTIONS(742), [aux_sym__sym_qualified_token1] = ACTIONS(278), [anon_sym_CARET] = ACTIONS(21), [anon_sym_POUND_CARET] = ACTIONS(23), [anon_sym_LPAREN] = ACTIONS(280), [anon_sym_LBRACE] = ACTIONS(282), [anon_sym_LBRACK] = ACTIONS(284), - [anon_sym_POUND] = ACTIONS(286), + [anon_sym_POUND] = ACTIONS(472), [anon_sym_POUND_QMARK] = ACTIONS(288), [anon_sym_POUND_QMARK_AT] = ACTIONS(290), - [anon_sym_POUND_SQUOTE] = ACTIONS(292), - [anon_sym_POUND_POUND] = ACTIONS(294), + [anon_sym_POUND_SQUOTE] = ACTIONS(474), + [anon_sym_POUND_POUND] = ACTIONS(476), [anon_sym_POUND_EQ] = ACTIONS(296), - [anon_sym_AT] = ACTIONS(298), - [anon_sym_SQUOTE] = ACTIONS(300), - [anon_sym_BQUOTE] = ACTIONS(302), - [anon_sym_TILDE_AT] = ACTIONS(304), - [anon_sym_TILDE] = ACTIONS(306), + [anon_sym_AT] = ACTIONS(478), + [anon_sym_SQUOTE] = ACTIONS(480), + [anon_sym_BQUOTE] = ACTIONS(482), + [anon_sym_TILDE_AT] = ACTIONS(484), + [anon_sym_TILDE] = ACTIONS(486), }, - [105] = { - [sym__gap] = STATE(184), - [sym_dis_expr] = STATE(184), - [sym__form] = STATE(378), - [sym_kwd_lit] = STATE(378), - [sym_str_lit] = STATE(378), - [sym_sym_lit] = STATE(378), + [STATE(101)] = { + [sym__gap] = STATE(301), + [sym_dis_expr] = STATE(301), + [sym__form] = STATE(330), + [sym_kwd_lit] = STATE(330), + [sym_str_lit] = STATE(330), + [sym_sym_lit] = STATE(330), [sym__metadata_lit] = STATE(424), - [sym_meta_lit] = STATE(314), - [sym_old_meta_lit] = STATE(313), - [sym_list_lit] = STATE(378), - [sym__bare_list_lit] = STATE(392), - [sym_map_lit] = STATE(378), + [sym_meta_lit] = STATE(312), + [sym_old_meta_lit] = STATE(315), + [sym_list_lit] = STATE(330), + [sym__bare_list_lit] = STATE(402), + [sym_map_lit] = STATE(330), [sym__bare_map_lit] = STATE(403), - [sym_vec_lit] = STATE(378), - [sym__bare_vec_lit] = STATE(423), - [sym_set_lit] = STATE(378), - [sym__bare_set_lit] = STATE(374), - [sym_anon_fn_lit] = STATE(378), - [sym_regex_lit] = STATE(378), - [sym_read_cond_lit] = STATE(378), - [sym_splicing_read_cond_lit] = STATE(378), - [sym_ns_map_lit] = STATE(378), - [sym_var_quoting_lit] = STATE(378), - [sym_sym_val_lit] = STATE(378), - [sym_evaling_lit] = STATE(378), - [sym_tagged_or_ctor_lit] = STATE(378), - [sym_derefing_lit] = STATE(378), - [sym_quoting_lit] = STATE(378), - [sym_syn_quoting_lit] = STATE(378), - [sym_unquote_splicing_lit] = STATE(378), - [sym_unquoting_lit] = STATE(378), - [aux_sym_dis_expr_repeat1] = STATE(184), + [sym_vec_lit] = STATE(330), + [sym__bare_vec_lit] = STATE(404), + [sym_set_lit] = STATE(330), + [sym__bare_set_lit] = STATE(405), + [sym_anon_fn_lit] = STATE(330), + [sym_regex_lit] = STATE(330), + [sym_read_cond_lit] = STATE(330), + [sym_splicing_read_cond_lit] = STATE(330), + [sym_ns_map_lit] = STATE(330), + [sym_var_quoting_lit] = STATE(330), + [sym_sym_val_lit] = STATE(330), + [sym_evaling_lit] = STATE(330), + [sym_tagged_or_ctor_lit] = STATE(330), + [sym_derefing_lit] = STATE(330), + [sym_quoting_lit] = STATE(330), + [sym_syn_quoting_lit] = STATE(330), + [sym_unquote_splicing_lit] = STATE(330), + [sym_unquoting_lit] = STATE(330), + [aux_sym_dis_expr_repeat1] = STATE(301), [aux_sym_sym_lit_repeat1] = STATE(306), - [sym__ws] = ACTIONS(668), - [sym_comment] = ACTIONS(668), + [sym__ws] = ACTIONS(320), + [sym_comment] = ACTIONS(320), [anon_sym_POUND_] = ACTIONS(7), - [sym_num_lit] = ACTIONS(400), + [sym_num_lit] = ACTIONS(744), [anon_sym_SLASH] = ACTIONS(268), - [anon_sym_COLON] = ACTIONS(426), - [anon_sym_COLON_COLON] = ACTIONS(428), + [anon_sym_COLON] = ACTIONS(466), + [anon_sym_COLON_COLON] = ACTIONS(468), [aux_sym_str_lit_token1] = ACTIONS(274), - [sym_char_lit] = ACTIONS(400), - [sym_nil_lit] = ACTIONS(402), - [sym_bool_lit] = ACTIONS(402), + [sym_char_lit] = ACTIONS(744), + [sym_nil_lit] = ACTIONS(746), + [sym_bool_lit] = ACTIONS(746), [aux_sym__sym_qualified_token1] = ACTIONS(278), [anon_sym_CARET] = ACTIONS(21), [anon_sym_POUND_CARET] = ACTIONS(23), [anon_sym_LPAREN] = ACTIONS(280), [anon_sym_LBRACE] = ACTIONS(282), [anon_sym_LBRACK] = ACTIONS(284), - [anon_sym_POUND] = ACTIONS(430), + [anon_sym_POUND] = ACTIONS(472), [anon_sym_POUND_QMARK] = ACTIONS(288), [anon_sym_POUND_QMARK_AT] = ACTIONS(290), - [anon_sym_POUND_SQUOTE] = ACTIONS(432), - [anon_sym_POUND_POUND] = ACTIONS(434), + [anon_sym_POUND_SQUOTE] = ACTIONS(474), + [anon_sym_POUND_POUND] = ACTIONS(476), [anon_sym_POUND_EQ] = ACTIONS(296), - [anon_sym_AT] = ACTIONS(436), - [anon_sym_SQUOTE] = ACTIONS(438), - [anon_sym_BQUOTE] = ACTIONS(440), - [anon_sym_TILDE_AT] = ACTIONS(442), - [anon_sym_TILDE] = ACTIONS(444), - }, - [106] = { - [sym__gap] = STATE(39), - [sym_dis_expr] = STATE(39), - [sym__form] = STATE(229), - [sym_kwd_lit] = STATE(229), - [sym_str_lit] = STATE(229), - [sym_sym_lit] = STATE(229), + [anon_sym_AT] = ACTIONS(478), + [anon_sym_SQUOTE] = ACTIONS(480), + [anon_sym_BQUOTE] = ACTIONS(482), + [anon_sym_TILDE_AT] = ACTIONS(484), + [anon_sym_TILDE] = ACTIONS(486), + }, + [STATE(102)] = { + [sym__gap] = STATE(24), + [sym_dis_expr] = STATE(24), + [sym__form] = STATE(297), + [sym_kwd_lit] = STATE(297), + [sym_str_lit] = STATE(297), + [sym_sym_lit] = STATE(297), [sym__metadata_lit] = STATE(424), - [sym_meta_lit] = STATE(314), - [sym_old_meta_lit] = STATE(313), - [sym_list_lit] = STATE(229), - [sym__bare_list_lit] = STATE(218), - [sym_map_lit] = STATE(229), - [sym__bare_map_lit] = STATE(219), - [sym_vec_lit] = STATE(229), - [sym__bare_vec_lit] = STATE(226), - [sym_set_lit] = STATE(229), - [sym__bare_set_lit] = STATE(227), - [sym_anon_fn_lit] = STATE(229), - [sym_regex_lit] = STATE(229), - [sym_read_cond_lit] = STATE(229), - [sym_splicing_read_cond_lit] = STATE(229), - [sym_ns_map_lit] = STATE(229), - [sym_var_quoting_lit] = STATE(229), - [sym_sym_val_lit] = STATE(229), - [sym_evaling_lit] = STATE(229), - [sym_tagged_or_ctor_lit] = STATE(229), - [sym_derefing_lit] = STATE(229), - [sym_quoting_lit] = STATE(229), - [sym_syn_quoting_lit] = STATE(229), - [sym_unquote_splicing_lit] = STATE(229), - [sym_unquoting_lit] = STATE(229), - [aux_sym_dis_expr_repeat1] = STATE(39), + [sym_meta_lit] = STATE(312), + [sym_old_meta_lit] = STATE(315), + [sym_list_lit] = STATE(297), + [sym__bare_list_lit] = STATE(299), + [sym_map_lit] = STATE(297), + [sym__bare_map_lit] = STATE(214), + [sym_vec_lit] = STATE(297), + [sym__bare_vec_lit] = STATE(217), + [sym_set_lit] = STATE(297), + [sym__bare_set_lit] = STATE(219), + [sym_anon_fn_lit] = STATE(297), + [sym_regex_lit] = STATE(297), + [sym_read_cond_lit] = STATE(297), + [sym_splicing_read_cond_lit] = STATE(297), + [sym_ns_map_lit] = STATE(297), + [sym_var_quoting_lit] = STATE(297), + [sym_sym_val_lit] = STATE(297), + [sym_evaling_lit] = STATE(297), + [sym_tagged_or_ctor_lit] = STATE(297), + [sym_derefing_lit] = STATE(297), + [sym_quoting_lit] = STATE(297), + [sym_syn_quoting_lit] = STATE(297), + [sym_unquote_splicing_lit] = STATE(297), + [sym_unquoting_lit] = STATE(297), + [aux_sym_dis_expr_repeat1] = STATE(24), [aux_sym_sym_lit_repeat1] = STATE(305), - [sym__ws] = ACTIONS(670), - [sym_comment] = ACTIONS(670), + [sym__ws] = ACTIONS(748), + [sym_comment] = ACTIONS(748), [anon_sym_POUND_] = ACTIONS(7), - [sym_num_lit] = ACTIONS(672), + [sym_num_lit] = ACTIONS(696), [anon_sym_SLASH] = ACTIONS(9), [anon_sym_COLON] = ACTIONS(11), [anon_sym_COLON_COLON] = ACTIONS(13), [aux_sym_str_lit_token1] = ACTIONS(15), - [sym_char_lit] = ACTIONS(672), - [sym_nil_lit] = ACTIONS(674), - [sym_bool_lit] = ACTIONS(674), + [sym_char_lit] = ACTIONS(696), + [sym_nil_lit] = ACTIONS(702), + [sym_bool_lit] = ACTIONS(702), [aux_sym__sym_qualified_token1] = ACTIONS(19), [anon_sym_CARET] = ACTIONS(21), [anon_sym_POUND_CARET] = ACTIONS(23), @@ -10197,744 +9397,933 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE_AT] = ACTIONS(49), [anon_sym_TILDE] = ACTIONS(51), }, - [107] = { - [sym__gap] = STATE(87), - [sym_dis_expr] = STATE(87), - [sym__form] = STATE(409), - [sym_kwd_lit] = STATE(409), - [sym_str_lit] = STATE(409), - [sym_sym_lit] = STATE(409), + [STATE(103)] = { + [sym__gap] = STATE(118), + [sym_dis_expr] = STATE(118), + [sym__form] = STATE(242), + [sym_kwd_lit] = STATE(242), + [sym_str_lit] = STATE(242), + [sym_sym_lit] = STATE(242), [sym__metadata_lit] = STATE(424), - [sym_meta_lit] = STATE(314), - [sym_old_meta_lit] = STATE(313), - [sym_list_lit] = STATE(409), - [sym__bare_list_lit] = STATE(392), - [sym_map_lit] = STATE(409), - [sym__bare_map_lit] = STATE(403), - [sym_vec_lit] = STATE(409), - [sym__bare_vec_lit] = STATE(423), - [sym_set_lit] = STATE(409), - [sym__bare_set_lit] = STATE(374), - [sym_anon_fn_lit] = STATE(409), - [sym_regex_lit] = STATE(409), - [sym_read_cond_lit] = STATE(409), - [sym_splicing_read_cond_lit] = STATE(409), - [sym_ns_map_lit] = STATE(409), - [sym_var_quoting_lit] = STATE(409), - [sym_sym_val_lit] = STATE(409), - [sym_evaling_lit] = STATE(409), - [sym_tagged_or_ctor_lit] = STATE(409), - [sym_derefing_lit] = STATE(409), - [sym_quoting_lit] = STATE(409), - [sym_syn_quoting_lit] = STATE(409), - [sym_unquote_splicing_lit] = STATE(409), - [sym_unquoting_lit] = STATE(409), - [aux_sym_dis_expr_repeat1] = STATE(87), - [aux_sym_sym_lit_repeat1] = STATE(304), - [sym__ws] = ACTIONS(676), - [sym_comment] = ACTIONS(676), + [sym_meta_lit] = STATE(312), + [sym_old_meta_lit] = STATE(315), + [sym_list_lit] = STATE(242), + [sym__bare_list_lit] = STATE(299), + [sym_map_lit] = STATE(242), + [sym__bare_map_lit] = STATE(214), + [sym_vec_lit] = STATE(242), + [sym__bare_vec_lit] = STATE(217), + [sym_set_lit] = STATE(242), + [sym__bare_set_lit] = STATE(219), + [sym_anon_fn_lit] = STATE(242), + [sym_regex_lit] = STATE(242), + [sym_read_cond_lit] = STATE(242), + [sym_splicing_read_cond_lit] = STATE(242), + [sym_ns_map_lit] = STATE(242), + [sym_var_quoting_lit] = STATE(242), + [sym_sym_val_lit] = STATE(242), + [sym_evaling_lit] = STATE(242), + [sym_tagged_or_ctor_lit] = STATE(242), + [sym_derefing_lit] = STATE(242), + [sym_quoting_lit] = STATE(242), + [sym_syn_quoting_lit] = STATE(242), + [sym_unquote_splicing_lit] = STATE(242), + [sym_unquoting_lit] = STATE(242), + [aux_sym_dis_expr_repeat1] = STATE(118), + [aux_sym_sym_lit_repeat1] = STATE(303), + [sym__ws] = ACTIONS(750), + [sym_comment] = ACTIONS(750), [anon_sym_POUND_] = ACTIONS(7), - [sym_num_lit] = ACTIONS(488), - [anon_sym_SLASH] = ACTIONS(268), - [anon_sym_COLON] = ACTIONS(270), - [anon_sym_COLON_COLON] = ACTIONS(272), - [aux_sym_str_lit_token1] = ACTIONS(274), - [sym_char_lit] = ACTIONS(488), - [sym_nil_lit] = ACTIONS(490), - [sym_bool_lit] = ACTIONS(490), - [aux_sym__sym_qualified_token1] = ACTIONS(278), + [sym_num_lit] = ACTIONS(316), + [anon_sym_SLASH] = ACTIONS(9), + [anon_sym_COLON] = ACTIONS(698), + [anon_sym_COLON_COLON] = ACTIONS(700), + [aux_sym_str_lit_token1] = ACTIONS(15), + [sym_char_lit] = ACTIONS(316), + [sym_nil_lit] = ACTIONS(318), + [sym_bool_lit] = ACTIONS(318), + [aux_sym__sym_qualified_token1] = ACTIONS(19), [anon_sym_CARET] = ACTIONS(21), [anon_sym_POUND_CARET] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(280), - [anon_sym_LBRACE] = ACTIONS(282), - [anon_sym_LBRACK] = ACTIONS(284), - [anon_sym_POUND] = ACTIONS(286), - [anon_sym_POUND_QMARK] = ACTIONS(288), - [anon_sym_POUND_QMARK_AT] = ACTIONS(290), - [anon_sym_POUND_SQUOTE] = ACTIONS(292), - [anon_sym_POUND_POUND] = ACTIONS(294), - [anon_sym_POUND_EQ] = ACTIONS(296), - [anon_sym_AT] = ACTIONS(298), - [anon_sym_SQUOTE] = ACTIONS(300), - [anon_sym_BQUOTE] = ACTIONS(302), - [anon_sym_TILDE_AT] = ACTIONS(304), - [anon_sym_TILDE] = ACTIONS(306), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_POUND] = ACTIONS(704), + [anon_sym_POUND_QMARK] = ACTIONS(33), + [anon_sym_POUND_QMARK_AT] = ACTIONS(35), + [anon_sym_POUND_SQUOTE] = ACTIONS(706), + [anon_sym_POUND_POUND] = ACTIONS(708), + [anon_sym_POUND_EQ] = ACTIONS(41), + [anon_sym_AT] = ACTIONS(710), + [anon_sym_SQUOTE] = ACTIONS(712), + [anon_sym_BQUOTE] = ACTIONS(714), + [anon_sym_TILDE_AT] = ACTIONS(716), + [anon_sym_TILDE] = ACTIONS(718), }, - [108] = { + [STATE(104)] = { [sym__gap] = STATE(301), [sym_dis_expr] = STATE(301), - [sym__form] = STATE(386), - [sym_kwd_lit] = STATE(386), - [sym_str_lit] = STATE(386), - [sym_sym_lit] = STATE(386), + [sym__form] = STATE(246), + [sym_kwd_lit] = STATE(246), + [sym_str_lit] = STATE(246), + [sym_sym_lit] = STATE(246), [sym__metadata_lit] = STATE(424), - [sym_meta_lit] = STATE(314), - [sym_old_meta_lit] = STATE(313), - [sym_list_lit] = STATE(386), - [sym__bare_list_lit] = STATE(392), - [sym_map_lit] = STATE(386), - [sym__bare_map_lit] = STATE(403), - [sym_vec_lit] = STATE(386), - [sym__bare_vec_lit] = STATE(423), - [sym_set_lit] = STATE(386), - [sym__bare_set_lit] = STATE(374), - [sym_anon_fn_lit] = STATE(386), - [sym_regex_lit] = STATE(386), - [sym_read_cond_lit] = STATE(386), - [sym_splicing_read_cond_lit] = STATE(386), - [sym_ns_map_lit] = STATE(386), - [sym_var_quoting_lit] = STATE(386), - [sym_sym_val_lit] = STATE(386), - [sym_evaling_lit] = STATE(386), - [sym_tagged_or_ctor_lit] = STATE(386), - [sym_derefing_lit] = STATE(386), - [sym_quoting_lit] = STATE(386), - [sym_syn_quoting_lit] = STATE(386), - [sym_unquote_splicing_lit] = STATE(386), - [sym_unquoting_lit] = STATE(386), + [sym_meta_lit] = STATE(312), + [sym_old_meta_lit] = STATE(315), + [sym_list_lit] = STATE(246), + [sym__bare_list_lit] = STATE(299), + [sym_map_lit] = STATE(246), + [sym__bare_map_lit] = STATE(214), + [sym_vec_lit] = STATE(246), + [sym__bare_vec_lit] = STATE(217), + [sym_set_lit] = STATE(246), + [sym__bare_set_lit] = STATE(219), + [sym_anon_fn_lit] = STATE(246), + [sym_regex_lit] = STATE(246), + [sym_read_cond_lit] = STATE(246), + [sym_splicing_read_cond_lit] = STATE(246), + [sym_ns_map_lit] = STATE(246), + [sym_var_quoting_lit] = STATE(246), + [sym_sym_val_lit] = STATE(246), + [sym_evaling_lit] = STATE(246), + [sym_tagged_or_ctor_lit] = STATE(246), + [sym_derefing_lit] = STATE(246), + [sym_quoting_lit] = STATE(246), + [sym_syn_quoting_lit] = STATE(246), + [sym_unquote_splicing_lit] = STATE(246), + [sym_unquoting_lit] = STATE(246), [aux_sym_dis_expr_repeat1] = STATE(301), - [aux_sym_sym_lit_repeat1] = STATE(307), - [sym__ws] = ACTIONS(264), - [sym_comment] = ACTIONS(264), + [aux_sym_sym_lit_repeat1] = STATE(303), + [sym__ws] = ACTIONS(320), + [sym_comment] = ACTIONS(320), [anon_sym_POUND_] = ACTIONS(7), - [sym_num_lit] = ACTIONS(492), - [anon_sym_SLASH] = ACTIONS(268), - [anon_sym_COLON] = ACTIONS(352), - [anon_sym_COLON_COLON] = ACTIONS(354), - [aux_sym_str_lit_token1] = ACTIONS(274), - [sym_char_lit] = ACTIONS(492), - [sym_nil_lit] = ACTIONS(494), - [sym_bool_lit] = ACTIONS(494), - [aux_sym__sym_qualified_token1] = ACTIONS(278), + [sym_num_lit] = ACTIONS(322), + [anon_sym_SLASH] = ACTIONS(9), + [anon_sym_COLON] = ACTIONS(698), + [anon_sym_COLON_COLON] = ACTIONS(700), + [aux_sym_str_lit_token1] = ACTIONS(15), + [sym_char_lit] = ACTIONS(322), + [sym_nil_lit] = ACTIONS(324), + [sym_bool_lit] = ACTIONS(324), + [aux_sym__sym_qualified_token1] = ACTIONS(19), [anon_sym_CARET] = ACTIONS(21), [anon_sym_POUND_CARET] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(280), - [anon_sym_LBRACE] = ACTIONS(282), - [anon_sym_LBRACK] = ACTIONS(284), - [anon_sym_POUND] = ACTIONS(358), - [anon_sym_POUND_QMARK] = ACTIONS(288), - [anon_sym_POUND_QMARK_AT] = ACTIONS(290), - [anon_sym_POUND_SQUOTE] = ACTIONS(360), - [anon_sym_POUND_POUND] = ACTIONS(362), - [anon_sym_POUND_EQ] = ACTIONS(296), - [anon_sym_AT] = ACTIONS(364), - [anon_sym_SQUOTE] = ACTIONS(366), - [anon_sym_BQUOTE] = ACTIONS(368), - [anon_sym_TILDE_AT] = ACTIONS(370), - [anon_sym_TILDE] = ACTIONS(372), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_POUND] = ACTIONS(704), + [anon_sym_POUND_QMARK] = ACTIONS(33), + [anon_sym_POUND_QMARK_AT] = ACTIONS(35), + [anon_sym_POUND_SQUOTE] = ACTIONS(706), + [anon_sym_POUND_POUND] = ACTIONS(708), + [anon_sym_POUND_EQ] = ACTIONS(41), + [anon_sym_AT] = ACTIONS(710), + [anon_sym_SQUOTE] = ACTIONS(712), + [anon_sym_BQUOTE] = ACTIONS(714), + [anon_sym_TILDE_AT] = ACTIONS(716), + [anon_sym_TILDE] = ACTIONS(718), }, - [109] = { - [sym__gap] = STATE(99), - [sym_dis_expr] = STATE(99), - [sym__form] = STATE(371), - [sym_kwd_lit] = STATE(371), - [sym_str_lit] = STATE(371), - [sym_sym_lit] = STATE(371), - [sym__metadata_lit] = STATE(424), - [sym_meta_lit] = STATE(314), - [sym_old_meta_lit] = STATE(313), - [sym_list_lit] = STATE(371), - [sym__bare_list_lit] = STATE(392), - [sym_map_lit] = STATE(371), - [sym__bare_map_lit] = STATE(403), - [sym_vec_lit] = STATE(371), - [sym__bare_vec_lit] = STATE(423), - [sym_set_lit] = STATE(371), - [sym__bare_set_lit] = STATE(374), - [sym_anon_fn_lit] = STATE(371), - [sym_regex_lit] = STATE(371), - [sym_read_cond_lit] = STATE(371), - [sym_splicing_read_cond_lit] = STATE(371), - [sym_ns_map_lit] = STATE(371), - [sym_var_quoting_lit] = STATE(371), - [sym_sym_val_lit] = STATE(371), - [sym_evaling_lit] = STATE(371), - [sym_tagged_or_ctor_lit] = STATE(371), - [sym_derefing_lit] = STATE(371), - [sym_quoting_lit] = STATE(371), - [sym_syn_quoting_lit] = STATE(371), - [sym_unquote_splicing_lit] = STATE(371), - [sym_unquoting_lit] = STATE(371), - [aux_sym_dis_expr_repeat1] = STATE(99), - [aux_sym_sym_lit_repeat1] = STATE(304), - [sym__ws] = ACTIONS(678), - [sym_comment] = ACTIONS(678), + [STATE(105)] = { + [sym__gap] = STATE(301), + [sym_dis_expr] = STATE(301), + [sym__form] = STATE(247), + [sym_kwd_lit] = STATE(247), + [sym_str_lit] = STATE(247), + [sym_sym_lit] = STATE(247), + [sym__metadata_lit] = STATE(424), + [sym_meta_lit] = STATE(312), + [sym_old_meta_lit] = STATE(315), + [sym_list_lit] = STATE(247), + [sym__bare_list_lit] = STATE(299), + [sym_map_lit] = STATE(247), + [sym__bare_map_lit] = STATE(214), + [sym_vec_lit] = STATE(247), + [sym__bare_vec_lit] = STATE(217), + [sym_set_lit] = STATE(247), + [sym__bare_set_lit] = STATE(219), + [sym_anon_fn_lit] = STATE(247), + [sym_regex_lit] = STATE(247), + [sym_read_cond_lit] = STATE(247), + [sym_splicing_read_cond_lit] = STATE(247), + [sym_ns_map_lit] = STATE(247), + [sym_var_quoting_lit] = STATE(247), + [sym_sym_val_lit] = STATE(247), + [sym_evaling_lit] = STATE(247), + [sym_tagged_or_ctor_lit] = STATE(247), + [sym_derefing_lit] = STATE(247), + [sym_quoting_lit] = STATE(247), + [sym_syn_quoting_lit] = STATE(247), + [sym_unquote_splicing_lit] = STATE(247), + [sym_unquoting_lit] = STATE(247), + [aux_sym_dis_expr_repeat1] = STATE(301), + [aux_sym_sym_lit_repeat1] = STATE(303), + [sym__ws] = ACTIONS(320), + [sym_comment] = ACTIONS(320), [anon_sym_POUND_] = ACTIONS(7), - [sym_num_lit] = ACTIONS(504), - [anon_sym_SLASH] = ACTIONS(268), - [anon_sym_COLON] = ACTIONS(270), - [anon_sym_COLON_COLON] = ACTIONS(272), - [aux_sym_str_lit_token1] = ACTIONS(274), - [sym_char_lit] = ACTIONS(504), - [sym_nil_lit] = ACTIONS(506), - [sym_bool_lit] = ACTIONS(506), - [aux_sym__sym_qualified_token1] = ACTIONS(278), + [sym_num_lit] = ACTIONS(326), + [anon_sym_SLASH] = ACTIONS(9), + [anon_sym_COLON] = ACTIONS(698), + [anon_sym_COLON_COLON] = ACTIONS(700), + [aux_sym_str_lit_token1] = ACTIONS(15), + [sym_char_lit] = ACTIONS(326), + [sym_nil_lit] = ACTIONS(328), + [sym_bool_lit] = ACTIONS(328), + [aux_sym__sym_qualified_token1] = ACTIONS(19), [anon_sym_CARET] = ACTIONS(21), [anon_sym_POUND_CARET] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(280), - [anon_sym_LBRACE] = ACTIONS(282), - [anon_sym_LBRACK] = ACTIONS(284), - [anon_sym_POUND] = ACTIONS(286), - [anon_sym_POUND_QMARK] = ACTIONS(288), - [anon_sym_POUND_QMARK_AT] = ACTIONS(290), - [anon_sym_POUND_SQUOTE] = ACTIONS(292), - [anon_sym_POUND_POUND] = ACTIONS(294), - [anon_sym_POUND_EQ] = ACTIONS(296), - [anon_sym_AT] = ACTIONS(298), - [anon_sym_SQUOTE] = ACTIONS(300), - [anon_sym_BQUOTE] = ACTIONS(302), - [anon_sym_TILDE_AT] = ACTIONS(304), - [anon_sym_TILDE] = ACTIONS(306), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_POUND] = ACTIONS(704), + [anon_sym_POUND_QMARK] = ACTIONS(33), + [anon_sym_POUND_QMARK_AT] = ACTIONS(35), + [anon_sym_POUND_SQUOTE] = ACTIONS(706), + [anon_sym_POUND_POUND] = ACTIONS(708), + [anon_sym_POUND_EQ] = ACTIONS(41), + [anon_sym_AT] = ACTIONS(710), + [anon_sym_SQUOTE] = ACTIONS(712), + [anon_sym_BQUOTE] = ACTIONS(714), + [anon_sym_TILDE_AT] = ACTIONS(716), + [anon_sym_TILDE] = ACTIONS(718), }, - [110] = { - [sym__gap] = STATE(63), - [sym_dis_expr] = STATE(63), - [sym__form] = STATE(239), - [sym_kwd_lit] = STATE(239), - [sym_str_lit] = STATE(239), - [sym_sym_lit] = STATE(239), + [STATE(106)] = { + [sym__gap] = STATE(301), + [sym_dis_expr] = STATE(301), + [sym__form] = STATE(249), + [sym_kwd_lit] = STATE(249), + [sym_str_lit] = STATE(249), + [sym_sym_lit] = STATE(249), [sym__metadata_lit] = STATE(424), - [sym_meta_lit] = STATE(314), - [sym_old_meta_lit] = STATE(313), - [sym_list_lit] = STATE(239), - [sym__bare_list_lit] = STATE(218), - [sym_map_lit] = STATE(239), - [sym__bare_map_lit] = STATE(219), - [sym_vec_lit] = STATE(239), - [sym__bare_vec_lit] = STATE(226), - [sym_set_lit] = STATE(239), - [sym__bare_set_lit] = STATE(227), - [sym_anon_fn_lit] = STATE(239), - [sym_regex_lit] = STATE(239), - [sym_read_cond_lit] = STATE(239), - [sym_splicing_read_cond_lit] = STATE(239), - [sym_ns_map_lit] = STATE(239), - [sym_var_quoting_lit] = STATE(239), - [sym_sym_val_lit] = STATE(239), - [sym_evaling_lit] = STATE(239), - [sym_tagged_or_ctor_lit] = STATE(239), - [sym_derefing_lit] = STATE(239), - [sym_quoting_lit] = STATE(239), - [sym_syn_quoting_lit] = STATE(239), - [sym_unquote_splicing_lit] = STATE(239), - [sym_unquoting_lit] = STATE(239), - [aux_sym_dis_expr_repeat1] = STATE(63), - [aux_sym_sym_lit_repeat1] = STATE(305), - [sym__ws] = ACTIONS(680), - [sym_comment] = ACTIONS(680), + [sym_meta_lit] = STATE(312), + [sym_old_meta_lit] = STATE(315), + [sym_list_lit] = STATE(249), + [sym__bare_list_lit] = STATE(299), + [sym_map_lit] = STATE(249), + [sym__bare_map_lit] = STATE(214), + [sym_vec_lit] = STATE(249), + [sym__bare_vec_lit] = STATE(217), + [sym_set_lit] = STATE(249), + [sym__bare_set_lit] = STATE(219), + [sym_anon_fn_lit] = STATE(249), + [sym_regex_lit] = STATE(249), + [sym_read_cond_lit] = STATE(249), + [sym_splicing_read_cond_lit] = STATE(249), + [sym_ns_map_lit] = STATE(249), + [sym_var_quoting_lit] = STATE(249), + [sym_sym_val_lit] = STATE(249), + [sym_evaling_lit] = STATE(249), + [sym_tagged_or_ctor_lit] = STATE(249), + [sym_derefing_lit] = STATE(249), + [sym_quoting_lit] = STATE(249), + [sym_syn_quoting_lit] = STATE(249), + [sym_unquote_splicing_lit] = STATE(249), + [sym_unquoting_lit] = STATE(249), + [aux_sym_dis_expr_repeat1] = STATE(301), + [aux_sym_sym_lit_repeat1] = STATE(303), + [sym__ws] = ACTIONS(320), + [sym_comment] = ACTIONS(320), [anon_sym_POUND_] = ACTIONS(7), - [sym_num_lit] = ACTIONS(682), + [sym_num_lit] = ACTIONS(330), [anon_sym_SLASH] = ACTIONS(9), - [anon_sym_COLON] = ACTIONS(11), - [anon_sym_COLON_COLON] = ACTIONS(13), + [anon_sym_COLON] = ACTIONS(698), + [anon_sym_COLON_COLON] = ACTIONS(700), [aux_sym_str_lit_token1] = ACTIONS(15), - [sym_char_lit] = ACTIONS(682), - [sym_nil_lit] = ACTIONS(684), - [sym_bool_lit] = ACTIONS(684), + [sym_char_lit] = ACTIONS(330), + [sym_nil_lit] = ACTIONS(332), + [sym_bool_lit] = ACTIONS(332), [aux_sym__sym_qualified_token1] = ACTIONS(19), [anon_sym_CARET] = ACTIONS(21), [anon_sym_POUND_CARET] = ACTIONS(23), [anon_sym_LPAREN] = ACTIONS(25), [anon_sym_LBRACE] = ACTIONS(27), [anon_sym_LBRACK] = ACTIONS(29), - [anon_sym_POUND] = ACTIONS(31), + [anon_sym_POUND] = ACTIONS(704), [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_SQUOTE] = ACTIONS(706), + [anon_sym_POUND_POUND] = ACTIONS(708), [anon_sym_POUND_EQ] = ACTIONS(41), - [anon_sym_AT] = ACTIONS(43), - [anon_sym_SQUOTE] = ACTIONS(45), - [anon_sym_BQUOTE] = ACTIONS(47), - [anon_sym_TILDE_AT] = ACTIONS(49), - [anon_sym_TILDE] = ACTIONS(51), + [anon_sym_AT] = ACTIONS(710), + [anon_sym_SQUOTE] = ACTIONS(712), + [anon_sym_BQUOTE] = ACTIONS(714), + [anon_sym_TILDE_AT] = ACTIONS(716), + [anon_sym_TILDE] = ACTIONS(718), }, - [111] = { - [sym__gap] = STATE(100), - [sym_dis_expr] = STATE(100), - [sym__form] = STATE(370), - [sym_kwd_lit] = STATE(370), - [sym_str_lit] = STATE(370), - [sym_sym_lit] = STATE(370), + [STATE(107)] = { + [sym__gap] = STATE(301), + [sym_dis_expr] = STATE(301), + [sym__form] = STATE(250), + [sym_kwd_lit] = STATE(250), + [sym_str_lit] = STATE(250), + [sym_sym_lit] = STATE(250), [sym__metadata_lit] = STATE(424), - [sym_meta_lit] = STATE(314), - [sym_old_meta_lit] = STATE(313), - [sym_list_lit] = STATE(370), - [sym__bare_list_lit] = STATE(392), - [sym_map_lit] = STATE(370), - [sym__bare_map_lit] = STATE(403), - [sym_vec_lit] = STATE(370), - [sym__bare_vec_lit] = STATE(423), - [sym_set_lit] = STATE(370), - [sym__bare_set_lit] = STATE(374), - [sym_anon_fn_lit] = STATE(370), - [sym_regex_lit] = STATE(370), - [sym_read_cond_lit] = STATE(370), - [sym_splicing_read_cond_lit] = STATE(370), - [sym_ns_map_lit] = STATE(370), - [sym_var_quoting_lit] = STATE(370), - [sym_sym_val_lit] = STATE(370), - [sym_evaling_lit] = STATE(370), - [sym_tagged_or_ctor_lit] = STATE(370), - [sym_derefing_lit] = STATE(370), - [sym_quoting_lit] = STATE(370), - [sym_syn_quoting_lit] = STATE(370), - [sym_unquote_splicing_lit] = STATE(370), - [sym_unquoting_lit] = STATE(370), - [aux_sym_dis_expr_repeat1] = STATE(100), - [aux_sym_sym_lit_repeat1] = STATE(304), - [sym__ws] = ACTIONS(686), - [sym_comment] = ACTIONS(686), + [sym_meta_lit] = STATE(312), + [sym_old_meta_lit] = STATE(315), + [sym_list_lit] = STATE(250), + [sym__bare_list_lit] = STATE(299), + [sym_map_lit] = STATE(250), + [sym__bare_map_lit] = STATE(214), + [sym_vec_lit] = STATE(250), + [sym__bare_vec_lit] = STATE(217), + [sym_set_lit] = STATE(250), + [sym__bare_set_lit] = STATE(219), + [sym_anon_fn_lit] = STATE(250), + [sym_regex_lit] = STATE(250), + [sym_read_cond_lit] = STATE(250), + [sym_splicing_read_cond_lit] = STATE(250), + [sym_ns_map_lit] = STATE(250), + [sym_var_quoting_lit] = STATE(250), + [sym_sym_val_lit] = STATE(250), + [sym_evaling_lit] = STATE(250), + [sym_tagged_or_ctor_lit] = STATE(250), + [sym_derefing_lit] = STATE(250), + [sym_quoting_lit] = STATE(250), + [sym_syn_quoting_lit] = STATE(250), + [sym_unquote_splicing_lit] = STATE(250), + [sym_unquoting_lit] = STATE(250), + [aux_sym_dis_expr_repeat1] = STATE(301), + [aux_sym_sym_lit_repeat1] = STATE(303), + [sym__ws] = ACTIONS(320), + [sym_comment] = ACTIONS(320), [anon_sym_POUND_] = ACTIONS(7), - [sym_num_lit] = ACTIONS(510), - [anon_sym_SLASH] = ACTIONS(268), - [anon_sym_COLON] = ACTIONS(270), - [anon_sym_COLON_COLON] = ACTIONS(272), - [aux_sym_str_lit_token1] = ACTIONS(274), - [sym_char_lit] = ACTIONS(510), - [sym_nil_lit] = ACTIONS(512), - [sym_bool_lit] = ACTIONS(512), - [aux_sym__sym_qualified_token1] = ACTIONS(278), + [sym_num_lit] = ACTIONS(334), + [anon_sym_SLASH] = ACTIONS(9), + [anon_sym_COLON] = ACTIONS(698), + [anon_sym_COLON_COLON] = ACTIONS(700), + [aux_sym_str_lit_token1] = ACTIONS(15), + [sym_char_lit] = ACTIONS(334), + [sym_nil_lit] = ACTIONS(336), + [sym_bool_lit] = ACTIONS(336), + [aux_sym__sym_qualified_token1] = ACTIONS(19), [anon_sym_CARET] = ACTIONS(21), [anon_sym_POUND_CARET] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(280), - [anon_sym_LBRACE] = ACTIONS(282), - [anon_sym_LBRACK] = ACTIONS(284), - [anon_sym_POUND] = ACTIONS(286), - [anon_sym_POUND_QMARK] = ACTIONS(288), - [anon_sym_POUND_QMARK_AT] = ACTIONS(290), - [anon_sym_POUND_SQUOTE] = ACTIONS(292), - [anon_sym_POUND_POUND] = ACTIONS(294), - [anon_sym_POUND_EQ] = ACTIONS(296), - [anon_sym_AT] = ACTIONS(298), - [anon_sym_SQUOTE] = ACTIONS(300), - [anon_sym_BQUOTE] = ACTIONS(302), - [anon_sym_TILDE_AT] = ACTIONS(304), - [anon_sym_TILDE] = ACTIONS(306), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_POUND] = ACTIONS(704), + [anon_sym_POUND_QMARK] = ACTIONS(33), + [anon_sym_POUND_QMARK_AT] = ACTIONS(35), + [anon_sym_POUND_SQUOTE] = ACTIONS(706), + [anon_sym_POUND_POUND] = ACTIONS(708), + [anon_sym_POUND_EQ] = ACTIONS(41), + [anon_sym_AT] = ACTIONS(710), + [anon_sym_SQUOTE] = ACTIONS(712), + [anon_sym_BQUOTE] = ACTIONS(714), + [anon_sym_TILDE_AT] = ACTIONS(716), + [anon_sym_TILDE] = ACTIONS(718), }, - [112] = { - [sym__gap] = STATE(101), - [sym_dis_expr] = STATE(101), - [sym__form] = STATE(367), - [sym_kwd_lit] = STATE(367), - [sym_str_lit] = STATE(367), - [sym_sym_lit] = STATE(367), + [STATE(108)] = { + [sym__gap] = STATE(301), + [sym_dis_expr] = STATE(301), + [sym__form] = STATE(251), + [sym_kwd_lit] = STATE(251), + [sym_str_lit] = STATE(251), + [sym_sym_lit] = STATE(251), [sym__metadata_lit] = STATE(424), - [sym_meta_lit] = STATE(314), - [sym_old_meta_lit] = STATE(313), - [sym_list_lit] = STATE(367), - [sym__bare_list_lit] = STATE(392), - [sym_map_lit] = STATE(367), - [sym__bare_map_lit] = STATE(403), - [sym_vec_lit] = STATE(367), - [sym__bare_vec_lit] = STATE(423), - [sym_set_lit] = STATE(367), - [sym__bare_set_lit] = STATE(374), - [sym_anon_fn_lit] = STATE(367), - [sym_regex_lit] = STATE(367), - [sym_read_cond_lit] = STATE(367), - [sym_splicing_read_cond_lit] = STATE(367), - [sym_ns_map_lit] = STATE(367), - [sym_var_quoting_lit] = STATE(367), - [sym_sym_val_lit] = STATE(367), - [sym_evaling_lit] = STATE(367), - [sym_tagged_or_ctor_lit] = STATE(367), - [sym_derefing_lit] = STATE(367), - [sym_quoting_lit] = STATE(367), - [sym_syn_quoting_lit] = STATE(367), - [sym_unquote_splicing_lit] = STATE(367), - [sym_unquoting_lit] = STATE(367), - [aux_sym_dis_expr_repeat1] = STATE(101), - [aux_sym_sym_lit_repeat1] = STATE(304), - [sym__ws] = ACTIONS(688), - [sym_comment] = ACTIONS(688), + [sym_meta_lit] = STATE(312), + [sym_old_meta_lit] = STATE(315), + [sym_list_lit] = STATE(251), + [sym__bare_list_lit] = STATE(299), + [sym_map_lit] = STATE(251), + [sym__bare_map_lit] = STATE(214), + [sym_vec_lit] = STATE(251), + [sym__bare_vec_lit] = STATE(217), + [sym_set_lit] = STATE(251), + [sym__bare_set_lit] = STATE(219), + [sym_anon_fn_lit] = STATE(251), + [sym_regex_lit] = STATE(251), + [sym_read_cond_lit] = STATE(251), + [sym_splicing_read_cond_lit] = STATE(251), + [sym_ns_map_lit] = STATE(251), + [sym_var_quoting_lit] = STATE(251), + [sym_sym_val_lit] = STATE(251), + [sym_evaling_lit] = STATE(251), + [sym_tagged_or_ctor_lit] = STATE(251), + [sym_derefing_lit] = STATE(251), + [sym_quoting_lit] = STATE(251), + [sym_syn_quoting_lit] = STATE(251), + [sym_unquote_splicing_lit] = STATE(251), + [sym_unquoting_lit] = STATE(251), + [aux_sym_dis_expr_repeat1] = STATE(301), + [aux_sym_sym_lit_repeat1] = STATE(303), + [sym__ws] = ACTIONS(320), + [sym_comment] = ACTIONS(320), [anon_sym_POUND_] = ACTIONS(7), - [sym_num_lit] = ACTIONS(516), - [anon_sym_SLASH] = ACTIONS(268), - [anon_sym_COLON] = ACTIONS(270), - [anon_sym_COLON_COLON] = ACTIONS(272), - [aux_sym_str_lit_token1] = ACTIONS(274), - [sym_char_lit] = ACTIONS(516), - [sym_nil_lit] = ACTIONS(518), - [sym_bool_lit] = ACTIONS(518), - [aux_sym__sym_qualified_token1] = ACTIONS(278), + [sym_num_lit] = ACTIONS(338), + [anon_sym_SLASH] = ACTIONS(9), + [anon_sym_COLON] = ACTIONS(698), + [anon_sym_COLON_COLON] = ACTIONS(700), + [aux_sym_str_lit_token1] = ACTIONS(15), + [sym_char_lit] = ACTIONS(338), + [sym_nil_lit] = ACTIONS(340), + [sym_bool_lit] = ACTIONS(340), + [aux_sym__sym_qualified_token1] = ACTIONS(19), [anon_sym_CARET] = ACTIONS(21), [anon_sym_POUND_CARET] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(280), - [anon_sym_LBRACE] = ACTIONS(282), - [anon_sym_LBRACK] = ACTIONS(284), - [anon_sym_POUND] = ACTIONS(286), - [anon_sym_POUND_QMARK] = ACTIONS(288), - [anon_sym_POUND_QMARK_AT] = ACTIONS(290), - [anon_sym_POUND_SQUOTE] = ACTIONS(292), - [anon_sym_POUND_POUND] = ACTIONS(294), - [anon_sym_POUND_EQ] = ACTIONS(296), - [anon_sym_AT] = ACTIONS(298), - [anon_sym_SQUOTE] = ACTIONS(300), - [anon_sym_BQUOTE] = ACTIONS(302), - [anon_sym_TILDE_AT] = ACTIONS(304), - [anon_sym_TILDE] = ACTIONS(306), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_POUND] = ACTIONS(704), + [anon_sym_POUND_QMARK] = ACTIONS(33), + [anon_sym_POUND_QMARK_AT] = ACTIONS(35), + [anon_sym_POUND_SQUOTE] = ACTIONS(706), + [anon_sym_POUND_POUND] = ACTIONS(708), + [anon_sym_POUND_EQ] = ACTIONS(41), + [anon_sym_AT] = ACTIONS(710), + [anon_sym_SQUOTE] = ACTIONS(712), + [anon_sym_BQUOTE] = ACTIONS(714), + [anon_sym_TILDE_AT] = ACTIONS(716), + [anon_sym_TILDE] = ACTIONS(718), }, - [113] = { - [sym__gap] = STATE(102), - [sym_dis_expr] = STATE(102), - [sym__form] = STATE(366), - [sym_kwd_lit] = STATE(366), - [sym_str_lit] = STATE(366), - [sym_sym_lit] = STATE(366), + [STATE(109)] = { + [sym__gap] = STATE(301), + [sym_dis_expr] = STATE(301), + [sym__form] = STATE(252), + [sym_kwd_lit] = STATE(252), + [sym_str_lit] = STATE(252), + [sym_sym_lit] = STATE(252), [sym__metadata_lit] = STATE(424), - [sym_meta_lit] = STATE(314), - [sym_old_meta_lit] = STATE(313), - [sym_list_lit] = STATE(366), - [sym__bare_list_lit] = STATE(392), - [sym_map_lit] = STATE(366), - [sym__bare_map_lit] = STATE(403), - [sym_vec_lit] = STATE(366), - [sym__bare_vec_lit] = STATE(423), - [sym_set_lit] = STATE(366), - [sym__bare_set_lit] = STATE(374), - [sym_anon_fn_lit] = STATE(366), - [sym_regex_lit] = STATE(366), - [sym_read_cond_lit] = STATE(366), - [sym_splicing_read_cond_lit] = STATE(366), - [sym_ns_map_lit] = STATE(366), - [sym_var_quoting_lit] = STATE(366), - [sym_sym_val_lit] = STATE(366), - [sym_evaling_lit] = STATE(366), - [sym_tagged_or_ctor_lit] = STATE(366), - [sym_derefing_lit] = STATE(366), - [sym_quoting_lit] = STATE(366), - [sym_syn_quoting_lit] = STATE(366), - [sym_unquote_splicing_lit] = STATE(366), - [sym_unquoting_lit] = STATE(366), - [aux_sym_dis_expr_repeat1] = STATE(102), - [aux_sym_sym_lit_repeat1] = STATE(304), - [sym__ws] = ACTIONS(690), - [sym_comment] = ACTIONS(690), - [anon_sym_POUND_] = ACTIONS(7), - [sym_num_lit] = ACTIONS(522), - [anon_sym_SLASH] = ACTIONS(268), - [anon_sym_COLON] = ACTIONS(270), - [anon_sym_COLON_COLON] = ACTIONS(272), - [aux_sym_str_lit_token1] = ACTIONS(274), - [sym_char_lit] = ACTIONS(522), - [sym_nil_lit] = ACTIONS(524), - [sym_bool_lit] = ACTIONS(524), - [aux_sym__sym_qualified_token1] = ACTIONS(278), + [sym_meta_lit] = STATE(312), + [sym_old_meta_lit] = STATE(315), + [sym_list_lit] = STATE(252), + [sym__bare_list_lit] = STATE(299), + [sym_map_lit] = STATE(252), + [sym__bare_map_lit] = STATE(214), + [sym_vec_lit] = STATE(252), + [sym__bare_vec_lit] = STATE(217), + [sym_set_lit] = STATE(252), + [sym__bare_set_lit] = STATE(219), + [sym_anon_fn_lit] = STATE(252), + [sym_regex_lit] = STATE(252), + [sym_read_cond_lit] = STATE(252), + [sym_splicing_read_cond_lit] = STATE(252), + [sym_ns_map_lit] = STATE(252), + [sym_var_quoting_lit] = STATE(252), + [sym_sym_val_lit] = STATE(252), + [sym_evaling_lit] = STATE(252), + [sym_tagged_or_ctor_lit] = STATE(252), + [sym_derefing_lit] = STATE(252), + [sym_quoting_lit] = STATE(252), + [sym_syn_quoting_lit] = STATE(252), + [sym_unquote_splicing_lit] = STATE(252), + [sym_unquoting_lit] = STATE(252), + [aux_sym_dis_expr_repeat1] = STATE(301), + [aux_sym_sym_lit_repeat1] = STATE(303), + [sym__ws] = ACTIONS(320), + [sym_comment] = ACTIONS(320), + [anon_sym_POUND_] = ACTIONS(7), + [sym_num_lit] = ACTIONS(342), + [anon_sym_SLASH] = ACTIONS(9), + [anon_sym_COLON] = ACTIONS(698), + [anon_sym_COLON_COLON] = ACTIONS(700), + [aux_sym_str_lit_token1] = ACTIONS(15), + [sym_char_lit] = ACTIONS(342), + [sym_nil_lit] = ACTIONS(344), + [sym_bool_lit] = ACTIONS(344), + [aux_sym__sym_qualified_token1] = ACTIONS(19), [anon_sym_CARET] = ACTIONS(21), [anon_sym_POUND_CARET] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(280), - [anon_sym_LBRACE] = ACTIONS(282), - [anon_sym_LBRACK] = ACTIONS(284), - [anon_sym_POUND] = ACTIONS(286), - [anon_sym_POUND_QMARK] = ACTIONS(288), - [anon_sym_POUND_QMARK_AT] = ACTIONS(290), - [anon_sym_POUND_SQUOTE] = ACTIONS(292), - [anon_sym_POUND_POUND] = ACTIONS(294), - [anon_sym_POUND_EQ] = ACTIONS(296), - [anon_sym_AT] = ACTIONS(298), - [anon_sym_SQUOTE] = ACTIONS(300), - [anon_sym_BQUOTE] = ACTIONS(302), - [anon_sym_TILDE_AT] = ACTIONS(304), - [anon_sym_TILDE] = ACTIONS(306), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_POUND] = ACTIONS(704), + [anon_sym_POUND_QMARK] = ACTIONS(33), + [anon_sym_POUND_QMARK_AT] = ACTIONS(35), + [anon_sym_POUND_SQUOTE] = ACTIONS(706), + [anon_sym_POUND_POUND] = ACTIONS(708), + [anon_sym_POUND_EQ] = ACTIONS(41), + [anon_sym_AT] = ACTIONS(710), + [anon_sym_SQUOTE] = ACTIONS(712), + [anon_sym_BQUOTE] = ACTIONS(714), + [anon_sym_TILDE_AT] = ACTIONS(716), + [anon_sym_TILDE] = ACTIONS(718), }, - [114] = { + [STATE(110)] = { [sym__gap] = STATE(301), [sym_dis_expr] = STATE(301), - [sym__form] = STATE(297), - [sym_kwd_lit] = STATE(297), - [sym_str_lit] = STATE(297), - [sym_sym_lit] = STATE(297), + [sym__form] = STATE(253), + [sym_kwd_lit] = STATE(253), + [sym_str_lit] = STATE(253), + [sym_sym_lit] = STATE(253), [sym__metadata_lit] = STATE(424), - [sym_meta_lit] = STATE(314), - [sym_old_meta_lit] = STATE(313), - [sym_list_lit] = STATE(297), - [sym__bare_list_lit] = STATE(218), - [sym_map_lit] = STATE(297), - [sym__bare_map_lit] = STATE(219), - [sym_vec_lit] = STATE(297), - [sym__bare_vec_lit] = STATE(226), - [sym_set_lit] = STATE(297), - [sym__bare_set_lit] = STATE(227), - [sym_anon_fn_lit] = STATE(297), - [sym_regex_lit] = STATE(297), - [sym_read_cond_lit] = STATE(297), - [sym_splicing_read_cond_lit] = STATE(297), - [sym_ns_map_lit] = STATE(297), - [sym_var_quoting_lit] = STATE(297), - [sym_sym_val_lit] = STATE(297), - [sym_evaling_lit] = STATE(297), - [sym_tagged_or_ctor_lit] = STATE(297), - [sym_derefing_lit] = STATE(297), - [sym_quoting_lit] = STATE(297), - [sym_syn_quoting_lit] = STATE(297), - [sym_unquote_splicing_lit] = STATE(297), - [sym_unquoting_lit] = STATE(297), + [sym_meta_lit] = STATE(312), + [sym_old_meta_lit] = STATE(315), + [sym_list_lit] = STATE(253), + [sym__bare_list_lit] = STATE(299), + [sym_map_lit] = STATE(253), + [sym__bare_map_lit] = STATE(214), + [sym_vec_lit] = STATE(253), + [sym__bare_vec_lit] = STATE(217), + [sym_set_lit] = STATE(253), + [sym__bare_set_lit] = STATE(219), + [sym_anon_fn_lit] = STATE(253), + [sym_regex_lit] = STATE(253), + [sym_read_cond_lit] = STATE(253), + [sym_splicing_read_cond_lit] = STATE(253), + [sym_ns_map_lit] = STATE(253), + [sym_var_quoting_lit] = STATE(253), + [sym_sym_val_lit] = STATE(253), + [sym_evaling_lit] = STATE(253), + [sym_tagged_or_ctor_lit] = STATE(253), + [sym_derefing_lit] = STATE(253), + [sym_quoting_lit] = STATE(253), + [sym_syn_quoting_lit] = STATE(253), + [sym_unquote_splicing_lit] = STATE(253), + [sym_unquoting_lit] = STATE(253), [aux_sym_dis_expr_repeat1] = STATE(301), - [aux_sym_sym_lit_repeat1] = STATE(305), - [sym__ws] = ACTIONS(264), - [sym_comment] = ACTIONS(264), + [aux_sym_sym_lit_repeat1] = STATE(303), + [sym__ws] = ACTIONS(320), + [sym_comment] = ACTIONS(320), [anon_sym_POUND_] = ACTIONS(7), - [sym_num_lit] = ACTIONS(692), + [sym_num_lit] = ACTIONS(346), [anon_sym_SLASH] = ACTIONS(9), - [anon_sym_COLON] = ACTIONS(11), - [anon_sym_COLON_COLON] = ACTIONS(13), + [anon_sym_COLON] = ACTIONS(698), + [anon_sym_COLON_COLON] = ACTIONS(700), [aux_sym_str_lit_token1] = ACTIONS(15), - [sym_char_lit] = ACTIONS(692), - [sym_nil_lit] = ACTIONS(694), - [sym_bool_lit] = ACTIONS(694), + [sym_char_lit] = ACTIONS(346), + [sym_nil_lit] = ACTIONS(348), + [sym_bool_lit] = ACTIONS(348), [aux_sym__sym_qualified_token1] = ACTIONS(19), [anon_sym_CARET] = ACTIONS(21), [anon_sym_POUND_CARET] = ACTIONS(23), [anon_sym_LPAREN] = ACTIONS(25), [anon_sym_LBRACE] = ACTIONS(27), [anon_sym_LBRACK] = ACTIONS(29), - [anon_sym_POUND] = ACTIONS(31), + [anon_sym_POUND] = ACTIONS(704), [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_SQUOTE] = ACTIONS(706), + [anon_sym_POUND_POUND] = ACTIONS(708), [anon_sym_POUND_EQ] = ACTIONS(41), - [anon_sym_AT] = ACTIONS(43), - [anon_sym_SQUOTE] = ACTIONS(45), - [anon_sym_BQUOTE] = ACTIONS(47), - [anon_sym_TILDE_AT] = ACTIONS(49), - [anon_sym_TILDE] = ACTIONS(51), - }, - [115] = { - [sym__gap] = STATE(158), - [sym_dis_expr] = STATE(158), - [sym__form] = STATE(298), - [sym_kwd_lit] = STATE(298), - [sym_str_lit] = STATE(298), - [sym_sym_lit] = STATE(298), + [anon_sym_AT] = ACTIONS(710), + [anon_sym_SQUOTE] = ACTIONS(712), + [anon_sym_BQUOTE] = ACTIONS(714), + [anon_sym_TILDE_AT] = ACTIONS(716), + [anon_sym_TILDE] = ACTIONS(718), + }, + [STATE(111)] = { + [sym__gap] = STATE(121), + [sym_dis_expr] = STATE(121), + [sym__form] = STATE(300), + [sym_kwd_lit] = STATE(300), + [sym_str_lit] = STATE(300), + [sym_sym_lit] = STATE(300), [sym__metadata_lit] = STATE(424), - [sym_meta_lit] = STATE(314), - [sym_old_meta_lit] = STATE(313), - [sym_list_lit] = STATE(298), - [sym__bare_list_lit] = STATE(218), - [sym_map_lit] = STATE(298), - [sym__bare_map_lit] = STATE(219), - [sym_vec_lit] = STATE(298), - [sym__bare_vec_lit] = STATE(226), - [sym_set_lit] = STATE(298), - [sym__bare_set_lit] = STATE(227), - [sym_anon_fn_lit] = STATE(298), - [sym_regex_lit] = STATE(298), - [sym_read_cond_lit] = STATE(298), - [sym_splicing_read_cond_lit] = STATE(298), - [sym_ns_map_lit] = STATE(298), - [sym_var_quoting_lit] = STATE(298), - [sym_sym_val_lit] = STATE(298), - [sym_evaling_lit] = STATE(298), - [sym_tagged_or_ctor_lit] = STATE(298), - [sym_derefing_lit] = STATE(298), - [sym_quoting_lit] = STATE(298), - [sym_syn_quoting_lit] = STATE(298), - [sym_unquote_splicing_lit] = STATE(298), - [sym_unquoting_lit] = STATE(298), - [aux_sym_dis_expr_repeat1] = STATE(158), - [aux_sym_sym_lit_repeat1] = STATE(305), - [sym__ws] = ACTIONS(696), - [sym_comment] = ACTIONS(696), + [sym_meta_lit] = STATE(312), + [sym_old_meta_lit] = STATE(315), + [sym_list_lit] = STATE(300), + [sym__bare_list_lit] = STATE(299), + [sym_map_lit] = STATE(300), + [sym__bare_map_lit] = STATE(214), + [sym_vec_lit] = STATE(300), + [sym__bare_vec_lit] = STATE(217), + [sym_set_lit] = STATE(300), + [sym__bare_set_lit] = STATE(219), + [sym_anon_fn_lit] = STATE(300), + [sym_regex_lit] = STATE(300), + [sym_read_cond_lit] = STATE(300), + [sym_splicing_read_cond_lit] = STATE(300), + [sym_ns_map_lit] = STATE(300), + [sym_var_quoting_lit] = STATE(300), + [sym_sym_val_lit] = STATE(300), + [sym_evaling_lit] = STATE(300), + [sym_tagged_or_ctor_lit] = STATE(300), + [sym_derefing_lit] = STATE(300), + [sym_quoting_lit] = STATE(300), + [sym_syn_quoting_lit] = STATE(300), + [sym_unquote_splicing_lit] = STATE(300), + [sym_unquoting_lit] = STATE(300), + [aux_sym_dis_expr_repeat1] = STATE(121), + [aux_sym_sym_lit_repeat1] = STATE(303), + [sym__ws] = ACTIONS(752), + [sym_comment] = ACTIONS(752), [anon_sym_POUND_] = ACTIONS(7), - [sym_num_lit] = ACTIONS(698), + [sym_num_lit] = ACTIONS(358), [anon_sym_SLASH] = ACTIONS(9), - [anon_sym_COLON] = ACTIONS(11), - [anon_sym_COLON_COLON] = ACTIONS(13), + [anon_sym_COLON] = ACTIONS(698), + [anon_sym_COLON_COLON] = ACTIONS(700), [aux_sym_str_lit_token1] = ACTIONS(15), - [sym_char_lit] = ACTIONS(698), - [sym_nil_lit] = ACTIONS(700), - [sym_bool_lit] = ACTIONS(700), + [sym_char_lit] = ACTIONS(358), + [sym_nil_lit] = ACTIONS(360), + [sym_bool_lit] = ACTIONS(360), [aux_sym__sym_qualified_token1] = ACTIONS(19), [anon_sym_CARET] = ACTIONS(21), [anon_sym_POUND_CARET] = ACTIONS(23), [anon_sym_LPAREN] = ACTIONS(25), [anon_sym_LBRACE] = ACTIONS(27), [anon_sym_LBRACK] = ACTIONS(29), - [anon_sym_POUND] = ACTIONS(31), + [anon_sym_POUND] = ACTIONS(704), [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_SQUOTE] = ACTIONS(706), + [anon_sym_POUND_POUND] = ACTIONS(708), [anon_sym_POUND_EQ] = ACTIONS(41), - [anon_sym_AT] = ACTIONS(43), - [anon_sym_SQUOTE] = ACTIONS(45), - [anon_sym_BQUOTE] = ACTIONS(47), - [anon_sym_TILDE_AT] = ACTIONS(49), - [anon_sym_TILDE] = ACTIONS(51), + [anon_sym_AT] = ACTIONS(710), + [anon_sym_SQUOTE] = ACTIONS(712), + [anon_sym_BQUOTE] = ACTIONS(714), + [anon_sym_TILDE_AT] = ACTIONS(716), + [anon_sym_TILDE] = ACTIONS(718), + }, + [STATE(112)] = { + [sym__gap] = STATE(122), + [sym_dis_expr] = STATE(122), + [sym__form] = STATE(261), + [sym_kwd_lit] = STATE(261), + [sym_str_lit] = STATE(261), + [sym_sym_lit] = STATE(261), + [sym__metadata_lit] = STATE(424), + [sym_meta_lit] = STATE(312), + [sym_old_meta_lit] = STATE(315), + [sym_list_lit] = STATE(261), + [sym__bare_list_lit] = STATE(299), + [sym_map_lit] = STATE(261), + [sym__bare_map_lit] = STATE(214), + [sym_vec_lit] = STATE(261), + [sym__bare_vec_lit] = STATE(217), + [sym_set_lit] = STATE(261), + [sym__bare_set_lit] = STATE(219), + [sym_anon_fn_lit] = STATE(261), + [sym_regex_lit] = STATE(261), + [sym_read_cond_lit] = STATE(261), + [sym_splicing_read_cond_lit] = STATE(261), + [sym_ns_map_lit] = STATE(261), + [sym_var_quoting_lit] = STATE(261), + [sym_sym_val_lit] = STATE(261), + [sym_evaling_lit] = STATE(261), + [sym_tagged_or_ctor_lit] = STATE(261), + [sym_derefing_lit] = STATE(261), + [sym_quoting_lit] = STATE(261), + [sym_syn_quoting_lit] = STATE(261), + [sym_unquote_splicing_lit] = STATE(261), + [sym_unquoting_lit] = STATE(261), + [aux_sym_dis_expr_repeat1] = STATE(122), + [aux_sym_sym_lit_repeat1] = STATE(303), + [sym__ws] = ACTIONS(754), + [sym_comment] = ACTIONS(754), + [anon_sym_POUND_] = ACTIONS(7), + [sym_num_lit] = ACTIONS(364), + [anon_sym_SLASH] = ACTIONS(9), + [anon_sym_COLON] = ACTIONS(698), + [anon_sym_COLON_COLON] = ACTIONS(700), + [aux_sym_str_lit_token1] = ACTIONS(15), + [sym_char_lit] = ACTIONS(364), + [sym_nil_lit] = ACTIONS(366), + [sym_bool_lit] = ACTIONS(366), + [aux_sym__sym_qualified_token1] = ACTIONS(19), + [anon_sym_CARET] = ACTIONS(21), + [anon_sym_POUND_CARET] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_POUND] = ACTIONS(704), + [anon_sym_POUND_QMARK] = ACTIONS(33), + [anon_sym_POUND_QMARK_AT] = ACTIONS(35), + [anon_sym_POUND_SQUOTE] = ACTIONS(706), + [anon_sym_POUND_POUND] = ACTIONS(708), + [anon_sym_POUND_EQ] = ACTIONS(41), + [anon_sym_AT] = ACTIONS(710), + [anon_sym_SQUOTE] = ACTIONS(712), + [anon_sym_BQUOTE] = ACTIONS(714), + [anon_sym_TILDE_AT] = ACTIONS(716), + [anon_sym_TILDE] = ACTIONS(718), + }, + [STATE(113)] = { + [sym__gap] = STATE(123), + [sym_dis_expr] = STATE(123), + [sym__form] = STATE(262), + [sym_kwd_lit] = STATE(262), + [sym_str_lit] = STATE(262), + [sym_sym_lit] = STATE(262), + [sym__metadata_lit] = STATE(424), + [sym_meta_lit] = STATE(312), + [sym_old_meta_lit] = STATE(315), + [sym_list_lit] = STATE(262), + [sym__bare_list_lit] = STATE(299), + [sym_map_lit] = STATE(262), + [sym__bare_map_lit] = STATE(214), + [sym_vec_lit] = STATE(262), + [sym__bare_vec_lit] = STATE(217), + [sym_set_lit] = STATE(262), + [sym__bare_set_lit] = STATE(219), + [sym_anon_fn_lit] = STATE(262), + [sym_regex_lit] = STATE(262), + [sym_read_cond_lit] = STATE(262), + [sym_splicing_read_cond_lit] = STATE(262), + [sym_ns_map_lit] = STATE(262), + [sym_var_quoting_lit] = STATE(262), + [sym_sym_val_lit] = STATE(262), + [sym_evaling_lit] = STATE(262), + [sym_tagged_or_ctor_lit] = STATE(262), + [sym_derefing_lit] = STATE(262), + [sym_quoting_lit] = STATE(262), + [sym_syn_quoting_lit] = STATE(262), + [sym_unquote_splicing_lit] = STATE(262), + [sym_unquoting_lit] = STATE(262), + [aux_sym_dis_expr_repeat1] = STATE(123), + [aux_sym_sym_lit_repeat1] = STATE(303), + [sym__ws] = ACTIONS(756), + [sym_comment] = ACTIONS(756), + [anon_sym_POUND_] = ACTIONS(7), + [sym_num_lit] = ACTIONS(370), + [anon_sym_SLASH] = ACTIONS(9), + [anon_sym_COLON] = ACTIONS(698), + [anon_sym_COLON_COLON] = ACTIONS(700), + [aux_sym_str_lit_token1] = ACTIONS(15), + [sym_char_lit] = ACTIONS(370), + [sym_nil_lit] = ACTIONS(372), + [sym_bool_lit] = ACTIONS(372), + [aux_sym__sym_qualified_token1] = ACTIONS(19), + [anon_sym_CARET] = ACTIONS(21), + [anon_sym_POUND_CARET] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_POUND] = ACTIONS(704), + [anon_sym_POUND_QMARK] = ACTIONS(33), + [anon_sym_POUND_QMARK_AT] = ACTIONS(35), + [anon_sym_POUND_SQUOTE] = ACTIONS(706), + [anon_sym_POUND_POUND] = ACTIONS(708), + [anon_sym_POUND_EQ] = ACTIONS(41), + [anon_sym_AT] = ACTIONS(710), + [anon_sym_SQUOTE] = ACTIONS(712), + [anon_sym_BQUOTE] = ACTIONS(714), + [anon_sym_TILDE_AT] = ACTIONS(716), + [anon_sym_TILDE] = ACTIONS(718), }, - [116] = { - [sym__gap] = STATE(103), - [sym_dis_expr] = STATE(103), - [sym__form] = STATE(355), - [sym_kwd_lit] = STATE(355), - [sym_str_lit] = STATE(355), - [sym_sym_lit] = STATE(355), + [STATE(114)] = { + [sym__gap] = STATE(124), + [sym_dis_expr] = STATE(124), + [sym__form] = STATE(264), + [sym_kwd_lit] = STATE(264), + [sym_str_lit] = STATE(264), + [sym_sym_lit] = STATE(264), [sym__metadata_lit] = STATE(424), - [sym_meta_lit] = STATE(314), - [sym_old_meta_lit] = STATE(313), - [sym_list_lit] = STATE(355), - [sym__bare_list_lit] = STATE(392), - [sym_map_lit] = STATE(355), - [sym__bare_map_lit] = STATE(403), - [sym_vec_lit] = STATE(355), - [sym__bare_vec_lit] = STATE(423), - [sym_set_lit] = STATE(355), - [sym__bare_set_lit] = STATE(374), - [sym_anon_fn_lit] = STATE(355), - [sym_regex_lit] = STATE(355), - [sym_read_cond_lit] = STATE(355), - [sym_splicing_read_cond_lit] = STATE(355), - [sym_ns_map_lit] = STATE(355), - [sym_var_quoting_lit] = STATE(355), - [sym_sym_val_lit] = STATE(355), - [sym_evaling_lit] = STATE(355), - [sym_tagged_or_ctor_lit] = STATE(355), - [sym_derefing_lit] = STATE(355), - [sym_quoting_lit] = STATE(355), - [sym_syn_quoting_lit] = STATE(355), - [sym_unquote_splicing_lit] = STATE(355), - [sym_unquoting_lit] = STATE(355), - [aux_sym_dis_expr_repeat1] = STATE(103), - [aux_sym_sym_lit_repeat1] = STATE(304), - [sym__ws] = ACTIONS(702), - [sym_comment] = ACTIONS(702), + [sym_meta_lit] = STATE(312), + [sym_old_meta_lit] = STATE(315), + [sym_list_lit] = STATE(264), + [sym__bare_list_lit] = STATE(299), + [sym_map_lit] = STATE(264), + [sym__bare_map_lit] = STATE(214), + [sym_vec_lit] = STATE(264), + [sym__bare_vec_lit] = STATE(217), + [sym_set_lit] = STATE(264), + [sym__bare_set_lit] = STATE(219), + [sym_anon_fn_lit] = STATE(264), + [sym_regex_lit] = STATE(264), + [sym_read_cond_lit] = STATE(264), + [sym_splicing_read_cond_lit] = STATE(264), + [sym_ns_map_lit] = STATE(264), + [sym_var_quoting_lit] = STATE(264), + [sym_sym_val_lit] = STATE(264), + [sym_evaling_lit] = STATE(264), + [sym_tagged_or_ctor_lit] = STATE(264), + [sym_derefing_lit] = STATE(264), + [sym_quoting_lit] = STATE(264), + [sym_syn_quoting_lit] = STATE(264), + [sym_unquote_splicing_lit] = STATE(264), + [sym_unquoting_lit] = STATE(264), + [aux_sym_dis_expr_repeat1] = STATE(124), + [aux_sym_sym_lit_repeat1] = STATE(303), + [sym__ws] = ACTIONS(758), + [sym_comment] = ACTIONS(758), [anon_sym_POUND_] = ACTIONS(7), - [sym_num_lit] = ACTIONS(528), - [anon_sym_SLASH] = ACTIONS(268), - [anon_sym_COLON] = ACTIONS(270), - [anon_sym_COLON_COLON] = ACTIONS(272), - [aux_sym_str_lit_token1] = ACTIONS(274), - [sym_char_lit] = ACTIONS(528), - [sym_nil_lit] = ACTIONS(530), - [sym_bool_lit] = ACTIONS(530), - [aux_sym__sym_qualified_token1] = ACTIONS(278), + [sym_num_lit] = ACTIONS(376), + [anon_sym_SLASH] = ACTIONS(9), + [anon_sym_COLON] = ACTIONS(698), + [anon_sym_COLON_COLON] = ACTIONS(700), + [aux_sym_str_lit_token1] = ACTIONS(15), + [sym_char_lit] = ACTIONS(376), + [sym_nil_lit] = ACTIONS(378), + [sym_bool_lit] = ACTIONS(378), + [aux_sym__sym_qualified_token1] = ACTIONS(19), [anon_sym_CARET] = ACTIONS(21), [anon_sym_POUND_CARET] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(280), - [anon_sym_LBRACE] = ACTIONS(282), - [anon_sym_LBRACK] = ACTIONS(284), - [anon_sym_POUND] = ACTIONS(286), - [anon_sym_POUND_QMARK] = ACTIONS(288), - [anon_sym_POUND_QMARK_AT] = ACTIONS(290), - [anon_sym_POUND_SQUOTE] = ACTIONS(292), - [anon_sym_POUND_POUND] = ACTIONS(294), - [anon_sym_POUND_EQ] = ACTIONS(296), - [anon_sym_AT] = ACTIONS(298), - [anon_sym_SQUOTE] = ACTIONS(300), - [anon_sym_BQUOTE] = ACTIONS(302), - [anon_sym_TILDE_AT] = ACTIONS(304), - [anon_sym_TILDE] = ACTIONS(306), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_POUND] = ACTIONS(704), + [anon_sym_POUND_QMARK] = ACTIONS(33), + [anon_sym_POUND_QMARK_AT] = ACTIONS(35), + [anon_sym_POUND_SQUOTE] = ACTIONS(706), + [anon_sym_POUND_POUND] = ACTIONS(708), + [anon_sym_POUND_EQ] = ACTIONS(41), + [anon_sym_AT] = ACTIONS(710), + [anon_sym_SQUOTE] = ACTIONS(712), + [anon_sym_BQUOTE] = ACTIONS(714), + [anon_sym_TILDE_AT] = ACTIONS(716), + [anon_sym_TILDE] = ACTIONS(718), }, - [117] = { - [sym__gap] = STATE(301), - [sym_dis_expr] = STATE(301), - [sym__form] = STATE(335), - [sym_kwd_lit] = STATE(335), - [sym_str_lit] = STATE(335), - [sym_sym_lit] = STATE(335), + [STATE(115)] = { + [sym__gap] = STATE(125), + [sym_dis_expr] = STATE(125), + [sym__form] = STATE(265), + [sym_kwd_lit] = STATE(265), + [sym_str_lit] = STATE(265), + [sym_sym_lit] = STATE(265), [sym__metadata_lit] = STATE(424), - [sym_meta_lit] = STATE(314), - [sym_old_meta_lit] = STATE(313), - [sym_list_lit] = STATE(335), - [sym__bare_list_lit] = STATE(392), - [sym_map_lit] = STATE(335), - [sym__bare_map_lit] = STATE(403), - [sym_vec_lit] = STATE(335), - [sym__bare_vec_lit] = STATE(423), - [sym_set_lit] = STATE(335), - [sym__bare_set_lit] = STATE(374), - [sym_anon_fn_lit] = STATE(335), - [sym_regex_lit] = STATE(335), - [sym_read_cond_lit] = STATE(335), - [sym_splicing_read_cond_lit] = STATE(335), - [sym_ns_map_lit] = STATE(335), - [sym_var_quoting_lit] = STATE(335), - [sym_sym_val_lit] = STATE(335), - [sym_evaling_lit] = STATE(335), - [sym_tagged_or_ctor_lit] = STATE(335), - [sym_derefing_lit] = STATE(335), - [sym_quoting_lit] = STATE(335), - [sym_syn_quoting_lit] = STATE(335), - [sym_unquote_splicing_lit] = STATE(335), - [sym_unquoting_lit] = STATE(335), - [aux_sym_dis_expr_repeat1] = STATE(301), - [aux_sym_sym_lit_repeat1] = STATE(307), - [sym__ws] = ACTIONS(264), - [sym_comment] = ACTIONS(264), + [sym_meta_lit] = STATE(312), + [sym_old_meta_lit] = STATE(315), + [sym_list_lit] = STATE(265), + [sym__bare_list_lit] = STATE(299), + [sym_map_lit] = STATE(265), + [sym__bare_map_lit] = STATE(214), + [sym_vec_lit] = STATE(265), + [sym__bare_vec_lit] = STATE(217), + [sym_set_lit] = STATE(265), + [sym__bare_set_lit] = STATE(219), + [sym_anon_fn_lit] = STATE(265), + [sym_regex_lit] = STATE(265), + [sym_read_cond_lit] = STATE(265), + [sym_splicing_read_cond_lit] = STATE(265), + [sym_ns_map_lit] = STATE(265), + [sym_var_quoting_lit] = STATE(265), + [sym_sym_val_lit] = STATE(265), + [sym_evaling_lit] = STATE(265), + [sym_tagged_or_ctor_lit] = STATE(265), + [sym_derefing_lit] = STATE(265), + [sym_quoting_lit] = STATE(265), + [sym_syn_quoting_lit] = STATE(265), + [sym_unquote_splicing_lit] = STATE(265), + [sym_unquoting_lit] = STATE(265), + [aux_sym_dis_expr_repeat1] = STATE(125), + [aux_sym_sym_lit_repeat1] = STATE(303), + [sym__ws] = ACTIONS(760), + [sym_comment] = ACTIONS(760), + [anon_sym_POUND_] = ACTIONS(7), + [sym_num_lit] = ACTIONS(382), + [anon_sym_SLASH] = ACTIONS(9), + [anon_sym_COLON] = ACTIONS(698), + [anon_sym_COLON_COLON] = ACTIONS(700), + [aux_sym_str_lit_token1] = ACTIONS(15), + [sym_char_lit] = ACTIONS(382), + [sym_nil_lit] = ACTIONS(384), + [sym_bool_lit] = ACTIONS(384), + [aux_sym__sym_qualified_token1] = ACTIONS(19), + [anon_sym_CARET] = ACTIONS(21), + [anon_sym_POUND_CARET] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_POUND] = ACTIONS(704), + [anon_sym_POUND_QMARK] = ACTIONS(33), + [anon_sym_POUND_QMARK_AT] = ACTIONS(35), + [anon_sym_POUND_SQUOTE] = ACTIONS(706), + [anon_sym_POUND_POUND] = ACTIONS(708), + [anon_sym_POUND_EQ] = ACTIONS(41), + [anon_sym_AT] = ACTIONS(710), + [anon_sym_SQUOTE] = ACTIONS(712), + [anon_sym_BQUOTE] = ACTIONS(714), + [anon_sym_TILDE_AT] = ACTIONS(716), + [anon_sym_TILDE] = ACTIONS(718), + }, + [STATE(116)] = { + [sym__gap] = STATE(126), + [sym_dis_expr] = STATE(126), + [sym__form] = STATE(266), + [sym_kwd_lit] = STATE(266), + [sym_str_lit] = STATE(266), + [sym_sym_lit] = STATE(266), + [sym__metadata_lit] = STATE(424), + [sym_meta_lit] = STATE(312), + [sym_old_meta_lit] = STATE(315), + [sym_list_lit] = STATE(266), + [sym__bare_list_lit] = STATE(299), + [sym_map_lit] = STATE(266), + [sym__bare_map_lit] = STATE(214), + [sym_vec_lit] = STATE(266), + [sym__bare_vec_lit] = STATE(217), + [sym_set_lit] = STATE(266), + [sym__bare_set_lit] = STATE(219), + [sym_anon_fn_lit] = STATE(266), + [sym_regex_lit] = STATE(266), + [sym_read_cond_lit] = STATE(266), + [sym_splicing_read_cond_lit] = STATE(266), + [sym_ns_map_lit] = STATE(266), + [sym_var_quoting_lit] = STATE(266), + [sym_sym_val_lit] = STATE(266), + [sym_evaling_lit] = STATE(266), + [sym_tagged_or_ctor_lit] = STATE(266), + [sym_derefing_lit] = STATE(266), + [sym_quoting_lit] = STATE(266), + [sym_syn_quoting_lit] = STATE(266), + [sym_unquote_splicing_lit] = STATE(266), + [sym_unquoting_lit] = STATE(266), + [aux_sym_dis_expr_repeat1] = STATE(126), + [aux_sym_sym_lit_repeat1] = STATE(303), + [sym__ws] = ACTIONS(762), + [sym_comment] = ACTIONS(762), [anon_sym_POUND_] = ACTIONS(7), - [sym_num_lit] = ACTIONS(608), - [anon_sym_SLASH] = ACTIONS(268), - [anon_sym_COLON] = ACTIONS(352), - [anon_sym_COLON_COLON] = ACTIONS(354), - [aux_sym_str_lit_token1] = ACTIONS(274), - [sym_char_lit] = ACTIONS(608), - [sym_nil_lit] = ACTIONS(610), - [sym_bool_lit] = ACTIONS(610), - [aux_sym__sym_qualified_token1] = ACTIONS(278), + [sym_num_lit] = ACTIONS(388), + [anon_sym_SLASH] = ACTIONS(9), + [anon_sym_COLON] = ACTIONS(698), + [anon_sym_COLON_COLON] = ACTIONS(700), + [aux_sym_str_lit_token1] = ACTIONS(15), + [sym_char_lit] = ACTIONS(388), + [sym_nil_lit] = ACTIONS(390), + [sym_bool_lit] = ACTIONS(390), + [aux_sym__sym_qualified_token1] = ACTIONS(19), [anon_sym_CARET] = ACTIONS(21), [anon_sym_POUND_CARET] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(280), - [anon_sym_LBRACE] = ACTIONS(282), - [anon_sym_LBRACK] = ACTIONS(284), - [anon_sym_POUND] = ACTIONS(358), - [anon_sym_POUND_QMARK] = ACTIONS(288), - [anon_sym_POUND_QMARK_AT] = ACTIONS(290), - [anon_sym_POUND_SQUOTE] = ACTIONS(360), - [anon_sym_POUND_POUND] = ACTIONS(362), - [anon_sym_POUND_EQ] = ACTIONS(296), - [anon_sym_AT] = ACTIONS(364), - [anon_sym_SQUOTE] = ACTIONS(366), - [anon_sym_BQUOTE] = ACTIONS(368), - [anon_sym_TILDE_AT] = ACTIONS(370), - [anon_sym_TILDE] = ACTIONS(372), - }, - [118] = { - [sym__gap] = STATE(65), - [sym_dis_expr] = STATE(65), - [sym__form] = STATE(240), - [sym_kwd_lit] = STATE(240), - [sym_str_lit] = STATE(240), - [sym_sym_lit] = STATE(240), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_POUND] = ACTIONS(704), + [anon_sym_POUND_QMARK] = ACTIONS(33), + [anon_sym_POUND_QMARK_AT] = ACTIONS(35), + [anon_sym_POUND_SQUOTE] = ACTIONS(706), + [anon_sym_POUND_POUND] = ACTIONS(708), + [anon_sym_POUND_EQ] = ACTIONS(41), + [anon_sym_AT] = ACTIONS(710), + [anon_sym_SQUOTE] = ACTIONS(712), + [anon_sym_BQUOTE] = ACTIONS(714), + [anon_sym_TILDE_AT] = ACTIONS(716), + [anon_sym_TILDE] = ACTIONS(718), + }, + [STATE(117)] = { + [sym__gap] = STATE(25), + [sym_dis_expr] = STATE(25), + [sym__form] = STATE(298), + [sym_kwd_lit] = STATE(298), + [sym_str_lit] = STATE(298), + [sym_sym_lit] = STATE(298), [sym__metadata_lit] = STATE(424), - [sym_meta_lit] = STATE(314), - [sym_old_meta_lit] = STATE(313), - [sym_list_lit] = STATE(240), - [sym__bare_list_lit] = STATE(218), - [sym_map_lit] = STATE(240), - [sym__bare_map_lit] = STATE(219), - [sym_vec_lit] = STATE(240), - [sym__bare_vec_lit] = STATE(226), - [sym_set_lit] = STATE(240), - [sym__bare_set_lit] = STATE(227), - [sym_anon_fn_lit] = STATE(240), - [sym_regex_lit] = STATE(240), - [sym_read_cond_lit] = STATE(240), - [sym_splicing_read_cond_lit] = STATE(240), - [sym_ns_map_lit] = STATE(240), - [sym_var_quoting_lit] = STATE(240), - [sym_sym_val_lit] = STATE(240), - [sym_evaling_lit] = STATE(240), - [sym_tagged_or_ctor_lit] = STATE(240), - [sym_derefing_lit] = STATE(240), - [sym_quoting_lit] = STATE(240), - [sym_syn_quoting_lit] = STATE(240), - [sym_unquote_splicing_lit] = STATE(240), - [sym_unquoting_lit] = STATE(240), - [aux_sym_dis_expr_repeat1] = STATE(65), + [sym_meta_lit] = STATE(312), + [sym_old_meta_lit] = STATE(315), + [sym_list_lit] = STATE(298), + [sym__bare_list_lit] = STATE(299), + [sym_map_lit] = STATE(298), + [sym__bare_map_lit] = STATE(214), + [sym_vec_lit] = STATE(298), + [sym__bare_vec_lit] = STATE(217), + [sym_set_lit] = STATE(298), + [sym__bare_set_lit] = STATE(219), + [sym_anon_fn_lit] = STATE(298), + [sym_regex_lit] = STATE(298), + [sym_read_cond_lit] = STATE(298), + [sym_splicing_read_cond_lit] = STATE(298), + [sym_ns_map_lit] = STATE(298), + [sym_var_quoting_lit] = STATE(298), + [sym_sym_val_lit] = STATE(298), + [sym_evaling_lit] = STATE(298), + [sym_tagged_or_ctor_lit] = STATE(298), + [sym_derefing_lit] = STATE(298), + [sym_quoting_lit] = STATE(298), + [sym_syn_quoting_lit] = STATE(298), + [sym_unquote_splicing_lit] = STATE(298), + [sym_unquoting_lit] = STATE(298), + [aux_sym_dis_expr_repeat1] = STATE(25), [aux_sym_sym_lit_repeat1] = STATE(305), - [sym__ws] = ACTIONS(704), - [sym_comment] = ACTIONS(704), + [sym__ws] = ACTIONS(764), + [sym_comment] = ACTIONS(764), [anon_sym_POUND_] = ACTIONS(7), - [sym_num_lit] = ACTIONS(706), + [sym_num_lit] = ACTIONS(722), [anon_sym_SLASH] = ACTIONS(9), [anon_sym_COLON] = ACTIONS(11), [anon_sym_COLON_COLON] = ACTIONS(13), [aux_sym_str_lit_token1] = ACTIONS(15), - [sym_char_lit] = ACTIONS(706), - [sym_nil_lit] = ACTIONS(708), - [sym_bool_lit] = ACTIONS(708), + [sym_char_lit] = ACTIONS(722), + [sym_nil_lit] = ACTIONS(724), + [sym_bool_lit] = ACTIONS(724), [aux_sym__sym_qualified_token1] = ACTIONS(19), [anon_sym_CARET] = ACTIONS(21), [anon_sym_POUND_CARET] = ACTIONS(23), @@ -10953,929 +10342,677 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE_AT] = ACTIONS(49), [anon_sym_TILDE] = ACTIONS(51), }, - [119] = { - [sym__gap] = STATE(301), - [sym_dis_expr] = STATE(301), - [sym__form] = STATE(350), - [sym_kwd_lit] = STATE(350), - [sym_str_lit] = STATE(350), - [sym_sym_lit] = STATE(350), - [sym__metadata_lit] = STATE(424), - [sym_meta_lit] = STATE(314), - [sym_old_meta_lit] = STATE(313), - [sym_list_lit] = STATE(350), - [sym__bare_list_lit] = STATE(392), - [sym_map_lit] = STATE(350), - [sym__bare_map_lit] = STATE(403), - [sym_vec_lit] = STATE(350), - [sym__bare_vec_lit] = STATE(423), - [sym_set_lit] = STATE(350), - [sym__bare_set_lit] = STATE(374), - [sym_anon_fn_lit] = STATE(350), - [sym_regex_lit] = STATE(350), - [sym_read_cond_lit] = STATE(350), - [sym_splicing_read_cond_lit] = STATE(350), - [sym_ns_map_lit] = STATE(350), - [sym_var_quoting_lit] = STATE(350), - [sym_sym_val_lit] = STATE(350), - [sym_evaling_lit] = STATE(350), - [sym_tagged_or_ctor_lit] = STATE(350), - [sym_derefing_lit] = STATE(350), - [sym_quoting_lit] = STATE(350), - [sym_syn_quoting_lit] = STATE(350), - [sym_unquote_splicing_lit] = STATE(350), - [sym_unquoting_lit] = STATE(350), - [aux_sym_dis_expr_repeat1] = STATE(301), - [aux_sym_sym_lit_repeat1] = STATE(307), - [sym__ws] = ACTIONS(264), - [sym_comment] = ACTIONS(264), - [anon_sym_POUND_] = ACTIONS(7), - [sym_num_lit] = ACTIONS(612), - [anon_sym_SLASH] = ACTIONS(268), - [anon_sym_COLON] = ACTIONS(352), - [anon_sym_COLON_COLON] = ACTIONS(354), - [aux_sym_str_lit_token1] = ACTIONS(274), - [sym_char_lit] = ACTIONS(612), - [sym_nil_lit] = ACTIONS(614), - [sym_bool_lit] = ACTIONS(614), - [aux_sym__sym_qualified_token1] = ACTIONS(278), - [anon_sym_CARET] = ACTIONS(21), - [anon_sym_POUND_CARET] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(280), - [anon_sym_LBRACE] = ACTIONS(282), - [anon_sym_LBRACK] = ACTIONS(284), - [anon_sym_POUND] = ACTIONS(358), - [anon_sym_POUND_QMARK] = ACTIONS(288), - [anon_sym_POUND_QMARK_AT] = ACTIONS(290), - [anon_sym_POUND_SQUOTE] = ACTIONS(360), - [anon_sym_POUND_POUND] = ACTIONS(362), - [anon_sym_POUND_EQ] = ACTIONS(296), - [anon_sym_AT] = ACTIONS(364), - [anon_sym_SQUOTE] = ACTIONS(366), - [anon_sym_BQUOTE] = ACTIONS(368), - [anon_sym_TILDE_AT] = ACTIONS(370), - [anon_sym_TILDE] = ACTIONS(372), - }, - [120] = { + [STATE(118)] = { [sym__gap] = STATE(301), [sym_dis_expr] = STATE(301), - [sym__form] = STATE(399), - [sym_kwd_lit] = STATE(399), - [sym_str_lit] = STATE(399), - [sym_sym_lit] = STATE(399), + [sym__form] = STATE(271), + [sym_kwd_lit] = STATE(271), + [sym_str_lit] = STATE(271), + [sym_sym_lit] = STATE(271), [sym__metadata_lit] = STATE(424), - [sym_meta_lit] = STATE(314), - [sym_old_meta_lit] = STATE(313), - [sym_list_lit] = STATE(399), - [sym__bare_list_lit] = STATE(392), - [sym_map_lit] = STATE(399), - [sym__bare_map_lit] = STATE(403), - [sym_vec_lit] = STATE(399), - [sym__bare_vec_lit] = STATE(423), - [sym_set_lit] = STATE(399), - [sym__bare_set_lit] = STATE(374), - [sym_anon_fn_lit] = STATE(399), - [sym_regex_lit] = STATE(399), - [sym_read_cond_lit] = STATE(399), - [sym_splicing_read_cond_lit] = STATE(399), - [sym_ns_map_lit] = STATE(399), - [sym_var_quoting_lit] = STATE(399), - [sym_sym_val_lit] = STATE(399), - [sym_evaling_lit] = STATE(399), - [sym_tagged_or_ctor_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_meta_lit] = STATE(312), + [sym_old_meta_lit] = STATE(315), + [sym_list_lit] = STATE(271), + [sym__bare_list_lit] = STATE(299), + [sym_map_lit] = STATE(271), + [sym__bare_map_lit] = STATE(214), + [sym_vec_lit] = STATE(271), + [sym__bare_vec_lit] = STATE(217), + [sym_set_lit] = STATE(271), + [sym__bare_set_lit] = STATE(219), + [sym_anon_fn_lit] = STATE(271), + [sym_regex_lit] = STATE(271), + [sym_read_cond_lit] = STATE(271), + [sym_splicing_read_cond_lit] = STATE(271), + [sym_ns_map_lit] = STATE(271), + [sym_var_quoting_lit] = STATE(271), + [sym_sym_val_lit] = STATE(271), + [sym_evaling_lit] = STATE(271), + [sym_tagged_or_ctor_lit] = STATE(271), + [sym_derefing_lit] = STATE(271), + [sym_quoting_lit] = STATE(271), + [sym_syn_quoting_lit] = STATE(271), + [sym_unquote_splicing_lit] = STATE(271), + [sym_unquoting_lit] = STATE(271), [aux_sym_dis_expr_repeat1] = STATE(301), - [aux_sym_sym_lit_repeat1] = STATE(304), - [sym__ws] = ACTIONS(264), - [sym_comment] = ACTIONS(264), - [anon_sym_POUND_] = ACTIONS(7), - [sym_num_lit] = ACTIONS(462), - [anon_sym_SLASH] = ACTIONS(268), - [anon_sym_COLON] = ACTIONS(270), - [anon_sym_COLON_COLON] = ACTIONS(272), - [aux_sym_str_lit_token1] = ACTIONS(274), - [sym_char_lit] = ACTIONS(462), - [sym_nil_lit] = ACTIONS(464), - [sym_bool_lit] = ACTIONS(464), - [aux_sym__sym_qualified_token1] = ACTIONS(278), - [anon_sym_CARET] = ACTIONS(21), - [anon_sym_POUND_CARET] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(280), - [anon_sym_LBRACE] = ACTIONS(282), - [anon_sym_LBRACK] = ACTIONS(284), - [anon_sym_POUND] = ACTIONS(286), - [anon_sym_POUND_QMARK] = ACTIONS(288), - [anon_sym_POUND_QMARK_AT] = ACTIONS(290), - [anon_sym_POUND_SQUOTE] = ACTIONS(292), - [anon_sym_POUND_POUND] = ACTIONS(294), - [anon_sym_POUND_EQ] = ACTIONS(296), - [anon_sym_AT] = ACTIONS(298), - [anon_sym_SQUOTE] = ACTIONS(300), - [anon_sym_BQUOTE] = ACTIONS(302), - [anon_sym_TILDE_AT] = ACTIONS(304), - [anon_sym_TILDE] = ACTIONS(306), - }, - [121] = { - [sym__gap] = STATE(31), - [sym_dis_expr] = STATE(31), - [sym__form] = STATE(363), - [sym_kwd_lit] = STATE(363), - [sym_str_lit] = STATE(363), - [sym_sym_lit] = STATE(363), - [sym__metadata_lit] = STATE(424), - [sym_meta_lit] = STATE(314), - [sym_old_meta_lit] = STATE(313), - [sym_list_lit] = STATE(363), - [sym__bare_list_lit] = STATE(392), - [sym_map_lit] = STATE(363), - [sym__bare_map_lit] = STATE(403), - [sym_vec_lit] = STATE(363), - [sym__bare_vec_lit] = STATE(423), - [sym_set_lit] = STATE(363), - [sym__bare_set_lit] = STATE(374), - [sym_anon_fn_lit] = STATE(363), - [sym_regex_lit] = STATE(363), - [sym_read_cond_lit] = STATE(363), - [sym_splicing_read_cond_lit] = STATE(363), - [sym_ns_map_lit] = STATE(363), - [sym_var_quoting_lit] = STATE(363), - [sym_sym_val_lit] = STATE(363), - [sym_evaling_lit] = STATE(363), - [sym_tagged_or_ctor_lit] = STATE(363), - [sym_derefing_lit] = STATE(363), - [sym_quoting_lit] = STATE(363), - [sym_syn_quoting_lit] = STATE(363), - [sym_unquote_splicing_lit] = STATE(363), - [sym_unquoting_lit] = STATE(363), - [aux_sym_dis_expr_repeat1] = STATE(31), - [aux_sym_sym_lit_repeat1] = STATE(304), - [sym__ws] = ACTIONS(710), - [sym_comment] = ACTIONS(710), - [anon_sym_POUND_] = ACTIONS(7), - [sym_num_lit] = ACTIONS(546), - [anon_sym_SLASH] = ACTIONS(268), - [anon_sym_COLON] = ACTIONS(270), - [anon_sym_COLON_COLON] = ACTIONS(272), - [aux_sym_str_lit_token1] = ACTIONS(274), - [sym_char_lit] = ACTIONS(546), - [sym_nil_lit] = ACTIONS(548), - [sym_bool_lit] = ACTIONS(548), - [aux_sym__sym_qualified_token1] = ACTIONS(278), - [anon_sym_CARET] = ACTIONS(21), - [anon_sym_POUND_CARET] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(280), - [anon_sym_LBRACE] = ACTIONS(282), - [anon_sym_LBRACK] = ACTIONS(284), - [anon_sym_POUND] = ACTIONS(286), - [anon_sym_POUND_QMARK] = ACTIONS(288), - [anon_sym_POUND_QMARK_AT] = ACTIONS(290), - [anon_sym_POUND_SQUOTE] = ACTIONS(292), - [anon_sym_POUND_POUND] = ACTIONS(294), - [anon_sym_POUND_EQ] = ACTIONS(296), - [anon_sym_AT] = ACTIONS(298), - [anon_sym_SQUOTE] = ACTIONS(300), - [anon_sym_BQUOTE] = ACTIONS(302), - [anon_sym_TILDE_AT] = ACTIONS(304), - [anon_sym_TILDE] = ACTIONS(306), - }, - [122] = { - [sym__gap] = STATE(120), - [sym_dis_expr] = STATE(120), - [sym__form] = STATE(361), - [sym_kwd_lit] = STATE(361), - [sym_str_lit] = STATE(361), - [sym_sym_lit] = STATE(361), - [sym__metadata_lit] = STATE(424), - [sym_meta_lit] = STATE(314), - [sym_old_meta_lit] = STATE(313), - [sym_list_lit] = STATE(361), - [sym__bare_list_lit] = STATE(392), - [sym_map_lit] = STATE(361), - [sym__bare_map_lit] = STATE(403), - [sym_vec_lit] = STATE(361), - [sym__bare_vec_lit] = STATE(423), - [sym_set_lit] = STATE(361), - [sym__bare_set_lit] = STATE(374), - [sym_anon_fn_lit] = STATE(361), - [sym_regex_lit] = STATE(361), - [sym_read_cond_lit] = STATE(361), - [sym_splicing_read_cond_lit] = STATE(361), - [sym_ns_map_lit] = STATE(361), - [sym_var_quoting_lit] = STATE(361), - [sym_sym_val_lit] = STATE(361), - [sym_evaling_lit] = STATE(361), - [sym_tagged_or_ctor_lit] = STATE(361), - [sym_derefing_lit] = STATE(361), - [sym_quoting_lit] = STATE(361), - [sym_syn_quoting_lit] = STATE(361), - [sym_unquote_splicing_lit] = STATE(361), - [sym_unquoting_lit] = STATE(361), - [aux_sym_dis_expr_repeat1] = STATE(120), - [aux_sym_sym_lit_repeat1] = STATE(304), - [sym__ws] = ACTIONS(712), - [sym_comment] = ACTIONS(712), - [anon_sym_POUND_] = ACTIONS(7), - [sym_num_lit] = ACTIONS(552), - [anon_sym_SLASH] = ACTIONS(268), - [anon_sym_COLON] = ACTIONS(270), - [anon_sym_COLON_COLON] = ACTIONS(272), - [aux_sym_str_lit_token1] = ACTIONS(274), - [sym_char_lit] = ACTIONS(552), - [sym_nil_lit] = ACTIONS(554), - [sym_bool_lit] = ACTIONS(554), - [aux_sym__sym_qualified_token1] = ACTIONS(278), - [anon_sym_CARET] = ACTIONS(21), - [anon_sym_POUND_CARET] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(280), - [anon_sym_LBRACE] = ACTIONS(282), - [anon_sym_LBRACK] = ACTIONS(284), - [anon_sym_POUND] = ACTIONS(286), - [anon_sym_POUND_QMARK] = ACTIONS(288), - [anon_sym_POUND_QMARK_AT] = ACTIONS(290), - [anon_sym_POUND_SQUOTE] = ACTIONS(292), - [anon_sym_POUND_POUND] = ACTIONS(294), - [anon_sym_POUND_EQ] = ACTIONS(296), - [anon_sym_AT] = ACTIONS(298), - [anon_sym_SQUOTE] = ACTIONS(300), - [anon_sym_BQUOTE] = ACTIONS(302), - [anon_sym_TILDE_AT] = ACTIONS(304), - [anon_sym_TILDE] = ACTIONS(306), - }, - [123] = { - [sym__gap] = STATE(167), - [sym_dis_expr] = STATE(167), - [sym__form] = STATE(229), - [sym_kwd_lit] = STATE(229), - [sym_str_lit] = STATE(229), - [sym_sym_lit] = STATE(229), - [sym__metadata_lit] = STATE(424), - [sym_meta_lit] = STATE(314), - [sym_old_meta_lit] = STATE(313), - [sym_list_lit] = STATE(229), - [sym__bare_list_lit] = STATE(218), - [sym_map_lit] = STATE(229), - [sym__bare_map_lit] = STATE(219), - [sym_vec_lit] = STATE(229), - [sym__bare_vec_lit] = STATE(226), - [sym_set_lit] = STATE(229), - [sym__bare_set_lit] = STATE(227), - [sym_anon_fn_lit] = STATE(229), - [sym_regex_lit] = STATE(229), - [sym_read_cond_lit] = STATE(229), - [sym_splicing_read_cond_lit] = STATE(229), - [sym_ns_map_lit] = STATE(229), - [sym_var_quoting_lit] = STATE(229), - [sym_sym_val_lit] = STATE(229), - [sym_evaling_lit] = STATE(229), - [sym_tagged_or_ctor_lit] = STATE(229), - [sym_derefing_lit] = STATE(229), - [sym_quoting_lit] = STATE(229), - [sym_syn_quoting_lit] = STATE(229), - [sym_unquote_splicing_lit] = STATE(229), - [sym_unquoting_lit] = STATE(229), - [aux_sym_dis_expr_repeat1] = STATE(167), [aux_sym_sym_lit_repeat1] = STATE(303), - [sym__ws] = ACTIONS(714), - [sym_comment] = ACTIONS(714), + [sym__ws] = ACTIONS(320), + [sym_comment] = ACTIONS(320), [anon_sym_POUND_] = ACTIONS(7), - [sym_num_lit] = ACTIONS(672), + [sym_num_lit] = ACTIONS(404), [anon_sym_SLASH] = ACTIONS(9), - [anon_sym_COLON] = ACTIONS(716), - [anon_sym_COLON_COLON] = ACTIONS(718), + [anon_sym_COLON] = ACTIONS(698), + [anon_sym_COLON_COLON] = ACTIONS(700), [aux_sym_str_lit_token1] = ACTIONS(15), - [sym_char_lit] = ACTIONS(672), - [sym_nil_lit] = ACTIONS(674), - [sym_bool_lit] = ACTIONS(674), + [sym_char_lit] = ACTIONS(404), + [sym_nil_lit] = ACTIONS(406), + [sym_bool_lit] = ACTIONS(406), [aux_sym__sym_qualified_token1] = ACTIONS(19), [anon_sym_CARET] = ACTIONS(21), [anon_sym_POUND_CARET] = ACTIONS(23), [anon_sym_LPAREN] = ACTIONS(25), [anon_sym_LBRACE] = ACTIONS(27), [anon_sym_LBRACK] = ACTIONS(29), - [anon_sym_POUND] = ACTIONS(720), + [anon_sym_POUND] = ACTIONS(704), [anon_sym_POUND_QMARK] = ACTIONS(33), [anon_sym_POUND_QMARK_AT] = ACTIONS(35), - [anon_sym_POUND_SQUOTE] = ACTIONS(722), - [anon_sym_POUND_POUND] = ACTIONS(724), + [anon_sym_POUND_SQUOTE] = ACTIONS(706), + [anon_sym_POUND_POUND] = ACTIONS(708), [anon_sym_POUND_EQ] = ACTIONS(41), - [anon_sym_AT] = ACTIONS(726), - [anon_sym_SQUOTE] = ACTIONS(728), - [anon_sym_BQUOTE] = ACTIONS(730), - [anon_sym_TILDE_AT] = ACTIONS(732), - [anon_sym_TILDE] = ACTIONS(734), + [anon_sym_AT] = ACTIONS(710), + [anon_sym_SQUOTE] = ACTIONS(712), + [anon_sym_BQUOTE] = ACTIONS(714), + [anon_sym_TILDE_AT] = ACTIONS(716), + [anon_sym_TILDE] = ACTIONS(718), }, - [124] = { - [sym__gap] = STATE(301), - [sym_dis_expr] = STATE(301), - [sym__form] = STATE(385), - [sym_kwd_lit] = STATE(385), - [sym_str_lit] = STATE(385), - [sym_sym_lit] = STATE(385), + [STATE(119)] = { + [sym__gap] = STATE(127), + [sym_dis_expr] = STATE(127), + [sym__form] = STATE(272), + [sym_kwd_lit] = STATE(272), + [sym_str_lit] = STATE(272), + [sym_sym_lit] = STATE(272), [sym__metadata_lit] = STATE(424), - [sym_meta_lit] = STATE(314), - [sym_old_meta_lit] = STATE(313), - [sym_list_lit] = STATE(385), - [sym__bare_list_lit] = STATE(392), - [sym_map_lit] = STATE(385), - [sym__bare_map_lit] = STATE(403), - [sym_vec_lit] = STATE(385), - [sym__bare_vec_lit] = STATE(423), - [sym_set_lit] = STATE(385), - [sym__bare_set_lit] = STATE(374), - [sym_anon_fn_lit] = STATE(385), - [sym_regex_lit] = STATE(385), - [sym_read_cond_lit] = STATE(385), - [sym_splicing_read_cond_lit] = STATE(385), - [sym_ns_map_lit] = STATE(385), - [sym_var_quoting_lit] = STATE(385), - [sym_sym_val_lit] = STATE(385), - [sym_evaling_lit] = STATE(385), - [sym_tagged_or_ctor_lit] = STATE(385), - [sym_derefing_lit] = STATE(385), - [sym_quoting_lit] = STATE(385), - [sym_syn_quoting_lit] = STATE(385), - [sym_unquote_splicing_lit] = STATE(385), - [sym_unquoting_lit] = STATE(385), - [aux_sym_dis_expr_repeat1] = STATE(301), - [aux_sym_sym_lit_repeat1] = STATE(307), - [sym__ws] = ACTIONS(264), - [sym_comment] = ACTIONS(264), + [sym_meta_lit] = STATE(312), + [sym_old_meta_lit] = STATE(315), + [sym_list_lit] = STATE(272), + [sym__bare_list_lit] = STATE(299), + [sym_map_lit] = STATE(272), + [sym__bare_map_lit] = STATE(214), + [sym_vec_lit] = STATE(272), + [sym__bare_vec_lit] = STATE(217), + [sym_set_lit] = STATE(272), + [sym__bare_set_lit] = STATE(219), + [sym_anon_fn_lit] = STATE(272), + [sym_regex_lit] = STATE(272), + [sym_read_cond_lit] = STATE(272), + [sym_splicing_read_cond_lit] = STATE(272), + [sym_ns_map_lit] = STATE(272), + [sym_var_quoting_lit] = STATE(272), + [sym_sym_val_lit] = STATE(272), + [sym_evaling_lit] = STATE(272), + [sym_tagged_or_ctor_lit] = STATE(272), + [sym_derefing_lit] = STATE(272), + [sym_quoting_lit] = STATE(272), + [sym_syn_quoting_lit] = STATE(272), + [sym_unquote_splicing_lit] = STATE(272), + [sym_unquoting_lit] = STATE(272), + [aux_sym_dis_expr_repeat1] = STATE(127), + [aux_sym_sym_lit_repeat1] = STATE(303), + [sym__ws] = ACTIONS(766), + [sym_comment] = ACTIONS(766), [anon_sym_POUND_] = ACTIONS(7), - [sym_num_lit] = ACTIONS(604), - [anon_sym_SLASH] = ACTIONS(268), - [anon_sym_COLON] = ACTIONS(352), - [anon_sym_COLON_COLON] = ACTIONS(354), - [aux_sym_str_lit_token1] = ACTIONS(274), - [sym_char_lit] = ACTIONS(604), - [sym_nil_lit] = ACTIONS(606), - [sym_bool_lit] = ACTIONS(606), - [aux_sym__sym_qualified_token1] = ACTIONS(278), + [sym_num_lit] = ACTIONS(410), + [anon_sym_SLASH] = ACTIONS(9), + [anon_sym_COLON] = ACTIONS(698), + [anon_sym_COLON_COLON] = ACTIONS(700), + [aux_sym_str_lit_token1] = ACTIONS(15), + [sym_char_lit] = ACTIONS(410), + [sym_nil_lit] = ACTIONS(412), + [sym_bool_lit] = ACTIONS(412), + [aux_sym__sym_qualified_token1] = ACTIONS(19), [anon_sym_CARET] = ACTIONS(21), [anon_sym_POUND_CARET] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(280), - [anon_sym_LBRACE] = ACTIONS(282), - [anon_sym_LBRACK] = ACTIONS(284), - [anon_sym_POUND] = ACTIONS(358), - [anon_sym_POUND_QMARK] = ACTIONS(288), - [anon_sym_POUND_QMARK_AT] = ACTIONS(290), - [anon_sym_POUND_SQUOTE] = ACTIONS(360), - [anon_sym_POUND_POUND] = ACTIONS(362), - [anon_sym_POUND_EQ] = ACTIONS(296), - [anon_sym_AT] = ACTIONS(364), - [anon_sym_SQUOTE] = ACTIONS(366), - [anon_sym_BQUOTE] = ACTIONS(368), - [anon_sym_TILDE_AT] = ACTIONS(370), - [anon_sym_TILDE] = ACTIONS(372), - }, - [125] = { - [sym__gap] = STATE(301), - [sym_dis_expr] = STATE(301), - [sym__form] = STATE(288), - [sym_kwd_lit] = STATE(288), - [sym_str_lit] = STATE(288), - [sym_sym_lit] = STATE(288), - [sym__metadata_lit] = STATE(424), - [sym_meta_lit] = STATE(314), - [sym_old_meta_lit] = STATE(313), - [sym_list_lit] = STATE(288), - [sym__bare_list_lit] = STATE(218), - [sym_map_lit] = STATE(288), - [sym__bare_map_lit] = STATE(219), - [sym_vec_lit] = STATE(288), - [sym__bare_vec_lit] = STATE(226), - [sym_set_lit] = STATE(288), - [sym__bare_set_lit] = STATE(227), - [sym_anon_fn_lit] = STATE(288), - [sym_regex_lit] = STATE(288), - [sym_read_cond_lit] = STATE(288), - [sym_splicing_read_cond_lit] = STATE(288), - [sym_ns_map_lit] = STATE(288), - [sym_var_quoting_lit] = STATE(288), - [sym_sym_val_lit] = STATE(288), - [sym_evaling_lit] = STATE(288), - [sym_tagged_or_ctor_lit] = STATE(288), - [sym_derefing_lit] = STATE(288), - [sym_quoting_lit] = STATE(288), - [sym_syn_quoting_lit] = STATE(288), - [sym_unquote_splicing_lit] = STATE(288), - [sym_unquoting_lit] = STATE(288), - [aux_sym_dis_expr_repeat1] = STATE(301), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_POUND] = ACTIONS(704), + [anon_sym_POUND_QMARK] = ACTIONS(33), + [anon_sym_POUND_QMARK_AT] = ACTIONS(35), + [anon_sym_POUND_SQUOTE] = ACTIONS(706), + [anon_sym_POUND_POUND] = ACTIONS(708), + [anon_sym_POUND_EQ] = ACTIONS(41), + [anon_sym_AT] = ACTIONS(710), + [anon_sym_SQUOTE] = ACTIONS(712), + [anon_sym_BQUOTE] = ACTIONS(714), + [anon_sym_TILDE_AT] = ACTIONS(716), + [anon_sym_TILDE] = ACTIONS(718), + }, + [STATE(120)] = { + [sym__gap] = STATE(212), + [sym_dis_expr] = STATE(212), + [sym__form] = STATE(275), + [sym_kwd_lit] = STATE(275), + [sym_str_lit] = STATE(275), + [sym_sym_lit] = STATE(275), + [sym__metadata_lit] = STATE(424), + [sym_meta_lit] = STATE(312), + [sym_old_meta_lit] = STATE(315), + [sym_list_lit] = STATE(275), + [sym__bare_list_lit] = STATE(299), + [sym_map_lit] = STATE(275), + [sym__bare_map_lit] = STATE(214), + [sym_vec_lit] = STATE(275), + [sym__bare_vec_lit] = STATE(217), + [sym_set_lit] = STATE(275), + [sym__bare_set_lit] = STATE(219), + [sym_anon_fn_lit] = STATE(275), + [sym_regex_lit] = STATE(275), + [sym_read_cond_lit] = STATE(275), + [sym_splicing_read_cond_lit] = STATE(275), + [sym_ns_map_lit] = STATE(275), + [sym_var_quoting_lit] = STATE(275), + [sym_sym_val_lit] = STATE(275), + [sym_evaling_lit] = STATE(275), + [sym_tagged_or_ctor_lit] = STATE(275), + [sym_derefing_lit] = STATE(275), + [sym_quoting_lit] = STATE(275), + [sym_syn_quoting_lit] = STATE(275), + [sym_unquote_splicing_lit] = STATE(275), + [sym_unquoting_lit] = STATE(275), + [aux_sym_dis_expr_repeat1] = STATE(212), [aux_sym_sym_lit_repeat1] = STATE(303), - [sym__ws] = ACTIONS(264), - [sym_comment] = ACTIONS(264), + [sym__ws] = ACTIONS(768), + [sym_comment] = ACTIONS(768), [anon_sym_POUND_] = ACTIONS(7), - [sym_num_lit] = ACTIONS(736), + [sym_num_lit] = ACTIONS(416), [anon_sym_SLASH] = ACTIONS(9), - [anon_sym_COLON] = ACTIONS(716), - [anon_sym_COLON_COLON] = ACTIONS(718), + [anon_sym_COLON] = ACTIONS(698), + [anon_sym_COLON_COLON] = ACTIONS(700), [aux_sym_str_lit_token1] = ACTIONS(15), - [sym_char_lit] = ACTIONS(736), - [sym_nil_lit] = ACTIONS(738), - [sym_bool_lit] = ACTIONS(738), + [sym_char_lit] = ACTIONS(416), + [sym_nil_lit] = ACTIONS(418), + [sym_bool_lit] = ACTIONS(418), [aux_sym__sym_qualified_token1] = ACTIONS(19), [anon_sym_CARET] = ACTIONS(21), [anon_sym_POUND_CARET] = ACTIONS(23), [anon_sym_LPAREN] = ACTIONS(25), [anon_sym_LBRACE] = ACTIONS(27), [anon_sym_LBRACK] = ACTIONS(29), - [anon_sym_POUND] = ACTIONS(720), + [anon_sym_POUND] = ACTIONS(704), [anon_sym_POUND_QMARK] = ACTIONS(33), [anon_sym_POUND_QMARK_AT] = ACTIONS(35), - [anon_sym_POUND_SQUOTE] = ACTIONS(722), - [anon_sym_POUND_POUND] = ACTIONS(724), + [anon_sym_POUND_SQUOTE] = ACTIONS(706), + [anon_sym_POUND_POUND] = ACTIONS(708), [anon_sym_POUND_EQ] = ACTIONS(41), - [anon_sym_AT] = ACTIONS(726), - [anon_sym_SQUOTE] = ACTIONS(728), - [anon_sym_BQUOTE] = ACTIONS(730), - [anon_sym_TILDE_AT] = ACTIONS(732), - [anon_sym_TILDE] = ACTIONS(734), + [anon_sym_AT] = ACTIONS(710), + [anon_sym_SQUOTE] = ACTIONS(712), + [anon_sym_BQUOTE] = ACTIONS(714), + [anon_sym_TILDE_AT] = ACTIONS(716), + [anon_sym_TILDE] = ACTIONS(718), }, - [126] = { - [sym__gap] = STATE(125), - [sym_dis_expr] = STATE(125), - [sym__form] = STATE(292), - [sym_kwd_lit] = STATE(292), - [sym_str_lit] = STATE(292), - [sym_sym_lit] = STATE(292), + [STATE(121)] = { + [sym__gap] = STATE(301), + [sym_dis_expr] = STATE(301), + [sym__form] = STATE(279), + [sym_kwd_lit] = STATE(279), + [sym_str_lit] = STATE(279), + [sym_sym_lit] = STATE(279), [sym__metadata_lit] = STATE(424), - [sym_meta_lit] = STATE(314), - [sym_old_meta_lit] = STATE(313), - [sym_list_lit] = STATE(292), - [sym__bare_list_lit] = STATE(218), - [sym_map_lit] = STATE(292), - [sym__bare_map_lit] = STATE(219), - [sym_vec_lit] = STATE(292), - [sym__bare_vec_lit] = STATE(226), - [sym_set_lit] = STATE(292), - [sym__bare_set_lit] = STATE(227), - [sym_anon_fn_lit] = STATE(292), - [sym_regex_lit] = STATE(292), - [sym_read_cond_lit] = STATE(292), - [sym_splicing_read_cond_lit] = STATE(292), - [sym_ns_map_lit] = STATE(292), - [sym_var_quoting_lit] = STATE(292), - [sym_sym_val_lit] = STATE(292), - [sym_evaling_lit] = STATE(292), - [sym_tagged_or_ctor_lit] = STATE(292), - [sym_derefing_lit] = STATE(292), - [sym_quoting_lit] = STATE(292), - [sym_syn_quoting_lit] = STATE(292), - [sym_unquote_splicing_lit] = STATE(292), - [sym_unquoting_lit] = STATE(292), - [aux_sym_dis_expr_repeat1] = STATE(125), + [sym_meta_lit] = STATE(312), + [sym_old_meta_lit] = STATE(315), + [sym_list_lit] = STATE(279), + [sym__bare_list_lit] = STATE(299), + [sym_map_lit] = STATE(279), + [sym__bare_map_lit] = STATE(214), + [sym_vec_lit] = STATE(279), + [sym__bare_vec_lit] = STATE(217), + [sym_set_lit] = STATE(279), + [sym__bare_set_lit] = STATE(219), + [sym_anon_fn_lit] = STATE(279), + [sym_regex_lit] = STATE(279), + [sym_read_cond_lit] = STATE(279), + [sym_splicing_read_cond_lit] = STATE(279), + [sym_ns_map_lit] = STATE(279), + [sym_var_quoting_lit] = STATE(279), + [sym_sym_val_lit] = STATE(279), + [sym_evaling_lit] = STATE(279), + [sym_tagged_or_ctor_lit] = STATE(279), + [sym_derefing_lit] = STATE(279), + [sym_quoting_lit] = STATE(279), + [sym_syn_quoting_lit] = STATE(279), + [sym_unquote_splicing_lit] = STATE(279), + [sym_unquoting_lit] = STATE(279), + [aux_sym_dis_expr_repeat1] = STATE(301), [aux_sym_sym_lit_repeat1] = STATE(303), - [sym__ws] = ACTIONS(740), - [sym_comment] = ACTIONS(740), + [sym__ws] = ACTIONS(320), + [sym_comment] = ACTIONS(320), [anon_sym_POUND_] = ACTIONS(7), - [sym_num_lit] = ACTIONS(742), + [sym_num_lit] = ACTIONS(420), [anon_sym_SLASH] = ACTIONS(9), - [anon_sym_COLON] = ACTIONS(716), - [anon_sym_COLON_COLON] = ACTIONS(718), + [anon_sym_COLON] = ACTIONS(698), + [anon_sym_COLON_COLON] = ACTIONS(700), [aux_sym_str_lit_token1] = ACTIONS(15), - [sym_char_lit] = ACTIONS(742), - [sym_nil_lit] = ACTIONS(744), - [sym_bool_lit] = ACTIONS(744), + [sym_char_lit] = ACTIONS(420), + [sym_nil_lit] = ACTIONS(422), + [sym_bool_lit] = ACTIONS(422), [aux_sym__sym_qualified_token1] = ACTIONS(19), [anon_sym_CARET] = ACTIONS(21), [anon_sym_POUND_CARET] = ACTIONS(23), [anon_sym_LPAREN] = ACTIONS(25), [anon_sym_LBRACE] = ACTIONS(27), [anon_sym_LBRACK] = ACTIONS(29), - [anon_sym_POUND] = ACTIONS(720), + [anon_sym_POUND] = ACTIONS(704), [anon_sym_POUND_QMARK] = ACTIONS(33), [anon_sym_POUND_QMARK_AT] = ACTIONS(35), - [anon_sym_POUND_SQUOTE] = ACTIONS(722), - [anon_sym_POUND_POUND] = ACTIONS(724), + [anon_sym_POUND_SQUOTE] = ACTIONS(706), + [anon_sym_POUND_POUND] = ACTIONS(708), [anon_sym_POUND_EQ] = ACTIONS(41), - [anon_sym_AT] = ACTIONS(726), - [anon_sym_SQUOTE] = ACTIONS(728), - [anon_sym_BQUOTE] = ACTIONS(730), - [anon_sym_TILDE_AT] = ACTIONS(732), - [anon_sym_TILDE] = ACTIONS(734), + [anon_sym_AT] = ACTIONS(710), + [anon_sym_SQUOTE] = ACTIONS(712), + [anon_sym_BQUOTE] = ACTIONS(714), + [anon_sym_TILDE_AT] = ACTIONS(716), + [anon_sym_TILDE] = ACTIONS(718), }, - [127] = { + [STATE(122)] = { [sym__gap] = STATE(301), [sym_dis_expr] = STATE(301), - [sym__form] = STATE(225), - [sym_kwd_lit] = STATE(225), - [sym_str_lit] = STATE(225), - [sym_sym_lit] = STATE(225), + [sym__form] = STATE(283), + [sym_kwd_lit] = STATE(283), + [sym_str_lit] = STATE(283), + [sym_sym_lit] = STATE(283), [sym__metadata_lit] = STATE(424), - [sym_meta_lit] = STATE(314), - [sym_old_meta_lit] = STATE(313), - [sym_list_lit] = STATE(225), - [sym__bare_list_lit] = STATE(218), - [sym_map_lit] = STATE(225), - [sym__bare_map_lit] = STATE(219), - [sym_vec_lit] = STATE(225), - [sym__bare_vec_lit] = STATE(226), - [sym_set_lit] = STATE(225), - [sym__bare_set_lit] = STATE(227), - [sym_anon_fn_lit] = STATE(225), - [sym_regex_lit] = STATE(225), - [sym_read_cond_lit] = STATE(225), - [sym_splicing_read_cond_lit] = STATE(225), - [sym_ns_map_lit] = STATE(225), - [sym_var_quoting_lit] = STATE(225), - [sym_sym_val_lit] = STATE(225), - [sym_evaling_lit] = STATE(225), - [sym_tagged_or_ctor_lit] = STATE(225), - [sym_derefing_lit] = STATE(225), - [sym_quoting_lit] = STATE(225), - [sym_syn_quoting_lit] = STATE(225), - [sym_unquote_splicing_lit] = STATE(225), - [sym_unquoting_lit] = STATE(225), + [sym_meta_lit] = STATE(312), + [sym_old_meta_lit] = STATE(315), + [sym_list_lit] = STATE(283), + [sym__bare_list_lit] = STATE(299), + [sym_map_lit] = STATE(283), + [sym__bare_map_lit] = STATE(214), + [sym_vec_lit] = STATE(283), + [sym__bare_vec_lit] = STATE(217), + [sym_set_lit] = STATE(283), + [sym__bare_set_lit] = STATE(219), + [sym_anon_fn_lit] = STATE(283), + [sym_regex_lit] = STATE(283), + [sym_read_cond_lit] = STATE(283), + [sym_splicing_read_cond_lit] = STATE(283), + [sym_ns_map_lit] = STATE(283), + [sym_var_quoting_lit] = STATE(283), + [sym_sym_val_lit] = STATE(283), + [sym_evaling_lit] = STATE(283), + [sym_tagged_or_ctor_lit] = STATE(283), + [sym_derefing_lit] = STATE(283), + [sym_quoting_lit] = STATE(283), + [sym_syn_quoting_lit] = STATE(283), + [sym_unquote_splicing_lit] = STATE(283), + [sym_unquoting_lit] = STATE(283), [aux_sym_dis_expr_repeat1] = STATE(301), [aux_sym_sym_lit_repeat1] = STATE(303), - [sym__ws] = ACTIONS(264), - [sym_comment] = ACTIONS(264), + [sym__ws] = ACTIONS(320), + [sym_comment] = ACTIONS(320), [anon_sym_POUND_] = ACTIONS(7), - [sym_num_lit] = ACTIONS(746), + [sym_num_lit] = ACTIONS(424), [anon_sym_SLASH] = ACTIONS(9), - [anon_sym_COLON] = ACTIONS(716), - [anon_sym_COLON_COLON] = ACTIONS(718), + [anon_sym_COLON] = ACTIONS(698), + [anon_sym_COLON_COLON] = ACTIONS(700), [aux_sym_str_lit_token1] = ACTIONS(15), - [sym_char_lit] = ACTIONS(746), - [sym_nil_lit] = ACTIONS(748), - [sym_bool_lit] = ACTIONS(748), + [sym_char_lit] = ACTIONS(424), + [sym_nil_lit] = ACTIONS(426), + [sym_bool_lit] = ACTIONS(426), [aux_sym__sym_qualified_token1] = ACTIONS(19), [anon_sym_CARET] = ACTIONS(21), [anon_sym_POUND_CARET] = ACTIONS(23), [anon_sym_LPAREN] = ACTIONS(25), [anon_sym_LBRACE] = ACTIONS(27), [anon_sym_LBRACK] = ACTIONS(29), - [anon_sym_POUND] = ACTIONS(720), + [anon_sym_POUND] = ACTIONS(704), [anon_sym_POUND_QMARK] = ACTIONS(33), [anon_sym_POUND_QMARK_AT] = ACTIONS(35), - [anon_sym_POUND_SQUOTE] = ACTIONS(722), - [anon_sym_POUND_POUND] = ACTIONS(724), + [anon_sym_POUND_SQUOTE] = ACTIONS(706), + [anon_sym_POUND_POUND] = ACTIONS(708), [anon_sym_POUND_EQ] = ACTIONS(41), - [anon_sym_AT] = ACTIONS(726), - [anon_sym_SQUOTE] = ACTIONS(728), - [anon_sym_BQUOTE] = ACTIONS(730), - [anon_sym_TILDE_AT] = ACTIONS(732), - [anon_sym_TILDE] = ACTIONS(734), + [anon_sym_AT] = ACTIONS(710), + [anon_sym_SQUOTE] = ACTIONS(712), + [anon_sym_BQUOTE] = ACTIONS(714), + [anon_sym_TILDE_AT] = ACTIONS(716), + [anon_sym_TILDE] = ACTIONS(718), }, - [128] = { + [STATE(123)] = { [sym__gap] = STATE(301), [sym_dis_expr] = STATE(301), - [sym__form] = STATE(265), - [sym_kwd_lit] = STATE(265), - [sym_str_lit] = STATE(265), - [sym_sym_lit] = STATE(265), + [sym__form] = STATE(284), + [sym_kwd_lit] = STATE(284), + [sym_str_lit] = STATE(284), + [sym_sym_lit] = STATE(284), [sym__metadata_lit] = STATE(424), - [sym_meta_lit] = STATE(314), - [sym_old_meta_lit] = STATE(313), - [sym_list_lit] = STATE(265), - [sym__bare_list_lit] = STATE(218), - [sym_map_lit] = STATE(265), - [sym__bare_map_lit] = STATE(219), - [sym_vec_lit] = STATE(265), - [sym__bare_vec_lit] = STATE(226), - [sym_set_lit] = STATE(265), - [sym__bare_set_lit] = STATE(227), - [sym_anon_fn_lit] = STATE(265), - [sym_regex_lit] = STATE(265), - [sym_read_cond_lit] = STATE(265), - [sym_splicing_read_cond_lit] = STATE(265), - [sym_ns_map_lit] = STATE(265), - [sym_var_quoting_lit] = STATE(265), - [sym_sym_val_lit] = STATE(265), - [sym_evaling_lit] = STATE(265), - [sym_tagged_or_ctor_lit] = STATE(265), - [sym_derefing_lit] = STATE(265), - [sym_quoting_lit] = STATE(265), - [sym_syn_quoting_lit] = STATE(265), - [sym_unquote_splicing_lit] = STATE(265), - [sym_unquoting_lit] = STATE(265), + [sym_meta_lit] = STATE(312), + [sym_old_meta_lit] = STATE(315), + [sym_list_lit] = STATE(284), + [sym__bare_list_lit] = STATE(299), + [sym_map_lit] = STATE(284), + [sym__bare_map_lit] = STATE(214), + [sym_vec_lit] = STATE(284), + [sym__bare_vec_lit] = STATE(217), + [sym_set_lit] = STATE(284), + [sym__bare_set_lit] = STATE(219), + [sym_anon_fn_lit] = STATE(284), + [sym_regex_lit] = STATE(284), + [sym_read_cond_lit] = STATE(284), + [sym_splicing_read_cond_lit] = STATE(284), + [sym_ns_map_lit] = STATE(284), + [sym_var_quoting_lit] = STATE(284), + [sym_sym_val_lit] = STATE(284), + [sym_evaling_lit] = STATE(284), + [sym_tagged_or_ctor_lit] = STATE(284), + [sym_derefing_lit] = STATE(284), + [sym_quoting_lit] = STATE(284), + [sym_syn_quoting_lit] = STATE(284), + [sym_unquote_splicing_lit] = STATE(284), + [sym_unquoting_lit] = STATE(284), [aux_sym_dis_expr_repeat1] = STATE(301), [aux_sym_sym_lit_repeat1] = STATE(303), - [sym__ws] = ACTIONS(264), - [sym_comment] = ACTIONS(264), + [sym__ws] = ACTIONS(320), + [sym_comment] = ACTIONS(320), [anon_sym_POUND_] = ACTIONS(7), - [sym_num_lit] = ACTIONS(750), + [sym_num_lit] = ACTIONS(428), [anon_sym_SLASH] = ACTIONS(9), - [anon_sym_COLON] = ACTIONS(716), - [anon_sym_COLON_COLON] = ACTIONS(718), + [anon_sym_COLON] = ACTIONS(698), + [anon_sym_COLON_COLON] = ACTIONS(700), [aux_sym_str_lit_token1] = ACTIONS(15), - [sym_char_lit] = ACTIONS(750), - [sym_nil_lit] = ACTIONS(752), - [sym_bool_lit] = ACTIONS(752), + [sym_char_lit] = ACTIONS(428), + [sym_nil_lit] = ACTIONS(430), + [sym_bool_lit] = ACTIONS(430), [aux_sym__sym_qualified_token1] = ACTIONS(19), [anon_sym_CARET] = ACTIONS(21), [anon_sym_POUND_CARET] = ACTIONS(23), [anon_sym_LPAREN] = ACTIONS(25), [anon_sym_LBRACE] = ACTIONS(27), [anon_sym_LBRACK] = ACTIONS(29), - [anon_sym_POUND] = ACTIONS(720), + [anon_sym_POUND] = ACTIONS(704), [anon_sym_POUND_QMARK] = ACTIONS(33), [anon_sym_POUND_QMARK_AT] = ACTIONS(35), - [anon_sym_POUND_SQUOTE] = ACTIONS(722), - [anon_sym_POUND_POUND] = ACTIONS(724), + [anon_sym_POUND_SQUOTE] = ACTIONS(706), + [anon_sym_POUND_POUND] = ACTIONS(708), [anon_sym_POUND_EQ] = ACTIONS(41), - [anon_sym_AT] = ACTIONS(726), - [anon_sym_SQUOTE] = ACTIONS(728), - [anon_sym_BQUOTE] = ACTIONS(730), - [anon_sym_TILDE_AT] = ACTIONS(732), - [anon_sym_TILDE] = ACTIONS(734), + [anon_sym_AT] = ACTIONS(710), + [anon_sym_SQUOTE] = ACTIONS(712), + [anon_sym_BQUOTE] = ACTIONS(714), + [anon_sym_TILDE_AT] = ACTIONS(716), + [anon_sym_TILDE] = ACTIONS(718), }, - [129] = { - [sym__gap] = STATE(163), - [sym_dis_expr] = STATE(163), - [sym__form] = STATE(222), - [sym_kwd_lit] = STATE(222), - [sym_str_lit] = STATE(222), - [sym_sym_lit] = STATE(222), + [STATE(124)] = { + [sym__gap] = STATE(301), + [sym_dis_expr] = STATE(301), + [sym__form] = STATE(285), + [sym_kwd_lit] = STATE(285), + [sym_str_lit] = STATE(285), + [sym_sym_lit] = STATE(285), [sym__metadata_lit] = STATE(424), - [sym_meta_lit] = STATE(314), - [sym_old_meta_lit] = STATE(313), - [sym_list_lit] = STATE(222), - [sym__bare_list_lit] = STATE(218), - [sym_map_lit] = STATE(222), - [sym__bare_map_lit] = STATE(219), - [sym_vec_lit] = STATE(222), - [sym__bare_vec_lit] = STATE(226), - [sym_set_lit] = STATE(222), - [sym__bare_set_lit] = STATE(227), - [sym_anon_fn_lit] = STATE(222), - [sym_regex_lit] = STATE(222), - [sym_read_cond_lit] = STATE(222), - [sym_splicing_read_cond_lit] = STATE(222), - [sym_ns_map_lit] = STATE(222), - [sym_var_quoting_lit] = STATE(222), - [sym_sym_val_lit] = STATE(222), - [sym_evaling_lit] = STATE(222), - [sym_tagged_or_ctor_lit] = STATE(222), - [sym_derefing_lit] = STATE(222), - [sym_quoting_lit] = STATE(222), - [sym_syn_quoting_lit] = STATE(222), - [sym_unquote_splicing_lit] = STATE(222), - [sym_unquoting_lit] = STATE(222), - [aux_sym_dis_expr_repeat1] = STATE(163), - [aux_sym_sym_lit_repeat1] = STATE(305), - [sym__ws] = ACTIONS(754), - [sym_comment] = ACTIONS(754), + [sym_meta_lit] = STATE(312), + [sym_old_meta_lit] = STATE(315), + [sym_list_lit] = STATE(285), + [sym__bare_list_lit] = STATE(299), + [sym_map_lit] = STATE(285), + [sym__bare_map_lit] = STATE(214), + [sym_vec_lit] = STATE(285), + [sym__bare_vec_lit] = STATE(217), + [sym_set_lit] = STATE(285), + [sym__bare_set_lit] = STATE(219), + [sym_anon_fn_lit] = STATE(285), + [sym_regex_lit] = STATE(285), + [sym_read_cond_lit] = STATE(285), + [sym_splicing_read_cond_lit] = STATE(285), + [sym_ns_map_lit] = STATE(285), + [sym_var_quoting_lit] = STATE(285), + [sym_sym_val_lit] = STATE(285), + [sym_evaling_lit] = STATE(285), + [sym_tagged_or_ctor_lit] = STATE(285), + [sym_derefing_lit] = STATE(285), + [sym_quoting_lit] = STATE(285), + [sym_syn_quoting_lit] = STATE(285), + [sym_unquote_splicing_lit] = STATE(285), + [sym_unquoting_lit] = STATE(285), + [aux_sym_dis_expr_repeat1] = STATE(301), + [aux_sym_sym_lit_repeat1] = STATE(303), + [sym__ws] = ACTIONS(320), + [sym_comment] = ACTIONS(320), [anon_sym_POUND_] = ACTIONS(7), - [sym_num_lit] = ACTIONS(756), + [sym_num_lit] = ACTIONS(432), [anon_sym_SLASH] = ACTIONS(9), - [anon_sym_COLON] = ACTIONS(11), - [anon_sym_COLON_COLON] = ACTIONS(13), + [anon_sym_COLON] = ACTIONS(698), + [anon_sym_COLON_COLON] = ACTIONS(700), [aux_sym_str_lit_token1] = ACTIONS(15), - [sym_char_lit] = ACTIONS(756), - [sym_nil_lit] = ACTIONS(758), - [sym_bool_lit] = ACTIONS(758), + [sym_char_lit] = ACTIONS(432), + [sym_nil_lit] = ACTIONS(434), + [sym_bool_lit] = ACTIONS(434), [aux_sym__sym_qualified_token1] = ACTIONS(19), [anon_sym_CARET] = ACTIONS(21), [anon_sym_POUND_CARET] = ACTIONS(23), [anon_sym_LPAREN] = ACTIONS(25), [anon_sym_LBRACE] = ACTIONS(27), [anon_sym_LBRACK] = ACTIONS(29), - [anon_sym_POUND] = ACTIONS(31), + [anon_sym_POUND] = ACTIONS(704), [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_SQUOTE] = ACTIONS(706), + [anon_sym_POUND_POUND] = ACTIONS(708), [anon_sym_POUND_EQ] = ACTIONS(41), - [anon_sym_AT] = ACTIONS(43), - [anon_sym_SQUOTE] = ACTIONS(45), - [anon_sym_BQUOTE] = ACTIONS(47), - [anon_sym_TILDE_AT] = ACTIONS(49), - [anon_sym_TILDE] = ACTIONS(51), + [anon_sym_AT] = ACTIONS(710), + [anon_sym_SQUOTE] = ACTIONS(712), + [anon_sym_BQUOTE] = ACTIONS(714), + [anon_sym_TILDE_AT] = ACTIONS(716), + [anon_sym_TILDE] = ACTIONS(718), }, - [130] = { + [STATE(125)] = { [sym__gap] = STATE(301), [sym_dis_expr] = STATE(301), - [sym__form] = STATE(300), - [sym_kwd_lit] = STATE(300), - [sym_str_lit] = STATE(300), - [sym_sym_lit] = STATE(300), + [sym__form] = STATE(286), + [sym_kwd_lit] = STATE(286), + [sym_str_lit] = STATE(286), + [sym_sym_lit] = STATE(286), [sym__metadata_lit] = STATE(424), - [sym_meta_lit] = STATE(314), - [sym_old_meta_lit] = STATE(313), - [sym_list_lit] = STATE(300), - [sym__bare_list_lit] = STATE(218), - [sym_map_lit] = STATE(300), - [sym__bare_map_lit] = STATE(219), - [sym_vec_lit] = STATE(300), - [sym__bare_vec_lit] = STATE(226), - [sym_set_lit] = STATE(300), - [sym__bare_set_lit] = STATE(227), - [sym_anon_fn_lit] = STATE(300), - [sym_regex_lit] = STATE(300), - [sym_read_cond_lit] = STATE(300), - [sym_splicing_read_cond_lit] = STATE(300), - [sym_ns_map_lit] = STATE(300), - [sym_var_quoting_lit] = STATE(300), - [sym_sym_val_lit] = STATE(300), - [sym_evaling_lit] = STATE(300), - [sym_tagged_or_ctor_lit] = STATE(300), - [sym_derefing_lit] = STATE(300), - [sym_quoting_lit] = STATE(300), - [sym_syn_quoting_lit] = STATE(300), - [sym_unquote_splicing_lit] = STATE(300), - [sym_unquoting_lit] = STATE(300), + [sym_meta_lit] = STATE(312), + [sym_old_meta_lit] = STATE(315), + [sym_list_lit] = STATE(286), + [sym__bare_list_lit] = STATE(299), + [sym_map_lit] = STATE(286), + [sym__bare_map_lit] = STATE(214), + [sym_vec_lit] = STATE(286), + [sym__bare_vec_lit] = STATE(217), + [sym_set_lit] = STATE(286), + [sym__bare_set_lit] = STATE(219), + [sym_anon_fn_lit] = STATE(286), + [sym_regex_lit] = STATE(286), + [sym_read_cond_lit] = STATE(286), + [sym_splicing_read_cond_lit] = STATE(286), + [sym_ns_map_lit] = STATE(286), + [sym_var_quoting_lit] = STATE(286), + [sym_sym_val_lit] = STATE(286), + [sym_evaling_lit] = STATE(286), + [sym_tagged_or_ctor_lit] = STATE(286), + [sym_derefing_lit] = STATE(286), + [sym_quoting_lit] = STATE(286), + [sym_syn_quoting_lit] = STATE(286), + [sym_unquote_splicing_lit] = STATE(286), + [sym_unquoting_lit] = STATE(286), [aux_sym_dis_expr_repeat1] = STATE(301), [aux_sym_sym_lit_repeat1] = STATE(303), - [sym__ws] = ACTIONS(264), - [sym_comment] = ACTIONS(264), + [sym__ws] = ACTIONS(320), + [sym_comment] = ACTIONS(320), [anon_sym_POUND_] = ACTIONS(7), - [sym_num_lit] = ACTIONS(760), + [sym_num_lit] = ACTIONS(436), [anon_sym_SLASH] = ACTIONS(9), - [anon_sym_COLON] = ACTIONS(716), - [anon_sym_COLON_COLON] = ACTIONS(718), + [anon_sym_COLON] = ACTIONS(698), + [anon_sym_COLON_COLON] = ACTIONS(700), [aux_sym_str_lit_token1] = ACTIONS(15), - [sym_char_lit] = ACTIONS(760), - [sym_nil_lit] = ACTIONS(762), - [sym_bool_lit] = ACTIONS(762), + [sym_char_lit] = ACTIONS(436), + [sym_nil_lit] = ACTIONS(438), + [sym_bool_lit] = ACTIONS(438), [aux_sym__sym_qualified_token1] = ACTIONS(19), [anon_sym_CARET] = ACTIONS(21), [anon_sym_POUND_CARET] = ACTIONS(23), [anon_sym_LPAREN] = ACTIONS(25), [anon_sym_LBRACE] = ACTIONS(27), [anon_sym_LBRACK] = ACTIONS(29), - [anon_sym_POUND] = ACTIONS(720), + [anon_sym_POUND] = ACTIONS(704), [anon_sym_POUND_QMARK] = ACTIONS(33), [anon_sym_POUND_QMARK_AT] = ACTIONS(35), - [anon_sym_POUND_SQUOTE] = ACTIONS(722), - [anon_sym_POUND_POUND] = ACTIONS(724), + [anon_sym_POUND_SQUOTE] = ACTIONS(706), + [anon_sym_POUND_POUND] = ACTIONS(708), [anon_sym_POUND_EQ] = ACTIONS(41), - [anon_sym_AT] = ACTIONS(726), - [anon_sym_SQUOTE] = ACTIONS(728), - [anon_sym_BQUOTE] = ACTIONS(730), - [anon_sym_TILDE_AT] = ACTIONS(732), - [anon_sym_TILDE] = ACTIONS(734), + [anon_sym_AT] = ACTIONS(710), + [anon_sym_SQUOTE] = ACTIONS(712), + [anon_sym_BQUOTE] = ACTIONS(714), + [anon_sym_TILDE_AT] = ACTIONS(716), + [anon_sym_TILDE] = ACTIONS(718), }, - [131] = { + [STATE(126)] = { [sym__gap] = STATE(301), [sym_dis_expr] = STATE(301), - [sym__form] = STATE(274), - [sym_kwd_lit] = STATE(274), - [sym_str_lit] = STATE(274), - [sym_sym_lit] = STATE(274), + [sym__form] = STATE(287), + [sym_kwd_lit] = STATE(287), + [sym_str_lit] = STATE(287), + [sym_sym_lit] = STATE(287), [sym__metadata_lit] = STATE(424), - [sym_meta_lit] = STATE(314), - [sym_old_meta_lit] = STATE(313), - [sym_list_lit] = STATE(274), - [sym__bare_list_lit] = STATE(218), - [sym_map_lit] = STATE(274), - [sym__bare_map_lit] = STATE(219), - [sym_vec_lit] = STATE(274), - [sym__bare_vec_lit] = STATE(226), - [sym_set_lit] = STATE(274), - [sym__bare_set_lit] = STATE(227), - [sym_anon_fn_lit] = STATE(274), - [sym_regex_lit] = STATE(274), - [sym_read_cond_lit] = STATE(274), - [sym_splicing_read_cond_lit] = STATE(274), - [sym_ns_map_lit] = STATE(274), - [sym_var_quoting_lit] = STATE(274), - [sym_sym_val_lit] = STATE(274), - [sym_evaling_lit] = STATE(274), - [sym_tagged_or_ctor_lit] = STATE(274), - [sym_derefing_lit] = STATE(274), - [sym_quoting_lit] = STATE(274), - [sym_syn_quoting_lit] = STATE(274), - [sym_unquote_splicing_lit] = STATE(274), - [sym_unquoting_lit] = STATE(274), + [sym_meta_lit] = STATE(312), + [sym_old_meta_lit] = STATE(315), + [sym_list_lit] = STATE(287), + [sym__bare_list_lit] = STATE(299), + [sym_map_lit] = STATE(287), + [sym__bare_map_lit] = STATE(214), + [sym_vec_lit] = STATE(287), + [sym__bare_vec_lit] = STATE(217), + [sym_set_lit] = STATE(287), + [sym__bare_set_lit] = STATE(219), + [sym_anon_fn_lit] = STATE(287), + [sym_regex_lit] = STATE(287), + [sym_read_cond_lit] = STATE(287), + [sym_splicing_read_cond_lit] = STATE(287), + [sym_ns_map_lit] = STATE(287), + [sym_var_quoting_lit] = STATE(287), + [sym_sym_val_lit] = STATE(287), + [sym_evaling_lit] = STATE(287), + [sym_tagged_or_ctor_lit] = STATE(287), + [sym_derefing_lit] = STATE(287), + [sym_quoting_lit] = STATE(287), + [sym_syn_quoting_lit] = STATE(287), + [sym_unquote_splicing_lit] = STATE(287), + [sym_unquoting_lit] = STATE(287), [aux_sym_dis_expr_repeat1] = STATE(301), [aux_sym_sym_lit_repeat1] = STATE(303), - [sym__ws] = ACTIONS(264), - [sym_comment] = ACTIONS(264), + [sym__ws] = ACTIONS(320), + [sym_comment] = ACTIONS(320), [anon_sym_POUND_] = ACTIONS(7), - [sym_num_lit] = ACTIONS(764), + [sym_num_lit] = ACTIONS(440), [anon_sym_SLASH] = ACTIONS(9), - [anon_sym_COLON] = ACTIONS(716), - [anon_sym_COLON_COLON] = ACTIONS(718), + [anon_sym_COLON] = ACTIONS(698), + [anon_sym_COLON_COLON] = ACTIONS(700), [aux_sym_str_lit_token1] = ACTIONS(15), - [sym_char_lit] = ACTIONS(764), - [sym_nil_lit] = ACTIONS(766), - [sym_bool_lit] = ACTIONS(766), + [sym_char_lit] = ACTIONS(440), + [sym_nil_lit] = ACTIONS(442), + [sym_bool_lit] = ACTIONS(442), [aux_sym__sym_qualified_token1] = ACTIONS(19), [anon_sym_CARET] = ACTIONS(21), [anon_sym_POUND_CARET] = ACTIONS(23), [anon_sym_LPAREN] = ACTIONS(25), [anon_sym_LBRACE] = ACTIONS(27), [anon_sym_LBRACK] = ACTIONS(29), - [anon_sym_POUND] = ACTIONS(720), + [anon_sym_POUND] = ACTIONS(704), [anon_sym_POUND_QMARK] = ACTIONS(33), [anon_sym_POUND_QMARK_AT] = ACTIONS(35), - [anon_sym_POUND_SQUOTE] = ACTIONS(722), - [anon_sym_POUND_POUND] = ACTIONS(724), + [anon_sym_POUND_SQUOTE] = ACTIONS(706), + [anon_sym_POUND_POUND] = ACTIONS(708), [anon_sym_POUND_EQ] = ACTIONS(41), - [anon_sym_AT] = ACTIONS(726), - [anon_sym_SQUOTE] = ACTIONS(728), - [anon_sym_BQUOTE] = ACTIONS(730), - [anon_sym_TILDE_AT] = ACTIONS(732), - [anon_sym_TILDE] = ACTIONS(734), + [anon_sym_AT] = ACTIONS(710), + [anon_sym_SQUOTE] = ACTIONS(712), + [anon_sym_BQUOTE] = ACTIONS(714), + [anon_sym_TILDE_AT] = ACTIONS(716), + [anon_sym_TILDE] = ACTIONS(718), }, - [132] = { + [STATE(127)] = { [sym__gap] = STATE(301), [sym_dis_expr] = STATE(301), - [sym__form] = STATE(250), - [sym_kwd_lit] = STATE(250), - [sym_str_lit] = STATE(250), - [sym_sym_lit] = STATE(250), + [sym__form] = STATE(288), + [sym_kwd_lit] = STATE(288), + [sym_str_lit] = STATE(288), + [sym_sym_lit] = STATE(288), [sym__metadata_lit] = STATE(424), - [sym_meta_lit] = STATE(314), - [sym_old_meta_lit] = STATE(313), - [sym_list_lit] = STATE(250), - [sym__bare_list_lit] = STATE(218), - [sym_map_lit] = STATE(250), - [sym__bare_map_lit] = STATE(219), - [sym_vec_lit] = STATE(250), - [sym__bare_vec_lit] = STATE(226), - [sym_set_lit] = STATE(250), - [sym__bare_set_lit] = STATE(227), - [sym_anon_fn_lit] = STATE(250), - [sym_regex_lit] = STATE(250), - [sym_read_cond_lit] = STATE(250), - [sym_splicing_read_cond_lit] = STATE(250), - [sym_ns_map_lit] = STATE(250), - [sym_var_quoting_lit] = STATE(250), - [sym_sym_val_lit] = STATE(250), - [sym_evaling_lit] = STATE(250), - [sym_tagged_or_ctor_lit] = STATE(250), - [sym_derefing_lit] = STATE(250), - [sym_quoting_lit] = STATE(250), - [sym_syn_quoting_lit] = STATE(250), - [sym_unquote_splicing_lit] = STATE(250), - [sym_unquoting_lit] = STATE(250), + [sym_meta_lit] = STATE(312), + [sym_old_meta_lit] = STATE(315), + [sym_list_lit] = STATE(288), + [sym__bare_list_lit] = STATE(299), + [sym_map_lit] = STATE(288), + [sym__bare_map_lit] = STATE(214), + [sym_vec_lit] = STATE(288), + [sym__bare_vec_lit] = STATE(217), + [sym_set_lit] = STATE(288), + [sym__bare_set_lit] = STATE(219), + [sym_anon_fn_lit] = STATE(288), + [sym_regex_lit] = STATE(288), + [sym_read_cond_lit] = STATE(288), + [sym_splicing_read_cond_lit] = STATE(288), + [sym_ns_map_lit] = STATE(288), + [sym_var_quoting_lit] = STATE(288), + [sym_sym_val_lit] = STATE(288), + [sym_evaling_lit] = STATE(288), + [sym_tagged_or_ctor_lit] = STATE(288), + [sym_derefing_lit] = STATE(288), + [sym_quoting_lit] = STATE(288), + [sym_syn_quoting_lit] = STATE(288), + [sym_unquote_splicing_lit] = STATE(288), + [sym_unquoting_lit] = STATE(288), [aux_sym_dis_expr_repeat1] = STATE(301), [aux_sym_sym_lit_repeat1] = STATE(303), - [sym__ws] = ACTIONS(264), - [sym_comment] = ACTIONS(264), + [sym__ws] = ACTIONS(320), + [sym_comment] = ACTIONS(320), [anon_sym_POUND_] = ACTIONS(7), - [sym_num_lit] = ACTIONS(768), + [sym_num_lit] = ACTIONS(444), [anon_sym_SLASH] = ACTIONS(9), - [anon_sym_COLON] = ACTIONS(716), - [anon_sym_COLON_COLON] = ACTIONS(718), + [anon_sym_COLON] = ACTIONS(698), + [anon_sym_COLON_COLON] = ACTIONS(700), [aux_sym_str_lit_token1] = ACTIONS(15), - [sym_char_lit] = ACTIONS(768), - [sym_nil_lit] = ACTIONS(770), - [sym_bool_lit] = ACTIONS(770), + [sym_char_lit] = ACTIONS(444), + [sym_nil_lit] = ACTIONS(446), + [sym_bool_lit] = ACTIONS(446), [aux_sym__sym_qualified_token1] = ACTIONS(19), [anon_sym_CARET] = ACTIONS(21), [anon_sym_POUND_CARET] = ACTIONS(23), [anon_sym_LPAREN] = ACTIONS(25), [anon_sym_LBRACE] = ACTIONS(27), [anon_sym_LBRACK] = ACTIONS(29), - [anon_sym_POUND] = ACTIONS(720), + [anon_sym_POUND] = ACTIONS(704), [anon_sym_POUND_QMARK] = ACTIONS(33), [anon_sym_POUND_QMARK_AT] = ACTIONS(35), - [anon_sym_POUND_SQUOTE] = ACTIONS(722), - [anon_sym_POUND_POUND] = ACTIONS(724), + [anon_sym_POUND_SQUOTE] = ACTIONS(706), + [anon_sym_POUND_POUND] = ACTIONS(708), [anon_sym_POUND_EQ] = ACTIONS(41), - [anon_sym_AT] = ACTIONS(726), - [anon_sym_SQUOTE] = ACTIONS(728), - [anon_sym_BQUOTE] = ACTIONS(730), - [anon_sym_TILDE_AT] = ACTIONS(732), - [anon_sym_TILDE] = ACTIONS(734), - }, - [133] = { - [sym__gap] = STATE(301), - [sym_dis_expr] = STATE(301), - [sym__form] = STATE(249), - [sym_kwd_lit] = STATE(249), - [sym_str_lit] = STATE(249), - [sym_sym_lit] = STATE(249), + [anon_sym_AT] = ACTIONS(710), + [anon_sym_SQUOTE] = ACTIONS(712), + [anon_sym_BQUOTE] = ACTIONS(714), + [anon_sym_TILDE_AT] = ACTIONS(716), + [anon_sym_TILDE] = ACTIONS(718), + }, + [STATE(128)] = { + [sym__gap] = STATE(91), + [sym_dis_expr] = STATE(91), + [sym__form] = STATE(224), + [sym_kwd_lit] = STATE(224), + [sym_str_lit] = STATE(224), + [sym_sym_lit] = STATE(224), [sym__metadata_lit] = STATE(424), - [sym_meta_lit] = STATE(314), - [sym_old_meta_lit] = STATE(313), - [sym_list_lit] = STATE(249), - [sym__bare_list_lit] = STATE(218), - [sym_map_lit] = STATE(249), - [sym__bare_map_lit] = STATE(219), - [sym_vec_lit] = STATE(249), - [sym__bare_vec_lit] = STATE(226), - [sym_set_lit] = STATE(249), - [sym__bare_set_lit] = STATE(227), - [sym_anon_fn_lit] = STATE(249), - [sym_regex_lit] = STATE(249), - [sym_read_cond_lit] = STATE(249), - [sym_splicing_read_cond_lit] = STATE(249), - [sym_ns_map_lit] = STATE(249), - [sym_var_quoting_lit] = STATE(249), - [sym_sym_val_lit] = STATE(249), - [sym_evaling_lit] = STATE(249), - [sym_tagged_or_ctor_lit] = STATE(249), - [sym_derefing_lit] = STATE(249), - [sym_quoting_lit] = STATE(249), - [sym_syn_quoting_lit] = STATE(249), - [sym_unquote_splicing_lit] = STATE(249), - [sym_unquoting_lit] = STATE(249), - [aux_sym_dis_expr_repeat1] = STATE(301), - [aux_sym_sym_lit_repeat1] = STATE(303), - [sym__ws] = ACTIONS(264), - [sym_comment] = ACTIONS(264), + [sym_meta_lit] = STATE(312), + [sym_old_meta_lit] = STATE(315), + [sym_list_lit] = STATE(224), + [sym__bare_list_lit] = STATE(299), + [sym_map_lit] = STATE(224), + [sym__bare_map_lit] = STATE(214), + [sym_vec_lit] = STATE(224), + [sym__bare_vec_lit] = STATE(217), + [sym_set_lit] = STATE(224), + [sym__bare_set_lit] = STATE(219), + [sym_anon_fn_lit] = STATE(224), + [sym_regex_lit] = STATE(224), + [sym_read_cond_lit] = STATE(224), + [sym_splicing_read_cond_lit] = STATE(224), + [sym_ns_map_lit] = STATE(224), + [sym_var_quoting_lit] = STATE(224), + [sym_sym_val_lit] = STATE(224), + [sym_evaling_lit] = STATE(224), + [sym_tagged_or_ctor_lit] = STATE(224), + [sym_derefing_lit] = STATE(224), + [sym_quoting_lit] = STATE(224), + [sym_syn_quoting_lit] = STATE(224), + [sym_unquote_splicing_lit] = STATE(224), + [sym_unquoting_lit] = STATE(224), + [aux_sym_dis_expr_repeat1] = STATE(91), + [aux_sym_sym_lit_repeat1] = STATE(305), + [sym__ws] = ACTIONS(770), + [sym_comment] = ACTIONS(770), [anon_sym_POUND_] = ACTIONS(7), [sym_num_lit] = ACTIONS(772), [anon_sym_SLASH] = ACTIONS(9), - [anon_sym_COLON] = ACTIONS(716), - [anon_sym_COLON_COLON] = ACTIONS(718), + [anon_sym_COLON] = ACTIONS(11), + [anon_sym_COLON_COLON] = ACTIONS(13), [aux_sym_str_lit_token1] = ACTIONS(15), [sym_char_lit] = ACTIONS(772), [sym_nil_lit] = ACTIONS(774), @@ -11886,99 +11023,162 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(25), [anon_sym_LBRACE] = ACTIONS(27), [anon_sym_LBRACK] = ACTIONS(29), - [anon_sym_POUND] = ACTIONS(720), + [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_TILDE_AT] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(51), + }, + [STATE(129)] = { + [sym__gap] = STATE(130), + [sym_dis_expr] = STATE(130), + [sym__form] = STATE(292), + [sym_kwd_lit] = STATE(292), + [sym_str_lit] = STATE(292), + [sym_sym_lit] = STATE(292), + [sym__metadata_lit] = STATE(424), + [sym_meta_lit] = STATE(312), + [sym_old_meta_lit] = STATE(315), + [sym_list_lit] = STATE(292), + [sym__bare_list_lit] = STATE(299), + [sym_map_lit] = STATE(292), + [sym__bare_map_lit] = STATE(214), + [sym_vec_lit] = STATE(292), + [sym__bare_vec_lit] = STATE(217), + [sym_set_lit] = STATE(292), + [sym__bare_set_lit] = STATE(219), + [sym_anon_fn_lit] = STATE(292), + [sym_regex_lit] = STATE(292), + [sym_read_cond_lit] = STATE(292), + [sym_splicing_read_cond_lit] = STATE(292), + [sym_ns_map_lit] = STATE(292), + [sym_var_quoting_lit] = STATE(292), + [sym_sym_val_lit] = STATE(292), + [sym_evaling_lit] = STATE(292), + [sym_tagged_or_ctor_lit] = STATE(292), + [sym_derefing_lit] = STATE(292), + [sym_quoting_lit] = STATE(292), + [sym_syn_quoting_lit] = STATE(292), + [sym_unquote_splicing_lit] = STATE(292), + [sym_unquoting_lit] = STATE(292), + [aux_sym_dis_expr_repeat1] = STATE(130), + [aux_sym_sym_lit_repeat1] = STATE(303), + [sym__ws] = ACTIONS(776), + [sym_comment] = ACTIONS(776), + [anon_sym_POUND_] = ACTIONS(7), + [sym_num_lit] = ACTIONS(454), + [anon_sym_SLASH] = ACTIONS(9), + [anon_sym_COLON] = ACTIONS(698), + [anon_sym_COLON_COLON] = ACTIONS(700), + [aux_sym_str_lit_token1] = ACTIONS(15), + [sym_char_lit] = ACTIONS(454), + [sym_nil_lit] = ACTIONS(456), + [sym_bool_lit] = ACTIONS(456), + [aux_sym__sym_qualified_token1] = ACTIONS(19), + [anon_sym_CARET] = ACTIONS(21), + [anon_sym_POUND_CARET] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_POUND] = ACTIONS(704), [anon_sym_POUND_QMARK] = ACTIONS(33), [anon_sym_POUND_QMARK_AT] = ACTIONS(35), - [anon_sym_POUND_SQUOTE] = ACTIONS(722), - [anon_sym_POUND_POUND] = ACTIONS(724), + [anon_sym_POUND_SQUOTE] = ACTIONS(706), + [anon_sym_POUND_POUND] = ACTIONS(708), [anon_sym_POUND_EQ] = ACTIONS(41), - [anon_sym_AT] = ACTIONS(726), - [anon_sym_SQUOTE] = ACTIONS(728), - [anon_sym_BQUOTE] = ACTIONS(730), - [anon_sym_TILDE_AT] = ACTIONS(732), - [anon_sym_TILDE] = ACTIONS(734), + [anon_sym_AT] = ACTIONS(710), + [anon_sym_SQUOTE] = ACTIONS(712), + [anon_sym_BQUOTE] = ACTIONS(714), + [anon_sym_TILDE_AT] = ACTIONS(716), + [anon_sym_TILDE] = ACTIONS(718), }, - [134] = { + [STATE(130)] = { [sym__gap] = STATE(301), [sym_dis_expr] = STATE(301), - [sym__form] = STATE(243), - [sym_kwd_lit] = STATE(243), - [sym_str_lit] = STATE(243), - [sym_sym_lit] = STATE(243), + [sym__form] = STATE(294), + [sym_kwd_lit] = STATE(294), + [sym_str_lit] = STATE(294), + [sym_sym_lit] = STATE(294), [sym__metadata_lit] = STATE(424), - [sym_meta_lit] = STATE(314), - [sym_old_meta_lit] = STATE(313), - [sym_list_lit] = STATE(243), - [sym__bare_list_lit] = STATE(218), - [sym_map_lit] = STATE(243), - [sym__bare_map_lit] = STATE(219), - [sym_vec_lit] = STATE(243), - [sym__bare_vec_lit] = STATE(226), - [sym_set_lit] = STATE(243), - [sym__bare_set_lit] = STATE(227), - [sym_anon_fn_lit] = STATE(243), - [sym_regex_lit] = STATE(243), - [sym_read_cond_lit] = STATE(243), - [sym_splicing_read_cond_lit] = STATE(243), - [sym_ns_map_lit] = STATE(243), - [sym_var_quoting_lit] = STATE(243), - [sym_sym_val_lit] = STATE(243), - [sym_evaling_lit] = STATE(243), - [sym_tagged_or_ctor_lit] = STATE(243), - [sym_derefing_lit] = STATE(243), - [sym_quoting_lit] = STATE(243), - [sym_syn_quoting_lit] = STATE(243), - [sym_unquote_splicing_lit] = STATE(243), - [sym_unquoting_lit] = STATE(243), + [sym_meta_lit] = STATE(312), + [sym_old_meta_lit] = STATE(315), + [sym_list_lit] = STATE(294), + [sym__bare_list_lit] = STATE(299), + [sym_map_lit] = STATE(294), + [sym__bare_map_lit] = STATE(214), + [sym_vec_lit] = STATE(294), + [sym__bare_vec_lit] = STATE(217), + [sym_set_lit] = STATE(294), + [sym__bare_set_lit] = STATE(219), + [sym_anon_fn_lit] = STATE(294), + [sym_regex_lit] = STATE(294), + [sym_read_cond_lit] = STATE(294), + [sym_splicing_read_cond_lit] = STATE(294), + [sym_ns_map_lit] = STATE(294), + [sym_var_quoting_lit] = STATE(294), + [sym_sym_val_lit] = STATE(294), + [sym_evaling_lit] = STATE(294), + [sym_tagged_or_ctor_lit] = STATE(294), + [sym_derefing_lit] = STATE(294), + [sym_quoting_lit] = STATE(294), + [sym_syn_quoting_lit] = STATE(294), + [sym_unquote_splicing_lit] = STATE(294), + [sym_unquoting_lit] = STATE(294), [aux_sym_dis_expr_repeat1] = STATE(301), [aux_sym_sym_lit_repeat1] = STATE(303), - [sym__ws] = ACTIONS(264), - [sym_comment] = ACTIONS(264), + [sym__ws] = ACTIONS(320), + [sym_comment] = ACTIONS(320), [anon_sym_POUND_] = ACTIONS(7), - [sym_num_lit] = ACTIONS(776), + [sym_num_lit] = ACTIONS(458), [anon_sym_SLASH] = ACTIONS(9), - [anon_sym_COLON] = ACTIONS(716), - [anon_sym_COLON_COLON] = ACTIONS(718), + [anon_sym_COLON] = ACTIONS(698), + [anon_sym_COLON_COLON] = ACTIONS(700), [aux_sym_str_lit_token1] = ACTIONS(15), - [sym_char_lit] = ACTIONS(776), - [sym_nil_lit] = ACTIONS(778), - [sym_bool_lit] = ACTIONS(778), + [sym_char_lit] = ACTIONS(458), + [sym_nil_lit] = ACTIONS(460), + [sym_bool_lit] = ACTIONS(460), [aux_sym__sym_qualified_token1] = ACTIONS(19), [anon_sym_CARET] = ACTIONS(21), [anon_sym_POUND_CARET] = ACTIONS(23), [anon_sym_LPAREN] = ACTIONS(25), [anon_sym_LBRACE] = ACTIONS(27), [anon_sym_LBRACK] = ACTIONS(29), - [anon_sym_POUND] = ACTIONS(720), + [anon_sym_POUND] = ACTIONS(704), [anon_sym_POUND_QMARK] = ACTIONS(33), [anon_sym_POUND_QMARK_AT] = ACTIONS(35), - [anon_sym_POUND_SQUOTE] = ACTIONS(722), - [anon_sym_POUND_POUND] = ACTIONS(724), + [anon_sym_POUND_SQUOTE] = ACTIONS(706), + [anon_sym_POUND_POUND] = ACTIONS(708), [anon_sym_POUND_EQ] = ACTIONS(41), - [anon_sym_AT] = ACTIONS(726), - [anon_sym_SQUOTE] = ACTIONS(728), - [anon_sym_BQUOTE] = ACTIONS(730), - [anon_sym_TILDE_AT] = ACTIONS(732), - [anon_sym_TILDE] = ACTIONS(734), + [anon_sym_AT] = ACTIONS(710), + [anon_sym_SQUOTE] = ACTIONS(712), + [anon_sym_BQUOTE] = ACTIONS(714), + [anon_sym_TILDE_AT] = ACTIONS(716), + [anon_sym_TILDE] = ACTIONS(718), }, - [135] = { - [sym__gap] = STATE(301), - [sym_dis_expr] = STATE(301), + [STATE(131)] = { + [sym__gap] = STATE(99), + [sym_dis_expr] = STATE(99), [sym__form] = STATE(224), [sym_kwd_lit] = STATE(224), [sym_str_lit] = STATE(224), [sym_sym_lit] = STATE(224), [sym__metadata_lit] = STATE(424), - [sym_meta_lit] = STATE(314), - [sym_old_meta_lit] = STATE(313), + [sym_meta_lit] = STATE(312), + [sym_old_meta_lit] = STATE(315), [sym_list_lit] = STATE(224), - [sym__bare_list_lit] = STATE(218), + [sym__bare_list_lit] = STATE(299), [sym_map_lit] = STATE(224), - [sym__bare_map_lit] = STATE(219), + [sym__bare_map_lit] = STATE(214), [sym_vec_lit] = STATE(224), - [sym__bare_vec_lit] = STATE(226), + [sym__bare_vec_lit] = STATE(217), [sym_set_lit] = STATE(224), - [sym__bare_set_lit] = STATE(227), + [sym__bare_set_lit] = STATE(219), [sym_anon_fn_lit] = STATE(224), [sym_regex_lit] = STATE(224), [sym_read_cond_lit] = STATE(224), @@ -11993,2575 +11193,2638 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_syn_quoting_lit] = STATE(224), [sym_unquote_splicing_lit] = STATE(224), [sym_unquoting_lit] = STATE(224), - [aux_sym_dis_expr_repeat1] = STATE(301), + [aux_sym_dis_expr_repeat1] = STATE(99), [aux_sym_sym_lit_repeat1] = STATE(303), - [sym__ws] = ACTIONS(264), - [sym_comment] = ACTIONS(264), + [sym__ws] = ACTIONS(778), + [sym_comment] = ACTIONS(778), [anon_sym_POUND_] = ACTIONS(7), - [sym_num_lit] = ACTIONS(780), + [sym_num_lit] = ACTIONS(772), [anon_sym_SLASH] = ACTIONS(9), - [anon_sym_COLON] = ACTIONS(716), - [anon_sym_COLON_COLON] = ACTIONS(718), + [anon_sym_COLON] = ACTIONS(698), + [anon_sym_COLON_COLON] = ACTIONS(700), [aux_sym_str_lit_token1] = ACTIONS(15), - [sym_char_lit] = ACTIONS(780), - [sym_nil_lit] = ACTIONS(782), - [sym_bool_lit] = ACTIONS(782), + [sym_char_lit] = ACTIONS(772), + [sym_nil_lit] = ACTIONS(774), + [sym_bool_lit] = ACTIONS(774), [aux_sym__sym_qualified_token1] = ACTIONS(19), [anon_sym_CARET] = ACTIONS(21), [anon_sym_POUND_CARET] = ACTIONS(23), [anon_sym_LPAREN] = ACTIONS(25), [anon_sym_LBRACE] = ACTIONS(27), [anon_sym_LBRACK] = ACTIONS(29), - [anon_sym_POUND] = ACTIONS(720), + [anon_sym_POUND] = ACTIONS(704), [anon_sym_POUND_QMARK] = ACTIONS(33), [anon_sym_POUND_QMARK_AT] = ACTIONS(35), - [anon_sym_POUND_SQUOTE] = ACTIONS(722), - [anon_sym_POUND_POUND] = ACTIONS(724), + [anon_sym_POUND_SQUOTE] = ACTIONS(706), + [anon_sym_POUND_POUND] = ACTIONS(708), [anon_sym_POUND_EQ] = ACTIONS(41), - [anon_sym_AT] = ACTIONS(726), - [anon_sym_SQUOTE] = ACTIONS(728), - [anon_sym_BQUOTE] = ACTIONS(730), - [anon_sym_TILDE_AT] = ACTIONS(732), - [anon_sym_TILDE] = ACTIONS(734), + [anon_sym_AT] = ACTIONS(710), + [anon_sym_SQUOTE] = ACTIONS(712), + [anon_sym_BQUOTE] = ACTIONS(714), + [anon_sym_TILDE_AT] = ACTIONS(716), + [anon_sym_TILDE] = ACTIONS(718), }, - [136] = { - [sym__gap] = STATE(127), - [sym_dis_expr] = STATE(127), - [sym__form] = STATE(222), - [sym_kwd_lit] = STATE(222), - [sym_str_lit] = STATE(222), - [sym_sym_lit] = STATE(222), + [STATE(132)] = { + [sym__gap] = STATE(134), + [sym_dis_expr] = STATE(134), + [sym__form] = STATE(401), + [sym_kwd_lit] = STATE(401), + [sym_str_lit] = STATE(401), + [sym_sym_lit] = STATE(401), + [sym__metadata_lit] = STATE(424), + [sym_meta_lit] = STATE(312), + [sym_old_meta_lit] = STATE(315), + [sym_list_lit] = STATE(401), + [sym__bare_list_lit] = STATE(402), + [sym_map_lit] = STATE(401), + [sym__bare_map_lit] = STATE(403), + [sym_vec_lit] = STATE(401), + [sym__bare_vec_lit] = STATE(404), + [sym_set_lit] = STATE(401), + [sym__bare_set_lit] = STATE(405), + [sym_anon_fn_lit] = STATE(401), + [sym_regex_lit] = STATE(401), + [sym_read_cond_lit] = STATE(401), + [sym_splicing_read_cond_lit] = STATE(401), + [sym_ns_map_lit] = STATE(401), + [sym_var_quoting_lit] = STATE(401), + [sym_sym_val_lit] = STATE(401), + [sym_evaling_lit] = STATE(401), + [sym_tagged_or_ctor_lit] = STATE(401), + [sym_derefing_lit] = STATE(401), + [sym_quoting_lit] = STATE(401), + [sym_syn_quoting_lit] = STATE(401), + [sym_unquote_splicing_lit] = STATE(401), + [sym_unquoting_lit] = STATE(401), + [aux_sym_dis_expr_repeat1] = STATE(134), + [aux_sym_sym_lit_repeat1] = STATE(304), + [sym__ws] = ACTIONS(780), + [sym_comment] = ACTIONS(780), + [anon_sym_POUND_] = ACTIONS(7), + [sym_num_lit] = ACTIONS(686), + [anon_sym_SLASH] = ACTIONS(268), + [anon_sym_COLON] = ACTIONS(526), + [anon_sym_COLON_COLON] = ACTIONS(528), + [aux_sym_str_lit_token1] = ACTIONS(274), + [sym_char_lit] = ACTIONS(686), + [sym_nil_lit] = ACTIONS(688), + [sym_bool_lit] = ACTIONS(688), + [aux_sym__sym_qualified_token1] = ACTIONS(278), + [anon_sym_CARET] = ACTIONS(21), + [anon_sym_POUND_CARET] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(280), + [anon_sym_LBRACE] = ACTIONS(282), + [anon_sym_LBRACK] = ACTIONS(284), + [anon_sym_POUND] = ACTIONS(532), + [anon_sym_POUND_QMARK] = ACTIONS(288), + [anon_sym_POUND_QMARK_AT] = ACTIONS(290), + [anon_sym_POUND_SQUOTE] = ACTIONS(534), + [anon_sym_POUND_POUND] = ACTIONS(536), + [anon_sym_POUND_EQ] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(538), + [anon_sym_SQUOTE] = ACTIONS(540), + [anon_sym_BQUOTE] = ACTIONS(542), + [anon_sym_TILDE_AT] = ACTIONS(544), + [anon_sym_TILDE] = ACTIONS(546), + }, + [STATE(133)] = { + [sym__gap] = STATE(135), + [sym_dis_expr] = STATE(135), + [sym__form] = STATE(332), + [sym_kwd_lit] = STATE(332), + [sym_str_lit] = STATE(332), + [sym_sym_lit] = STATE(332), + [sym__metadata_lit] = STATE(424), + [sym_meta_lit] = STATE(312), + [sym_old_meta_lit] = STATE(315), + [sym_list_lit] = STATE(332), + [sym__bare_list_lit] = STATE(402), + [sym_map_lit] = STATE(332), + [sym__bare_map_lit] = STATE(403), + [sym_vec_lit] = STATE(332), + [sym__bare_vec_lit] = STATE(404), + [sym_set_lit] = STATE(332), + [sym__bare_set_lit] = STATE(405), + [sym_anon_fn_lit] = STATE(332), + [sym_regex_lit] = STATE(332), + [sym_read_cond_lit] = STATE(332), + [sym_splicing_read_cond_lit] = STATE(332), + [sym_ns_map_lit] = STATE(332), + [sym_var_quoting_lit] = STATE(332), + [sym_sym_val_lit] = STATE(332), + [sym_evaling_lit] = STATE(332), + [sym_tagged_or_ctor_lit] = STATE(332), + [sym_derefing_lit] = STATE(332), + [sym_quoting_lit] = STATE(332), + [sym_syn_quoting_lit] = STATE(332), + [sym_unquote_splicing_lit] = STATE(332), + [sym_unquoting_lit] = STATE(332), + [aux_sym_dis_expr_repeat1] = STATE(135), + [aux_sym_sym_lit_repeat1] = STATE(304), + [sym__ws] = ACTIONS(782), + [sym_comment] = ACTIONS(782), + [anon_sym_POUND_] = ACTIONS(7), + [sym_num_lit] = ACTIONS(680), + [anon_sym_SLASH] = ACTIONS(268), + [anon_sym_COLON] = ACTIONS(526), + [anon_sym_COLON_COLON] = ACTIONS(528), + [aux_sym_str_lit_token1] = ACTIONS(274), + [sym_char_lit] = ACTIONS(680), + [sym_nil_lit] = ACTIONS(682), + [sym_bool_lit] = ACTIONS(682), + [aux_sym__sym_qualified_token1] = ACTIONS(278), + [anon_sym_CARET] = ACTIONS(21), + [anon_sym_POUND_CARET] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(280), + [anon_sym_LBRACE] = ACTIONS(282), + [anon_sym_LBRACK] = ACTIONS(284), + [anon_sym_POUND] = ACTIONS(532), + [anon_sym_POUND_QMARK] = ACTIONS(288), + [anon_sym_POUND_QMARK_AT] = ACTIONS(290), + [anon_sym_POUND_SQUOTE] = ACTIONS(534), + [anon_sym_POUND_POUND] = ACTIONS(536), + [anon_sym_POUND_EQ] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(538), + [anon_sym_SQUOTE] = ACTIONS(540), + [anon_sym_BQUOTE] = ACTIONS(542), + [anon_sym_TILDE_AT] = ACTIONS(544), + [anon_sym_TILDE] = ACTIONS(546), + }, + [STATE(134)] = { + [sym__gap] = STATE(301), + [sym_dis_expr] = STATE(301), + [sym__form] = STATE(329), + [sym_kwd_lit] = STATE(329), + [sym_str_lit] = STATE(329), + [sym_sym_lit] = STATE(329), + [sym__metadata_lit] = STATE(424), + [sym_meta_lit] = STATE(312), + [sym_old_meta_lit] = STATE(315), + [sym_list_lit] = STATE(329), + [sym__bare_list_lit] = STATE(402), + [sym_map_lit] = STATE(329), + [sym__bare_map_lit] = STATE(403), + [sym_vec_lit] = STATE(329), + [sym__bare_vec_lit] = STATE(404), + [sym_set_lit] = STATE(329), + [sym__bare_set_lit] = STATE(405), + [sym_anon_fn_lit] = STATE(329), + [sym_regex_lit] = STATE(329), + [sym_read_cond_lit] = STATE(329), + [sym_splicing_read_cond_lit] = STATE(329), + [sym_ns_map_lit] = STATE(329), + [sym_var_quoting_lit] = STATE(329), + [sym_sym_val_lit] = STATE(329), + [sym_evaling_lit] = STATE(329), + [sym_tagged_or_ctor_lit] = STATE(329), + [sym_derefing_lit] = STATE(329), + [sym_quoting_lit] = STATE(329), + [sym_syn_quoting_lit] = STATE(329), + [sym_unquote_splicing_lit] = STATE(329), + [sym_unquoting_lit] = STATE(329), + [aux_sym_dis_expr_repeat1] = STATE(301), + [aux_sym_sym_lit_repeat1] = STATE(304), + [sym__ws] = ACTIONS(320), + [sym_comment] = ACTIONS(320), + [anon_sym_POUND_] = ACTIONS(7), + [sym_num_lit] = ACTIONS(740), + [anon_sym_SLASH] = ACTIONS(268), + [anon_sym_COLON] = ACTIONS(526), + [anon_sym_COLON_COLON] = ACTIONS(528), + [aux_sym_str_lit_token1] = ACTIONS(274), + [sym_char_lit] = ACTIONS(740), + [sym_nil_lit] = ACTIONS(742), + [sym_bool_lit] = ACTIONS(742), + [aux_sym__sym_qualified_token1] = ACTIONS(278), + [anon_sym_CARET] = ACTIONS(21), + [anon_sym_POUND_CARET] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(280), + [anon_sym_LBRACE] = ACTIONS(282), + [anon_sym_LBRACK] = ACTIONS(284), + [anon_sym_POUND] = ACTIONS(532), + [anon_sym_POUND_QMARK] = ACTIONS(288), + [anon_sym_POUND_QMARK_AT] = ACTIONS(290), + [anon_sym_POUND_SQUOTE] = ACTIONS(534), + [anon_sym_POUND_POUND] = ACTIONS(536), + [anon_sym_POUND_EQ] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(538), + [anon_sym_SQUOTE] = ACTIONS(540), + [anon_sym_BQUOTE] = ACTIONS(542), + [anon_sym_TILDE_AT] = ACTIONS(544), + [anon_sym_TILDE] = ACTIONS(546), + }, + [STATE(135)] = { + [sym__gap] = STATE(301), + [sym_dis_expr] = STATE(301), + [sym__form] = STATE(330), + [sym_kwd_lit] = STATE(330), + [sym_str_lit] = STATE(330), + [sym_sym_lit] = STATE(330), + [sym__metadata_lit] = STATE(424), + [sym_meta_lit] = STATE(312), + [sym_old_meta_lit] = STATE(315), + [sym_list_lit] = STATE(330), + [sym__bare_list_lit] = STATE(402), + [sym_map_lit] = STATE(330), + [sym__bare_map_lit] = STATE(403), + [sym_vec_lit] = STATE(330), + [sym__bare_vec_lit] = STATE(404), + [sym_set_lit] = STATE(330), + [sym__bare_set_lit] = STATE(405), + [sym_anon_fn_lit] = STATE(330), + [sym_regex_lit] = STATE(330), + [sym_read_cond_lit] = STATE(330), + [sym_splicing_read_cond_lit] = STATE(330), + [sym_ns_map_lit] = STATE(330), + [sym_var_quoting_lit] = STATE(330), + [sym_sym_val_lit] = STATE(330), + [sym_evaling_lit] = STATE(330), + [sym_tagged_or_ctor_lit] = STATE(330), + [sym_derefing_lit] = STATE(330), + [sym_quoting_lit] = STATE(330), + [sym_syn_quoting_lit] = STATE(330), + [sym_unquote_splicing_lit] = STATE(330), + [sym_unquoting_lit] = STATE(330), + [aux_sym_dis_expr_repeat1] = STATE(301), + [aux_sym_sym_lit_repeat1] = STATE(304), + [sym__ws] = ACTIONS(320), + [sym_comment] = ACTIONS(320), + [anon_sym_POUND_] = ACTIONS(7), + [sym_num_lit] = ACTIONS(744), + [anon_sym_SLASH] = ACTIONS(268), + [anon_sym_COLON] = ACTIONS(526), + [anon_sym_COLON_COLON] = ACTIONS(528), + [aux_sym_str_lit_token1] = ACTIONS(274), + [sym_char_lit] = ACTIONS(744), + [sym_nil_lit] = ACTIONS(746), + [sym_bool_lit] = ACTIONS(746), + [aux_sym__sym_qualified_token1] = ACTIONS(278), + [anon_sym_CARET] = ACTIONS(21), + [anon_sym_POUND_CARET] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(280), + [anon_sym_LBRACE] = ACTIONS(282), + [anon_sym_LBRACK] = ACTIONS(284), + [anon_sym_POUND] = ACTIONS(532), + [anon_sym_POUND_QMARK] = ACTIONS(288), + [anon_sym_POUND_QMARK_AT] = ACTIONS(290), + [anon_sym_POUND_SQUOTE] = ACTIONS(534), + [anon_sym_POUND_POUND] = ACTIONS(536), + [anon_sym_POUND_EQ] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(538), + [anon_sym_SQUOTE] = ACTIONS(540), + [anon_sym_BQUOTE] = ACTIONS(542), + [anon_sym_TILDE_AT] = ACTIONS(544), + [anon_sym_TILDE] = ACTIONS(546), + }, + [STATE(136)] = { + [sym__gap] = STATE(145), + [sym_dis_expr] = STATE(145), + [sym__form] = STATE(418), + [sym_kwd_lit] = STATE(418), + [sym_str_lit] = STATE(418), + [sym_sym_lit] = STATE(418), [sym__metadata_lit] = STATE(424), - [sym_meta_lit] = STATE(314), - [sym_old_meta_lit] = STATE(313), - [sym_list_lit] = STATE(222), - [sym__bare_list_lit] = STATE(218), - [sym_map_lit] = STATE(222), - [sym__bare_map_lit] = STATE(219), - [sym_vec_lit] = STATE(222), - [sym__bare_vec_lit] = STATE(226), - [sym_set_lit] = STATE(222), - [sym__bare_set_lit] = STATE(227), - [sym_anon_fn_lit] = STATE(222), - [sym_regex_lit] = STATE(222), - [sym_read_cond_lit] = STATE(222), - [sym_splicing_read_cond_lit] = STATE(222), - [sym_ns_map_lit] = STATE(222), - [sym_var_quoting_lit] = STATE(222), - [sym_sym_val_lit] = STATE(222), - [sym_evaling_lit] = STATE(222), - [sym_tagged_or_ctor_lit] = STATE(222), - [sym_derefing_lit] = STATE(222), - [sym_quoting_lit] = STATE(222), - [sym_syn_quoting_lit] = STATE(222), - [sym_unquote_splicing_lit] = STATE(222), - [sym_unquoting_lit] = STATE(222), - [aux_sym_dis_expr_repeat1] = STATE(127), - [aux_sym_sym_lit_repeat1] = STATE(303), + [sym_meta_lit] = STATE(312), + [sym_old_meta_lit] = STATE(315), + [sym_list_lit] = STATE(418), + [sym__bare_list_lit] = STATE(402), + [sym_map_lit] = STATE(418), + [sym__bare_map_lit] = STATE(403), + [sym_vec_lit] = STATE(418), + [sym__bare_vec_lit] = STATE(404), + [sym_set_lit] = STATE(418), + [sym__bare_set_lit] = STATE(405), + [sym_anon_fn_lit] = STATE(418), + [sym_regex_lit] = STATE(418), + [sym_read_cond_lit] = STATE(418), + [sym_splicing_read_cond_lit] = STATE(418), + [sym_ns_map_lit] = STATE(418), + [sym_var_quoting_lit] = STATE(418), + [sym_sym_val_lit] = STATE(418), + [sym_evaling_lit] = STATE(418), + [sym_tagged_or_ctor_lit] = STATE(418), + [sym_derefing_lit] = STATE(418), + [sym_quoting_lit] = STATE(418), + [sym_syn_quoting_lit] = STATE(418), + [sym_unquote_splicing_lit] = STATE(418), + [sym_unquoting_lit] = STATE(418), + [aux_sym_dis_expr_repeat1] = STATE(145), + [aux_sym_sym_lit_repeat1] = STATE(304), [sym__ws] = ACTIONS(784), [sym_comment] = ACTIONS(784), [anon_sym_POUND_] = ACTIONS(7), - [sym_num_lit] = ACTIONS(756), - [anon_sym_SLASH] = ACTIONS(9), - [anon_sym_COLON] = ACTIONS(716), - [anon_sym_COLON_COLON] = ACTIONS(718), - [aux_sym_str_lit_token1] = ACTIONS(15), - [sym_char_lit] = ACTIONS(756), - [sym_nil_lit] = ACTIONS(758), - [sym_bool_lit] = ACTIONS(758), - [aux_sym__sym_qualified_token1] = ACTIONS(19), + [sym_num_lit] = ACTIONS(464), + [anon_sym_SLASH] = ACTIONS(268), + [anon_sym_COLON] = ACTIONS(526), + [anon_sym_COLON_COLON] = ACTIONS(528), + [aux_sym_str_lit_token1] = ACTIONS(274), + [sym_char_lit] = ACTIONS(464), + [sym_nil_lit] = ACTIONS(470), + [sym_bool_lit] = ACTIONS(470), + [aux_sym__sym_qualified_token1] = ACTIONS(278), [anon_sym_CARET] = ACTIONS(21), [anon_sym_POUND_CARET] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_LBRACK] = ACTIONS(29), - [anon_sym_POUND] = ACTIONS(720), - [anon_sym_POUND_QMARK] = ACTIONS(33), - [anon_sym_POUND_QMARK_AT] = ACTIONS(35), - [anon_sym_POUND_SQUOTE] = ACTIONS(722), - [anon_sym_POUND_POUND] = ACTIONS(724), - [anon_sym_POUND_EQ] = ACTIONS(41), - [anon_sym_AT] = ACTIONS(726), - [anon_sym_SQUOTE] = ACTIONS(728), - [anon_sym_BQUOTE] = ACTIONS(730), - [anon_sym_TILDE_AT] = ACTIONS(732), - [anon_sym_TILDE] = ACTIONS(734), - }, - [137] = { - [sym__gap] = STATE(128), - [sym_dis_expr] = STATE(128), - [sym__form] = STATE(298), - [sym_kwd_lit] = STATE(298), - [sym_str_lit] = STATE(298), - [sym_sym_lit] = STATE(298), + [anon_sym_LPAREN] = ACTIONS(280), + [anon_sym_LBRACE] = ACTIONS(282), + [anon_sym_LBRACK] = ACTIONS(284), + [anon_sym_POUND] = ACTIONS(532), + [anon_sym_POUND_QMARK] = ACTIONS(288), + [anon_sym_POUND_QMARK_AT] = ACTIONS(290), + [anon_sym_POUND_SQUOTE] = ACTIONS(534), + [anon_sym_POUND_POUND] = ACTIONS(536), + [anon_sym_POUND_EQ] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(538), + [anon_sym_SQUOTE] = ACTIONS(540), + [anon_sym_BQUOTE] = ACTIONS(542), + [anon_sym_TILDE_AT] = ACTIONS(544), + [anon_sym_TILDE] = ACTIONS(546), + }, + [STATE(137)] = { + [sym__gap] = STATE(146), + [sym_dis_expr] = STATE(146), + [sym__form] = STATE(419), + [sym_kwd_lit] = STATE(419), + [sym_str_lit] = STATE(419), + [sym_sym_lit] = STATE(419), [sym__metadata_lit] = STATE(424), - [sym_meta_lit] = STATE(314), - [sym_old_meta_lit] = STATE(313), - [sym_list_lit] = STATE(298), - [sym__bare_list_lit] = STATE(218), - [sym_map_lit] = STATE(298), - [sym__bare_map_lit] = STATE(219), - [sym_vec_lit] = STATE(298), - [sym__bare_vec_lit] = STATE(226), - [sym_set_lit] = STATE(298), - [sym__bare_set_lit] = STATE(227), - [sym_anon_fn_lit] = STATE(298), - [sym_regex_lit] = STATE(298), - [sym_read_cond_lit] = STATE(298), - [sym_splicing_read_cond_lit] = STATE(298), - [sym_ns_map_lit] = STATE(298), - [sym_var_quoting_lit] = STATE(298), - [sym_sym_val_lit] = STATE(298), - [sym_evaling_lit] = STATE(298), - [sym_tagged_or_ctor_lit] = STATE(298), - [sym_derefing_lit] = STATE(298), - [sym_quoting_lit] = STATE(298), - [sym_syn_quoting_lit] = STATE(298), - [sym_unquote_splicing_lit] = STATE(298), - [sym_unquoting_lit] = STATE(298), - [aux_sym_dis_expr_repeat1] = STATE(128), - [aux_sym_sym_lit_repeat1] = STATE(303), + [sym_meta_lit] = STATE(312), + [sym_old_meta_lit] = STATE(315), + [sym_list_lit] = STATE(419), + [sym__bare_list_lit] = STATE(402), + [sym_map_lit] = STATE(419), + [sym__bare_map_lit] = STATE(403), + [sym_vec_lit] = STATE(419), + [sym__bare_vec_lit] = STATE(404), + [sym_set_lit] = STATE(419), + [sym__bare_set_lit] = STATE(405), + [sym_anon_fn_lit] = STATE(419), + [sym_regex_lit] = STATE(419), + [sym_read_cond_lit] = STATE(419), + [sym_splicing_read_cond_lit] = STATE(419), + [sym_ns_map_lit] = STATE(419), + [sym_var_quoting_lit] = STATE(419), + [sym_sym_val_lit] = STATE(419), + [sym_evaling_lit] = STATE(419), + [sym_tagged_or_ctor_lit] = STATE(419), + [sym_derefing_lit] = STATE(419), + [sym_quoting_lit] = STATE(419), + [sym_syn_quoting_lit] = STATE(419), + [sym_unquote_splicing_lit] = STATE(419), + [sym_unquoting_lit] = STATE(419), + [aux_sym_dis_expr_repeat1] = STATE(146), + [aux_sym_sym_lit_repeat1] = STATE(304), [sym__ws] = ACTIONS(786), [sym_comment] = ACTIONS(786), [anon_sym_POUND_] = ACTIONS(7), - [sym_num_lit] = ACTIONS(698), - [anon_sym_SLASH] = ACTIONS(9), - [anon_sym_COLON] = ACTIONS(716), - [anon_sym_COLON_COLON] = ACTIONS(718), - [aux_sym_str_lit_token1] = ACTIONS(15), - [sym_char_lit] = ACTIONS(698), - [sym_nil_lit] = ACTIONS(700), - [sym_bool_lit] = ACTIONS(700), - [aux_sym__sym_qualified_token1] = ACTIONS(19), + [sym_num_lit] = ACTIONS(490), + [anon_sym_SLASH] = ACTIONS(268), + [anon_sym_COLON] = ACTIONS(526), + [anon_sym_COLON_COLON] = ACTIONS(528), + [aux_sym_str_lit_token1] = ACTIONS(274), + [sym_char_lit] = ACTIONS(490), + [sym_nil_lit] = ACTIONS(492), + [sym_bool_lit] = ACTIONS(492), + [aux_sym__sym_qualified_token1] = ACTIONS(278), [anon_sym_CARET] = ACTIONS(21), [anon_sym_POUND_CARET] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_LBRACK] = ACTIONS(29), - [anon_sym_POUND] = ACTIONS(720), - [anon_sym_POUND_QMARK] = ACTIONS(33), - [anon_sym_POUND_QMARK_AT] = ACTIONS(35), - [anon_sym_POUND_SQUOTE] = ACTIONS(722), - [anon_sym_POUND_POUND] = ACTIONS(724), - [anon_sym_POUND_EQ] = ACTIONS(41), - [anon_sym_AT] = ACTIONS(726), - [anon_sym_SQUOTE] = ACTIONS(728), - [anon_sym_BQUOTE] = ACTIONS(730), - [anon_sym_TILDE_AT] = ACTIONS(732), - [anon_sym_TILDE] = ACTIONS(734), - }, - [138] = { - [sym__gap] = STATE(301), - [sym_dis_expr] = STATE(301), - [sym__form] = STATE(224), - [sym_kwd_lit] = STATE(224), - [sym_str_lit] = STATE(224), - [sym_sym_lit] = STATE(224), + [anon_sym_LPAREN] = ACTIONS(280), + [anon_sym_LBRACE] = ACTIONS(282), + [anon_sym_LBRACK] = ACTIONS(284), + [anon_sym_POUND] = ACTIONS(532), + [anon_sym_POUND_QMARK] = ACTIONS(288), + [anon_sym_POUND_QMARK_AT] = ACTIONS(290), + [anon_sym_POUND_SQUOTE] = ACTIONS(534), + [anon_sym_POUND_POUND] = ACTIONS(536), + [anon_sym_POUND_EQ] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(538), + [anon_sym_SQUOTE] = ACTIONS(540), + [anon_sym_BQUOTE] = ACTIONS(542), + [anon_sym_TILDE_AT] = ACTIONS(544), + [anon_sym_TILDE] = ACTIONS(546), + }, + [STATE(138)] = { + [sym__gap] = STATE(147), + [sym_dis_expr] = STATE(147), + [sym__form] = STATE(337), + [sym_kwd_lit] = STATE(337), + [sym_str_lit] = STATE(337), + [sym_sym_lit] = STATE(337), [sym__metadata_lit] = STATE(424), - [sym_meta_lit] = STATE(314), - [sym_old_meta_lit] = STATE(313), - [sym_list_lit] = STATE(224), - [sym__bare_list_lit] = STATE(218), - [sym_map_lit] = STATE(224), - [sym__bare_map_lit] = STATE(219), - [sym_vec_lit] = STATE(224), - [sym__bare_vec_lit] = STATE(226), - [sym_set_lit] = STATE(224), - [sym__bare_set_lit] = STATE(227), - [sym_anon_fn_lit] = STATE(224), - [sym_regex_lit] = STATE(224), - [sym_read_cond_lit] = STATE(224), - [sym_splicing_read_cond_lit] = STATE(224), - [sym_ns_map_lit] = STATE(224), - [sym_var_quoting_lit] = STATE(224), - [sym_sym_val_lit] = STATE(224), - [sym_evaling_lit] = STATE(224), - [sym_tagged_or_ctor_lit] = STATE(224), - [sym_derefing_lit] = STATE(224), - [sym_quoting_lit] = STATE(224), - [sym_syn_quoting_lit] = STATE(224), - [sym_unquote_splicing_lit] = STATE(224), - [sym_unquoting_lit] = STATE(224), - [aux_sym_dis_expr_repeat1] = STATE(301), - [aux_sym_sym_lit_repeat1] = STATE(305), - [sym__ws] = ACTIONS(264), - [sym_comment] = ACTIONS(264), + [sym_meta_lit] = STATE(312), + [sym_old_meta_lit] = STATE(315), + [sym_list_lit] = STATE(337), + [sym__bare_list_lit] = STATE(402), + [sym_map_lit] = STATE(337), + [sym__bare_map_lit] = STATE(403), + [sym_vec_lit] = STATE(337), + [sym__bare_vec_lit] = STATE(404), + [sym_set_lit] = STATE(337), + [sym__bare_set_lit] = STATE(405), + [sym_anon_fn_lit] = STATE(337), + [sym_regex_lit] = STATE(337), + [sym_read_cond_lit] = STATE(337), + [sym_splicing_read_cond_lit] = STATE(337), + [sym_ns_map_lit] = STATE(337), + [sym_var_quoting_lit] = STATE(337), + [sym_sym_val_lit] = STATE(337), + [sym_evaling_lit] = STATE(337), + [sym_tagged_or_ctor_lit] = STATE(337), + [sym_derefing_lit] = STATE(337), + [sym_quoting_lit] = STATE(337), + [sym_syn_quoting_lit] = STATE(337), + [sym_unquote_splicing_lit] = STATE(337), + [sym_unquoting_lit] = STATE(337), + [aux_sym_dis_expr_repeat1] = STATE(147), + [aux_sym_sym_lit_repeat1] = STATE(304), + [sym__ws] = ACTIONS(788), + [sym_comment] = ACTIONS(788), [anon_sym_POUND_] = ACTIONS(7), - [sym_num_lit] = ACTIONS(780), - [anon_sym_SLASH] = ACTIONS(9), - [anon_sym_COLON] = ACTIONS(11), - [anon_sym_COLON_COLON] = ACTIONS(13), - [aux_sym_str_lit_token1] = ACTIONS(15), - [sym_char_lit] = ACTIONS(780), - [sym_nil_lit] = ACTIONS(782), - [sym_bool_lit] = ACTIONS(782), - [aux_sym__sym_qualified_token1] = ACTIONS(19), + [sym_num_lit] = ACTIONS(496), + [anon_sym_SLASH] = ACTIONS(268), + [anon_sym_COLON] = ACTIONS(526), + [anon_sym_COLON_COLON] = ACTIONS(528), + [aux_sym_str_lit_token1] = ACTIONS(274), + [sym_char_lit] = ACTIONS(496), + [sym_nil_lit] = ACTIONS(498), + [sym_bool_lit] = ACTIONS(498), + [aux_sym__sym_qualified_token1] = ACTIONS(278), [anon_sym_CARET] = ACTIONS(21), [anon_sym_POUND_CARET] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_LBRACK] = 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_TILDE_AT] = ACTIONS(49), - [anon_sym_TILDE] = ACTIONS(51), + [anon_sym_LPAREN] = ACTIONS(280), + [anon_sym_LBRACE] = ACTIONS(282), + [anon_sym_LBRACK] = ACTIONS(284), + [anon_sym_POUND] = ACTIONS(532), + [anon_sym_POUND_QMARK] = ACTIONS(288), + [anon_sym_POUND_QMARK_AT] = ACTIONS(290), + [anon_sym_POUND_SQUOTE] = ACTIONS(534), + [anon_sym_POUND_POUND] = ACTIONS(536), + [anon_sym_POUND_EQ] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(538), + [anon_sym_SQUOTE] = ACTIONS(540), + [anon_sym_BQUOTE] = ACTIONS(542), + [anon_sym_TILDE_AT] = ACTIONS(544), + [anon_sym_TILDE] = ACTIONS(546), }, - [139] = { - [sym__gap] = STATE(301), - [sym_dis_expr] = STATE(301), - [sym__form] = STATE(297), - [sym_kwd_lit] = STATE(297), - [sym_str_lit] = STATE(297), - [sym_sym_lit] = STATE(297), + [STATE(139)] = { + [sym__gap] = STATE(148), + [sym_dis_expr] = STATE(148), + [sym__form] = STATE(364), + [sym_kwd_lit] = STATE(364), + [sym_str_lit] = STATE(364), + [sym_sym_lit] = STATE(364), [sym__metadata_lit] = STATE(424), - [sym_meta_lit] = STATE(314), - [sym_old_meta_lit] = STATE(313), - [sym_list_lit] = STATE(297), - [sym__bare_list_lit] = STATE(218), - [sym_map_lit] = STATE(297), - [sym__bare_map_lit] = STATE(219), - [sym_vec_lit] = STATE(297), - [sym__bare_vec_lit] = STATE(226), - [sym_set_lit] = STATE(297), - [sym__bare_set_lit] = STATE(227), - [sym_anon_fn_lit] = STATE(297), - [sym_regex_lit] = STATE(297), - [sym_read_cond_lit] = STATE(297), - [sym_splicing_read_cond_lit] = STATE(297), - [sym_ns_map_lit] = STATE(297), - [sym_var_quoting_lit] = STATE(297), - [sym_sym_val_lit] = STATE(297), - [sym_evaling_lit] = STATE(297), - [sym_tagged_or_ctor_lit] = STATE(297), - [sym_derefing_lit] = STATE(297), - [sym_quoting_lit] = STATE(297), - [sym_syn_quoting_lit] = STATE(297), - [sym_unquote_splicing_lit] = STATE(297), - [sym_unquoting_lit] = STATE(297), - [aux_sym_dis_expr_repeat1] = STATE(301), - [aux_sym_sym_lit_repeat1] = STATE(303), - [sym__ws] = ACTIONS(264), - [sym_comment] = ACTIONS(264), + [sym_meta_lit] = STATE(312), + [sym_old_meta_lit] = STATE(315), + [sym_list_lit] = STATE(364), + [sym__bare_list_lit] = STATE(402), + [sym_map_lit] = STATE(364), + [sym__bare_map_lit] = STATE(403), + [sym_vec_lit] = STATE(364), + [sym__bare_vec_lit] = STATE(404), + [sym_set_lit] = STATE(364), + [sym__bare_set_lit] = STATE(405), + [sym_anon_fn_lit] = STATE(364), + [sym_regex_lit] = STATE(364), + [sym_read_cond_lit] = STATE(364), + [sym_splicing_read_cond_lit] = STATE(364), + [sym_ns_map_lit] = STATE(364), + [sym_var_quoting_lit] = STATE(364), + [sym_sym_val_lit] = STATE(364), + [sym_evaling_lit] = STATE(364), + [sym_tagged_or_ctor_lit] = STATE(364), + [sym_derefing_lit] = STATE(364), + [sym_quoting_lit] = STATE(364), + [sym_syn_quoting_lit] = STATE(364), + [sym_unquote_splicing_lit] = STATE(364), + [sym_unquoting_lit] = STATE(364), + [aux_sym_dis_expr_repeat1] = STATE(148), + [aux_sym_sym_lit_repeat1] = STATE(304), + [sym__ws] = ACTIONS(790), + [sym_comment] = ACTIONS(790), [anon_sym_POUND_] = ACTIONS(7), - [sym_num_lit] = ACTIONS(692), - [anon_sym_SLASH] = ACTIONS(9), - [anon_sym_COLON] = ACTIONS(716), - [anon_sym_COLON_COLON] = ACTIONS(718), - [aux_sym_str_lit_token1] = ACTIONS(15), - [sym_char_lit] = ACTIONS(692), - [sym_nil_lit] = ACTIONS(694), - [sym_bool_lit] = ACTIONS(694), - [aux_sym__sym_qualified_token1] = ACTIONS(19), + [sym_num_lit] = ACTIONS(502), + [anon_sym_SLASH] = ACTIONS(268), + [anon_sym_COLON] = ACTIONS(526), + [anon_sym_COLON_COLON] = ACTIONS(528), + [aux_sym_str_lit_token1] = ACTIONS(274), + [sym_char_lit] = ACTIONS(502), + [sym_nil_lit] = ACTIONS(504), + [sym_bool_lit] = ACTIONS(504), + [aux_sym__sym_qualified_token1] = ACTIONS(278), [anon_sym_CARET] = ACTIONS(21), [anon_sym_POUND_CARET] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_LBRACK] = ACTIONS(29), - [anon_sym_POUND] = ACTIONS(720), - [anon_sym_POUND_QMARK] = ACTIONS(33), - [anon_sym_POUND_QMARK_AT] = ACTIONS(35), - [anon_sym_POUND_SQUOTE] = ACTIONS(722), - [anon_sym_POUND_POUND] = ACTIONS(724), - [anon_sym_POUND_EQ] = ACTIONS(41), - [anon_sym_AT] = ACTIONS(726), - [anon_sym_SQUOTE] = ACTIONS(728), - [anon_sym_BQUOTE] = ACTIONS(730), - [anon_sym_TILDE_AT] = ACTIONS(732), - [anon_sym_TILDE] = ACTIONS(734), - }, - [140] = { - [sym__gap] = STATE(301), - [sym_dis_expr] = STATE(301), - [sym__form] = STATE(411), - [sym_kwd_lit] = STATE(411), - [sym_str_lit] = STATE(411), - [sym_sym_lit] = STATE(411), + [anon_sym_LPAREN] = ACTIONS(280), + [anon_sym_LBRACE] = ACTIONS(282), + [anon_sym_LBRACK] = ACTIONS(284), + [anon_sym_POUND] = ACTIONS(532), + [anon_sym_POUND_QMARK] = ACTIONS(288), + [anon_sym_POUND_QMARK_AT] = ACTIONS(290), + [anon_sym_POUND_SQUOTE] = ACTIONS(534), + [anon_sym_POUND_POUND] = ACTIONS(536), + [anon_sym_POUND_EQ] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(538), + [anon_sym_SQUOTE] = ACTIONS(540), + [anon_sym_BQUOTE] = ACTIONS(542), + [anon_sym_TILDE_AT] = ACTIONS(544), + [anon_sym_TILDE] = ACTIONS(546), + }, + [STATE(140)] = { + [sym__gap] = STATE(149), + [sym_dis_expr] = STATE(149), + [sym__form] = STATE(395), + [sym_kwd_lit] = STATE(395), + [sym_str_lit] = STATE(395), + [sym_sym_lit] = STATE(395), [sym__metadata_lit] = STATE(424), - [sym_meta_lit] = STATE(314), - [sym_old_meta_lit] = STATE(313), - [sym_list_lit] = STATE(411), - [sym__bare_list_lit] = STATE(392), - [sym_map_lit] = STATE(411), + [sym_meta_lit] = STATE(312), + [sym_old_meta_lit] = STATE(315), + [sym_list_lit] = STATE(395), + [sym__bare_list_lit] = STATE(402), + [sym_map_lit] = STATE(395), [sym__bare_map_lit] = STATE(403), - [sym_vec_lit] = STATE(411), - [sym__bare_vec_lit] = STATE(423), - [sym_set_lit] = STATE(411), - [sym__bare_set_lit] = STATE(374), - [sym_anon_fn_lit] = STATE(411), - [sym_regex_lit] = STATE(411), - [sym_read_cond_lit] = STATE(411), - [sym_splicing_read_cond_lit] = STATE(411), - [sym_ns_map_lit] = STATE(411), - [sym_var_quoting_lit] = STATE(411), - [sym_sym_val_lit] = STATE(411), - [sym_evaling_lit] = STATE(411), - [sym_tagged_or_ctor_lit] = STATE(411), - [sym_derefing_lit] = STATE(411), - [sym_quoting_lit] = STATE(411), - [sym_syn_quoting_lit] = STATE(411), - [sym_unquote_splicing_lit] = STATE(411), - [sym_unquoting_lit] = STATE(411), - [aux_sym_dis_expr_repeat1] = STATE(301), - [aux_sym_sym_lit_repeat1] = STATE(307), - [sym__ws] = ACTIONS(264), - [sym_comment] = ACTIONS(264), + [sym_vec_lit] = STATE(395), + [sym__bare_vec_lit] = STATE(404), + [sym_set_lit] = STATE(395), + [sym__bare_set_lit] = STATE(405), + [sym_anon_fn_lit] = STATE(395), + [sym_regex_lit] = STATE(395), + [sym_read_cond_lit] = STATE(395), + [sym_splicing_read_cond_lit] = STATE(395), + [sym_ns_map_lit] = STATE(395), + [sym_var_quoting_lit] = STATE(395), + [sym_sym_val_lit] = STATE(395), + [sym_evaling_lit] = STATE(395), + [sym_tagged_or_ctor_lit] = STATE(395), + [sym_derefing_lit] = STATE(395), + [sym_quoting_lit] = STATE(395), + [sym_syn_quoting_lit] = STATE(395), + [sym_unquote_splicing_lit] = STATE(395), + [sym_unquoting_lit] = STATE(395), + [aux_sym_dis_expr_repeat1] = STATE(149), + [aux_sym_sym_lit_repeat1] = STATE(304), + [sym__ws] = ACTIONS(792), + [sym_comment] = ACTIONS(792), [anon_sym_POUND_] = ACTIONS(7), - [sym_num_lit] = ACTIONS(596), + [sym_num_lit] = ACTIONS(508), [anon_sym_SLASH] = ACTIONS(268), - [anon_sym_COLON] = ACTIONS(352), - [anon_sym_COLON_COLON] = ACTIONS(354), + [anon_sym_COLON] = ACTIONS(526), + [anon_sym_COLON_COLON] = ACTIONS(528), [aux_sym_str_lit_token1] = ACTIONS(274), - [sym_char_lit] = ACTIONS(596), - [sym_nil_lit] = ACTIONS(598), - [sym_bool_lit] = ACTIONS(598), + [sym_char_lit] = ACTIONS(508), + [sym_nil_lit] = ACTIONS(510), + [sym_bool_lit] = ACTIONS(510), [aux_sym__sym_qualified_token1] = ACTIONS(278), [anon_sym_CARET] = ACTIONS(21), [anon_sym_POUND_CARET] = ACTIONS(23), [anon_sym_LPAREN] = ACTIONS(280), [anon_sym_LBRACE] = ACTIONS(282), [anon_sym_LBRACK] = ACTIONS(284), - [anon_sym_POUND] = ACTIONS(358), + [anon_sym_POUND] = ACTIONS(532), [anon_sym_POUND_QMARK] = ACTIONS(288), [anon_sym_POUND_QMARK_AT] = ACTIONS(290), - [anon_sym_POUND_SQUOTE] = ACTIONS(360), - [anon_sym_POUND_POUND] = ACTIONS(362), + [anon_sym_POUND_SQUOTE] = ACTIONS(534), + [anon_sym_POUND_POUND] = ACTIONS(536), [anon_sym_POUND_EQ] = ACTIONS(296), - [anon_sym_AT] = ACTIONS(364), - [anon_sym_SQUOTE] = ACTIONS(366), - [anon_sym_BQUOTE] = ACTIONS(368), - [anon_sym_TILDE_AT] = ACTIONS(370), - [anon_sym_TILDE] = ACTIONS(372), - }, - [141] = { - [sym__gap] = STATE(130), - [sym_dis_expr] = STATE(130), - [sym__form] = STATE(263), - [sym_kwd_lit] = STATE(263), - [sym_str_lit] = STATE(263), - [sym_sym_lit] = STATE(263), - [sym__metadata_lit] = STATE(424), - [sym_meta_lit] = STATE(314), - [sym_old_meta_lit] = STATE(313), - [sym_list_lit] = STATE(263), - [sym__bare_list_lit] = STATE(218), - [sym_map_lit] = STATE(263), - [sym__bare_map_lit] = STATE(219), - [sym_vec_lit] = STATE(263), - [sym__bare_vec_lit] = STATE(226), - [sym_set_lit] = STATE(263), - [sym__bare_set_lit] = STATE(227), - [sym_anon_fn_lit] = STATE(263), - [sym_regex_lit] = STATE(263), - [sym_read_cond_lit] = STATE(263), - [sym_splicing_read_cond_lit] = STATE(263), - [sym_ns_map_lit] = STATE(263), - [sym_var_quoting_lit] = STATE(263), - [sym_sym_val_lit] = STATE(263), - [sym_evaling_lit] = STATE(263), - [sym_tagged_or_ctor_lit] = STATE(263), - [sym_derefing_lit] = STATE(263), - [sym_quoting_lit] = STATE(263), - [sym_syn_quoting_lit] = STATE(263), - [sym_unquote_splicing_lit] = STATE(263), - [sym_unquoting_lit] = STATE(263), - [aux_sym_dis_expr_repeat1] = STATE(130), - [aux_sym_sym_lit_repeat1] = STATE(303), - [sym__ws] = ACTIONS(788), - [sym_comment] = ACTIONS(788), - [anon_sym_POUND_] = ACTIONS(7), - [sym_num_lit] = ACTIONS(652), - [anon_sym_SLASH] = ACTIONS(9), - [anon_sym_COLON] = ACTIONS(716), - [anon_sym_COLON_COLON] = ACTIONS(718), - [aux_sym_str_lit_token1] = ACTIONS(15), - [sym_char_lit] = ACTIONS(652), - [sym_nil_lit] = ACTIONS(654), - [sym_bool_lit] = ACTIONS(654), - [aux_sym__sym_qualified_token1] = ACTIONS(19), - [anon_sym_CARET] = ACTIONS(21), - [anon_sym_POUND_CARET] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_LBRACK] = ACTIONS(29), - [anon_sym_POUND] = ACTIONS(720), - [anon_sym_POUND_QMARK] = ACTIONS(33), - [anon_sym_POUND_QMARK_AT] = ACTIONS(35), - [anon_sym_POUND_SQUOTE] = ACTIONS(722), - [anon_sym_POUND_POUND] = ACTIONS(724), - [anon_sym_POUND_EQ] = ACTIONS(41), - [anon_sym_AT] = ACTIONS(726), - [anon_sym_SQUOTE] = ACTIONS(728), - [anon_sym_BQUOTE] = ACTIONS(730), - [anon_sym_TILDE_AT] = ACTIONS(732), - [anon_sym_TILDE] = ACTIONS(734), - }, - [142] = { - [sym__gap] = STATE(131), - [sym_dis_expr] = STATE(131), - [sym__form] = STATE(291), - [sym_kwd_lit] = STATE(291), - [sym_str_lit] = STATE(291), - [sym_sym_lit] = STATE(291), - [sym__metadata_lit] = STATE(424), - [sym_meta_lit] = STATE(314), - [sym_old_meta_lit] = STATE(313), - [sym_list_lit] = STATE(291), - [sym__bare_list_lit] = STATE(218), - [sym_map_lit] = STATE(291), - [sym__bare_map_lit] = STATE(219), - [sym_vec_lit] = STATE(291), - [sym__bare_vec_lit] = STATE(226), - [sym_set_lit] = STATE(291), - [sym__bare_set_lit] = STATE(227), - [sym_anon_fn_lit] = STATE(291), - [sym_regex_lit] = STATE(291), - [sym_read_cond_lit] = STATE(291), - [sym_splicing_read_cond_lit] = STATE(291), - [sym_ns_map_lit] = STATE(291), - [sym_var_quoting_lit] = STATE(291), - [sym_sym_val_lit] = STATE(291), - [sym_evaling_lit] = STATE(291), - [sym_tagged_or_ctor_lit] = STATE(291), - [sym_derefing_lit] = STATE(291), - [sym_quoting_lit] = STATE(291), - [sym_syn_quoting_lit] = STATE(291), - [sym_unquote_splicing_lit] = STATE(291), - [sym_unquoting_lit] = STATE(291), - [aux_sym_dis_expr_repeat1] = STATE(131), - [aux_sym_sym_lit_repeat1] = STATE(303), - [sym__ws] = ACTIONS(790), - [sym_comment] = ACTIONS(790), - [anon_sym_POUND_] = ACTIONS(7), - [sym_num_lit] = ACTIONS(646), - [anon_sym_SLASH] = ACTIONS(9), - [anon_sym_COLON] = ACTIONS(716), - [anon_sym_COLON_COLON] = ACTIONS(718), - [aux_sym_str_lit_token1] = ACTIONS(15), - [sym_char_lit] = ACTIONS(646), - [sym_nil_lit] = ACTIONS(648), - [sym_bool_lit] = ACTIONS(648), - [aux_sym__sym_qualified_token1] = ACTIONS(19), - [anon_sym_CARET] = ACTIONS(21), - [anon_sym_POUND_CARET] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_LBRACK] = ACTIONS(29), - [anon_sym_POUND] = ACTIONS(720), - [anon_sym_POUND_QMARK] = ACTIONS(33), - [anon_sym_POUND_QMARK_AT] = ACTIONS(35), - [anon_sym_POUND_SQUOTE] = ACTIONS(722), - [anon_sym_POUND_POUND] = ACTIONS(724), - [anon_sym_POUND_EQ] = ACTIONS(41), - [anon_sym_AT] = ACTIONS(726), - [anon_sym_SQUOTE] = ACTIONS(728), - [anon_sym_BQUOTE] = ACTIONS(730), - [anon_sym_TILDE_AT] = ACTIONS(732), - [anon_sym_TILDE] = ACTIONS(734), - }, - [143] = { - [sym__gap] = STATE(132), - [sym_dis_expr] = STATE(132), - [sym__form] = STATE(290), - [sym_kwd_lit] = STATE(290), - [sym_str_lit] = STATE(290), - [sym_sym_lit] = STATE(290), - [sym__metadata_lit] = STATE(424), - [sym_meta_lit] = STATE(314), - [sym_old_meta_lit] = STATE(313), - [sym_list_lit] = STATE(290), - [sym__bare_list_lit] = STATE(218), - [sym_map_lit] = STATE(290), - [sym__bare_map_lit] = STATE(219), - [sym_vec_lit] = STATE(290), - [sym__bare_vec_lit] = STATE(226), - [sym_set_lit] = STATE(290), - [sym__bare_set_lit] = STATE(227), - [sym_anon_fn_lit] = STATE(290), - [sym_regex_lit] = STATE(290), - [sym_read_cond_lit] = STATE(290), - [sym_splicing_read_cond_lit] = STATE(290), - [sym_ns_map_lit] = STATE(290), - [sym_var_quoting_lit] = STATE(290), - [sym_sym_val_lit] = STATE(290), - [sym_evaling_lit] = STATE(290), - [sym_tagged_or_ctor_lit] = STATE(290), - [sym_derefing_lit] = STATE(290), - [sym_quoting_lit] = STATE(290), - [sym_syn_quoting_lit] = STATE(290), - [sym_unquote_splicing_lit] = STATE(290), - [sym_unquoting_lit] = STATE(290), - [aux_sym_dis_expr_repeat1] = STATE(132), - [aux_sym_sym_lit_repeat1] = STATE(303), - [sym__ws] = ACTIONS(792), - [sym_comment] = ACTIONS(792), - [anon_sym_POUND_] = ACTIONS(7), - [sym_num_lit] = ACTIONS(640), - [anon_sym_SLASH] = ACTIONS(9), - [anon_sym_COLON] = ACTIONS(716), - [anon_sym_COLON_COLON] = ACTIONS(718), - [aux_sym_str_lit_token1] = ACTIONS(15), - [sym_char_lit] = ACTIONS(640), - [sym_nil_lit] = ACTIONS(642), - [sym_bool_lit] = ACTIONS(642), - [aux_sym__sym_qualified_token1] = ACTIONS(19), - [anon_sym_CARET] = ACTIONS(21), - [anon_sym_POUND_CARET] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_LBRACK] = ACTIONS(29), - [anon_sym_POUND] = ACTIONS(720), - [anon_sym_POUND_QMARK] = ACTIONS(33), - [anon_sym_POUND_QMARK_AT] = ACTIONS(35), - [anon_sym_POUND_SQUOTE] = ACTIONS(722), - [anon_sym_POUND_POUND] = ACTIONS(724), - [anon_sym_POUND_EQ] = ACTIONS(41), - [anon_sym_AT] = ACTIONS(726), - [anon_sym_SQUOTE] = ACTIONS(728), - [anon_sym_BQUOTE] = ACTIONS(730), - [anon_sym_TILDE_AT] = ACTIONS(732), - [anon_sym_TILDE] = ACTIONS(734), + [anon_sym_AT] = ACTIONS(538), + [anon_sym_SQUOTE] = ACTIONS(540), + [anon_sym_BQUOTE] = ACTIONS(542), + [anon_sym_TILDE_AT] = ACTIONS(544), + [anon_sym_TILDE] = ACTIONS(546), }, - [144] = { - [sym__gap] = STATE(301), - [sym_dis_expr] = STATE(301), - [sym__form] = STATE(243), - [sym_kwd_lit] = STATE(243), - [sym_str_lit] = STATE(243), - [sym_sym_lit] = STATE(243), + [STATE(141)] = { + [sym__gap] = STATE(150), + [sym_dis_expr] = STATE(150), + [sym__form] = STATE(408), + [sym_kwd_lit] = STATE(408), + [sym_str_lit] = STATE(408), + [sym_sym_lit] = STATE(408), [sym__metadata_lit] = STATE(424), - [sym_meta_lit] = STATE(314), - [sym_old_meta_lit] = STATE(313), - [sym_list_lit] = STATE(243), - [sym__bare_list_lit] = STATE(218), - [sym_map_lit] = STATE(243), - [sym__bare_map_lit] = STATE(219), - [sym_vec_lit] = STATE(243), - [sym__bare_vec_lit] = STATE(226), - [sym_set_lit] = STATE(243), - [sym__bare_set_lit] = STATE(227), - [sym_anon_fn_lit] = STATE(243), - [sym_regex_lit] = STATE(243), - [sym_read_cond_lit] = STATE(243), - [sym_splicing_read_cond_lit] = STATE(243), - [sym_ns_map_lit] = STATE(243), - [sym_var_quoting_lit] = STATE(243), - [sym_sym_val_lit] = STATE(243), - [sym_evaling_lit] = STATE(243), - [sym_tagged_or_ctor_lit] = STATE(243), - [sym_derefing_lit] = STATE(243), - [sym_quoting_lit] = STATE(243), - [sym_syn_quoting_lit] = STATE(243), - [sym_unquote_splicing_lit] = STATE(243), - [sym_unquoting_lit] = STATE(243), - [aux_sym_dis_expr_repeat1] = STATE(301), - [aux_sym_sym_lit_repeat1] = STATE(305), - [sym__ws] = ACTIONS(264), - [sym_comment] = ACTIONS(264), + [sym_meta_lit] = STATE(312), + [sym_old_meta_lit] = STATE(315), + [sym_list_lit] = STATE(408), + [sym__bare_list_lit] = STATE(402), + [sym_map_lit] = STATE(408), + [sym__bare_map_lit] = STATE(403), + [sym_vec_lit] = STATE(408), + [sym__bare_vec_lit] = STATE(404), + [sym_set_lit] = STATE(408), + [sym__bare_set_lit] = STATE(405), + [sym_anon_fn_lit] = STATE(408), + [sym_regex_lit] = STATE(408), + [sym_read_cond_lit] = STATE(408), + [sym_splicing_read_cond_lit] = STATE(408), + [sym_ns_map_lit] = STATE(408), + [sym_var_quoting_lit] = STATE(408), + [sym_sym_val_lit] = STATE(408), + [sym_evaling_lit] = STATE(408), + [sym_tagged_or_ctor_lit] = STATE(408), + [sym_derefing_lit] = STATE(408), + [sym_quoting_lit] = STATE(408), + [sym_syn_quoting_lit] = STATE(408), + [sym_unquote_splicing_lit] = STATE(408), + [sym_unquoting_lit] = STATE(408), + [aux_sym_dis_expr_repeat1] = STATE(150), + [aux_sym_sym_lit_repeat1] = STATE(304), + [sym__ws] = ACTIONS(794), + [sym_comment] = ACTIONS(794), [anon_sym_POUND_] = ACTIONS(7), - [sym_num_lit] = ACTIONS(776), - [anon_sym_SLASH] = ACTIONS(9), - [anon_sym_COLON] = ACTIONS(11), - [anon_sym_COLON_COLON] = ACTIONS(13), - [aux_sym_str_lit_token1] = ACTIONS(15), - [sym_char_lit] = ACTIONS(776), - [sym_nil_lit] = ACTIONS(778), - [sym_bool_lit] = ACTIONS(778), - [aux_sym__sym_qualified_token1] = ACTIONS(19), + [sym_num_lit] = ACTIONS(514), + [anon_sym_SLASH] = ACTIONS(268), + [anon_sym_COLON] = ACTIONS(526), + [anon_sym_COLON_COLON] = ACTIONS(528), + [aux_sym_str_lit_token1] = ACTIONS(274), + [sym_char_lit] = ACTIONS(514), + [sym_nil_lit] = ACTIONS(516), + [sym_bool_lit] = ACTIONS(516), + [aux_sym__sym_qualified_token1] = ACTIONS(278), [anon_sym_CARET] = ACTIONS(21), [anon_sym_POUND_CARET] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_LBRACK] = 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_TILDE_AT] = ACTIONS(49), - [anon_sym_TILDE] = ACTIONS(51), + [anon_sym_LPAREN] = ACTIONS(280), + [anon_sym_LBRACE] = ACTIONS(282), + [anon_sym_LBRACK] = ACTIONS(284), + [anon_sym_POUND] = ACTIONS(532), + [anon_sym_POUND_QMARK] = ACTIONS(288), + [anon_sym_POUND_QMARK_AT] = ACTIONS(290), + [anon_sym_POUND_SQUOTE] = ACTIONS(534), + [anon_sym_POUND_POUND] = ACTIONS(536), + [anon_sym_POUND_EQ] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(538), + [anon_sym_SQUOTE] = ACTIONS(540), + [anon_sym_BQUOTE] = ACTIONS(542), + [anon_sym_TILDE_AT] = ACTIONS(544), + [anon_sym_TILDE] = ACTIONS(546), }, - [145] = { - [sym__gap] = STATE(133), - [sym_dis_expr] = STATE(133), - [sym__form] = STATE(289), - [sym_kwd_lit] = STATE(289), - [sym_str_lit] = STATE(289), - [sym_sym_lit] = STATE(289), + [STATE(142)] = { + [sym__gap] = STATE(151), + [sym_dis_expr] = STATE(151), + [sym__form] = STATE(336), + [sym_kwd_lit] = STATE(336), + [sym_str_lit] = STATE(336), + [sym_sym_lit] = STATE(336), [sym__metadata_lit] = STATE(424), - [sym_meta_lit] = STATE(314), - [sym_old_meta_lit] = STATE(313), - [sym_list_lit] = STATE(289), - [sym__bare_list_lit] = STATE(218), - [sym_map_lit] = STATE(289), - [sym__bare_map_lit] = STATE(219), - [sym_vec_lit] = STATE(289), - [sym__bare_vec_lit] = STATE(226), - [sym_set_lit] = STATE(289), - [sym__bare_set_lit] = STATE(227), - [sym_anon_fn_lit] = STATE(289), - [sym_regex_lit] = STATE(289), - [sym_read_cond_lit] = STATE(289), - [sym_splicing_read_cond_lit] = STATE(289), - [sym_ns_map_lit] = STATE(289), - [sym_var_quoting_lit] = STATE(289), - [sym_sym_val_lit] = STATE(289), - [sym_evaling_lit] = STATE(289), - [sym_tagged_or_ctor_lit] = STATE(289), - [sym_derefing_lit] = STATE(289), - [sym_quoting_lit] = STATE(289), - [sym_syn_quoting_lit] = STATE(289), - [sym_unquote_splicing_lit] = STATE(289), - [sym_unquoting_lit] = STATE(289), - [aux_sym_dis_expr_repeat1] = STATE(133), - [aux_sym_sym_lit_repeat1] = STATE(303), - [sym__ws] = ACTIONS(794), - [sym_comment] = ACTIONS(794), + [sym_meta_lit] = STATE(312), + [sym_old_meta_lit] = STATE(315), + [sym_list_lit] = STATE(336), + [sym__bare_list_lit] = STATE(402), + [sym_map_lit] = STATE(336), + [sym__bare_map_lit] = STATE(403), + [sym_vec_lit] = STATE(336), + [sym__bare_vec_lit] = STATE(404), + [sym_set_lit] = STATE(336), + [sym__bare_set_lit] = STATE(405), + [sym_anon_fn_lit] = STATE(336), + [sym_regex_lit] = STATE(336), + [sym_read_cond_lit] = STATE(336), + [sym_splicing_read_cond_lit] = STATE(336), + [sym_ns_map_lit] = STATE(336), + [sym_var_quoting_lit] = STATE(336), + [sym_sym_val_lit] = STATE(336), + [sym_evaling_lit] = STATE(336), + [sym_tagged_or_ctor_lit] = STATE(336), + [sym_derefing_lit] = STATE(336), + [sym_quoting_lit] = STATE(336), + [sym_syn_quoting_lit] = STATE(336), + [sym_unquote_splicing_lit] = STATE(336), + [sym_unquoting_lit] = STATE(336), + [aux_sym_dis_expr_repeat1] = STATE(151), + [aux_sym_sym_lit_repeat1] = STATE(304), + [sym__ws] = ACTIONS(796), + [sym_comment] = ACTIONS(796), [anon_sym_POUND_] = ACTIONS(7), - [sym_num_lit] = ACTIONS(634), - [anon_sym_SLASH] = ACTIONS(9), - [anon_sym_COLON] = ACTIONS(716), - [anon_sym_COLON_COLON] = ACTIONS(718), - [aux_sym_str_lit_token1] = ACTIONS(15), - [sym_char_lit] = ACTIONS(634), - [sym_nil_lit] = ACTIONS(636), - [sym_bool_lit] = ACTIONS(636), - [aux_sym__sym_qualified_token1] = ACTIONS(19), + [sym_num_lit] = ACTIONS(520), + [anon_sym_SLASH] = ACTIONS(268), + [anon_sym_COLON] = ACTIONS(526), + [anon_sym_COLON_COLON] = ACTIONS(528), + [aux_sym_str_lit_token1] = ACTIONS(274), + [sym_char_lit] = ACTIONS(520), + [sym_nil_lit] = ACTIONS(522), + [sym_bool_lit] = ACTIONS(522), + [aux_sym__sym_qualified_token1] = ACTIONS(278), [anon_sym_CARET] = ACTIONS(21), [anon_sym_POUND_CARET] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_LBRACK] = ACTIONS(29), - [anon_sym_POUND] = ACTIONS(720), - [anon_sym_POUND_QMARK] = ACTIONS(33), - [anon_sym_POUND_QMARK_AT] = ACTIONS(35), - [anon_sym_POUND_SQUOTE] = ACTIONS(722), - [anon_sym_POUND_POUND] = ACTIONS(724), - [anon_sym_POUND_EQ] = ACTIONS(41), - [anon_sym_AT] = ACTIONS(726), - [anon_sym_SQUOTE] = ACTIONS(728), - [anon_sym_BQUOTE] = ACTIONS(730), - [anon_sym_TILDE_AT] = ACTIONS(732), - [anon_sym_TILDE] = ACTIONS(734), + [anon_sym_LPAREN] = ACTIONS(280), + [anon_sym_LBRACE] = ACTIONS(282), + [anon_sym_LBRACK] = ACTIONS(284), + [anon_sym_POUND] = ACTIONS(532), + [anon_sym_POUND_QMARK] = ACTIONS(288), + [anon_sym_POUND_QMARK_AT] = ACTIONS(290), + [anon_sym_POUND_SQUOTE] = ACTIONS(534), + [anon_sym_POUND_POUND] = ACTIONS(536), + [anon_sym_POUND_EQ] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(538), + [anon_sym_SQUOTE] = ACTIONS(540), + [anon_sym_BQUOTE] = ACTIONS(542), + [anon_sym_TILDE_AT] = ACTIONS(544), + [anon_sym_TILDE] = ACTIONS(546), }, - [146] = { + [STATE(143)] = { [sym__gap] = STATE(301), [sym_dis_expr] = STATE(301), - [sym__form] = STATE(249), - [sym_kwd_lit] = STATE(249), - [sym_str_lit] = STATE(249), - [sym_sym_lit] = STATE(249), + [sym__form] = STATE(377), + [sym_kwd_lit] = STATE(377), + [sym_str_lit] = STATE(377), + [sym_sym_lit] = STATE(377), [sym__metadata_lit] = STATE(424), - [sym_meta_lit] = STATE(314), - [sym_old_meta_lit] = STATE(313), - [sym_list_lit] = STATE(249), - [sym__bare_list_lit] = STATE(218), - [sym_map_lit] = STATE(249), - [sym__bare_map_lit] = STATE(219), - [sym_vec_lit] = STATE(249), - [sym__bare_vec_lit] = STATE(226), - [sym_set_lit] = STATE(249), - [sym__bare_set_lit] = STATE(227), - [sym_anon_fn_lit] = STATE(249), - [sym_regex_lit] = STATE(249), - [sym_read_cond_lit] = STATE(249), - [sym_splicing_read_cond_lit] = STATE(249), - [sym_ns_map_lit] = STATE(249), - [sym_var_quoting_lit] = STATE(249), - [sym_sym_val_lit] = STATE(249), - [sym_evaling_lit] = STATE(249), - [sym_tagged_or_ctor_lit] = STATE(249), - [sym_derefing_lit] = STATE(249), - [sym_quoting_lit] = STATE(249), - [sym_syn_quoting_lit] = STATE(249), - [sym_unquote_splicing_lit] = STATE(249), - [sym_unquoting_lit] = STATE(249), + [sym_meta_lit] = STATE(312), + [sym_old_meta_lit] = STATE(315), + [sym_list_lit] = STATE(377), + [sym__bare_list_lit] = STATE(402), + [sym_map_lit] = STATE(377), + [sym__bare_map_lit] = STATE(403), + [sym_vec_lit] = STATE(377), + [sym__bare_vec_lit] = STATE(404), + [sym_set_lit] = STATE(377), + [sym__bare_set_lit] = STATE(405), + [sym_anon_fn_lit] = STATE(377), + [sym_regex_lit] = STATE(377), + [sym_read_cond_lit] = STATE(377), + [sym_splicing_read_cond_lit] = STATE(377), + [sym_ns_map_lit] = STATE(377), + [sym_var_quoting_lit] = STATE(377), + [sym_sym_val_lit] = STATE(377), + [sym_evaling_lit] = STATE(377), + [sym_tagged_or_ctor_lit] = STATE(377), + [sym_derefing_lit] = STATE(377), + [sym_quoting_lit] = STATE(377), + [sym_syn_quoting_lit] = STATE(377), + [sym_unquote_splicing_lit] = STATE(377), + [sym_unquoting_lit] = STATE(377), [aux_sym_dis_expr_repeat1] = STATE(301), - [aux_sym_sym_lit_repeat1] = STATE(305), - [sym__ws] = ACTIONS(264), - [sym_comment] = ACTIONS(264), + [aux_sym_sym_lit_repeat1] = STATE(307), + [sym__ws] = ACTIONS(320), + [sym_comment] = ACTIONS(320), [anon_sym_POUND_] = ACTIONS(7), - [sym_num_lit] = ACTIONS(772), - [anon_sym_SLASH] = ACTIONS(9), - [anon_sym_COLON] = ACTIONS(11), - [anon_sym_COLON_COLON] = ACTIONS(13), - [aux_sym_str_lit_token1] = ACTIONS(15), - [sym_char_lit] = ACTIONS(772), - [sym_nil_lit] = ACTIONS(774), - [sym_bool_lit] = ACTIONS(774), - [aux_sym__sym_qualified_token1] = ACTIONS(19), + [sym_num_lit] = ACTIONS(524), + [anon_sym_SLASH] = ACTIONS(268), + [anon_sym_COLON] = ACTIONS(270), + [anon_sym_COLON_COLON] = ACTIONS(272), + [aux_sym_str_lit_token1] = ACTIONS(274), + [sym_char_lit] = ACTIONS(524), + [sym_nil_lit] = ACTIONS(530), + [sym_bool_lit] = ACTIONS(530), + [aux_sym__sym_qualified_token1] = ACTIONS(278), [anon_sym_CARET] = ACTIONS(21), [anon_sym_POUND_CARET] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_LBRACK] = 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_TILDE_AT] = ACTIONS(49), - [anon_sym_TILDE] = ACTIONS(51), + [anon_sym_LPAREN] = ACTIONS(280), + [anon_sym_LBRACE] = ACTIONS(282), + [anon_sym_LBRACK] = ACTIONS(284), + [anon_sym_POUND] = ACTIONS(286), + [anon_sym_POUND_QMARK] = ACTIONS(288), + [anon_sym_POUND_QMARK_AT] = ACTIONS(290), + [anon_sym_POUND_SQUOTE] = ACTIONS(292), + [anon_sym_POUND_POUND] = ACTIONS(294), + [anon_sym_POUND_EQ] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [anon_sym_SQUOTE] = ACTIONS(300), + [anon_sym_BQUOTE] = ACTIONS(302), + [anon_sym_TILDE_AT] = ACTIONS(304), + [anon_sym_TILDE] = ACTIONS(306), }, - [147] = { - [sym__gap] = STATE(134), - [sym_dis_expr] = STATE(134), - [sym__form] = STATE(287), - [sym_kwd_lit] = STATE(287), - [sym_str_lit] = STATE(287), - [sym_sym_lit] = STATE(287), - [sym__metadata_lit] = STATE(424), - [sym_meta_lit] = STATE(314), - [sym_old_meta_lit] = STATE(313), - [sym_list_lit] = STATE(287), - [sym__bare_list_lit] = STATE(218), - [sym_map_lit] = STATE(287), - [sym__bare_map_lit] = STATE(219), - [sym_vec_lit] = STATE(287), - [sym__bare_vec_lit] = STATE(226), - [sym_set_lit] = STATE(287), - [sym__bare_set_lit] = STATE(227), - [sym_anon_fn_lit] = STATE(287), - [sym_regex_lit] = STATE(287), - [sym_read_cond_lit] = STATE(287), - [sym_splicing_read_cond_lit] = STATE(287), - [sym_ns_map_lit] = STATE(287), - [sym_var_quoting_lit] = STATE(287), - [sym_sym_val_lit] = STATE(287), - [sym_evaling_lit] = STATE(287), - [sym_tagged_or_ctor_lit] = STATE(287), - [sym_derefing_lit] = STATE(287), - [sym_quoting_lit] = STATE(287), - [sym_syn_quoting_lit] = STATE(287), - [sym_unquote_splicing_lit] = STATE(287), - [sym_unquoting_lit] = STATE(287), - [aux_sym_dis_expr_repeat1] = STATE(134), - [aux_sym_sym_lit_repeat1] = STATE(303), - [sym__ws] = ACTIONS(796), - [sym_comment] = ACTIONS(796), + [STATE(144)] = { + [sym__gap] = STATE(158), + [sym_dis_expr] = STATE(158), + [sym__form] = STATE(335), + [sym_kwd_lit] = STATE(335), + [sym_str_lit] = STATE(335), + [sym_sym_lit] = STATE(335), + [sym__metadata_lit] = STATE(424), + [sym_meta_lit] = STATE(312), + [sym_old_meta_lit] = STATE(315), + [sym_list_lit] = STATE(335), + [sym__bare_list_lit] = STATE(402), + [sym_map_lit] = STATE(335), + [sym__bare_map_lit] = STATE(403), + [sym_vec_lit] = STATE(335), + [sym__bare_vec_lit] = STATE(404), + [sym_set_lit] = STATE(335), + [sym__bare_set_lit] = STATE(405), + [sym_anon_fn_lit] = STATE(335), + [sym_regex_lit] = STATE(335), + [sym_read_cond_lit] = STATE(335), + [sym_splicing_read_cond_lit] = STATE(335), + [sym_ns_map_lit] = STATE(335), + [sym_var_quoting_lit] = STATE(335), + [sym_sym_val_lit] = STATE(335), + [sym_evaling_lit] = STATE(335), + [sym_tagged_or_ctor_lit] = STATE(335), + [sym_derefing_lit] = STATE(335), + [sym_quoting_lit] = STATE(335), + [sym_syn_quoting_lit] = STATE(335), + [sym_unquote_splicing_lit] = STATE(335), + [sym_unquoting_lit] = STATE(335), + [aux_sym_dis_expr_repeat1] = STATE(158), + [aux_sym_sym_lit_repeat1] = STATE(304), + [sym__ws] = ACTIONS(798), + [sym_comment] = ACTIONS(798), [anon_sym_POUND_] = ACTIONS(7), - [sym_num_lit] = ACTIONS(628), - [anon_sym_SLASH] = ACTIONS(9), - [anon_sym_COLON] = ACTIONS(716), - [anon_sym_COLON_COLON] = ACTIONS(718), - [aux_sym_str_lit_token1] = ACTIONS(15), - [sym_char_lit] = ACTIONS(628), - [sym_nil_lit] = ACTIONS(630), - [sym_bool_lit] = ACTIONS(630), - [aux_sym__sym_qualified_token1] = ACTIONS(19), + [sym_num_lit] = ACTIONS(550), + [anon_sym_SLASH] = ACTIONS(268), + [anon_sym_COLON] = ACTIONS(526), + [anon_sym_COLON_COLON] = ACTIONS(528), + [aux_sym_str_lit_token1] = ACTIONS(274), + [sym_char_lit] = ACTIONS(550), + [sym_nil_lit] = ACTIONS(552), + [sym_bool_lit] = ACTIONS(552), + [aux_sym__sym_qualified_token1] = ACTIONS(278), [anon_sym_CARET] = ACTIONS(21), [anon_sym_POUND_CARET] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_LBRACK] = ACTIONS(29), - [anon_sym_POUND] = ACTIONS(720), - [anon_sym_POUND_QMARK] = ACTIONS(33), - [anon_sym_POUND_QMARK_AT] = ACTIONS(35), - [anon_sym_POUND_SQUOTE] = ACTIONS(722), - [anon_sym_POUND_POUND] = ACTIONS(724), - [anon_sym_POUND_EQ] = ACTIONS(41), - [anon_sym_AT] = ACTIONS(726), - [anon_sym_SQUOTE] = ACTIONS(728), - [anon_sym_BQUOTE] = ACTIONS(730), - [anon_sym_TILDE_AT] = ACTIONS(732), - [anon_sym_TILDE] = ACTIONS(734), + [anon_sym_LPAREN] = ACTIONS(280), + [anon_sym_LBRACE] = ACTIONS(282), + [anon_sym_LBRACK] = ACTIONS(284), + [anon_sym_POUND] = ACTIONS(532), + [anon_sym_POUND_QMARK] = ACTIONS(288), + [anon_sym_POUND_QMARK_AT] = ACTIONS(290), + [anon_sym_POUND_SQUOTE] = ACTIONS(534), + [anon_sym_POUND_POUND] = ACTIONS(536), + [anon_sym_POUND_EQ] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(538), + [anon_sym_SQUOTE] = ACTIONS(540), + [anon_sym_BQUOTE] = ACTIONS(542), + [anon_sym_TILDE_AT] = ACTIONS(544), + [anon_sym_TILDE] = ACTIONS(546), }, - [148] = { + [STATE(145)] = { [sym__gap] = STATE(301), [sym_dis_expr] = STATE(301), - [sym__form] = STATE(250), - [sym_kwd_lit] = STATE(250), - [sym_str_lit] = STATE(250), - [sym_sym_lit] = STATE(250), + [sym__form] = STATE(340), + [sym_kwd_lit] = STATE(340), + [sym_str_lit] = STATE(340), + [sym_sym_lit] = STATE(340), [sym__metadata_lit] = STATE(424), - [sym_meta_lit] = STATE(314), - [sym_old_meta_lit] = STATE(313), - [sym_list_lit] = STATE(250), - [sym__bare_list_lit] = STATE(218), - [sym_map_lit] = STATE(250), - [sym__bare_map_lit] = STATE(219), - [sym_vec_lit] = STATE(250), - [sym__bare_vec_lit] = STATE(226), - [sym_set_lit] = STATE(250), - [sym__bare_set_lit] = STATE(227), - [sym_anon_fn_lit] = STATE(250), - [sym_regex_lit] = STATE(250), - [sym_read_cond_lit] = STATE(250), - [sym_splicing_read_cond_lit] = STATE(250), - [sym_ns_map_lit] = STATE(250), - [sym_var_quoting_lit] = STATE(250), - [sym_sym_val_lit] = STATE(250), - [sym_evaling_lit] = STATE(250), - [sym_tagged_or_ctor_lit] = STATE(250), - [sym_derefing_lit] = STATE(250), - [sym_quoting_lit] = STATE(250), - [sym_syn_quoting_lit] = STATE(250), - [sym_unquote_splicing_lit] = STATE(250), - [sym_unquoting_lit] = STATE(250), + [sym_meta_lit] = STATE(312), + [sym_old_meta_lit] = STATE(315), + [sym_list_lit] = STATE(340), + [sym__bare_list_lit] = STATE(402), + [sym_map_lit] = STATE(340), + [sym__bare_map_lit] = STATE(403), + [sym_vec_lit] = STATE(340), + [sym__bare_vec_lit] = STATE(404), + [sym_set_lit] = STATE(340), + [sym__bare_set_lit] = STATE(405), + [sym_anon_fn_lit] = STATE(340), + [sym_regex_lit] = STATE(340), + [sym_read_cond_lit] = STATE(340), + [sym_splicing_read_cond_lit] = STATE(340), + [sym_ns_map_lit] = STATE(340), + [sym_var_quoting_lit] = STATE(340), + [sym_sym_val_lit] = STATE(340), + [sym_evaling_lit] = STATE(340), + [sym_tagged_or_ctor_lit] = STATE(340), + [sym_derefing_lit] = STATE(340), + [sym_quoting_lit] = STATE(340), + [sym_syn_quoting_lit] = STATE(340), + [sym_unquote_splicing_lit] = STATE(340), + [sym_unquoting_lit] = STATE(340), [aux_sym_dis_expr_repeat1] = STATE(301), - [aux_sym_sym_lit_repeat1] = STATE(305), - [sym__ws] = ACTIONS(264), - [sym_comment] = ACTIONS(264), + [aux_sym_sym_lit_repeat1] = STATE(304), + [sym__ws] = ACTIONS(320), + [sym_comment] = ACTIONS(320), [anon_sym_POUND_] = ACTIONS(7), - [sym_num_lit] = ACTIONS(768), - [anon_sym_SLASH] = ACTIONS(9), - [anon_sym_COLON] = ACTIONS(11), - [anon_sym_COLON_COLON] = ACTIONS(13), - [aux_sym_str_lit_token1] = ACTIONS(15), - [sym_char_lit] = ACTIONS(768), - [sym_nil_lit] = ACTIONS(770), - [sym_bool_lit] = ACTIONS(770), - [aux_sym__sym_qualified_token1] = ACTIONS(19), + [sym_num_lit] = ACTIONS(554), + [anon_sym_SLASH] = ACTIONS(268), + [anon_sym_COLON] = ACTIONS(526), + [anon_sym_COLON_COLON] = ACTIONS(528), + [aux_sym_str_lit_token1] = ACTIONS(274), + [sym_char_lit] = ACTIONS(554), + [sym_nil_lit] = ACTIONS(556), + [sym_bool_lit] = ACTIONS(556), + [aux_sym__sym_qualified_token1] = ACTIONS(278), [anon_sym_CARET] = ACTIONS(21), [anon_sym_POUND_CARET] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_LBRACK] = 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_TILDE_AT] = ACTIONS(49), - [anon_sym_TILDE] = ACTIONS(51), + [anon_sym_LPAREN] = ACTIONS(280), + [anon_sym_LBRACE] = ACTIONS(282), + [anon_sym_LBRACK] = ACTIONS(284), + [anon_sym_POUND] = ACTIONS(532), + [anon_sym_POUND_QMARK] = ACTIONS(288), + [anon_sym_POUND_QMARK_AT] = ACTIONS(290), + [anon_sym_POUND_SQUOTE] = ACTIONS(534), + [anon_sym_POUND_POUND] = ACTIONS(536), + [anon_sym_POUND_EQ] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(538), + [anon_sym_SQUOTE] = ACTIONS(540), + [anon_sym_BQUOTE] = ACTIONS(542), + [anon_sym_TILDE_AT] = ACTIONS(544), + [anon_sym_TILDE] = ACTIONS(546), }, - [149] = { - [sym__gap] = STATE(135), - [sym_dis_expr] = STATE(135), - [sym__form] = STATE(283), - [sym_kwd_lit] = STATE(283), - [sym_str_lit] = STATE(283), - [sym_sym_lit] = STATE(283), + [STATE(146)] = { + [sym__gap] = STATE(301), + [sym_dis_expr] = STATE(301), + [sym__form] = STATE(341), + [sym_kwd_lit] = STATE(341), + [sym_str_lit] = STATE(341), + [sym_sym_lit] = STATE(341), [sym__metadata_lit] = STATE(424), - [sym_meta_lit] = STATE(314), - [sym_old_meta_lit] = STATE(313), - [sym_list_lit] = STATE(283), - [sym__bare_list_lit] = STATE(218), - [sym_map_lit] = STATE(283), - [sym__bare_map_lit] = STATE(219), - [sym_vec_lit] = STATE(283), - [sym__bare_vec_lit] = STATE(226), - [sym_set_lit] = STATE(283), - [sym__bare_set_lit] = STATE(227), - [sym_anon_fn_lit] = STATE(283), - [sym_regex_lit] = STATE(283), - [sym_read_cond_lit] = STATE(283), - [sym_splicing_read_cond_lit] = STATE(283), - [sym_ns_map_lit] = STATE(283), - [sym_var_quoting_lit] = STATE(283), - [sym_sym_val_lit] = STATE(283), - [sym_evaling_lit] = STATE(283), - [sym_tagged_or_ctor_lit] = STATE(283), - [sym_derefing_lit] = STATE(283), - [sym_quoting_lit] = STATE(283), - [sym_syn_quoting_lit] = STATE(283), - [sym_unquote_splicing_lit] = STATE(283), - [sym_unquoting_lit] = STATE(283), - [aux_sym_dis_expr_repeat1] = STATE(135), - [aux_sym_sym_lit_repeat1] = STATE(303), - [sym__ws] = ACTIONS(798), - [sym_comment] = ACTIONS(798), + [sym_meta_lit] = STATE(312), + [sym_old_meta_lit] = STATE(315), + [sym_list_lit] = STATE(341), + [sym__bare_list_lit] = STATE(402), + [sym_map_lit] = STATE(341), + [sym__bare_map_lit] = STATE(403), + [sym_vec_lit] = STATE(341), + [sym__bare_vec_lit] = STATE(404), + [sym_set_lit] = STATE(341), + [sym__bare_set_lit] = STATE(405), + [sym_anon_fn_lit] = STATE(341), + [sym_regex_lit] = STATE(341), + [sym_read_cond_lit] = STATE(341), + [sym_splicing_read_cond_lit] = STATE(341), + [sym_ns_map_lit] = STATE(341), + [sym_var_quoting_lit] = STATE(341), + [sym_sym_val_lit] = STATE(341), + [sym_evaling_lit] = STATE(341), + [sym_tagged_or_ctor_lit] = STATE(341), + [sym_derefing_lit] = STATE(341), + [sym_quoting_lit] = STATE(341), + [sym_syn_quoting_lit] = STATE(341), + [sym_unquote_splicing_lit] = STATE(341), + [sym_unquoting_lit] = STATE(341), + [aux_sym_dis_expr_repeat1] = STATE(301), + [aux_sym_sym_lit_repeat1] = STATE(304), + [sym__ws] = ACTIONS(320), + [sym_comment] = ACTIONS(320), [anon_sym_POUND_] = ACTIONS(7), - [sym_num_lit] = ACTIONS(622), - [anon_sym_SLASH] = ACTIONS(9), - [anon_sym_COLON] = ACTIONS(716), - [anon_sym_COLON_COLON] = ACTIONS(718), - [aux_sym_str_lit_token1] = ACTIONS(15), - [sym_char_lit] = ACTIONS(622), - [sym_nil_lit] = ACTIONS(624), - [sym_bool_lit] = ACTIONS(624), - [aux_sym__sym_qualified_token1] = ACTIONS(19), + [sym_num_lit] = ACTIONS(558), + [anon_sym_SLASH] = ACTIONS(268), + [anon_sym_COLON] = ACTIONS(526), + [anon_sym_COLON_COLON] = ACTIONS(528), + [aux_sym_str_lit_token1] = ACTIONS(274), + [sym_char_lit] = ACTIONS(558), + [sym_nil_lit] = ACTIONS(560), + [sym_bool_lit] = ACTIONS(560), + [aux_sym__sym_qualified_token1] = ACTIONS(278), [anon_sym_CARET] = ACTIONS(21), [anon_sym_POUND_CARET] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_LBRACK] = ACTIONS(29), - [anon_sym_POUND] = ACTIONS(720), - [anon_sym_POUND_QMARK] = ACTIONS(33), - [anon_sym_POUND_QMARK_AT] = ACTIONS(35), - [anon_sym_POUND_SQUOTE] = ACTIONS(722), - [anon_sym_POUND_POUND] = ACTIONS(724), - [anon_sym_POUND_EQ] = ACTIONS(41), - [anon_sym_AT] = ACTIONS(726), - [anon_sym_SQUOTE] = ACTIONS(728), - [anon_sym_BQUOTE] = ACTIONS(730), - [anon_sym_TILDE_AT] = ACTIONS(732), - [anon_sym_TILDE] = ACTIONS(734), + [anon_sym_LPAREN] = ACTIONS(280), + [anon_sym_LBRACE] = ACTIONS(282), + [anon_sym_LBRACK] = ACTIONS(284), + [anon_sym_POUND] = ACTIONS(532), + [anon_sym_POUND_QMARK] = ACTIONS(288), + [anon_sym_POUND_QMARK_AT] = ACTIONS(290), + [anon_sym_POUND_SQUOTE] = ACTIONS(534), + [anon_sym_POUND_POUND] = ACTIONS(536), + [anon_sym_POUND_EQ] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(538), + [anon_sym_SQUOTE] = ACTIONS(540), + [anon_sym_BQUOTE] = ACTIONS(542), + [anon_sym_TILDE_AT] = ACTIONS(544), + [anon_sym_TILDE] = ACTIONS(546), }, - [150] = { + [STATE(147)] = { [sym__gap] = STATE(301), [sym_dis_expr] = STATE(301), - [sym__form] = STATE(274), - [sym_kwd_lit] = STATE(274), - [sym_str_lit] = STATE(274), - [sym_sym_lit] = STATE(274), + [sym__form] = STATE(343), + [sym_kwd_lit] = STATE(343), + [sym_str_lit] = STATE(343), + [sym_sym_lit] = STATE(343), [sym__metadata_lit] = STATE(424), - [sym_meta_lit] = STATE(314), - [sym_old_meta_lit] = STATE(313), - [sym_list_lit] = STATE(274), - [sym__bare_list_lit] = STATE(218), - [sym_map_lit] = STATE(274), - [sym__bare_map_lit] = STATE(219), - [sym_vec_lit] = STATE(274), - [sym__bare_vec_lit] = STATE(226), - [sym_set_lit] = STATE(274), - [sym__bare_set_lit] = STATE(227), - [sym_anon_fn_lit] = STATE(274), - [sym_regex_lit] = STATE(274), - [sym_read_cond_lit] = STATE(274), - [sym_splicing_read_cond_lit] = STATE(274), - [sym_ns_map_lit] = STATE(274), - [sym_var_quoting_lit] = STATE(274), - [sym_sym_val_lit] = STATE(274), - [sym_evaling_lit] = STATE(274), - [sym_tagged_or_ctor_lit] = STATE(274), - [sym_derefing_lit] = STATE(274), - [sym_quoting_lit] = STATE(274), - [sym_syn_quoting_lit] = STATE(274), - [sym_unquote_splicing_lit] = STATE(274), - [sym_unquoting_lit] = STATE(274), + [sym_meta_lit] = STATE(312), + [sym_old_meta_lit] = STATE(315), + [sym_list_lit] = STATE(343), + [sym__bare_list_lit] = STATE(402), + [sym_map_lit] = STATE(343), + [sym__bare_map_lit] = STATE(403), + [sym_vec_lit] = STATE(343), + [sym__bare_vec_lit] = STATE(404), + [sym_set_lit] = STATE(343), + [sym__bare_set_lit] = STATE(405), + [sym_anon_fn_lit] = STATE(343), + [sym_regex_lit] = STATE(343), + [sym_read_cond_lit] = STATE(343), + [sym_splicing_read_cond_lit] = STATE(343), + [sym_ns_map_lit] = STATE(343), + [sym_var_quoting_lit] = STATE(343), + [sym_sym_val_lit] = STATE(343), + [sym_evaling_lit] = STATE(343), + [sym_tagged_or_ctor_lit] = STATE(343), + [sym_derefing_lit] = STATE(343), + [sym_quoting_lit] = STATE(343), + [sym_syn_quoting_lit] = STATE(343), + [sym_unquote_splicing_lit] = STATE(343), + [sym_unquoting_lit] = STATE(343), [aux_sym_dis_expr_repeat1] = STATE(301), - [aux_sym_sym_lit_repeat1] = STATE(305), - [sym__ws] = ACTIONS(264), - [sym_comment] = ACTIONS(264), + [aux_sym_sym_lit_repeat1] = STATE(304), + [sym__ws] = ACTIONS(320), + [sym_comment] = ACTIONS(320), [anon_sym_POUND_] = ACTIONS(7), - [sym_num_lit] = ACTIONS(764), - [anon_sym_SLASH] = ACTIONS(9), - [anon_sym_COLON] = ACTIONS(11), - [anon_sym_COLON_COLON] = ACTIONS(13), - [aux_sym_str_lit_token1] = ACTIONS(15), - [sym_char_lit] = ACTIONS(764), - [sym_nil_lit] = ACTIONS(766), - [sym_bool_lit] = ACTIONS(766), - [aux_sym__sym_qualified_token1] = ACTIONS(19), + [sym_num_lit] = ACTIONS(562), + [anon_sym_SLASH] = ACTIONS(268), + [anon_sym_COLON] = ACTIONS(526), + [anon_sym_COLON_COLON] = ACTIONS(528), + [aux_sym_str_lit_token1] = ACTIONS(274), + [sym_char_lit] = ACTIONS(562), + [sym_nil_lit] = ACTIONS(564), + [sym_bool_lit] = ACTIONS(564), + [aux_sym__sym_qualified_token1] = ACTIONS(278), [anon_sym_CARET] = ACTIONS(21), [anon_sym_POUND_CARET] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_LBRACK] = 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_TILDE_AT] = ACTIONS(49), - [anon_sym_TILDE] = ACTIONS(51), + [anon_sym_LPAREN] = ACTIONS(280), + [anon_sym_LBRACE] = ACTIONS(282), + [anon_sym_LBRACK] = ACTIONS(284), + [anon_sym_POUND] = ACTIONS(532), + [anon_sym_POUND_QMARK] = ACTIONS(288), + [anon_sym_POUND_QMARK_AT] = ACTIONS(290), + [anon_sym_POUND_SQUOTE] = ACTIONS(534), + [anon_sym_POUND_POUND] = ACTIONS(536), + [anon_sym_POUND_EQ] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(538), + [anon_sym_SQUOTE] = ACTIONS(540), + [anon_sym_BQUOTE] = ACTIONS(542), + [anon_sym_TILDE_AT] = ACTIONS(544), + [anon_sym_TILDE] = ACTIONS(546), }, - [151] = { + [STATE(148)] = { [sym__gap] = STATE(301), [sym_dis_expr] = STATE(301), - [sym__form] = STATE(278), - [sym_kwd_lit] = STATE(278), - [sym_str_lit] = STATE(278), - [sym_sym_lit] = STATE(278), + [sym__form] = STATE(344), + [sym_kwd_lit] = STATE(344), + [sym_str_lit] = STATE(344), + [sym_sym_lit] = STATE(344), [sym__metadata_lit] = STATE(424), - [sym_meta_lit] = STATE(314), - [sym_old_meta_lit] = STATE(313), - [sym_list_lit] = STATE(278), - [sym__bare_list_lit] = STATE(218), - [sym_map_lit] = STATE(278), - [sym__bare_map_lit] = STATE(219), - [sym_vec_lit] = STATE(278), - [sym__bare_vec_lit] = STATE(226), - [sym_set_lit] = STATE(278), - [sym__bare_set_lit] = STATE(227), - [sym_anon_fn_lit] = STATE(278), - [sym_regex_lit] = STATE(278), - [sym_read_cond_lit] = STATE(278), - [sym_splicing_read_cond_lit] = STATE(278), - [sym_ns_map_lit] = STATE(278), - [sym_var_quoting_lit] = STATE(278), - [sym_sym_val_lit] = STATE(278), - [sym_evaling_lit] = STATE(278), - [sym_tagged_or_ctor_lit] = STATE(278), - [sym_derefing_lit] = STATE(278), - [sym_quoting_lit] = STATE(278), - [sym_syn_quoting_lit] = STATE(278), - [sym_unquote_splicing_lit] = STATE(278), - [sym_unquoting_lit] = STATE(278), + [sym_meta_lit] = STATE(312), + [sym_old_meta_lit] = STATE(315), + [sym_list_lit] = STATE(344), + [sym__bare_list_lit] = STATE(402), + [sym_map_lit] = STATE(344), + [sym__bare_map_lit] = STATE(403), + [sym_vec_lit] = STATE(344), + [sym__bare_vec_lit] = STATE(404), + [sym_set_lit] = STATE(344), + [sym__bare_set_lit] = STATE(405), + [sym_anon_fn_lit] = STATE(344), + [sym_regex_lit] = STATE(344), + [sym_read_cond_lit] = STATE(344), + [sym_splicing_read_cond_lit] = STATE(344), + [sym_ns_map_lit] = STATE(344), + [sym_var_quoting_lit] = STATE(344), + [sym_sym_val_lit] = STATE(344), + [sym_evaling_lit] = STATE(344), + [sym_tagged_or_ctor_lit] = STATE(344), + [sym_derefing_lit] = STATE(344), + [sym_quoting_lit] = STATE(344), + [sym_syn_quoting_lit] = STATE(344), + [sym_unquote_splicing_lit] = STATE(344), + [sym_unquoting_lit] = STATE(344), [aux_sym_dis_expr_repeat1] = STATE(301), - [aux_sym_sym_lit_repeat1] = STATE(303), - [sym__ws] = ACTIONS(264), - [sym_comment] = ACTIONS(264), + [aux_sym_sym_lit_repeat1] = STATE(304), + [sym__ws] = ACTIONS(320), + [sym_comment] = ACTIONS(320), [anon_sym_POUND_] = ACTIONS(7), - [sym_num_lit] = ACTIONS(600), - [anon_sym_SLASH] = ACTIONS(9), - [anon_sym_COLON] = ACTIONS(716), - [anon_sym_COLON_COLON] = ACTIONS(718), - [aux_sym_str_lit_token1] = ACTIONS(15), - [sym_char_lit] = ACTIONS(600), - [sym_nil_lit] = ACTIONS(602), - [sym_bool_lit] = ACTIONS(602), - [aux_sym__sym_qualified_token1] = ACTIONS(19), + [sym_num_lit] = ACTIONS(566), + [anon_sym_SLASH] = ACTIONS(268), + [anon_sym_COLON] = ACTIONS(526), + [anon_sym_COLON_COLON] = ACTIONS(528), + [aux_sym_str_lit_token1] = ACTIONS(274), + [sym_char_lit] = ACTIONS(566), + [sym_nil_lit] = ACTIONS(568), + [sym_bool_lit] = ACTIONS(568), + [aux_sym__sym_qualified_token1] = ACTIONS(278), [anon_sym_CARET] = ACTIONS(21), [anon_sym_POUND_CARET] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_LBRACK] = ACTIONS(29), - [anon_sym_POUND] = ACTIONS(720), - [anon_sym_POUND_QMARK] = ACTIONS(33), - [anon_sym_POUND_QMARK_AT] = ACTIONS(35), - [anon_sym_POUND_SQUOTE] = ACTIONS(722), - [anon_sym_POUND_POUND] = ACTIONS(724), - [anon_sym_POUND_EQ] = ACTIONS(41), - [anon_sym_AT] = ACTIONS(726), - [anon_sym_SQUOTE] = ACTIONS(728), - [anon_sym_BQUOTE] = ACTIONS(730), - [anon_sym_TILDE_AT] = ACTIONS(732), - [anon_sym_TILDE] = ACTIONS(734), + [anon_sym_LPAREN] = ACTIONS(280), + [anon_sym_LBRACE] = ACTIONS(282), + [anon_sym_LBRACK] = ACTIONS(284), + [anon_sym_POUND] = ACTIONS(532), + [anon_sym_POUND_QMARK] = ACTIONS(288), + [anon_sym_POUND_QMARK_AT] = ACTIONS(290), + [anon_sym_POUND_SQUOTE] = ACTIONS(534), + [anon_sym_POUND_POUND] = ACTIONS(536), + [anon_sym_POUND_EQ] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(538), + [anon_sym_SQUOTE] = ACTIONS(540), + [anon_sym_BQUOTE] = ACTIONS(542), + [anon_sym_TILDE_AT] = ACTIONS(544), + [anon_sym_TILDE] = ACTIONS(546), }, - [152] = { + [STATE(149)] = { [sym__gap] = STATE(301), [sym_dis_expr] = STATE(301), - [sym__form] = STATE(300), - [sym_kwd_lit] = STATE(300), - [sym_str_lit] = STATE(300), - [sym_sym_lit] = STATE(300), + [sym__form] = STATE(345), + [sym_kwd_lit] = STATE(345), + [sym_str_lit] = STATE(345), + [sym_sym_lit] = STATE(345), [sym__metadata_lit] = STATE(424), - [sym_meta_lit] = STATE(314), - [sym_old_meta_lit] = STATE(313), - [sym_list_lit] = STATE(300), - [sym__bare_list_lit] = STATE(218), - [sym_map_lit] = STATE(300), - [sym__bare_map_lit] = STATE(219), - [sym_vec_lit] = STATE(300), - [sym__bare_vec_lit] = STATE(226), - [sym_set_lit] = STATE(300), - [sym__bare_set_lit] = STATE(227), - [sym_anon_fn_lit] = STATE(300), - [sym_regex_lit] = STATE(300), - [sym_read_cond_lit] = STATE(300), - [sym_splicing_read_cond_lit] = STATE(300), - [sym_ns_map_lit] = STATE(300), - [sym_var_quoting_lit] = STATE(300), - [sym_sym_val_lit] = STATE(300), - [sym_evaling_lit] = STATE(300), - [sym_tagged_or_ctor_lit] = STATE(300), - [sym_derefing_lit] = STATE(300), - [sym_quoting_lit] = STATE(300), - [sym_syn_quoting_lit] = STATE(300), - [sym_unquote_splicing_lit] = STATE(300), - [sym_unquoting_lit] = STATE(300), + [sym_meta_lit] = STATE(312), + [sym_old_meta_lit] = STATE(315), + [sym_list_lit] = STATE(345), + [sym__bare_list_lit] = STATE(402), + [sym_map_lit] = STATE(345), + [sym__bare_map_lit] = STATE(403), + [sym_vec_lit] = STATE(345), + [sym__bare_vec_lit] = STATE(404), + [sym_set_lit] = STATE(345), + [sym__bare_set_lit] = STATE(405), + [sym_anon_fn_lit] = STATE(345), + [sym_regex_lit] = STATE(345), + [sym_read_cond_lit] = STATE(345), + [sym_splicing_read_cond_lit] = STATE(345), + [sym_ns_map_lit] = STATE(345), + [sym_var_quoting_lit] = STATE(345), + [sym_sym_val_lit] = STATE(345), + [sym_evaling_lit] = STATE(345), + [sym_tagged_or_ctor_lit] = STATE(345), + [sym_derefing_lit] = STATE(345), + [sym_quoting_lit] = STATE(345), + [sym_syn_quoting_lit] = STATE(345), + [sym_unquote_splicing_lit] = STATE(345), + [sym_unquoting_lit] = STATE(345), [aux_sym_dis_expr_repeat1] = STATE(301), - [aux_sym_sym_lit_repeat1] = STATE(305), - [sym__ws] = ACTIONS(264), - [sym_comment] = ACTIONS(264), + [aux_sym_sym_lit_repeat1] = STATE(304), + [sym__ws] = ACTIONS(320), + [sym_comment] = ACTIONS(320), [anon_sym_POUND_] = ACTIONS(7), - [sym_num_lit] = ACTIONS(760), - [anon_sym_SLASH] = ACTIONS(9), - [anon_sym_COLON] = ACTIONS(11), - [anon_sym_COLON_COLON] = ACTIONS(13), - [aux_sym_str_lit_token1] = ACTIONS(15), - [sym_char_lit] = ACTIONS(760), - [sym_nil_lit] = ACTIONS(762), - [sym_bool_lit] = ACTIONS(762), - [aux_sym__sym_qualified_token1] = ACTIONS(19), + [sym_num_lit] = ACTIONS(570), + [anon_sym_SLASH] = ACTIONS(268), + [anon_sym_COLON] = ACTIONS(526), + [anon_sym_COLON_COLON] = ACTIONS(528), + [aux_sym_str_lit_token1] = ACTIONS(274), + [sym_char_lit] = ACTIONS(570), + [sym_nil_lit] = ACTIONS(572), + [sym_bool_lit] = ACTIONS(572), + [aux_sym__sym_qualified_token1] = ACTIONS(278), [anon_sym_CARET] = ACTIONS(21), [anon_sym_POUND_CARET] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_LBRACK] = 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_TILDE_AT] = ACTIONS(49), - [anon_sym_TILDE] = ACTIONS(51), + [anon_sym_LPAREN] = ACTIONS(280), + [anon_sym_LBRACE] = ACTIONS(282), + [anon_sym_LBRACK] = ACTIONS(284), + [anon_sym_POUND] = ACTIONS(532), + [anon_sym_POUND_QMARK] = ACTIONS(288), + [anon_sym_POUND_QMARK_AT] = ACTIONS(290), + [anon_sym_POUND_SQUOTE] = ACTIONS(534), + [anon_sym_POUND_POUND] = ACTIONS(536), + [anon_sym_POUND_EQ] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(538), + [anon_sym_SQUOTE] = ACTIONS(540), + [anon_sym_BQUOTE] = ACTIONS(542), + [anon_sym_TILDE_AT] = ACTIONS(544), + [anon_sym_TILDE] = ACTIONS(546), }, - [153] = { + [STATE(150)] = { [sym__gap] = STATE(301), [sym_dis_expr] = STATE(301), - [sym__form] = STATE(277), - [sym_kwd_lit] = STATE(277), - [sym_str_lit] = STATE(277), - [sym_sym_lit] = STATE(277), + [sym__form] = STATE(346), + [sym_kwd_lit] = STATE(346), + [sym_str_lit] = STATE(346), + [sym_sym_lit] = STATE(346), [sym__metadata_lit] = STATE(424), - [sym_meta_lit] = STATE(314), - [sym_old_meta_lit] = STATE(313), - [sym_list_lit] = STATE(277), - [sym__bare_list_lit] = STATE(218), - [sym_map_lit] = STATE(277), - [sym__bare_map_lit] = STATE(219), - [sym_vec_lit] = STATE(277), - [sym__bare_vec_lit] = STATE(226), - [sym_set_lit] = STATE(277), - [sym__bare_set_lit] = STATE(227), - [sym_anon_fn_lit] = STATE(277), - [sym_regex_lit] = STATE(277), - [sym_read_cond_lit] = STATE(277), - [sym_splicing_read_cond_lit] = STATE(277), - [sym_ns_map_lit] = STATE(277), - [sym_var_quoting_lit] = STATE(277), - [sym_sym_val_lit] = STATE(277), - [sym_evaling_lit] = STATE(277), - [sym_tagged_or_ctor_lit] = STATE(277), - [sym_derefing_lit] = STATE(277), - [sym_quoting_lit] = STATE(277), - [sym_syn_quoting_lit] = STATE(277), - [sym_unquote_splicing_lit] = STATE(277), - [sym_unquoting_lit] = STATE(277), + [sym_meta_lit] = STATE(312), + [sym_old_meta_lit] = STATE(315), + [sym_list_lit] = STATE(346), + [sym__bare_list_lit] = STATE(402), + [sym_map_lit] = STATE(346), + [sym__bare_map_lit] = STATE(403), + [sym_vec_lit] = STATE(346), + [sym__bare_vec_lit] = STATE(404), + [sym_set_lit] = STATE(346), + [sym__bare_set_lit] = STATE(405), + [sym_anon_fn_lit] = STATE(346), + [sym_regex_lit] = STATE(346), + [sym_read_cond_lit] = STATE(346), + [sym_splicing_read_cond_lit] = STATE(346), + [sym_ns_map_lit] = STATE(346), + [sym_var_quoting_lit] = STATE(346), + [sym_sym_val_lit] = STATE(346), + [sym_evaling_lit] = STATE(346), + [sym_tagged_or_ctor_lit] = STATE(346), + [sym_derefing_lit] = STATE(346), + [sym_quoting_lit] = STATE(346), + [sym_syn_quoting_lit] = STATE(346), + [sym_unquote_splicing_lit] = STATE(346), + [sym_unquoting_lit] = STATE(346), [aux_sym_dis_expr_repeat1] = STATE(301), - [aux_sym_sym_lit_repeat1] = STATE(303), - [sym__ws] = ACTIONS(264), - [sym_comment] = ACTIONS(264), + [aux_sym_sym_lit_repeat1] = STATE(304), + [sym__ws] = ACTIONS(320), + [sym_comment] = ACTIONS(320), [anon_sym_POUND_] = ACTIONS(7), - [sym_num_lit] = ACTIONS(592), - [anon_sym_SLASH] = ACTIONS(9), - [anon_sym_COLON] = ACTIONS(716), - [anon_sym_COLON_COLON] = ACTIONS(718), - [aux_sym_str_lit_token1] = ACTIONS(15), - [sym_char_lit] = ACTIONS(592), - [sym_nil_lit] = ACTIONS(594), - [sym_bool_lit] = ACTIONS(594), - [aux_sym__sym_qualified_token1] = ACTIONS(19), + [sym_num_lit] = ACTIONS(574), + [anon_sym_SLASH] = ACTIONS(268), + [anon_sym_COLON] = ACTIONS(526), + [anon_sym_COLON_COLON] = ACTIONS(528), + [aux_sym_str_lit_token1] = ACTIONS(274), + [sym_char_lit] = ACTIONS(574), + [sym_nil_lit] = ACTIONS(576), + [sym_bool_lit] = ACTIONS(576), + [aux_sym__sym_qualified_token1] = ACTIONS(278), [anon_sym_CARET] = ACTIONS(21), [anon_sym_POUND_CARET] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_LBRACK] = ACTIONS(29), - [anon_sym_POUND] = ACTIONS(720), - [anon_sym_POUND_QMARK] = ACTIONS(33), - [anon_sym_POUND_QMARK_AT] = ACTIONS(35), - [anon_sym_POUND_SQUOTE] = ACTIONS(722), - [anon_sym_POUND_POUND] = ACTIONS(724), - [anon_sym_POUND_EQ] = ACTIONS(41), - [anon_sym_AT] = ACTIONS(726), - [anon_sym_SQUOTE] = ACTIONS(728), - [anon_sym_BQUOTE] = ACTIONS(730), - [anon_sym_TILDE_AT] = ACTIONS(732), - [anon_sym_TILDE] = ACTIONS(734), + [anon_sym_LPAREN] = ACTIONS(280), + [anon_sym_LBRACE] = ACTIONS(282), + [anon_sym_LBRACK] = ACTIONS(284), + [anon_sym_POUND] = ACTIONS(532), + [anon_sym_POUND_QMARK] = ACTIONS(288), + [anon_sym_POUND_QMARK_AT] = ACTIONS(290), + [anon_sym_POUND_SQUOTE] = ACTIONS(534), + [anon_sym_POUND_POUND] = ACTIONS(536), + [anon_sym_POUND_EQ] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(538), + [anon_sym_SQUOTE] = ACTIONS(540), + [anon_sym_BQUOTE] = ACTIONS(542), + [anon_sym_TILDE_AT] = ACTIONS(544), + [anon_sym_TILDE] = ACTIONS(546), }, - [154] = { + [STATE(151)] = { [sym__gap] = STATE(301), [sym_dis_expr] = STATE(301), - [sym__form] = STATE(214), - [sym_kwd_lit] = STATE(214), - [sym_str_lit] = STATE(214), - [sym_sym_lit] = STATE(214), + [sym__form] = STATE(347), + [sym_kwd_lit] = STATE(347), + [sym_str_lit] = STATE(347), + [sym_sym_lit] = STATE(347), [sym__metadata_lit] = STATE(424), - [sym_meta_lit] = STATE(314), - [sym_old_meta_lit] = STATE(313), - [sym_list_lit] = STATE(214), - [sym__bare_list_lit] = STATE(218), - [sym_map_lit] = STATE(214), - [sym__bare_map_lit] = STATE(219), - [sym_vec_lit] = STATE(214), - [sym__bare_vec_lit] = STATE(226), - [sym_set_lit] = STATE(214), - [sym__bare_set_lit] = STATE(227), - [sym_anon_fn_lit] = STATE(214), - [sym_regex_lit] = STATE(214), - [sym_read_cond_lit] = STATE(214), - [sym_splicing_read_cond_lit] = STATE(214), - [sym_ns_map_lit] = STATE(214), - [sym_var_quoting_lit] = STATE(214), - [sym_sym_val_lit] = STATE(214), - [sym_evaling_lit] = STATE(214), - [sym_tagged_or_ctor_lit] = STATE(214), - [sym_derefing_lit] = STATE(214), - [sym_quoting_lit] = STATE(214), - [sym_syn_quoting_lit] = STATE(214), - [sym_unquote_splicing_lit] = STATE(214), - [sym_unquoting_lit] = STATE(214), + [sym_meta_lit] = STATE(312), + [sym_old_meta_lit] = STATE(315), + [sym_list_lit] = STATE(347), + [sym__bare_list_lit] = STATE(402), + [sym_map_lit] = STATE(347), + [sym__bare_map_lit] = STATE(403), + [sym_vec_lit] = STATE(347), + [sym__bare_vec_lit] = STATE(404), + [sym_set_lit] = STATE(347), + [sym__bare_set_lit] = STATE(405), + [sym_anon_fn_lit] = STATE(347), + [sym_regex_lit] = STATE(347), + [sym_read_cond_lit] = STATE(347), + [sym_splicing_read_cond_lit] = STATE(347), + [sym_ns_map_lit] = STATE(347), + [sym_var_quoting_lit] = STATE(347), + [sym_sym_val_lit] = STATE(347), + [sym_evaling_lit] = STATE(347), + [sym_tagged_or_ctor_lit] = STATE(347), + [sym_derefing_lit] = STATE(347), + [sym_quoting_lit] = STATE(347), + [sym_syn_quoting_lit] = STATE(347), + [sym_unquote_splicing_lit] = STATE(347), + [sym_unquoting_lit] = STATE(347), [aux_sym_dis_expr_repeat1] = STATE(301), - [aux_sym_sym_lit_repeat1] = STATE(303), - [sym__ws] = ACTIONS(264), - [sym_comment] = ACTIONS(264), + [aux_sym_sym_lit_repeat1] = STATE(304), + [sym__ws] = ACTIONS(320), + [sym_comment] = ACTIONS(320), [anon_sym_POUND_] = ACTIONS(7), - [sym_num_lit] = ACTIONS(584), - [anon_sym_SLASH] = ACTIONS(9), - [anon_sym_COLON] = ACTIONS(716), - [anon_sym_COLON_COLON] = ACTIONS(718), - [aux_sym_str_lit_token1] = ACTIONS(15), - [sym_char_lit] = ACTIONS(584), - [sym_nil_lit] = ACTIONS(586), - [sym_bool_lit] = ACTIONS(586), - [aux_sym__sym_qualified_token1] = ACTIONS(19), + [sym_num_lit] = ACTIONS(578), + [anon_sym_SLASH] = ACTIONS(268), + [anon_sym_COLON] = ACTIONS(526), + [anon_sym_COLON_COLON] = ACTIONS(528), + [aux_sym_str_lit_token1] = ACTIONS(274), + [sym_char_lit] = ACTIONS(578), + [sym_nil_lit] = ACTIONS(580), + [sym_bool_lit] = ACTIONS(580), + [aux_sym__sym_qualified_token1] = ACTIONS(278), [anon_sym_CARET] = ACTIONS(21), [anon_sym_POUND_CARET] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_LBRACK] = ACTIONS(29), - [anon_sym_POUND] = ACTIONS(720), - [anon_sym_POUND_QMARK] = ACTIONS(33), - [anon_sym_POUND_QMARK_AT] = ACTIONS(35), - [anon_sym_POUND_SQUOTE] = ACTIONS(722), - [anon_sym_POUND_POUND] = ACTIONS(724), - [anon_sym_POUND_EQ] = ACTIONS(41), - [anon_sym_AT] = ACTIONS(726), - [anon_sym_SQUOTE] = ACTIONS(728), - [anon_sym_BQUOTE] = ACTIONS(730), - [anon_sym_TILDE_AT] = ACTIONS(732), - [anon_sym_TILDE] = ACTIONS(734), + [anon_sym_LPAREN] = ACTIONS(280), + [anon_sym_LBRACE] = ACTIONS(282), + [anon_sym_LBRACK] = ACTIONS(284), + [anon_sym_POUND] = ACTIONS(532), + [anon_sym_POUND_QMARK] = ACTIONS(288), + [anon_sym_POUND_QMARK_AT] = ACTIONS(290), + [anon_sym_POUND_SQUOTE] = ACTIONS(534), + [anon_sym_POUND_POUND] = ACTIONS(536), + [anon_sym_POUND_EQ] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(538), + [anon_sym_SQUOTE] = ACTIONS(540), + [anon_sym_BQUOTE] = ACTIONS(542), + [anon_sym_TILDE_AT] = ACTIONS(544), + [anon_sym_TILDE] = ACTIONS(546), }, - [155] = { - [sym__gap] = STATE(301), - [sym_dis_expr] = STATE(301), - [sym__form] = STATE(276), - [sym_kwd_lit] = STATE(276), - [sym_str_lit] = STATE(276), - [sym_sym_lit] = STATE(276), + [STATE(152)] = { + [sym__gap] = STATE(161), + [sym_dis_expr] = STATE(161), + [sym__form] = STATE(352), + [sym_kwd_lit] = STATE(352), + [sym_str_lit] = STATE(352), + [sym_sym_lit] = STATE(352), [sym__metadata_lit] = STATE(424), - [sym_meta_lit] = STATE(314), - [sym_old_meta_lit] = STATE(313), - [sym_list_lit] = STATE(276), - [sym__bare_list_lit] = STATE(218), - [sym_map_lit] = STATE(276), - [sym__bare_map_lit] = STATE(219), - [sym_vec_lit] = STATE(276), - [sym__bare_vec_lit] = STATE(226), - [sym_set_lit] = STATE(276), - [sym__bare_set_lit] = STATE(227), - [sym_anon_fn_lit] = STATE(276), - [sym_regex_lit] = STATE(276), - [sym_read_cond_lit] = STATE(276), - [sym_splicing_read_cond_lit] = STATE(276), - [sym_ns_map_lit] = STATE(276), - [sym_var_quoting_lit] = STATE(276), - [sym_sym_val_lit] = STATE(276), - [sym_evaling_lit] = STATE(276), - [sym_tagged_or_ctor_lit] = STATE(276), - [sym_derefing_lit] = STATE(276), - [sym_quoting_lit] = STATE(276), - [sym_syn_quoting_lit] = STATE(276), - [sym_unquote_splicing_lit] = STATE(276), - [sym_unquoting_lit] = STATE(276), - [aux_sym_dis_expr_repeat1] = STATE(301), - [aux_sym_sym_lit_repeat1] = STATE(303), - [sym__ws] = ACTIONS(264), - [sym_comment] = ACTIONS(264), + [sym_meta_lit] = STATE(312), + [sym_old_meta_lit] = STATE(315), + [sym_list_lit] = STATE(352), + [sym__bare_list_lit] = STATE(402), + [sym_map_lit] = STATE(352), + [sym__bare_map_lit] = STATE(403), + [sym_vec_lit] = STATE(352), + [sym__bare_vec_lit] = STATE(404), + [sym_set_lit] = STATE(352), + [sym__bare_set_lit] = STATE(405), + [sym_anon_fn_lit] = STATE(352), + [sym_regex_lit] = STATE(352), + [sym_read_cond_lit] = STATE(352), + [sym_splicing_read_cond_lit] = STATE(352), + [sym_ns_map_lit] = STATE(352), + [sym_var_quoting_lit] = STATE(352), + [sym_sym_val_lit] = STATE(352), + [sym_evaling_lit] = STATE(352), + [sym_tagged_or_ctor_lit] = STATE(352), + [sym_derefing_lit] = STATE(352), + [sym_quoting_lit] = STATE(352), + [sym_syn_quoting_lit] = STATE(352), + [sym_unquote_splicing_lit] = STATE(352), + [sym_unquoting_lit] = STATE(352), + [aux_sym_dis_expr_repeat1] = STATE(161), + [aux_sym_sym_lit_repeat1] = STATE(304), + [sym__ws] = ACTIONS(800), + [sym_comment] = ACTIONS(800), [anon_sym_POUND_] = ACTIONS(7), - [sym_num_lit] = ACTIONS(576), - [anon_sym_SLASH] = ACTIONS(9), - [anon_sym_COLON] = ACTIONS(716), - [anon_sym_COLON_COLON] = ACTIONS(718), - [aux_sym_str_lit_token1] = ACTIONS(15), - [sym_char_lit] = ACTIONS(576), - [sym_nil_lit] = ACTIONS(578), - [sym_bool_lit] = ACTIONS(578), - [aux_sym__sym_qualified_token1] = ACTIONS(19), + [sym_num_lit] = ACTIONS(266), + [anon_sym_SLASH] = ACTIONS(268), + [anon_sym_COLON] = ACTIONS(526), + [anon_sym_COLON_COLON] = ACTIONS(528), + [aux_sym_str_lit_token1] = ACTIONS(274), + [sym_char_lit] = ACTIONS(266), + [sym_nil_lit] = ACTIONS(276), + [sym_bool_lit] = ACTIONS(276), + [aux_sym__sym_qualified_token1] = ACTIONS(278), [anon_sym_CARET] = ACTIONS(21), [anon_sym_POUND_CARET] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_LBRACK] = ACTIONS(29), - [anon_sym_POUND] = ACTIONS(720), - [anon_sym_POUND_QMARK] = ACTIONS(33), - [anon_sym_POUND_QMARK_AT] = ACTIONS(35), - [anon_sym_POUND_SQUOTE] = ACTIONS(722), - [anon_sym_POUND_POUND] = ACTIONS(724), - [anon_sym_POUND_EQ] = ACTIONS(41), - [anon_sym_AT] = ACTIONS(726), - [anon_sym_SQUOTE] = ACTIONS(728), - [anon_sym_BQUOTE] = ACTIONS(730), - [anon_sym_TILDE_AT] = ACTIONS(732), - [anon_sym_TILDE] = ACTIONS(734), + [anon_sym_LPAREN] = ACTIONS(280), + [anon_sym_LBRACE] = ACTIONS(282), + [anon_sym_LBRACK] = ACTIONS(284), + [anon_sym_POUND] = ACTIONS(532), + [anon_sym_POUND_QMARK] = ACTIONS(288), + [anon_sym_POUND_QMARK_AT] = ACTIONS(290), + [anon_sym_POUND_SQUOTE] = ACTIONS(534), + [anon_sym_POUND_POUND] = ACTIONS(536), + [anon_sym_POUND_EQ] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(538), + [anon_sym_SQUOTE] = ACTIONS(540), + [anon_sym_BQUOTE] = ACTIONS(542), + [anon_sym_TILDE_AT] = ACTIONS(544), + [anon_sym_TILDE] = ACTIONS(546), + }, + [STATE(153)] = { + [sym__gap] = STATE(162), + [sym_dis_expr] = STATE(162), + [sym__form] = STATE(358), + [sym_kwd_lit] = STATE(358), + [sym_str_lit] = STATE(358), + [sym_sym_lit] = STATE(358), + [sym__metadata_lit] = STATE(424), + [sym_meta_lit] = STATE(312), + [sym_old_meta_lit] = STATE(315), + [sym_list_lit] = STATE(358), + [sym__bare_list_lit] = STATE(402), + [sym_map_lit] = STATE(358), + [sym__bare_map_lit] = STATE(403), + [sym_vec_lit] = STATE(358), + [sym__bare_vec_lit] = STATE(404), + [sym_set_lit] = STATE(358), + [sym__bare_set_lit] = STATE(405), + [sym_anon_fn_lit] = STATE(358), + [sym_regex_lit] = STATE(358), + [sym_read_cond_lit] = STATE(358), + [sym_splicing_read_cond_lit] = STATE(358), + [sym_ns_map_lit] = STATE(358), + [sym_var_quoting_lit] = STATE(358), + [sym_sym_val_lit] = STATE(358), + [sym_evaling_lit] = STATE(358), + [sym_tagged_or_ctor_lit] = STATE(358), + [sym_derefing_lit] = STATE(358), + [sym_quoting_lit] = STATE(358), + [sym_syn_quoting_lit] = STATE(358), + [sym_unquote_splicing_lit] = STATE(358), + [sym_unquoting_lit] = STATE(358), + [aux_sym_dis_expr_repeat1] = STATE(162), + [aux_sym_sym_lit_repeat1] = STATE(304), + [sym__ws] = ACTIONS(802), + [sym_comment] = ACTIONS(802), + [anon_sym_POUND_] = ACTIONS(7), + [sym_num_lit] = ACTIONS(586), + [anon_sym_SLASH] = ACTIONS(268), + [anon_sym_COLON] = ACTIONS(526), + [anon_sym_COLON_COLON] = ACTIONS(528), + [aux_sym_str_lit_token1] = ACTIONS(274), + [sym_char_lit] = ACTIONS(586), + [sym_nil_lit] = ACTIONS(588), + [sym_bool_lit] = ACTIONS(588), + [aux_sym__sym_qualified_token1] = ACTIONS(278), + [anon_sym_CARET] = ACTIONS(21), + [anon_sym_POUND_CARET] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(280), + [anon_sym_LBRACE] = ACTIONS(282), + [anon_sym_LBRACK] = ACTIONS(284), + [anon_sym_POUND] = ACTIONS(532), + [anon_sym_POUND_QMARK] = ACTIONS(288), + [anon_sym_POUND_QMARK_AT] = ACTIONS(290), + [anon_sym_POUND_SQUOTE] = ACTIONS(534), + [anon_sym_POUND_POUND] = ACTIONS(536), + [anon_sym_POUND_EQ] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(538), + [anon_sym_SQUOTE] = ACTIONS(540), + [anon_sym_BQUOTE] = ACTIONS(542), + [anon_sym_TILDE_AT] = ACTIONS(544), + [anon_sym_TILDE] = ACTIONS(546), }, - [156] = { - [sym__gap] = STATE(301), - [sym_dis_expr] = STATE(301), - [sym__form] = STATE(275), - [sym_kwd_lit] = STATE(275), - [sym_str_lit] = STATE(275), - [sym_sym_lit] = STATE(275), + [STATE(154)] = { + [sym__gap] = STATE(163), + [sym_dis_expr] = STATE(163), + [sym__form] = STATE(360), + [sym_kwd_lit] = STATE(360), + [sym_str_lit] = STATE(360), + [sym_sym_lit] = STATE(360), [sym__metadata_lit] = STATE(424), - [sym_meta_lit] = STATE(314), - [sym_old_meta_lit] = STATE(313), - [sym_list_lit] = STATE(275), - [sym__bare_list_lit] = STATE(218), - [sym_map_lit] = STATE(275), - [sym__bare_map_lit] = STATE(219), - [sym_vec_lit] = STATE(275), - [sym__bare_vec_lit] = STATE(226), - [sym_set_lit] = STATE(275), - [sym__bare_set_lit] = STATE(227), - [sym_anon_fn_lit] = STATE(275), - [sym_regex_lit] = STATE(275), - [sym_read_cond_lit] = STATE(275), - [sym_splicing_read_cond_lit] = STATE(275), - [sym_ns_map_lit] = STATE(275), - [sym_var_quoting_lit] = STATE(275), - [sym_sym_val_lit] = STATE(275), - [sym_evaling_lit] = STATE(275), - [sym_tagged_or_ctor_lit] = STATE(275), - [sym_derefing_lit] = STATE(275), - [sym_quoting_lit] = STATE(275), - [sym_syn_quoting_lit] = STATE(275), - [sym_unquote_splicing_lit] = STATE(275), - [sym_unquoting_lit] = STATE(275), - [aux_sym_dis_expr_repeat1] = STATE(301), - [aux_sym_sym_lit_repeat1] = STATE(303), - [sym__ws] = ACTIONS(264), - [sym_comment] = ACTIONS(264), + [sym_meta_lit] = STATE(312), + [sym_old_meta_lit] = STATE(315), + [sym_list_lit] = STATE(360), + [sym__bare_list_lit] = STATE(402), + [sym_map_lit] = STATE(360), + [sym__bare_map_lit] = STATE(403), + [sym_vec_lit] = STATE(360), + [sym__bare_vec_lit] = STATE(404), + [sym_set_lit] = STATE(360), + [sym__bare_set_lit] = STATE(405), + [sym_anon_fn_lit] = STATE(360), + [sym_regex_lit] = STATE(360), + [sym_read_cond_lit] = STATE(360), + [sym_splicing_read_cond_lit] = STATE(360), + [sym_ns_map_lit] = STATE(360), + [sym_var_quoting_lit] = STATE(360), + [sym_sym_val_lit] = STATE(360), + [sym_evaling_lit] = STATE(360), + [sym_tagged_or_ctor_lit] = STATE(360), + [sym_derefing_lit] = STATE(360), + [sym_quoting_lit] = STATE(360), + [sym_syn_quoting_lit] = STATE(360), + [sym_unquote_splicing_lit] = STATE(360), + [sym_unquoting_lit] = STATE(360), + [aux_sym_dis_expr_repeat1] = STATE(163), + [aux_sym_sym_lit_repeat1] = STATE(304), + [sym__ws] = ACTIONS(804), + [sym_comment] = ACTIONS(804), + [anon_sym_POUND_] = ACTIONS(7), + [sym_num_lit] = ACTIONS(592), + [anon_sym_SLASH] = ACTIONS(268), + [anon_sym_COLON] = ACTIONS(526), + [anon_sym_COLON_COLON] = ACTIONS(528), + [aux_sym_str_lit_token1] = ACTIONS(274), + [sym_char_lit] = ACTIONS(592), + [sym_nil_lit] = ACTIONS(594), + [sym_bool_lit] = ACTIONS(594), + [aux_sym__sym_qualified_token1] = ACTIONS(278), + [anon_sym_CARET] = ACTIONS(21), + [anon_sym_POUND_CARET] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(280), + [anon_sym_LBRACE] = ACTIONS(282), + [anon_sym_LBRACK] = ACTIONS(284), + [anon_sym_POUND] = ACTIONS(532), + [anon_sym_POUND_QMARK] = ACTIONS(288), + [anon_sym_POUND_QMARK_AT] = ACTIONS(290), + [anon_sym_POUND_SQUOTE] = ACTIONS(534), + [anon_sym_POUND_POUND] = ACTIONS(536), + [anon_sym_POUND_EQ] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(538), + [anon_sym_SQUOTE] = ACTIONS(540), + [anon_sym_BQUOTE] = ACTIONS(542), + [anon_sym_TILDE_AT] = ACTIONS(544), + [anon_sym_TILDE] = ACTIONS(546), + }, + [STATE(155)] = { + [sym__gap] = STATE(164), + [sym_dis_expr] = STATE(164), + [sym__form] = STATE(362), + [sym_kwd_lit] = STATE(362), + [sym_str_lit] = STATE(362), + [sym_sym_lit] = STATE(362), + [sym__metadata_lit] = STATE(424), + [sym_meta_lit] = STATE(312), + [sym_old_meta_lit] = STATE(315), + [sym_list_lit] = STATE(362), + [sym__bare_list_lit] = STATE(402), + [sym_map_lit] = STATE(362), + [sym__bare_map_lit] = STATE(403), + [sym_vec_lit] = STATE(362), + [sym__bare_vec_lit] = STATE(404), + [sym_set_lit] = STATE(362), + [sym__bare_set_lit] = STATE(405), + [sym_anon_fn_lit] = STATE(362), + [sym_regex_lit] = STATE(362), + [sym_read_cond_lit] = STATE(362), + [sym_splicing_read_cond_lit] = STATE(362), + [sym_ns_map_lit] = STATE(362), + [sym_var_quoting_lit] = STATE(362), + [sym_sym_val_lit] = STATE(362), + [sym_evaling_lit] = STATE(362), + [sym_tagged_or_ctor_lit] = STATE(362), + [sym_derefing_lit] = STATE(362), + [sym_quoting_lit] = STATE(362), + [sym_syn_quoting_lit] = STATE(362), + [sym_unquote_splicing_lit] = STATE(362), + [sym_unquoting_lit] = STATE(362), + [aux_sym_dis_expr_repeat1] = STATE(164), + [aux_sym_sym_lit_repeat1] = STATE(304), + [sym__ws] = ACTIONS(806), + [sym_comment] = ACTIONS(806), [anon_sym_POUND_] = ACTIONS(7), - [sym_num_lit] = ACTIONS(566), - [anon_sym_SLASH] = ACTIONS(9), - [anon_sym_COLON] = ACTIONS(716), - [anon_sym_COLON_COLON] = ACTIONS(718), - [aux_sym_str_lit_token1] = ACTIONS(15), - [sym_char_lit] = ACTIONS(566), - [sym_nil_lit] = ACTIONS(568), - [sym_bool_lit] = ACTIONS(568), - [aux_sym__sym_qualified_token1] = ACTIONS(19), + [sym_num_lit] = ACTIONS(598), + [anon_sym_SLASH] = ACTIONS(268), + [anon_sym_COLON] = ACTIONS(526), + [anon_sym_COLON_COLON] = ACTIONS(528), + [aux_sym_str_lit_token1] = ACTIONS(274), + [sym_char_lit] = ACTIONS(598), + [sym_nil_lit] = ACTIONS(600), + [sym_bool_lit] = ACTIONS(600), + [aux_sym__sym_qualified_token1] = ACTIONS(278), [anon_sym_CARET] = ACTIONS(21), [anon_sym_POUND_CARET] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_LBRACK] = ACTIONS(29), - [anon_sym_POUND] = ACTIONS(720), - [anon_sym_POUND_QMARK] = ACTIONS(33), - [anon_sym_POUND_QMARK_AT] = ACTIONS(35), - [anon_sym_POUND_SQUOTE] = ACTIONS(722), - [anon_sym_POUND_POUND] = ACTIONS(724), - [anon_sym_POUND_EQ] = ACTIONS(41), - [anon_sym_AT] = ACTIONS(726), - [anon_sym_SQUOTE] = ACTIONS(728), - [anon_sym_BQUOTE] = ACTIONS(730), - [anon_sym_TILDE_AT] = ACTIONS(732), - [anon_sym_TILDE] = ACTIONS(734), + [anon_sym_LPAREN] = ACTIONS(280), + [anon_sym_LBRACE] = ACTIONS(282), + [anon_sym_LBRACK] = ACTIONS(284), + [anon_sym_POUND] = ACTIONS(532), + [anon_sym_POUND_QMARK] = ACTIONS(288), + [anon_sym_POUND_QMARK_AT] = ACTIONS(290), + [anon_sym_POUND_SQUOTE] = ACTIONS(534), + [anon_sym_POUND_POUND] = ACTIONS(536), + [anon_sym_POUND_EQ] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(538), + [anon_sym_SQUOTE] = ACTIONS(540), + [anon_sym_BQUOTE] = ACTIONS(542), + [anon_sym_TILDE_AT] = ACTIONS(544), + [anon_sym_TILDE] = ACTIONS(546), }, - [157] = { - [sym__gap] = STATE(301), - [sym_dis_expr] = STATE(301), - [sym__form] = STATE(271), - [sym_kwd_lit] = STATE(271), - [sym_str_lit] = STATE(271), - [sym_sym_lit] = STATE(271), + [STATE(156)] = { + [sym__gap] = STATE(165), + [sym_dis_expr] = STATE(165), + [sym__form] = STATE(365), + [sym_kwd_lit] = STATE(365), + [sym_str_lit] = STATE(365), + [sym_sym_lit] = STATE(365), [sym__metadata_lit] = STATE(424), - [sym_meta_lit] = STATE(314), - [sym_old_meta_lit] = STATE(313), - [sym_list_lit] = STATE(271), - [sym__bare_list_lit] = STATE(218), - [sym_map_lit] = STATE(271), - [sym__bare_map_lit] = STATE(219), - [sym_vec_lit] = STATE(271), - [sym__bare_vec_lit] = STATE(226), - [sym_set_lit] = STATE(271), - [sym__bare_set_lit] = STATE(227), - [sym_anon_fn_lit] = STATE(271), - [sym_regex_lit] = STATE(271), - [sym_read_cond_lit] = STATE(271), - [sym_splicing_read_cond_lit] = STATE(271), - [sym_ns_map_lit] = STATE(271), - [sym_var_quoting_lit] = STATE(271), - [sym_sym_val_lit] = STATE(271), - [sym_evaling_lit] = STATE(271), - [sym_tagged_or_ctor_lit] = STATE(271), - [sym_derefing_lit] = STATE(271), - [sym_quoting_lit] = STATE(271), - [sym_syn_quoting_lit] = STATE(271), - [sym_unquote_splicing_lit] = STATE(271), - [sym_unquoting_lit] = STATE(271), - [aux_sym_dis_expr_repeat1] = STATE(301), - [aux_sym_sym_lit_repeat1] = STATE(303), - [sym__ws] = ACTIONS(264), - [sym_comment] = ACTIONS(264), + [sym_meta_lit] = STATE(312), + [sym_old_meta_lit] = STATE(315), + [sym_list_lit] = STATE(365), + [sym__bare_list_lit] = STATE(402), + [sym_map_lit] = STATE(365), + [sym__bare_map_lit] = STATE(403), + [sym_vec_lit] = STATE(365), + [sym__bare_vec_lit] = STATE(404), + [sym_set_lit] = STATE(365), + [sym__bare_set_lit] = STATE(405), + [sym_anon_fn_lit] = STATE(365), + [sym_regex_lit] = STATE(365), + [sym_read_cond_lit] = STATE(365), + [sym_splicing_read_cond_lit] = STATE(365), + [sym_ns_map_lit] = STATE(365), + [sym_var_quoting_lit] = STATE(365), + [sym_sym_val_lit] = STATE(365), + [sym_evaling_lit] = STATE(365), + [sym_tagged_or_ctor_lit] = STATE(365), + [sym_derefing_lit] = STATE(365), + [sym_quoting_lit] = STATE(365), + [sym_syn_quoting_lit] = STATE(365), + [sym_unquote_splicing_lit] = STATE(365), + [sym_unquoting_lit] = STATE(365), + [aux_sym_dis_expr_repeat1] = STATE(165), + [aux_sym_sym_lit_repeat1] = STATE(304), + [sym__ws] = ACTIONS(808), + [sym_comment] = ACTIONS(808), [anon_sym_POUND_] = ACTIONS(7), - [sym_num_lit] = ACTIONS(540), - [anon_sym_SLASH] = ACTIONS(9), - [anon_sym_COLON] = ACTIONS(716), - [anon_sym_COLON_COLON] = ACTIONS(718), - [aux_sym_str_lit_token1] = ACTIONS(15), - [sym_char_lit] = ACTIONS(540), - [sym_nil_lit] = ACTIONS(542), - [sym_bool_lit] = ACTIONS(542), - [aux_sym__sym_qualified_token1] = ACTIONS(19), + [sym_num_lit] = ACTIONS(604), + [anon_sym_SLASH] = ACTIONS(268), + [anon_sym_COLON] = ACTIONS(526), + [anon_sym_COLON_COLON] = ACTIONS(528), + [aux_sym_str_lit_token1] = ACTIONS(274), + [sym_char_lit] = ACTIONS(604), + [sym_nil_lit] = ACTIONS(606), + [sym_bool_lit] = ACTIONS(606), + [aux_sym__sym_qualified_token1] = ACTIONS(278), [anon_sym_CARET] = ACTIONS(21), [anon_sym_POUND_CARET] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_LBRACK] = ACTIONS(29), - [anon_sym_POUND] = ACTIONS(720), - [anon_sym_POUND_QMARK] = ACTIONS(33), - [anon_sym_POUND_QMARK_AT] = ACTIONS(35), - [anon_sym_POUND_SQUOTE] = ACTIONS(722), - [anon_sym_POUND_POUND] = ACTIONS(724), - [anon_sym_POUND_EQ] = ACTIONS(41), - [anon_sym_AT] = ACTIONS(726), - [anon_sym_SQUOTE] = ACTIONS(728), - [anon_sym_BQUOTE] = ACTIONS(730), - [anon_sym_TILDE_AT] = ACTIONS(732), - [anon_sym_TILDE] = ACTIONS(734), - }, - [158] = { - [sym__gap] = STATE(301), - [sym_dis_expr] = STATE(301), - [sym__form] = STATE(265), - [sym_kwd_lit] = STATE(265), - [sym_str_lit] = STATE(265), - [sym_sym_lit] = STATE(265), + [anon_sym_LPAREN] = ACTIONS(280), + [anon_sym_LBRACE] = ACTIONS(282), + [anon_sym_LBRACK] = ACTIONS(284), + [anon_sym_POUND] = ACTIONS(532), + [anon_sym_POUND_QMARK] = ACTIONS(288), + [anon_sym_POUND_QMARK_AT] = ACTIONS(290), + [anon_sym_POUND_SQUOTE] = ACTIONS(534), + [anon_sym_POUND_POUND] = ACTIONS(536), + [anon_sym_POUND_EQ] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(538), + [anon_sym_SQUOTE] = ACTIONS(540), + [anon_sym_BQUOTE] = ACTIONS(542), + [anon_sym_TILDE_AT] = ACTIONS(544), + [anon_sym_TILDE] = ACTIONS(546), + }, + [STATE(157)] = { + [sym__gap] = STATE(166), + [sym_dis_expr] = STATE(166), + [sym__form] = STATE(366), + [sym_kwd_lit] = STATE(366), + [sym_str_lit] = STATE(366), + [sym_sym_lit] = STATE(366), [sym__metadata_lit] = STATE(424), - [sym_meta_lit] = STATE(314), - [sym_old_meta_lit] = STATE(313), - [sym_list_lit] = STATE(265), - [sym__bare_list_lit] = STATE(218), - [sym_map_lit] = STATE(265), - [sym__bare_map_lit] = STATE(219), - [sym_vec_lit] = STATE(265), - [sym__bare_vec_lit] = STATE(226), - [sym_set_lit] = STATE(265), - [sym__bare_set_lit] = STATE(227), - [sym_anon_fn_lit] = STATE(265), - [sym_regex_lit] = STATE(265), - [sym_read_cond_lit] = STATE(265), - [sym_splicing_read_cond_lit] = STATE(265), - [sym_ns_map_lit] = STATE(265), - [sym_var_quoting_lit] = STATE(265), - [sym_sym_val_lit] = STATE(265), - [sym_evaling_lit] = STATE(265), - [sym_tagged_or_ctor_lit] = STATE(265), - [sym_derefing_lit] = STATE(265), - [sym_quoting_lit] = STATE(265), - [sym_syn_quoting_lit] = STATE(265), - [sym_unquote_splicing_lit] = STATE(265), - [sym_unquoting_lit] = STATE(265), - [aux_sym_dis_expr_repeat1] = STATE(301), - [aux_sym_sym_lit_repeat1] = STATE(305), - [sym__ws] = ACTIONS(264), - [sym_comment] = ACTIONS(264), + [sym_meta_lit] = STATE(312), + [sym_old_meta_lit] = STATE(315), + [sym_list_lit] = STATE(366), + [sym__bare_list_lit] = STATE(402), + [sym_map_lit] = STATE(366), + [sym__bare_map_lit] = STATE(403), + [sym_vec_lit] = STATE(366), + [sym__bare_vec_lit] = STATE(404), + [sym_set_lit] = STATE(366), + [sym__bare_set_lit] = STATE(405), + [sym_anon_fn_lit] = STATE(366), + [sym_regex_lit] = STATE(366), + [sym_read_cond_lit] = STATE(366), + [sym_splicing_read_cond_lit] = STATE(366), + [sym_ns_map_lit] = STATE(366), + [sym_var_quoting_lit] = STATE(366), + [sym_sym_val_lit] = STATE(366), + [sym_evaling_lit] = STATE(366), + [sym_tagged_or_ctor_lit] = STATE(366), + [sym_derefing_lit] = STATE(366), + [sym_quoting_lit] = STATE(366), + [sym_syn_quoting_lit] = STATE(366), + [sym_unquote_splicing_lit] = STATE(366), + [sym_unquoting_lit] = STATE(366), + [aux_sym_dis_expr_repeat1] = STATE(166), + [aux_sym_sym_lit_repeat1] = STATE(304), + [sym__ws] = ACTIONS(810), + [sym_comment] = ACTIONS(810), [anon_sym_POUND_] = ACTIONS(7), - [sym_num_lit] = ACTIONS(750), - [anon_sym_SLASH] = ACTIONS(9), - [anon_sym_COLON] = ACTIONS(11), - [anon_sym_COLON_COLON] = ACTIONS(13), - [aux_sym_str_lit_token1] = ACTIONS(15), - [sym_char_lit] = ACTIONS(750), - [sym_nil_lit] = ACTIONS(752), - [sym_bool_lit] = ACTIONS(752), - [aux_sym__sym_qualified_token1] = ACTIONS(19), + [sym_num_lit] = ACTIONS(610), + [anon_sym_SLASH] = ACTIONS(268), + [anon_sym_COLON] = ACTIONS(526), + [anon_sym_COLON_COLON] = ACTIONS(528), + [aux_sym_str_lit_token1] = ACTIONS(274), + [sym_char_lit] = ACTIONS(610), + [sym_nil_lit] = ACTIONS(612), + [sym_bool_lit] = ACTIONS(612), + [aux_sym__sym_qualified_token1] = ACTIONS(278), [anon_sym_CARET] = ACTIONS(21), [anon_sym_POUND_CARET] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_LBRACK] = 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_TILDE_AT] = ACTIONS(49), - [anon_sym_TILDE] = ACTIONS(51), + [anon_sym_LPAREN] = ACTIONS(280), + [anon_sym_LBRACE] = ACTIONS(282), + [anon_sym_LBRACK] = ACTIONS(284), + [anon_sym_POUND] = ACTIONS(532), + [anon_sym_POUND_QMARK] = ACTIONS(288), + [anon_sym_POUND_QMARK_AT] = ACTIONS(290), + [anon_sym_POUND_SQUOTE] = ACTIONS(534), + [anon_sym_POUND_POUND] = ACTIONS(536), + [anon_sym_POUND_EQ] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(538), + [anon_sym_SQUOTE] = ACTIONS(540), + [anon_sym_BQUOTE] = ACTIONS(542), + [anon_sym_TILDE_AT] = ACTIONS(544), + [anon_sym_TILDE] = ACTIONS(546), }, - [159] = { + [STATE(158)] = { [sym__gap] = STATE(301), [sym_dis_expr] = STATE(301), - [sym__form] = STATE(270), - [sym_kwd_lit] = STATE(270), - [sym_str_lit] = STATE(270), - [sym_sym_lit] = STATE(270), + [sym__form] = STATE(370), + [sym_kwd_lit] = STATE(370), + [sym_str_lit] = STATE(370), + [sym_sym_lit] = STATE(370), [sym__metadata_lit] = STATE(424), - [sym_meta_lit] = STATE(314), - [sym_old_meta_lit] = STATE(313), - [sym_list_lit] = STATE(270), - [sym__bare_list_lit] = STATE(218), - [sym_map_lit] = STATE(270), - [sym__bare_map_lit] = STATE(219), - [sym_vec_lit] = STATE(270), - [sym__bare_vec_lit] = STATE(226), - [sym_set_lit] = STATE(270), - [sym__bare_set_lit] = STATE(227), - [sym_anon_fn_lit] = STATE(270), - [sym_regex_lit] = STATE(270), - [sym_read_cond_lit] = STATE(270), - [sym_splicing_read_cond_lit] = STATE(270), - [sym_ns_map_lit] = STATE(270), - [sym_var_quoting_lit] = STATE(270), - [sym_sym_val_lit] = STATE(270), - [sym_evaling_lit] = STATE(270), - [sym_tagged_or_ctor_lit] = STATE(270), - [sym_derefing_lit] = STATE(270), - [sym_quoting_lit] = STATE(270), - [sym_syn_quoting_lit] = STATE(270), - [sym_unquote_splicing_lit] = STATE(270), - [sym_unquoting_lit] = STATE(270), + [sym_meta_lit] = STATE(312), + [sym_old_meta_lit] = STATE(315), + [sym_list_lit] = STATE(370), + [sym__bare_list_lit] = STATE(402), + [sym_map_lit] = STATE(370), + [sym__bare_map_lit] = STATE(403), + [sym_vec_lit] = STATE(370), + [sym__bare_vec_lit] = STATE(404), + [sym_set_lit] = STATE(370), + [sym__bare_set_lit] = STATE(405), + [sym_anon_fn_lit] = STATE(370), + [sym_regex_lit] = STATE(370), + [sym_read_cond_lit] = STATE(370), + [sym_splicing_read_cond_lit] = STATE(370), + [sym_ns_map_lit] = STATE(370), + [sym_var_quoting_lit] = STATE(370), + [sym_sym_val_lit] = STATE(370), + [sym_evaling_lit] = STATE(370), + [sym_tagged_or_ctor_lit] = STATE(370), + [sym_derefing_lit] = STATE(370), + [sym_quoting_lit] = STATE(370), + [sym_syn_quoting_lit] = STATE(370), + [sym_unquote_splicing_lit] = STATE(370), + [sym_unquoting_lit] = STATE(370), [aux_sym_dis_expr_repeat1] = STATE(301), - [aux_sym_sym_lit_repeat1] = STATE(303), - [sym__ws] = ACTIONS(264), - [sym_comment] = ACTIONS(264), + [aux_sym_sym_lit_repeat1] = STATE(304), + [sym__ws] = ACTIONS(320), + [sym_comment] = ACTIONS(320), [anon_sym_POUND_] = ACTIONS(7), - [sym_num_lit] = ACTIONS(536), - [anon_sym_SLASH] = ACTIONS(9), - [anon_sym_COLON] = ACTIONS(716), - [anon_sym_COLON_COLON] = ACTIONS(718), - [aux_sym_str_lit_token1] = ACTIONS(15), - [sym_char_lit] = ACTIONS(536), - [sym_nil_lit] = ACTIONS(538), - [sym_bool_lit] = ACTIONS(538), - [aux_sym__sym_qualified_token1] = ACTIONS(19), + [sym_num_lit] = ACTIONS(614), + [anon_sym_SLASH] = ACTIONS(268), + [anon_sym_COLON] = ACTIONS(526), + [anon_sym_COLON_COLON] = ACTIONS(528), + [aux_sym_str_lit_token1] = ACTIONS(274), + [sym_char_lit] = ACTIONS(614), + [sym_nil_lit] = ACTIONS(616), + [sym_bool_lit] = ACTIONS(616), + [aux_sym__sym_qualified_token1] = ACTIONS(278), [anon_sym_CARET] = ACTIONS(21), [anon_sym_POUND_CARET] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_LBRACK] = ACTIONS(29), - [anon_sym_POUND] = ACTIONS(720), - [anon_sym_POUND_QMARK] = ACTIONS(33), - [anon_sym_POUND_QMARK_AT] = ACTIONS(35), - [anon_sym_POUND_SQUOTE] = ACTIONS(722), - [anon_sym_POUND_POUND] = ACTIONS(724), - [anon_sym_POUND_EQ] = ACTIONS(41), - [anon_sym_AT] = ACTIONS(726), - [anon_sym_SQUOTE] = ACTIONS(728), - [anon_sym_BQUOTE] = ACTIONS(730), - [anon_sym_TILDE_AT] = ACTIONS(732), - [anon_sym_TILDE] = ACTIONS(734), - }, - [160] = { - [sym__gap] = STATE(139), - [sym_dis_expr] = STATE(139), - [sym__form] = STATE(267), - [sym_kwd_lit] = STATE(267), - [sym_str_lit] = STATE(267), - [sym_sym_lit] = STATE(267), + [anon_sym_LPAREN] = ACTIONS(280), + [anon_sym_LBRACE] = ACTIONS(282), + [anon_sym_LBRACK] = ACTIONS(284), + [anon_sym_POUND] = ACTIONS(532), + [anon_sym_POUND_QMARK] = ACTIONS(288), + [anon_sym_POUND_QMARK_AT] = ACTIONS(290), + [anon_sym_POUND_SQUOTE] = ACTIONS(534), + [anon_sym_POUND_POUND] = ACTIONS(536), + [anon_sym_POUND_EQ] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(538), + [anon_sym_SQUOTE] = ACTIONS(540), + [anon_sym_BQUOTE] = ACTIONS(542), + [anon_sym_TILDE_AT] = ACTIONS(544), + [anon_sym_TILDE] = ACTIONS(546), + }, + [STATE(159)] = { + [sym__gap] = STATE(167), + [sym_dis_expr] = STATE(167), + [sym__form] = STATE(371), + [sym_kwd_lit] = STATE(371), + [sym_str_lit] = STATE(371), + [sym_sym_lit] = STATE(371), [sym__metadata_lit] = STATE(424), - [sym_meta_lit] = STATE(314), - [sym_old_meta_lit] = STATE(313), - [sym_list_lit] = STATE(267), - [sym__bare_list_lit] = STATE(218), - [sym_map_lit] = STATE(267), - [sym__bare_map_lit] = STATE(219), - [sym_vec_lit] = STATE(267), - [sym__bare_vec_lit] = STATE(226), - [sym_set_lit] = STATE(267), - [sym__bare_set_lit] = STATE(227), - [sym_anon_fn_lit] = STATE(267), - [sym_regex_lit] = STATE(267), - [sym_read_cond_lit] = STATE(267), - [sym_splicing_read_cond_lit] = STATE(267), - [sym_ns_map_lit] = STATE(267), - [sym_var_quoting_lit] = STATE(267), - [sym_sym_val_lit] = STATE(267), - [sym_evaling_lit] = STATE(267), - [sym_tagged_or_ctor_lit] = STATE(267), - [sym_derefing_lit] = STATE(267), - [sym_quoting_lit] = STATE(267), - [sym_syn_quoting_lit] = STATE(267), - [sym_unquote_splicing_lit] = STATE(267), - [sym_unquoting_lit] = STATE(267), - [aux_sym_dis_expr_repeat1] = STATE(139), - [aux_sym_sym_lit_repeat1] = STATE(303), - [sym__ws] = ACTIONS(800), - [sym_comment] = ACTIONS(800), + [sym_meta_lit] = STATE(312), + [sym_old_meta_lit] = STATE(315), + [sym_list_lit] = STATE(371), + [sym__bare_list_lit] = STATE(402), + [sym_map_lit] = STATE(371), + [sym__bare_map_lit] = STATE(403), + [sym_vec_lit] = STATE(371), + [sym__bare_vec_lit] = STATE(404), + [sym_set_lit] = STATE(371), + [sym__bare_set_lit] = STATE(405), + [sym_anon_fn_lit] = STATE(371), + [sym_regex_lit] = STATE(371), + [sym_read_cond_lit] = STATE(371), + [sym_splicing_read_cond_lit] = STATE(371), + [sym_ns_map_lit] = STATE(371), + [sym_var_quoting_lit] = STATE(371), + [sym_sym_val_lit] = STATE(371), + [sym_evaling_lit] = STATE(371), + [sym_tagged_or_ctor_lit] = STATE(371), + [sym_derefing_lit] = STATE(371), + [sym_quoting_lit] = STATE(371), + [sym_syn_quoting_lit] = STATE(371), + [sym_unquote_splicing_lit] = STATE(371), + [sym_unquoting_lit] = STATE(371), + [aux_sym_dis_expr_repeat1] = STATE(167), + [aux_sym_sym_lit_repeat1] = STATE(304), + [sym__ws] = ACTIONS(812), + [sym_comment] = ACTIONS(812), + [anon_sym_POUND_] = ACTIONS(7), + [sym_num_lit] = ACTIONS(620), + [anon_sym_SLASH] = ACTIONS(268), + [anon_sym_COLON] = ACTIONS(526), + [anon_sym_COLON_COLON] = ACTIONS(528), + [aux_sym_str_lit_token1] = ACTIONS(274), + [sym_char_lit] = ACTIONS(620), + [sym_nil_lit] = ACTIONS(622), + [sym_bool_lit] = ACTIONS(622), + [aux_sym__sym_qualified_token1] = ACTIONS(278), + [anon_sym_CARET] = ACTIONS(21), + [anon_sym_POUND_CARET] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(280), + [anon_sym_LBRACE] = ACTIONS(282), + [anon_sym_LBRACK] = ACTIONS(284), + [anon_sym_POUND] = ACTIONS(532), + [anon_sym_POUND_QMARK] = ACTIONS(288), + [anon_sym_POUND_QMARK_AT] = ACTIONS(290), + [anon_sym_POUND_SQUOTE] = ACTIONS(534), + [anon_sym_POUND_POUND] = ACTIONS(536), + [anon_sym_POUND_EQ] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(538), + [anon_sym_SQUOTE] = ACTIONS(540), + [anon_sym_BQUOTE] = ACTIONS(542), + [anon_sym_TILDE_AT] = ACTIONS(544), + [anon_sym_TILDE] = ACTIONS(546), + }, + [STATE(160)] = { + [sym__gap] = STATE(168), + [sym_dis_expr] = STATE(168), + [sym__form] = STATE(376), + [sym_kwd_lit] = STATE(376), + [sym_str_lit] = STATE(376), + [sym_sym_lit] = STATE(376), + [sym__metadata_lit] = STATE(424), + [sym_meta_lit] = STATE(312), + [sym_old_meta_lit] = STATE(315), + [sym_list_lit] = STATE(376), + [sym__bare_list_lit] = STATE(402), + [sym_map_lit] = STATE(376), + [sym__bare_map_lit] = STATE(403), + [sym_vec_lit] = STATE(376), + [sym__bare_vec_lit] = STATE(404), + [sym_set_lit] = STATE(376), + [sym__bare_set_lit] = STATE(405), + [sym_anon_fn_lit] = STATE(376), + [sym_regex_lit] = STATE(376), + [sym_read_cond_lit] = STATE(376), + [sym_splicing_read_cond_lit] = STATE(376), + [sym_ns_map_lit] = STATE(376), + [sym_var_quoting_lit] = STATE(376), + [sym_sym_val_lit] = STATE(376), + [sym_evaling_lit] = STATE(376), + [sym_tagged_or_ctor_lit] = STATE(376), + [sym_derefing_lit] = STATE(376), + [sym_quoting_lit] = STATE(376), + [sym_syn_quoting_lit] = STATE(376), + [sym_unquote_splicing_lit] = STATE(376), + [sym_unquoting_lit] = STATE(376), + [aux_sym_dis_expr_repeat1] = STATE(168), + [aux_sym_sym_lit_repeat1] = STATE(304), + [sym__ws] = ACTIONS(814), + [sym_comment] = ACTIONS(814), [anon_sym_POUND_] = ACTIONS(7), - [sym_num_lit] = ACTIONS(310), - [anon_sym_SLASH] = ACTIONS(9), - [anon_sym_COLON] = ACTIONS(716), - [anon_sym_COLON_COLON] = ACTIONS(718), - [aux_sym_str_lit_token1] = ACTIONS(15), - [sym_char_lit] = ACTIONS(310), - [sym_nil_lit] = ACTIONS(312), - [sym_bool_lit] = ACTIONS(312), - [aux_sym__sym_qualified_token1] = ACTIONS(19), + [sym_num_lit] = ACTIONS(626), + [anon_sym_SLASH] = ACTIONS(268), + [anon_sym_COLON] = ACTIONS(526), + [anon_sym_COLON_COLON] = ACTIONS(528), + [aux_sym_str_lit_token1] = ACTIONS(274), + [sym_char_lit] = ACTIONS(626), + [sym_nil_lit] = ACTIONS(628), + [sym_bool_lit] = ACTIONS(628), + [aux_sym__sym_qualified_token1] = ACTIONS(278), [anon_sym_CARET] = ACTIONS(21), [anon_sym_POUND_CARET] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_LBRACK] = ACTIONS(29), - [anon_sym_POUND] = ACTIONS(720), - [anon_sym_POUND_QMARK] = ACTIONS(33), - [anon_sym_POUND_QMARK_AT] = ACTIONS(35), - [anon_sym_POUND_SQUOTE] = ACTIONS(722), - [anon_sym_POUND_POUND] = ACTIONS(724), - [anon_sym_POUND_EQ] = ACTIONS(41), - [anon_sym_AT] = ACTIONS(726), - [anon_sym_SQUOTE] = ACTIONS(728), - [anon_sym_BQUOTE] = ACTIONS(730), - [anon_sym_TILDE_AT] = ACTIONS(732), - [anon_sym_TILDE] = ACTIONS(734), + [anon_sym_LPAREN] = ACTIONS(280), + [anon_sym_LBRACE] = ACTIONS(282), + [anon_sym_LBRACK] = ACTIONS(284), + [anon_sym_POUND] = ACTIONS(532), + [anon_sym_POUND_QMARK] = ACTIONS(288), + [anon_sym_POUND_QMARK_AT] = ACTIONS(290), + [anon_sym_POUND_SQUOTE] = ACTIONS(534), + [anon_sym_POUND_POUND] = ACTIONS(536), + [anon_sym_POUND_EQ] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(538), + [anon_sym_SQUOTE] = ACTIONS(540), + [anon_sym_BQUOTE] = ACTIONS(542), + [anon_sym_TILDE_AT] = ACTIONS(544), + [anon_sym_TILDE] = ACTIONS(546), }, - [161] = { + [STATE(161)] = { [sym__gap] = STATE(301), [sym_dis_expr] = STATE(301), - [sym__form] = STATE(327), - [sym_kwd_lit] = STATE(327), - [sym_str_lit] = STATE(327), - [sym_sym_lit] = STATE(327), + [sym__form] = STATE(381), + [sym_kwd_lit] = STATE(381), + [sym_str_lit] = STATE(381), + [sym_sym_lit] = STATE(381), [sym__metadata_lit] = STATE(424), - [sym_meta_lit] = STATE(314), - [sym_old_meta_lit] = STATE(313), - [sym_list_lit] = STATE(327), - [sym__bare_list_lit] = STATE(392), - [sym_map_lit] = STATE(327), + [sym_meta_lit] = STATE(312), + [sym_old_meta_lit] = STATE(315), + [sym_list_lit] = STATE(381), + [sym__bare_list_lit] = STATE(402), + [sym_map_lit] = STATE(381), [sym__bare_map_lit] = STATE(403), - [sym_vec_lit] = STATE(327), - [sym__bare_vec_lit] = STATE(423), - [sym_set_lit] = STATE(327), - [sym__bare_set_lit] = STATE(374), - [sym_anon_fn_lit] = STATE(327), - [sym_regex_lit] = STATE(327), - [sym_read_cond_lit] = STATE(327), - [sym_splicing_read_cond_lit] = STATE(327), - [sym_ns_map_lit] = STATE(327), - [sym_var_quoting_lit] = STATE(327), - [sym_sym_val_lit] = STATE(327), - [sym_evaling_lit] = STATE(327), - [sym_tagged_or_ctor_lit] = STATE(327), - [sym_derefing_lit] = STATE(327), - [sym_quoting_lit] = STATE(327), - [sym_syn_quoting_lit] = STATE(327), - [sym_unquote_splicing_lit] = STATE(327), - [sym_unquoting_lit] = STATE(327), + [sym_vec_lit] = STATE(381), + [sym__bare_vec_lit] = STATE(404), + [sym_set_lit] = STATE(381), + [sym__bare_set_lit] = STATE(405), + [sym_anon_fn_lit] = STATE(381), + [sym_regex_lit] = STATE(381), + [sym_read_cond_lit] = STATE(381), + [sym_splicing_read_cond_lit] = STATE(381), + [sym_ns_map_lit] = STATE(381), + [sym_var_quoting_lit] = STATE(381), + [sym_sym_val_lit] = STATE(381), + [sym_evaling_lit] = STATE(381), + [sym_tagged_or_ctor_lit] = STATE(381), + [sym_derefing_lit] = STATE(381), + [sym_quoting_lit] = STATE(381), + [sym_syn_quoting_lit] = STATE(381), + [sym_unquote_splicing_lit] = STATE(381), + [sym_unquoting_lit] = STATE(381), [aux_sym_dis_expr_repeat1] = STATE(301), - [aux_sym_sym_lit_repeat1] = STATE(307), - [sym__ws] = ACTIONS(264), - [sym_comment] = ACTIONS(264), + [aux_sym_sym_lit_repeat1] = STATE(304), + [sym__ws] = ACTIONS(320), + [sym_comment] = ACTIONS(320), [anon_sym_POUND_] = ACTIONS(7), - [sym_num_lit] = ACTIONS(588), + [sym_num_lit] = ACTIONS(630), [anon_sym_SLASH] = ACTIONS(268), - [anon_sym_COLON] = ACTIONS(352), - [anon_sym_COLON_COLON] = ACTIONS(354), + [anon_sym_COLON] = ACTIONS(526), + [anon_sym_COLON_COLON] = ACTIONS(528), [aux_sym_str_lit_token1] = ACTIONS(274), - [sym_char_lit] = ACTIONS(588), - [sym_nil_lit] = ACTIONS(590), - [sym_bool_lit] = ACTIONS(590), + [sym_char_lit] = ACTIONS(630), + [sym_nil_lit] = ACTIONS(632), + [sym_bool_lit] = ACTIONS(632), [aux_sym__sym_qualified_token1] = ACTIONS(278), [anon_sym_CARET] = ACTIONS(21), [anon_sym_POUND_CARET] = ACTIONS(23), [anon_sym_LPAREN] = ACTIONS(280), [anon_sym_LBRACE] = ACTIONS(282), [anon_sym_LBRACK] = ACTIONS(284), - [anon_sym_POUND] = ACTIONS(358), + [anon_sym_POUND] = ACTIONS(532), [anon_sym_POUND_QMARK] = ACTIONS(288), [anon_sym_POUND_QMARK_AT] = ACTIONS(290), - [anon_sym_POUND_SQUOTE] = ACTIONS(360), - [anon_sym_POUND_POUND] = ACTIONS(362), + [anon_sym_POUND_SQUOTE] = ACTIONS(534), + [anon_sym_POUND_POUND] = ACTIONS(536), [anon_sym_POUND_EQ] = ACTIONS(296), - [anon_sym_AT] = ACTIONS(364), - [anon_sym_SQUOTE] = ACTIONS(366), - [anon_sym_BQUOTE] = ACTIONS(368), - [anon_sym_TILDE_AT] = ACTIONS(370), - [anon_sym_TILDE] = ACTIONS(372), + [anon_sym_AT] = ACTIONS(538), + [anon_sym_SQUOTE] = ACTIONS(540), + [anon_sym_BQUOTE] = ACTIONS(542), + [anon_sym_TILDE_AT] = ACTIONS(544), + [anon_sym_TILDE] = ACTIONS(546), }, - [162] = { - [sym__gap] = STATE(46), - [sym_dis_expr] = STATE(46), - [sym__form] = STATE(363), - [sym_kwd_lit] = STATE(363), - [sym_str_lit] = STATE(363), - [sym_sym_lit] = STATE(363), + [STATE(162)] = { + [sym__gap] = STATE(301), + [sym_dis_expr] = STATE(301), + [sym__form] = STATE(385), + [sym_kwd_lit] = STATE(385), + [sym_str_lit] = STATE(385), + [sym_sym_lit] = STATE(385), [sym__metadata_lit] = STATE(424), - [sym_meta_lit] = STATE(314), - [sym_old_meta_lit] = STATE(313), - [sym_list_lit] = STATE(363), - [sym__bare_list_lit] = STATE(392), - [sym_map_lit] = STATE(363), + [sym_meta_lit] = STATE(312), + [sym_old_meta_lit] = STATE(315), + [sym_list_lit] = STATE(385), + [sym__bare_list_lit] = STATE(402), + [sym_map_lit] = STATE(385), [sym__bare_map_lit] = STATE(403), - [sym_vec_lit] = STATE(363), - [sym__bare_vec_lit] = STATE(423), - [sym_set_lit] = STATE(363), - [sym__bare_set_lit] = STATE(374), - [sym_anon_fn_lit] = STATE(363), - [sym_regex_lit] = STATE(363), - [sym_read_cond_lit] = STATE(363), - [sym_splicing_read_cond_lit] = STATE(363), - [sym_ns_map_lit] = STATE(363), - [sym_var_quoting_lit] = STATE(363), - [sym_sym_val_lit] = STATE(363), - [sym_evaling_lit] = STATE(363), - [sym_tagged_or_ctor_lit] = STATE(363), - [sym_derefing_lit] = STATE(363), - [sym_quoting_lit] = STATE(363), - [sym_syn_quoting_lit] = STATE(363), - [sym_unquote_splicing_lit] = STATE(363), - [sym_unquoting_lit] = STATE(363), - [aux_sym_dis_expr_repeat1] = STATE(46), - [aux_sym_sym_lit_repeat1] = STATE(306), - [sym__ws] = ACTIONS(802), - [sym_comment] = ACTIONS(802), + [sym_vec_lit] = STATE(385), + [sym__bare_vec_lit] = STATE(404), + [sym_set_lit] = STATE(385), + [sym__bare_set_lit] = STATE(405), + [sym_anon_fn_lit] = STATE(385), + [sym_regex_lit] = STATE(385), + [sym_read_cond_lit] = STATE(385), + [sym_splicing_read_cond_lit] = STATE(385), + [sym_ns_map_lit] = STATE(385), + [sym_var_quoting_lit] = STATE(385), + [sym_sym_val_lit] = STATE(385), + [sym_evaling_lit] = STATE(385), + [sym_tagged_or_ctor_lit] = STATE(385), + [sym_derefing_lit] = STATE(385), + [sym_quoting_lit] = STATE(385), + [sym_syn_quoting_lit] = STATE(385), + [sym_unquote_splicing_lit] = STATE(385), + [sym_unquoting_lit] = STATE(385), + [aux_sym_dis_expr_repeat1] = STATE(301), + [aux_sym_sym_lit_repeat1] = STATE(304), + [sym__ws] = ACTIONS(320), + [sym_comment] = ACTIONS(320), [anon_sym_POUND_] = ACTIONS(7), - [sym_num_lit] = ACTIONS(546), + [sym_num_lit] = ACTIONS(634), [anon_sym_SLASH] = ACTIONS(268), - [anon_sym_COLON] = ACTIONS(426), - [anon_sym_COLON_COLON] = ACTIONS(428), + [anon_sym_COLON] = ACTIONS(526), + [anon_sym_COLON_COLON] = ACTIONS(528), [aux_sym_str_lit_token1] = ACTIONS(274), - [sym_char_lit] = ACTIONS(546), - [sym_nil_lit] = ACTIONS(548), - [sym_bool_lit] = ACTIONS(548), + [sym_char_lit] = ACTIONS(634), + [sym_nil_lit] = ACTIONS(636), + [sym_bool_lit] = ACTIONS(636), [aux_sym__sym_qualified_token1] = ACTIONS(278), [anon_sym_CARET] = ACTIONS(21), [anon_sym_POUND_CARET] = ACTIONS(23), [anon_sym_LPAREN] = ACTIONS(280), [anon_sym_LBRACE] = ACTIONS(282), [anon_sym_LBRACK] = ACTIONS(284), - [anon_sym_POUND] = ACTIONS(430), + [anon_sym_POUND] = ACTIONS(532), [anon_sym_POUND_QMARK] = ACTIONS(288), [anon_sym_POUND_QMARK_AT] = ACTIONS(290), - [anon_sym_POUND_SQUOTE] = ACTIONS(432), - [anon_sym_POUND_POUND] = ACTIONS(434), + [anon_sym_POUND_SQUOTE] = ACTIONS(534), + [anon_sym_POUND_POUND] = ACTIONS(536), [anon_sym_POUND_EQ] = ACTIONS(296), - [anon_sym_AT] = ACTIONS(436), - [anon_sym_SQUOTE] = ACTIONS(438), - [anon_sym_BQUOTE] = ACTIONS(440), - [anon_sym_TILDE_AT] = ACTIONS(442), - [anon_sym_TILDE] = ACTIONS(444), + [anon_sym_AT] = ACTIONS(538), + [anon_sym_SQUOTE] = ACTIONS(540), + [anon_sym_BQUOTE] = ACTIONS(542), + [anon_sym_TILDE_AT] = ACTIONS(544), + [anon_sym_TILDE] = ACTIONS(546), }, - [163] = { + [STATE(163)] = { [sym__gap] = STATE(301), [sym_dis_expr] = STATE(301), - [sym__form] = STATE(225), - [sym_kwd_lit] = STATE(225), - [sym_str_lit] = STATE(225), - [sym_sym_lit] = STATE(225), + [sym__form] = STATE(386), + [sym_kwd_lit] = STATE(386), + [sym_str_lit] = STATE(386), + [sym_sym_lit] = STATE(386), [sym__metadata_lit] = STATE(424), - [sym_meta_lit] = STATE(314), - [sym_old_meta_lit] = STATE(313), - [sym_list_lit] = STATE(225), - [sym__bare_list_lit] = STATE(218), - [sym_map_lit] = STATE(225), - [sym__bare_map_lit] = STATE(219), - [sym_vec_lit] = STATE(225), - [sym__bare_vec_lit] = STATE(226), - [sym_set_lit] = STATE(225), - [sym__bare_set_lit] = STATE(227), - [sym_anon_fn_lit] = STATE(225), - [sym_regex_lit] = STATE(225), - [sym_read_cond_lit] = STATE(225), - [sym_splicing_read_cond_lit] = STATE(225), - [sym_ns_map_lit] = STATE(225), - [sym_var_quoting_lit] = STATE(225), - [sym_sym_val_lit] = STATE(225), - [sym_evaling_lit] = STATE(225), - [sym_tagged_or_ctor_lit] = STATE(225), - [sym_derefing_lit] = STATE(225), - [sym_quoting_lit] = STATE(225), - [sym_syn_quoting_lit] = STATE(225), - [sym_unquote_splicing_lit] = STATE(225), - [sym_unquoting_lit] = STATE(225), + [sym_meta_lit] = STATE(312), + [sym_old_meta_lit] = STATE(315), + [sym_list_lit] = STATE(386), + [sym__bare_list_lit] = STATE(402), + [sym_map_lit] = STATE(386), + [sym__bare_map_lit] = STATE(403), + [sym_vec_lit] = STATE(386), + [sym__bare_vec_lit] = STATE(404), + [sym_set_lit] = STATE(386), + [sym__bare_set_lit] = STATE(405), + [sym_anon_fn_lit] = STATE(386), + [sym_regex_lit] = STATE(386), + [sym_read_cond_lit] = STATE(386), + [sym_splicing_read_cond_lit] = STATE(386), + [sym_ns_map_lit] = STATE(386), + [sym_var_quoting_lit] = STATE(386), + [sym_sym_val_lit] = STATE(386), + [sym_evaling_lit] = STATE(386), + [sym_tagged_or_ctor_lit] = STATE(386), + [sym_derefing_lit] = STATE(386), + [sym_quoting_lit] = STATE(386), + [sym_syn_quoting_lit] = STATE(386), + [sym_unquote_splicing_lit] = STATE(386), + [sym_unquoting_lit] = STATE(386), [aux_sym_dis_expr_repeat1] = STATE(301), - [aux_sym_sym_lit_repeat1] = STATE(305), - [sym__ws] = ACTIONS(264), - [sym_comment] = ACTIONS(264), + [aux_sym_sym_lit_repeat1] = STATE(304), + [sym__ws] = ACTIONS(320), + [sym_comment] = ACTIONS(320), [anon_sym_POUND_] = ACTIONS(7), - [sym_num_lit] = ACTIONS(746), - [anon_sym_SLASH] = ACTIONS(9), - [anon_sym_COLON] = ACTIONS(11), - [anon_sym_COLON_COLON] = ACTIONS(13), - [aux_sym_str_lit_token1] = ACTIONS(15), - [sym_char_lit] = ACTIONS(746), - [sym_nil_lit] = ACTIONS(748), - [sym_bool_lit] = ACTIONS(748), - [aux_sym__sym_qualified_token1] = ACTIONS(19), + [sym_num_lit] = ACTIONS(638), + [anon_sym_SLASH] = ACTIONS(268), + [anon_sym_COLON] = ACTIONS(526), + [anon_sym_COLON_COLON] = ACTIONS(528), + [aux_sym_str_lit_token1] = ACTIONS(274), + [sym_char_lit] = ACTIONS(638), + [sym_nil_lit] = ACTIONS(640), + [sym_bool_lit] = ACTIONS(640), + [aux_sym__sym_qualified_token1] = ACTIONS(278), [anon_sym_CARET] = ACTIONS(21), [anon_sym_POUND_CARET] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_LBRACK] = 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_TILDE_AT] = ACTIONS(49), - [anon_sym_TILDE] = ACTIONS(51), + [anon_sym_LPAREN] = ACTIONS(280), + [anon_sym_LBRACE] = ACTIONS(282), + [anon_sym_LBRACK] = ACTIONS(284), + [anon_sym_POUND] = ACTIONS(532), + [anon_sym_POUND_QMARK] = ACTIONS(288), + [anon_sym_POUND_QMARK_AT] = ACTIONS(290), + [anon_sym_POUND_SQUOTE] = ACTIONS(534), + [anon_sym_POUND_POUND] = ACTIONS(536), + [anon_sym_POUND_EQ] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(538), + [anon_sym_SQUOTE] = ACTIONS(540), + [anon_sym_BQUOTE] = ACTIONS(542), + [anon_sym_TILDE_AT] = ACTIONS(544), + [anon_sym_TILDE] = ACTIONS(546), }, - [164] = { - [sym__gap] = STATE(44), - [sym_dis_expr] = STATE(44), - [sym__form] = STATE(361), - [sym_kwd_lit] = STATE(361), - [sym_str_lit] = STATE(361), - [sym_sym_lit] = STATE(361), + [STATE(164)] = { + [sym__gap] = STATE(301), + [sym_dis_expr] = STATE(301), + [sym__form] = STATE(387), + [sym_kwd_lit] = STATE(387), + [sym_str_lit] = STATE(387), + [sym_sym_lit] = STATE(387), [sym__metadata_lit] = STATE(424), - [sym_meta_lit] = STATE(314), - [sym_old_meta_lit] = STATE(313), - [sym_list_lit] = STATE(361), - [sym__bare_list_lit] = STATE(392), - [sym_map_lit] = STATE(361), + [sym_meta_lit] = STATE(312), + [sym_old_meta_lit] = STATE(315), + [sym_list_lit] = STATE(387), + [sym__bare_list_lit] = STATE(402), + [sym_map_lit] = STATE(387), [sym__bare_map_lit] = STATE(403), - [sym_vec_lit] = STATE(361), - [sym__bare_vec_lit] = STATE(423), - [sym_set_lit] = STATE(361), - [sym__bare_set_lit] = STATE(374), - [sym_anon_fn_lit] = STATE(361), - [sym_regex_lit] = STATE(361), - [sym_read_cond_lit] = STATE(361), - [sym_splicing_read_cond_lit] = STATE(361), - [sym_ns_map_lit] = STATE(361), - [sym_var_quoting_lit] = STATE(361), - [sym_sym_val_lit] = STATE(361), - [sym_evaling_lit] = STATE(361), - [sym_tagged_or_ctor_lit] = STATE(361), - [sym_derefing_lit] = STATE(361), - [sym_quoting_lit] = STATE(361), - [sym_syn_quoting_lit] = STATE(361), - [sym_unquote_splicing_lit] = STATE(361), - [sym_unquoting_lit] = STATE(361), - [aux_sym_dis_expr_repeat1] = STATE(44), - [aux_sym_sym_lit_repeat1] = STATE(306), - [sym__ws] = ACTIONS(804), - [sym_comment] = ACTIONS(804), + [sym_vec_lit] = STATE(387), + [sym__bare_vec_lit] = STATE(404), + [sym_set_lit] = STATE(387), + [sym__bare_set_lit] = STATE(405), + [sym_anon_fn_lit] = STATE(387), + [sym_regex_lit] = STATE(387), + [sym_read_cond_lit] = STATE(387), + [sym_splicing_read_cond_lit] = STATE(387), + [sym_ns_map_lit] = STATE(387), + [sym_var_quoting_lit] = STATE(387), + [sym_sym_val_lit] = STATE(387), + [sym_evaling_lit] = STATE(387), + [sym_tagged_or_ctor_lit] = STATE(387), + [sym_derefing_lit] = STATE(387), + [sym_quoting_lit] = STATE(387), + [sym_syn_quoting_lit] = STATE(387), + [sym_unquote_splicing_lit] = STATE(387), + [sym_unquoting_lit] = STATE(387), + [aux_sym_dis_expr_repeat1] = STATE(301), + [aux_sym_sym_lit_repeat1] = STATE(304), + [sym__ws] = ACTIONS(320), + [sym_comment] = ACTIONS(320), [anon_sym_POUND_] = ACTIONS(7), - [sym_num_lit] = ACTIONS(552), + [sym_num_lit] = ACTIONS(642), [anon_sym_SLASH] = ACTIONS(268), - [anon_sym_COLON] = ACTIONS(426), - [anon_sym_COLON_COLON] = ACTIONS(428), + [anon_sym_COLON] = ACTIONS(526), + [anon_sym_COLON_COLON] = ACTIONS(528), [aux_sym_str_lit_token1] = ACTIONS(274), - [sym_char_lit] = ACTIONS(552), - [sym_nil_lit] = ACTIONS(554), - [sym_bool_lit] = ACTIONS(554), + [sym_char_lit] = ACTIONS(642), + [sym_nil_lit] = ACTIONS(644), + [sym_bool_lit] = ACTIONS(644), [aux_sym__sym_qualified_token1] = ACTIONS(278), [anon_sym_CARET] = ACTIONS(21), [anon_sym_POUND_CARET] = ACTIONS(23), [anon_sym_LPAREN] = ACTIONS(280), [anon_sym_LBRACE] = ACTIONS(282), [anon_sym_LBRACK] = ACTIONS(284), - [anon_sym_POUND] = ACTIONS(430), + [anon_sym_POUND] = ACTIONS(532), [anon_sym_POUND_QMARK] = ACTIONS(288), [anon_sym_POUND_QMARK_AT] = ACTIONS(290), - [anon_sym_POUND_SQUOTE] = ACTIONS(432), - [anon_sym_POUND_POUND] = ACTIONS(434), + [anon_sym_POUND_SQUOTE] = ACTIONS(534), + [anon_sym_POUND_POUND] = ACTIONS(536), [anon_sym_POUND_EQ] = ACTIONS(296), - [anon_sym_AT] = ACTIONS(436), - [anon_sym_SQUOTE] = ACTIONS(438), - [anon_sym_BQUOTE] = ACTIONS(440), - [anon_sym_TILDE_AT] = ACTIONS(442), - [anon_sym_TILDE] = ACTIONS(444), + [anon_sym_AT] = ACTIONS(538), + [anon_sym_SQUOTE] = ACTIONS(540), + [anon_sym_BQUOTE] = ACTIONS(542), + [anon_sym_TILDE_AT] = ACTIONS(544), + [anon_sym_TILDE] = ACTIONS(546), }, - [165] = { + [STATE(165)] = { [sym__gap] = STATE(301), [sym_dis_expr] = STATE(301), - [sym__form] = STATE(329), - [sym_kwd_lit] = STATE(329), - [sym_str_lit] = STATE(329), - [sym_sym_lit] = STATE(329), + [sym__form] = STATE(388), + [sym_kwd_lit] = STATE(388), + [sym_str_lit] = STATE(388), + [sym_sym_lit] = STATE(388), [sym__metadata_lit] = STATE(424), - [sym_meta_lit] = STATE(314), - [sym_old_meta_lit] = STATE(313), - [sym_list_lit] = STATE(329), - [sym__bare_list_lit] = STATE(392), - [sym_map_lit] = STATE(329), + [sym_meta_lit] = STATE(312), + [sym_old_meta_lit] = STATE(315), + [sym_list_lit] = STATE(388), + [sym__bare_list_lit] = STATE(402), + [sym_map_lit] = STATE(388), [sym__bare_map_lit] = STATE(403), - [sym_vec_lit] = STATE(329), - [sym__bare_vec_lit] = STATE(423), - [sym_set_lit] = STATE(329), - [sym__bare_set_lit] = STATE(374), - [sym_anon_fn_lit] = STATE(329), - [sym_regex_lit] = STATE(329), - [sym_read_cond_lit] = STATE(329), - [sym_splicing_read_cond_lit] = STATE(329), - [sym_ns_map_lit] = STATE(329), - [sym_var_quoting_lit] = STATE(329), - [sym_sym_val_lit] = STATE(329), - [sym_evaling_lit] = STATE(329), - [sym_tagged_or_ctor_lit] = STATE(329), - [sym_derefing_lit] = STATE(329), - [sym_quoting_lit] = STATE(329), - [sym_syn_quoting_lit] = STATE(329), - [sym_unquote_splicing_lit] = STATE(329), - [sym_unquoting_lit] = STATE(329), + [sym_vec_lit] = STATE(388), + [sym__bare_vec_lit] = STATE(404), + [sym_set_lit] = STATE(388), + [sym__bare_set_lit] = STATE(405), + [sym_anon_fn_lit] = STATE(388), + [sym_regex_lit] = STATE(388), + [sym_read_cond_lit] = STATE(388), + [sym_splicing_read_cond_lit] = STATE(388), + [sym_ns_map_lit] = STATE(388), + [sym_var_quoting_lit] = STATE(388), + [sym_sym_val_lit] = STATE(388), + [sym_evaling_lit] = STATE(388), + [sym_tagged_or_ctor_lit] = STATE(388), + [sym_derefing_lit] = STATE(388), + [sym_quoting_lit] = STATE(388), + [sym_syn_quoting_lit] = STATE(388), + [sym_unquote_splicing_lit] = STATE(388), + [sym_unquoting_lit] = STATE(388), [aux_sym_dis_expr_repeat1] = STATE(301), - [aux_sym_sym_lit_repeat1] = STATE(307), - [sym__ws] = ACTIONS(264), - [sym_comment] = ACTIONS(264), + [aux_sym_sym_lit_repeat1] = STATE(304), + [sym__ws] = ACTIONS(320), + [sym_comment] = ACTIONS(320), [anon_sym_POUND_] = ACTIONS(7), - [sym_num_lit] = ACTIONS(580), + [sym_num_lit] = ACTIONS(646), [anon_sym_SLASH] = ACTIONS(268), - [anon_sym_COLON] = ACTIONS(352), - [anon_sym_COLON_COLON] = ACTIONS(354), + [anon_sym_COLON] = ACTIONS(526), + [anon_sym_COLON_COLON] = ACTIONS(528), [aux_sym_str_lit_token1] = ACTIONS(274), - [sym_char_lit] = ACTIONS(580), - [sym_nil_lit] = ACTIONS(582), - [sym_bool_lit] = ACTIONS(582), + [sym_char_lit] = ACTIONS(646), + [sym_nil_lit] = ACTIONS(648), + [sym_bool_lit] = ACTIONS(648), [aux_sym__sym_qualified_token1] = ACTIONS(278), [anon_sym_CARET] = ACTIONS(21), [anon_sym_POUND_CARET] = ACTIONS(23), [anon_sym_LPAREN] = ACTIONS(280), [anon_sym_LBRACE] = ACTIONS(282), [anon_sym_LBRACK] = ACTIONS(284), - [anon_sym_POUND] = ACTIONS(358), + [anon_sym_POUND] = ACTIONS(532), [anon_sym_POUND_QMARK] = ACTIONS(288), [anon_sym_POUND_QMARK_AT] = ACTIONS(290), - [anon_sym_POUND_SQUOTE] = ACTIONS(360), - [anon_sym_POUND_POUND] = ACTIONS(362), + [anon_sym_POUND_SQUOTE] = ACTIONS(534), + [anon_sym_POUND_POUND] = ACTIONS(536), [anon_sym_POUND_EQ] = ACTIONS(296), - [anon_sym_AT] = ACTIONS(364), - [anon_sym_SQUOTE] = ACTIONS(366), - [anon_sym_BQUOTE] = ACTIONS(368), - [anon_sym_TILDE_AT] = ACTIONS(370), - [anon_sym_TILDE] = ACTIONS(372), + [anon_sym_AT] = ACTIONS(538), + [anon_sym_SQUOTE] = ACTIONS(540), + [anon_sym_BQUOTE] = ACTIONS(542), + [anon_sym_TILDE_AT] = ACTIONS(544), + [anon_sym_TILDE] = ACTIONS(546), }, - [166] = { - [sym__gap] = STATE(183), - [sym_dis_expr] = STATE(183), - [sym__form] = STATE(292), - [sym_kwd_lit] = STATE(292), - [sym_str_lit] = STATE(292), - [sym_sym_lit] = STATE(292), + [STATE(166)] = { + [sym__gap] = STATE(301), + [sym_dis_expr] = STATE(301), + [sym__form] = STATE(389), + [sym_kwd_lit] = STATE(389), + [sym_str_lit] = STATE(389), + [sym_sym_lit] = STATE(389), [sym__metadata_lit] = STATE(424), - [sym_meta_lit] = STATE(314), - [sym_old_meta_lit] = STATE(313), - [sym_list_lit] = STATE(292), - [sym__bare_list_lit] = STATE(218), - [sym_map_lit] = STATE(292), - [sym__bare_map_lit] = STATE(219), - [sym_vec_lit] = STATE(292), - [sym__bare_vec_lit] = STATE(226), - [sym_set_lit] = STATE(292), - [sym__bare_set_lit] = STATE(227), - [sym_anon_fn_lit] = STATE(292), - [sym_regex_lit] = STATE(292), - [sym_read_cond_lit] = STATE(292), - [sym_splicing_read_cond_lit] = STATE(292), - [sym_ns_map_lit] = STATE(292), - [sym_var_quoting_lit] = STATE(292), - [sym_sym_val_lit] = STATE(292), - [sym_evaling_lit] = STATE(292), - [sym_tagged_or_ctor_lit] = STATE(292), - [sym_derefing_lit] = STATE(292), - [sym_quoting_lit] = STATE(292), - [sym_syn_quoting_lit] = STATE(292), - [sym_unquote_splicing_lit] = STATE(292), - [sym_unquoting_lit] = STATE(292), - [aux_sym_dis_expr_repeat1] = STATE(183), - [aux_sym_sym_lit_repeat1] = STATE(305), - [sym__ws] = ACTIONS(806), - [sym_comment] = ACTIONS(806), + [sym_meta_lit] = STATE(312), + [sym_old_meta_lit] = STATE(315), + [sym_list_lit] = STATE(389), + [sym__bare_list_lit] = STATE(402), + [sym_map_lit] = STATE(389), + [sym__bare_map_lit] = STATE(403), + [sym_vec_lit] = STATE(389), + [sym__bare_vec_lit] = STATE(404), + [sym_set_lit] = STATE(389), + [sym__bare_set_lit] = STATE(405), + [sym_anon_fn_lit] = STATE(389), + [sym_regex_lit] = STATE(389), + [sym_read_cond_lit] = STATE(389), + [sym_splicing_read_cond_lit] = STATE(389), + [sym_ns_map_lit] = STATE(389), + [sym_var_quoting_lit] = STATE(389), + [sym_sym_val_lit] = STATE(389), + [sym_evaling_lit] = STATE(389), + [sym_tagged_or_ctor_lit] = STATE(389), + [sym_derefing_lit] = STATE(389), + [sym_quoting_lit] = STATE(389), + [sym_syn_quoting_lit] = STATE(389), + [sym_unquote_splicing_lit] = STATE(389), + [sym_unquoting_lit] = STATE(389), + [aux_sym_dis_expr_repeat1] = STATE(301), + [aux_sym_sym_lit_repeat1] = STATE(304), + [sym__ws] = ACTIONS(320), + [sym_comment] = ACTIONS(320), [anon_sym_POUND_] = ACTIONS(7), - [sym_num_lit] = ACTIONS(742), - [anon_sym_SLASH] = ACTIONS(9), - [anon_sym_COLON] = ACTIONS(11), - [anon_sym_COLON_COLON] = ACTIONS(13), - [aux_sym_str_lit_token1] = ACTIONS(15), - [sym_char_lit] = ACTIONS(742), - [sym_nil_lit] = ACTIONS(744), - [sym_bool_lit] = ACTIONS(744), - [aux_sym__sym_qualified_token1] = ACTIONS(19), + [sym_num_lit] = ACTIONS(650), + [anon_sym_SLASH] = ACTIONS(268), + [anon_sym_COLON] = ACTIONS(526), + [anon_sym_COLON_COLON] = ACTIONS(528), + [aux_sym_str_lit_token1] = ACTIONS(274), + [sym_char_lit] = ACTIONS(650), + [sym_nil_lit] = ACTIONS(652), + [sym_bool_lit] = ACTIONS(652), + [aux_sym__sym_qualified_token1] = ACTIONS(278), [anon_sym_CARET] = ACTIONS(21), [anon_sym_POUND_CARET] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_LBRACK] = 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_TILDE_AT] = ACTIONS(49), - [anon_sym_TILDE] = ACTIONS(51), + [anon_sym_LPAREN] = ACTIONS(280), + [anon_sym_LBRACE] = ACTIONS(282), + [anon_sym_LBRACK] = ACTIONS(284), + [anon_sym_POUND] = ACTIONS(532), + [anon_sym_POUND_QMARK] = ACTIONS(288), + [anon_sym_POUND_QMARK_AT] = ACTIONS(290), + [anon_sym_POUND_SQUOTE] = ACTIONS(534), + [anon_sym_POUND_POUND] = ACTIONS(536), + [anon_sym_POUND_EQ] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(538), + [anon_sym_SQUOTE] = ACTIONS(540), + [anon_sym_BQUOTE] = ACTIONS(542), + [anon_sym_TILDE_AT] = ACTIONS(544), + [anon_sym_TILDE] = ACTIONS(546), }, - [167] = { + [STATE(167)] = { [sym__gap] = STATE(301), [sym_dis_expr] = STATE(301), - [sym__form] = STATE(257), - [sym_kwd_lit] = STATE(257), - [sym_str_lit] = STATE(257), - [sym_sym_lit] = STATE(257), + [sym__form] = STATE(390), + [sym_kwd_lit] = STATE(390), + [sym_str_lit] = STATE(390), + [sym_sym_lit] = STATE(390), [sym__metadata_lit] = STATE(424), - [sym_meta_lit] = STATE(314), - [sym_old_meta_lit] = STATE(313), - [sym_list_lit] = STATE(257), - [sym__bare_list_lit] = STATE(218), - [sym_map_lit] = STATE(257), - [sym__bare_map_lit] = STATE(219), - [sym_vec_lit] = STATE(257), - [sym__bare_vec_lit] = STATE(226), - [sym_set_lit] = STATE(257), - [sym__bare_set_lit] = STATE(227), - [sym_anon_fn_lit] = STATE(257), - [sym_regex_lit] = STATE(257), - [sym_read_cond_lit] = STATE(257), - [sym_splicing_read_cond_lit] = STATE(257), - [sym_ns_map_lit] = STATE(257), - [sym_var_quoting_lit] = STATE(257), - [sym_sym_val_lit] = STATE(257), - [sym_evaling_lit] = STATE(257), - [sym_tagged_or_ctor_lit] = STATE(257), - [sym_derefing_lit] = STATE(257), - [sym_quoting_lit] = STATE(257), - [sym_syn_quoting_lit] = STATE(257), - [sym_unquote_splicing_lit] = STATE(257), - [sym_unquoting_lit] = STATE(257), + [sym_meta_lit] = STATE(312), + [sym_old_meta_lit] = STATE(315), + [sym_list_lit] = STATE(390), + [sym__bare_list_lit] = STATE(402), + [sym_map_lit] = STATE(390), + [sym__bare_map_lit] = STATE(403), + [sym_vec_lit] = STATE(390), + [sym__bare_vec_lit] = STATE(404), + [sym_set_lit] = STATE(390), + [sym__bare_set_lit] = STATE(405), + [sym_anon_fn_lit] = STATE(390), + [sym_regex_lit] = STATE(390), + [sym_read_cond_lit] = STATE(390), + [sym_splicing_read_cond_lit] = STATE(390), + [sym_ns_map_lit] = STATE(390), + [sym_var_quoting_lit] = STATE(390), + [sym_sym_val_lit] = STATE(390), + [sym_evaling_lit] = STATE(390), + [sym_tagged_or_ctor_lit] = STATE(390), + [sym_derefing_lit] = STATE(390), + [sym_quoting_lit] = STATE(390), + [sym_syn_quoting_lit] = STATE(390), + [sym_unquote_splicing_lit] = STATE(390), + [sym_unquoting_lit] = STATE(390), [aux_sym_dis_expr_repeat1] = STATE(301), - [aux_sym_sym_lit_repeat1] = STATE(303), - [sym__ws] = ACTIONS(264), - [sym_comment] = ACTIONS(264), + [aux_sym_sym_lit_repeat1] = STATE(304), + [sym__ws] = ACTIONS(320), + [sym_comment] = ACTIONS(320), [anon_sym_POUND_] = ACTIONS(7), - [sym_num_lit] = ACTIONS(422), - [anon_sym_SLASH] = ACTIONS(9), - [anon_sym_COLON] = ACTIONS(716), - [anon_sym_COLON_COLON] = ACTIONS(718), - [aux_sym_str_lit_token1] = ACTIONS(15), - [sym_char_lit] = ACTIONS(422), - [sym_nil_lit] = ACTIONS(424), - [sym_bool_lit] = ACTIONS(424), - [aux_sym__sym_qualified_token1] = ACTIONS(19), + [sym_num_lit] = ACTIONS(654), + [anon_sym_SLASH] = ACTIONS(268), + [anon_sym_COLON] = ACTIONS(526), + [anon_sym_COLON_COLON] = ACTIONS(528), + [aux_sym_str_lit_token1] = ACTIONS(274), + [sym_char_lit] = ACTIONS(654), + [sym_nil_lit] = ACTIONS(656), + [sym_bool_lit] = ACTIONS(656), + [aux_sym__sym_qualified_token1] = ACTIONS(278), [anon_sym_CARET] = ACTIONS(21), [anon_sym_POUND_CARET] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_LBRACK] = ACTIONS(29), - [anon_sym_POUND] = ACTIONS(720), - [anon_sym_POUND_QMARK] = ACTIONS(33), - [anon_sym_POUND_QMARK_AT] = ACTIONS(35), - [anon_sym_POUND_SQUOTE] = ACTIONS(722), - [anon_sym_POUND_POUND] = ACTIONS(724), - [anon_sym_POUND_EQ] = ACTIONS(41), - [anon_sym_AT] = ACTIONS(726), - [anon_sym_SQUOTE] = ACTIONS(728), - [anon_sym_BQUOTE] = ACTIONS(730), - [anon_sym_TILDE_AT] = ACTIONS(732), - [anon_sym_TILDE] = ACTIONS(734), + [anon_sym_LPAREN] = ACTIONS(280), + [anon_sym_LBRACE] = ACTIONS(282), + [anon_sym_LBRACK] = ACTIONS(284), + [anon_sym_POUND] = ACTIONS(532), + [anon_sym_POUND_QMARK] = ACTIONS(288), + [anon_sym_POUND_QMARK_AT] = ACTIONS(290), + [anon_sym_POUND_SQUOTE] = ACTIONS(534), + [anon_sym_POUND_POUND] = ACTIONS(536), + [anon_sym_POUND_EQ] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(538), + [anon_sym_SQUOTE] = ACTIONS(540), + [anon_sym_BQUOTE] = ACTIONS(542), + [anon_sym_TILDE_AT] = ACTIONS(544), + [anon_sym_TILDE] = ACTIONS(546), }, - [168] = { - [sym__gap] = STATE(151), - [sym_dis_expr] = STATE(151), - [sym__form] = STATE(248), - [sym_kwd_lit] = STATE(248), - [sym_str_lit] = STATE(248), - [sym_sym_lit] = STATE(248), - [sym__metadata_lit] = STATE(424), - [sym_meta_lit] = STATE(314), - [sym_old_meta_lit] = STATE(313), - [sym_list_lit] = STATE(248), - [sym__bare_list_lit] = STATE(218), - [sym_map_lit] = STATE(248), - [sym__bare_map_lit] = STATE(219), - [sym_vec_lit] = STATE(248), - [sym__bare_vec_lit] = STATE(226), - [sym_set_lit] = STATE(248), - [sym__bare_set_lit] = STATE(227), - [sym_anon_fn_lit] = STATE(248), - [sym_regex_lit] = STATE(248), - [sym_read_cond_lit] = STATE(248), - [sym_splicing_read_cond_lit] = STATE(248), - [sym_ns_map_lit] = STATE(248), - [sym_var_quoting_lit] = STATE(248), - [sym_sym_val_lit] = STATE(248), - [sym_evaling_lit] = STATE(248), - [sym_tagged_or_ctor_lit] = STATE(248), - [sym_derefing_lit] = STATE(248), - [sym_quoting_lit] = STATE(248), - [sym_syn_quoting_lit] = STATE(248), - [sym_unquote_splicing_lit] = STATE(248), - [sym_unquoting_lit] = STATE(248), - [aux_sym_dis_expr_repeat1] = STATE(151), - [aux_sym_sym_lit_repeat1] = STATE(303), - [sym__ws] = ACTIONS(808), - [sym_comment] = ACTIONS(808), - [anon_sym_POUND_] = ACTIONS(7), - [sym_num_lit] = ACTIONS(346), - [anon_sym_SLASH] = ACTIONS(9), - [anon_sym_COLON] = ACTIONS(716), - [anon_sym_COLON_COLON] = ACTIONS(718), - [aux_sym_str_lit_token1] = ACTIONS(15), - [sym_char_lit] = ACTIONS(346), - [sym_nil_lit] = ACTIONS(348), - [sym_bool_lit] = ACTIONS(348), - [aux_sym__sym_qualified_token1] = ACTIONS(19), - [anon_sym_CARET] = ACTIONS(21), - [anon_sym_POUND_CARET] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_LBRACK] = ACTIONS(29), - [anon_sym_POUND] = ACTIONS(720), - [anon_sym_POUND_QMARK] = ACTIONS(33), - [anon_sym_POUND_QMARK_AT] = ACTIONS(35), - [anon_sym_POUND_SQUOTE] = ACTIONS(722), - [anon_sym_POUND_POUND] = ACTIONS(724), - [anon_sym_POUND_EQ] = ACTIONS(41), - [anon_sym_AT] = ACTIONS(726), - [anon_sym_SQUOTE] = ACTIONS(728), - [anon_sym_BQUOTE] = ACTIONS(730), - [anon_sym_TILDE_AT] = ACTIONS(732), - [anon_sym_TILDE] = ACTIONS(734), - }, - [169] = { - [sym__gap] = STATE(153), - [sym_dis_expr] = STATE(153), - [sym__form] = STATE(247), - [sym_kwd_lit] = STATE(247), - [sym_str_lit] = STATE(247), - [sym_sym_lit] = STATE(247), - [sym__metadata_lit] = STATE(424), - [sym_meta_lit] = STATE(314), - [sym_old_meta_lit] = STATE(313), - [sym_list_lit] = STATE(247), - [sym__bare_list_lit] = STATE(218), - [sym_map_lit] = STATE(247), - [sym__bare_map_lit] = STATE(219), - [sym_vec_lit] = STATE(247), - [sym__bare_vec_lit] = STATE(226), - [sym_set_lit] = STATE(247), - [sym__bare_set_lit] = STATE(227), - [sym_anon_fn_lit] = STATE(247), - [sym_regex_lit] = STATE(247), - [sym_read_cond_lit] = STATE(247), - [sym_splicing_read_cond_lit] = STATE(247), - [sym_ns_map_lit] = STATE(247), - [sym_var_quoting_lit] = STATE(247), - [sym_sym_val_lit] = STATE(247), - [sym_evaling_lit] = STATE(247), - [sym_tagged_or_ctor_lit] = STATE(247), - [sym_derefing_lit] = STATE(247), - [sym_quoting_lit] = STATE(247), - [sym_syn_quoting_lit] = STATE(247), - [sym_unquote_splicing_lit] = STATE(247), - [sym_unquoting_lit] = STATE(247), - [aux_sym_dis_expr_repeat1] = STATE(153), - [aux_sym_sym_lit_repeat1] = STATE(303), - [sym__ws] = ACTIONS(810), - [sym_comment] = ACTIONS(810), - [anon_sym_POUND_] = ACTIONS(7), - [sym_num_lit] = ACTIONS(340), - [anon_sym_SLASH] = ACTIONS(9), - [anon_sym_COLON] = ACTIONS(716), - [anon_sym_COLON_COLON] = ACTIONS(718), - [aux_sym_str_lit_token1] = ACTIONS(15), - [sym_char_lit] = ACTIONS(340), - [sym_nil_lit] = ACTIONS(342), - [sym_bool_lit] = ACTIONS(342), - [aux_sym__sym_qualified_token1] = ACTIONS(19), - [anon_sym_CARET] = ACTIONS(21), - [anon_sym_POUND_CARET] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_LBRACK] = ACTIONS(29), - [anon_sym_POUND] = ACTIONS(720), - [anon_sym_POUND_QMARK] = ACTIONS(33), - [anon_sym_POUND_QMARK_AT] = ACTIONS(35), - [anon_sym_POUND_SQUOTE] = ACTIONS(722), - [anon_sym_POUND_POUND] = ACTIONS(724), - [anon_sym_POUND_EQ] = ACTIONS(41), - [anon_sym_AT] = ACTIONS(726), - [anon_sym_SQUOTE] = ACTIONS(728), - [anon_sym_BQUOTE] = ACTIONS(730), - [anon_sym_TILDE_AT] = ACTIONS(732), - [anon_sym_TILDE] = ACTIONS(734), - }, - [170] = { - [sym__gap] = STATE(154), - [sym_dis_expr] = STATE(154), - [sym__form] = STATE(246), - [sym_kwd_lit] = STATE(246), - [sym_str_lit] = STATE(246), - [sym_sym_lit] = STATE(246), - [sym__metadata_lit] = STATE(424), - [sym_meta_lit] = STATE(314), - [sym_old_meta_lit] = STATE(313), - [sym_list_lit] = STATE(246), - [sym__bare_list_lit] = STATE(218), - [sym_map_lit] = STATE(246), - [sym__bare_map_lit] = STATE(219), - [sym_vec_lit] = STATE(246), - [sym__bare_vec_lit] = STATE(226), - [sym_set_lit] = STATE(246), - [sym__bare_set_lit] = STATE(227), - [sym_anon_fn_lit] = STATE(246), - [sym_regex_lit] = STATE(246), - [sym_read_cond_lit] = STATE(246), - [sym_splicing_read_cond_lit] = STATE(246), - [sym_ns_map_lit] = STATE(246), - [sym_var_quoting_lit] = STATE(246), - [sym_sym_val_lit] = STATE(246), - [sym_evaling_lit] = STATE(246), - [sym_tagged_or_ctor_lit] = STATE(246), - [sym_derefing_lit] = STATE(246), - [sym_quoting_lit] = STATE(246), - [sym_syn_quoting_lit] = STATE(246), - [sym_unquote_splicing_lit] = STATE(246), - [sym_unquoting_lit] = STATE(246), - [aux_sym_dis_expr_repeat1] = STATE(154), - [aux_sym_sym_lit_repeat1] = STATE(303), - [sym__ws] = ACTIONS(812), - [sym_comment] = ACTIONS(812), - [anon_sym_POUND_] = ACTIONS(7), - [sym_num_lit] = ACTIONS(334), - [anon_sym_SLASH] = ACTIONS(9), - [anon_sym_COLON] = ACTIONS(716), - [anon_sym_COLON_COLON] = ACTIONS(718), - [aux_sym_str_lit_token1] = ACTIONS(15), - [sym_char_lit] = ACTIONS(334), - [sym_nil_lit] = ACTIONS(336), - [sym_bool_lit] = ACTIONS(336), - [aux_sym__sym_qualified_token1] = ACTIONS(19), - [anon_sym_CARET] = ACTIONS(21), - [anon_sym_POUND_CARET] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_LBRACK] = ACTIONS(29), - [anon_sym_POUND] = ACTIONS(720), - [anon_sym_POUND_QMARK] = ACTIONS(33), - [anon_sym_POUND_QMARK_AT] = ACTIONS(35), - [anon_sym_POUND_SQUOTE] = ACTIONS(722), - [anon_sym_POUND_POUND] = ACTIONS(724), - [anon_sym_POUND_EQ] = ACTIONS(41), - [anon_sym_AT] = ACTIONS(726), - [anon_sym_SQUOTE] = ACTIONS(728), - [anon_sym_BQUOTE] = ACTIONS(730), - [anon_sym_TILDE_AT] = ACTIONS(732), - [anon_sym_TILDE] = ACTIONS(734), - }, - [171] = { - [sym__gap] = STATE(155), - [sym_dis_expr] = STATE(155), - [sym__form] = STATE(245), - [sym_kwd_lit] = STATE(245), - [sym_str_lit] = STATE(245), - [sym_sym_lit] = STATE(245), + [STATE(168)] = { + [sym__gap] = STATE(301), + [sym_dis_expr] = STATE(301), + [sym__form] = STATE(392), + [sym_kwd_lit] = STATE(392), + [sym_str_lit] = STATE(392), + [sym_sym_lit] = STATE(392), [sym__metadata_lit] = STATE(424), - [sym_meta_lit] = STATE(314), - [sym_old_meta_lit] = STATE(313), - [sym_list_lit] = STATE(245), - [sym__bare_list_lit] = STATE(218), - [sym_map_lit] = STATE(245), - [sym__bare_map_lit] = STATE(219), - [sym_vec_lit] = STATE(245), - [sym__bare_vec_lit] = STATE(226), - [sym_set_lit] = STATE(245), - [sym__bare_set_lit] = STATE(227), - [sym_anon_fn_lit] = STATE(245), - [sym_regex_lit] = STATE(245), - [sym_read_cond_lit] = STATE(245), - [sym_splicing_read_cond_lit] = STATE(245), - [sym_ns_map_lit] = STATE(245), - [sym_var_quoting_lit] = STATE(245), - [sym_sym_val_lit] = STATE(245), - [sym_evaling_lit] = STATE(245), - [sym_tagged_or_ctor_lit] = STATE(245), - [sym_derefing_lit] = STATE(245), - [sym_quoting_lit] = STATE(245), - [sym_syn_quoting_lit] = STATE(245), - [sym_unquote_splicing_lit] = STATE(245), - [sym_unquoting_lit] = STATE(245), - [aux_sym_dis_expr_repeat1] = STATE(155), - [aux_sym_sym_lit_repeat1] = STATE(303), - [sym__ws] = ACTIONS(814), - [sym_comment] = ACTIONS(814), + [sym_meta_lit] = STATE(312), + [sym_old_meta_lit] = STATE(315), + [sym_list_lit] = STATE(392), + [sym__bare_list_lit] = STATE(402), + [sym_map_lit] = STATE(392), + [sym__bare_map_lit] = STATE(403), + [sym_vec_lit] = STATE(392), + [sym__bare_vec_lit] = STATE(404), + [sym_set_lit] = STATE(392), + [sym__bare_set_lit] = STATE(405), + [sym_anon_fn_lit] = STATE(392), + [sym_regex_lit] = STATE(392), + [sym_read_cond_lit] = STATE(392), + [sym_splicing_read_cond_lit] = STATE(392), + [sym_ns_map_lit] = STATE(392), + [sym_var_quoting_lit] = STATE(392), + [sym_sym_val_lit] = STATE(392), + [sym_evaling_lit] = STATE(392), + [sym_tagged_or_ctor_lit] = STATE(392), + [sym_derefing_lit] = STATE(392), + [sym_quoting_lit] = STATE(392), + [sym_syn_quoting_lit] = STATE(392), + [sym_unquote_splicing_lit] = STATE(392), + [sym_unquoting_lit] = STATE(392), + [aux_sym_dis_expr_repeat1] = STATE(301), + [aux_sym_sym_lit_repeat1] = STATE(304), + [sym__ws] = ACTIONS(320), + [sym_comment] = ACTIONS(320), [anon_sym_POUND_] = ACTIONS(7), - [sym_num_lit] = ACTIONS(328), - [anon_sym_SLASH] = ACTIONS(9), - [anon_sym_COLON] = ACTIONS(716), - [anon_sym_COLON_COLON] = ACTIONS(718), - [aux_sym_str_lit_token1] = ACTIONS(15), - [sym_char_lit] = ACTIONS(328), - [sym_nil_lit] = ACTIONS(330), - [sym_bool_lit] = ACTIONS(330), - [aux_sym__sym_qualified_token1] = ACTIONS(19), + [sym_num_lit] = ACTIONS(658), + [anon_sym_SLASH] = ACTIONS(268), + [anon_sym_COLON] = ACTIONS(526), + [anon_sym_COLON_COLON] = ACTIONS(528), + [aux_sym_str_lit_token1] = ACTIONS(274), + [sym_char_lit] = ACTIONS(658), + [sym_nil_lit] = ACTIONS(660), + [sym_bool_lit] = ACTIONS(660), + [aux_sym__sym_qualified_token1] = ACTIONS(278), [anon_sym_CARET] = ACTIONS(21), [anon_sym_POUND_CARET] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_LBRACK] = ACTIONS(29), - [anon_sym_POUND] = ACTIONS(720), - [anon_sym_POUND_QMARK] = ACTIONS(33), - [anon_sym_POUND_QMARK_AT] = ACTIONS(35), - [anon_sym_POUND_SQUOTE] = ACTIONS(722), - [anon_sym_POUND_POUND] = ACTIONS(724), - [anon_sym_POUND_EQ] = ACTIONS(41), - [anon_sym_AT] = ACTIONS(726), - [anon_sym_SQUOTE] = ACTIONS(728), - [anon_sym_BQUOTE] = ACTIONS(730), - [anon_sym_TILDE_AT] = ACTIONS(732), - [anon_sym_TILDE] = ACTIONS(734), - }, - [172] = { - [sym__gap] = STATE(156), - [sym_dis_expr] = STATE(156), - [sym__form] = STATE(244), - [sym_kwd_lit] = STATE(244), - [sym_str_lit] = STATE(244), - [sym_sym_lit] = STATE(244), + [anon_sym_LPAREN] = ACTIONS(280), + [anon_sym_LBRACE] = ACTIONS(282), + [anon_sym_LBRACK] = ACTIONS(284), + [anon_sym_POUND] = ACTIONS(532), + [anon_sym_POUND_QMARK] = ACTIONS(288), + [anon_sym_POUND_QMARK_AT] = ACTIONS(290), + [anon_sym_POUND_SQUOTE] = ACTIONS(534), + [anon_sym_POUND_POUND] = ACTIONS(536), + [anon_sym_POUND_EQ] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(538), + [anon_sym_SQUOTE] = ACTIONS(540), + [anon_sym_BQUOTE] = ACTIONS(542), + [anon_sym_TILDE_AT] = ACTIONS(544), + [anon_sym_TILDE] = ACTIONS(546), + }, + [STATE(169)] = { + [sym__gap] = STATE(170), + [sym_dis_expr] = STATE(170), + [sym__form] = STATE(394), + [sym_kwd_lit] = STATE(394), + [sym_str_lit] = STATE(394), + [sym_sym_lit] = STATE(394), [sym__metadata_lit] = STATE(424), - [sym_meta_lit] = STATE(314), - [sym_old_meta_lit] = STATE(313), - [sym_list_lit] = STATE(244), - [sym__bare_list_lit] = STATE(218), - [sym_map_lit] = STATE(244), - [sym__bare_map_lit] = STATE(219), - [sym_vec_lit] = STATE(244), - [sym__bare_vec_lit] = STATE(226), - [sym_set_lit] = STATE(244), - [sym__bare_set_lit] = STATE(227), - [sym_anon_fn_lit] = STATE(244), - [sym_regex_lit] = STATE(244), - [sym_read_cond_lit] = STATE(244), - [sym_splicing_read_cond_lit] = STATE(244), - [sym_ns_map_lit] = STATE(244), - [sym_var_quoting_lit] = STATE(244), - [sym_sym_val_lit] = STATE(244), - [sym_evaling_lit] = STATE(244), - [sym_tagged_or_ctor_lit] = STATE(244), - [sym_derefing_lit] = STATE(244), - [sym_quoting_lit] = STATE(244), - [sym_syn_quoting_lit] = STATE(244), - [sym_unquote_splicing_lit] = STATE(244), - [sym_unquoting_lit] = STATE(244), - [aux_sym_dis_expr_repeat1] = STATE(156), - [aux_sym_sym_lit_repeat1] = STATE(303), + [sym_meta_lit] = STATE(312), + [sym_old_meta_lit] = STATE(315), + [sym_list_lit] = STATE(394), + [sym__bare_list_lit] = STATE(402), + [sym_map_lit] = STATE(394), + [sym__bare_map_lit] = STATE(403), + [sym_vec_lit] = STATE(394), + [sym__bare_vec_lit] = STATE(404), + [sym_set_lit] = STATE(394), + [sym__bare_set_lit] = STATE(405), + [sym_anon_fn_lit] = STATE(394), + [sym_regex_lit] = STATE(394), + [sym_read_cond_lit] = STATE(394), + [sym_splicing_read_cond_lit] = STATE(394), + [sym_ns_map_lit] = STATE(394), + [sym_var_quoting_lit] = STATE(394), + [sym_sym_val_lit] = STATE(394), + [sym_evaling_lit] = STATE(394), + [sym_tagged_or_ctor_lit] = STATE(394), + [sym_derefing_lit] = STATE(394), + [sym_quoting_lit] = STATE(394), + [sym_syn_quoting_lit] = STATE(394), + [sym_unquote_splicing_lit] = STATE(394), + [sym_unquoting_lit] = STATE(394), + [aux_sym_dis_expr_repeat1] = STATE(170), + [aux_sym_sym_lit_repeat1] = STATE(304), [sym__ws] = ACTIONS(816), [sym_comment] = ACTIONS(816), [anon_sym_POUND_] = ACTIONS(7), - [sym_num_lit] = ACTIONS(322), - [anon_sym_SLASH] = ACTIONS(9), - [anon_sym_COLON] = ACTIONS(716), - [anon_sym_COLON_COLON] = ACTIONS(718), - [aux_sym_str_lit_token1] = ACTIONS(15), - [sym_char_lit] = ACTIONS(322), - [sym_nil_lit] = ACTIONS(324), - [sym_bool_lit] = ACTIONS(324), - [aux_sym__sym_qualified_token1] = ACTIONS(19), + [sym_num_lit] = ACTIONS(664), + [anon_sym_SLASH] = ACTIONS(268), + [anon_sym_COLON] = ACTIONS(526), + [anon_sym_COLON_COLON] = ACTIONS(528), + [aux_sym_str_lit_token1] = ACTIONS(274), + [sym_char_lit] = ACTIONS(664), + [sym_nil_lit] = ACTIONS(666), + [sym_bool_lit] = ACTIONS(666), + [aux_sym__sym_qualified_token1] = ACTIONS(278), [anon_sym_CARET] = ACTIONS(21), [anon_sym_POUND_CARET] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_LBRACK] = ACTIONS(29), - [anon_sym_POUND] = ACTIONS(720), - [anon_sym_POUND_QMARK] = ACTIONS(33), - [anon_sym_POUND_QMARK_AT] = ACTIONS(35), - [anon_sym_POUND_SQUOTE] = ACTIONS(722), - [anon_sym_POUND_POUND] = ACTIONS(724), - [anon_sym_POUND_EQ] = ACTIONS(41), - [anon_sym_AT] = ACTIONS(726), - [anon_sym_SQUOTE] = ACTIONS(728), - [anon_sym_BQUOTE] = ACTIONS(730), - [anon_sym_TILDE_AT] = ACTIONS(732), - [anon_sym_TILDE] = ACTIONS(734), - }, - [173] = { - [sym__gap] = STATE(157), - [sym_dis_expr] = STATE(157), - [sym__form] = STATE(240), - [sym_kwd_lit] = STATE(240), - [sym_str_lit] = STATE(240), - [sym_sym_lit] = STATE(240), + [anon_sym_LPAREN] = ACTIONS(280), + [anon_sym_LBRACE] = ACTIONS(282), + [anon_sym_LBRACK] = ACTIONS(284), + [anon_sym_POUND] = ACTIONS(532), + [anon_sym_POUND_QMARK] = ACTIONS(288), + [anon_sym_POUND_QMARK_AT] = ACTIONS(290), + [anon_sym_POUND_SQUOTE] = ACTIONS(534), + [anon_sym_POUND_POUND] = ACTIONS(536), + [anon_sym_POUND_EQ] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(538), + [anon_sym_SQUOTE] = ACTIONS(540), + [anon_sym_BQUOTE] = ACTIONS(542), + [anon_sym_TILDE_AT] = ACTIONS(544), + [anon_sym_TILDE] = ACTIONS(546), + }, + [STATE(170)] = { + [sym__gap] = STATE(301), + [sym_dis_expr] = STATE(301), + [sym__form] = STATE(396), + [sym_kwd_lit] = STATE(396), + [sym_str_lit] = STATE(396), + [sym_sym_lit] = STATE(396), [sym__metadata_lit] = STATE(424), - [sym_meta_lit] = STATE(314), - [sym_old_meta_lit] = STATE(313), - [sym_list_lit] = STATE(240), - [sym__bare_list_lit] = STATE(218), - [sym_map_lit] = STATE(240), - [sym__bare_map_lit] = STATE(219), - [sym_vec_lit] = STATE(240), - [sym__bare_vec_lit] = STATE(226), - [sym_set_lit] = STATE(240), - [sym__bare_set_lit] = STATE(227), - [sym_anon_fn_lit] = STATE(240), - [sym_regex_lit] = STATE(240), - [sym_read_cond_lit] = STATE(240), - [sym_splicing_read_cond_lit] = STATE(240), - [sym_ns_map_lit] = STATE(240), - [sym_var_quoting_lit] = STATE(240), - [sym_sym_val_lit] = STATE(240), - [sym_evaling_lit] = STATE(240), - [sym_tagged_or_ctor_lit] = STATE(240), - [sym_derefing_lit] = STATE(240), - [sym_quoting_lit] = STATE(240), - [sym_syn_quoting_lit] = STATE(240), - [sym_unquote_splicing_lit] = STATE(240), - [sym_unquoting_lit] = STATE(240), - [aux_sym_dis_expr_repeat1] = STATE(157), - [aux_sym_sym_lit_repeat1] = STATE(303), - [sym__ws] = ACTIONS(818), - [sym_comment] = ACTIONS(818), + [sym_meta_lit] = STATE(312), + [sym_old_meta_lit] = STATE(315), + [sym_list_lit] = STATE(396), + [sym__bare_list_lit] = STATE(402), + [sym_map_lit] = STATE(396), + [sym__bare_map_lit] = STATE(403), + [sym_vec_lit] = STATE(396), + [sym__bare_vec_lit] = STATE(404), + [sym_set_lit] = STATE(396), + [sym__bare_set_lit] = STATE(405), + [sym_anon_fn_lit] = STATE(396), + [sym_regex_lit] = STATE(396), + [sym_read_cond_lit] = STATE(396), + [sym_splicing_read_cond_lit] = STATE(396), + [sym_ns_map_lit] = STATE(396), + [sym_var_quoting_lit] = STATE(396), + [sym_sym_val_lit] = STATE(396), + [sym_evaling_lit] = STATE(396), + [sym_tagged_or_ctor_lit] = STATE(396), + [sym_derefing_lit] = STATE(396), + [sym_quoting_lit] = STATE(396), + [sym_syn_quoting_lit] = STATE(396), + [sym_unquote_splicing_lit] = STATE(396), + [sym_unquoting_lit] = STATE(396), + [aux_sym_dis_expr_repeat1] = STATE(301), + [aux_sym_sym_lit_repeat1] = STATE(304), + [sym__ws] = ACTIONS(320), + [sym_comment] = ACTIONS(320), [anon_sym_POUND_] = ACTIONS(7), - [sym_num_lit] = ACTIONS(706), - [anon_sym_SLASH] = ACTIONS(9), - [anon_sym_COLON] = ACTIONS(716), - [anon_sym_COLON_COLON] = ACTIONS(718), - [aux_sym_str_lit_token1] = ACTIONS(15), - [sym_char_lit] = ACTIONS(706), - [sym_nil_lit] = ACTIONS(708), - [sym_bool_lit] = ACTIONS(708), - [aux_sym__sym_qualified_token1] = ACTIONS(19), + [sym_num_lit] = ACTIONS(668), + [anon_sym_SLASH] = ACTIONS(268), + [anon_sym_COLON] = ACTIONS(526), + [anon_sym_COLON_COLON] = ACTIONS(528), + [aux_sym_str_lit_token1] = ACTIONS(274), + [sym_char_lit] = ACTIONS(668), + [sym_nil_lit] = ACTIONS(670), + [sym_bool_lit] = ACTIONS(670), + [aux_sym__sym_qualified_token1] = ACTIONS(278), [anon_sym_CARET] = ACTIONS(21), [anon_sym_POUND_CARET] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_LBRACK] = ACTIONS(29), - [anon_sym_POUND] = ACTIONS(720), - [anon_sym_POUND_QMARK] = ACTIONS(33), - [anon_sym_POUND_QMARK_AT] = ACTIONS(35), - [anon_sym_POUND_SQUOTE] = ACTIONS(722), - [anon_sym_POUND_POUND] = ACTIONS(724), - [anon_sym_POUND_EQ] = ACTIONS(41), - [anon_sym_AT] = ACTIONS(726), - [anon_sym_SQUOTE] = ACTIONS(728), - [anon_sym_BQUOTE] = ACTIONS(730), - [anon_sym_TILDE_AT] = ACTIONS(732), - [anon_sym_TILDE] = ACTIONS(734), - }, - [174] = { - [sym__gap] = STATE(159), - [sym_dis_expr] = STATE(159), - [sym__form] = STATE(239), - [sym_kwd_lit] = STATE(239), - [sym_str_lit] = STATE(239), - [sym_sym_lit] = STATE(239), + [anon_sym_LPAREN] = ACTIONS(280), + [anon_sym_LBRACE] = ACTIONS(282), + [anon_sym_LBRACK] = ACTIONS(284), + [anon_sym_POUND] = ACTIONS(532), + [anon_sym_POUND_QMARK] = ACTIONS(288), + [anon_sym_POUND_QMARK_AT] = ACTIONS(290), + [anon_sym_POUND_SQUOTE] = ACTIONS(534), + [anon_sym_POUND_POUND] = ACTIONS(536), + [anon_sym_POUND_EQ] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(538), + [anon_sym_SQUOTE] = ACTIONS(540), + [anon_sym_BQUOTE] = ACTIONS(542), + [anon_sym_TILDE_AT] = ACTIONS(544), + [anon_sym_TILDE] = ACTIONS(546), + }, + [STATE(171)] = { + [sym__gap] = STATE(143), + [sym_dis_expr] = STATE(143), + [sym__form] = STATE(406), + [sym_kwd_lit] = STATE(406), + [sym_str_lit] = STATE(406), + [sym_sym_lit] = STATE(406), [sym__metadata_lit] = STATE(424), - [sym_meta_lit] = STATE(314), - [sym_old_meta_lit] = STATE(313), - [sym_list_lit] = STATE(239), - [sym__bare_list_lit] = STATE(218), - [sym_map_lit] = STATE(239), - [sym__bare_map_lit] = STATE(219), - [sym_vec_lit] = STATE(239), - [sym__bare_vec_lit] = STATE(226), - [sym_set_lit] = STATE(239), - [sym__bare_set_lit] = STATE(227), - [sym_anon_fn_lit] = STATE(239), - [sym_regex_lit] = STATE(239), - [sym_read_cond_lit] = STATE(239), - [sym_splicing_read_cond_lit] = STATE(239), - [sym_ns_map_lit] = STATE(239), - [sym_var_quoting_lit] = STATE(239), - [sym_sym_val_lit] = STATE(239), - [sym_evaling_lit] = STATE(239), - [sym_tagged_or_ctor_lit] = STATE(239), - [sym_derefing_lit] = STATE(239), - [sym_quoting_lit] = STATE(239), - [sym_syn_quoting_lit] = STATE(239), - [sym_unquote_splicing_lit] = STATE(239), - [sym_unquoting_lit] = STATE(239), - [aux_sym_dis_expr_repeat1] = STATE(159), - [aux_sym_sym_lit_repeat1] = STATE(303), - [sym__ws] = ACTIONS(820), - [sym_comment] = ACTIONS(820), + [sym_meta_lit] = STATE(312), + [sym_old_meta_lit] = STATE(315), + [sym_list_lit] = STATE(406), + [sym__bare_list_lit] = STATE(402), + [sym_map_lit] = STATE(406), + [sym__bare_map_lit] = STATE(403), + [sym_vec_lit] = STATE(406), + [sym__bare_vec_lit] = STATE(404), + [sym_set_lit] = STATE(406), + [sym__bare_set_lit] = STATE(405), + [sym_anon_fn_lit] = STATE(406), + [sym_regex_lit] = STATE(406), + [sym_read_cond_lit] = STATE(406), + [sym_splicing_read_cond_lit] = STATE(406), + [sym_ns_map_lit] = STATE(406), + [sym_var_quoting_lit] = STATE(406), + [sym_sym_val_lit] = STATE(406), + [sym_evaling_lit] = STATE(406), + [sym_tagged_or_ctor_lit] = STATE(406), + [sym_derefing_lit] = STATE(406), + [sym_quoting_lit] = STATE(406), + [sym_syn_quoting_lit] = STATE(406), + [sym_unquote_splicing_lit] = STATE(406), + [sym_unquoting_lit] = STATE(406), + [aux_sym_dis_expr_repeat1] = STATE(143), + [aux_sym_sym_lit_repeat1] = STATE(307), + [sym__ws] = ACTIONS(818), + [sym_comment] = ACTIONS(818), [anon_sym_POUND_] = ACTIONS(7), - [sym_num_lit] = ACTIONS(682), - [anon_sym_SLASH] = ACTIONS(9), - [anon_sym_COLON] = ACTIONS(716), - [anon_sym_COLON_COLON] = ACTIONS(718), - [aux_sym_str_lit_token1] = ACTIONS(15), - [sym_char_lit] = ACTIONS(682), - [sym_nil_lit] = ACTIONS(684), - [sym_bool_lit] = ACTIONS(684), - [aux_sym__sym_qualified_token1] = ACTIONS(19), + [sym_num_lit] = ACTIONS(674), + [anon_sym_SLASH] = ACTIONS(268), + [anon_sym_COLON] = ACTIONS(270), + [anon_sym_COLON_COLON] = ACTIONS(272), + [aux_sym_str_lit_token1] = ACTIONS(274), + [sym_char_lit] = ACTIONS(674), + [sym_nil_lit] = ACTIONS(676), + [sym_bool_lit] = ACTIONS(676), + [aux_sym__sym_qualified_token1] = ACTIONS(278), [anon_sym_CARET] = ACTIONS(21), [anon_sym_POUND_CARET] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_LBRACK] = ACTIONS(29), - [anon_sym_POUND] = ACTIONS(720), - [anon_sym_POUND_QMARK] = ACTIONS(33), - [anon_sym_POUND_QMARK_AT] = ACTIONS(35), - [anon_sym_POUND_SQUOTE] = ACTIONS(722), - [anon_sym_POUND_POUND] = ACTIONS(724), - [anon_sym_POUND_EQ] = ACTIONS(41), - [anon_sym_AT] = ACTIONS(726), - [anon_sym_SQUOTE] = ACTIONS(728), - [anon_sym_BQUOTE] = ACTIONS(730), - [anon_sym_TILDE_AT] = ACTIONS(732), - [anon_sym_TILDE] = ACTIONS(734), - }, - [175] = { - [sym__gap] = STATE(176), - [sym_dis_expr] = STATE(176), - [sym__form] = STATE(331), - [sym_kwd_lit] = STATE(331), - [sym_str_lit] = STATE(331), - [sym_sym_lit] = STATE(331), + [anon_sym_LPAREN] = ACTIONS(280), + [anon_sym_LBRACE] = ACTIONS(282), + [anon_sym_LBRACK] = ACTIONS(284), + [anon_sym_POUND] = ACTIONS(286), + [anon_sym_POUND_QMARK] = ACTIONS(288), + [anon_sym_POUND_QMARK_AT] = ACTIONS(290), + [anon_sym_POUND_SQUOTE] = ACTIONS(292), + [anon_sym_POUND_POUND] = ACTIONS(294), + [anon_sym_POUND_EQ] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [anon_sym_SQUOTE] = ACTIONS(300), + [anon_sym_BQUOTE] = ACTIONS(302), + [anon_sym_TILDE_AT] = ACTIONS(304), + [anon_sym_TILDE] = ACTIONS(306), + }, + [STATE(172)] = { + [sym__gap] = STATE(174), + [sym_dis_expr] = STATE(174), + [sym__form] = STATE(401), + [sym_kwd_lit] = STATE(401), + [sym_str_lit] = STATE(401), + [sym_sym_lit] = STATE(401), [sym__metadata_lit] = STATE(424), - [sym_meta_lit] = STATE(314), - [sym_old_meta_lit] = STATE(313), - [sym_list_lit] = STATE(331), - [sym__bare_list_lit] = STATE(392), - [sym_map_lit] = STATE(331), + [sym_meta_lit] = STATE(312), + [sym_old_meta_lit] = STATE(315), + [sym_list_lit] = STATE(401), + [sym__bare_list_lit] = STATE(402), + [sym_map_lit] = STATE(401), [sym__bare_map_lit] = STATE(403), - [sym_vec_lit] = STATE(331), - [sym__bare_vec_lit] = STATE(423), - [sym_set_lit] = STATE(331), - [sym__bare_set_lit] = STATE(374), - [sym_anon_fn_lit] = STATE(331), - [sym_regex_lit] = STATE(331), - [sym_read_cond_lit] = STATE(331), - [sym_splicing_read_cond_lit] = STATE(331), - [sym_ns_map_lit] = STATE(331), - [sym_var_quoting_lit] = STATE(331), - [sym_sym_val_lit] = STATE(331), - [sym_evaling_lit] = STATE(331), - [sym_tagged_or_ctor_lit] = STATE(331), - [sym_derefing_lit] = STATE(331), - [sym_quoting_lit] = STATE(331), - [sym_syn_quoting_lit] = STATE(331), - [sym_unquote_splicing_lit] = STATE(331), - [sym_unquoting_lit] = STATE(331), - [aux_sym_dis_expr_repeat1] = STATE(176), + [sym_vec_lit] = STATE(401), + [sym__bare_vec_lit] = STATE(404), + [sym_set_lit] = STATE(401), + [sym__bare_set_lit] = STATE(405), + [sym_anon_fn_lit] = STATE(401), + [sym_regex_lit] = STATE(401), + [sym_read_cond_lit] = STATE(401), + [sym_splicing_read_cond_lit] = STATE(401), + [sym_ns_map_lit] = STATE(401), + [sym_var_quoting_lit] = STATE(401), + [sym_sym_val_lit] = STATE(401), + [sym_evaling_lit] = STATE(401), + [sym_tagged_or_ctor_lit] = STATE(401), + [sym_derefing_lit] = STATE(401), + [sym_quoting_lit] = STATE(401), + [sym_syn_quoting_lit] = STATE(401), + [sym_unquote_splicing_lit] = STATE(401), + [sym_unquoting_lit] = STATE(401), + [aux_sym_dis_expr_repeat1] = STATE(174), [aux_sym_sym_lit_repeat1] = STATE(307), - [sym__ws] = ACTIONS(822), - [sym_comment] = ACTIONS(822), + [sym__ws] = ACTIONS(820), + [sym_comment] = ACTIONS(820), [anon_sym_POUND_] = ACTIONS(7), - [sym_num_lit] = ACTIONS(572), + [sym_num_lit] = ACTIONS(686), [anon_sym_SLASH] = ACTIONS(268), - [anon_sym_COLON] = ACTIONS(352), - [anon_sym_COLON_COLON] = ACTIONS(354), + [anon_sym_COLON] = ACTIONS(270), + [anon_sym_COLON_COLON] = ACTIONS(272), [aux_sym_str_lit_token1] = ACTIONS(274), - [sym_char_lit] = ACTIONS(572), - [sym_nil_lit] = ACTIONS(574), - [sym_bool_lit] = ACTIONS(574), + [sym_char_lit] = ACTIONS(686), + [sym_nil_lit] = ACTIONS(688), + [sym_bool_lit] = ACTIONS(688), [aux_sym__sym_qualified_token1] = ACTIONS(278), [anon_sym_CARET] = ACTIONS(21), [anon_sym_POUND_CARET] = ACTIONS(23), [anon_sym_LPAREN] = ACTIONS(280), [anon_sym_LBRACE] = ACTIONS(282), [anon_sym_LBRACK] = ACTIONS(284), - [anon_sym_POUND] = ACTIONS(358), + [anon_sym_POUND] = ACTIONS(286), [anon_sym_POUND_QMARK] = ACTIONS(288), [anon_sym_POUND_QMARK_AT] = ACTIONS(290), - [anon_sym_POUND_SQUOTE] = ACTIONS(360), - [anon_sym_POUND_POUND] = ACTIONS(362), + [anon_sym_POUND_SQUOTE] = ACTIONS(292), + [anon_sym_POUND_POUND] = ACTIONS(294), [anon_sym_POUND_EQ] = ACTIONS(296), - [anon_sym_AT] = ACTIONS(364), - [anon_sym_SQUOTE] = ACTIONS(366), - [anon_sym_BQUOTE] = ACTIONS(368), - [anon_sym_TILDE_AT] = ACTIONS(370), - [anon_sym_TILDE] = ACTIONS(372), + [anon_sym_AT] = ACTIONS(298), + [anon_sym_SQUOTE] = ACTIONS(300), + [anon_sym_BQUOTE] = ACTIONS(302), + [anon_sym_TILDE_AT] = ACTIONS(304), + [anon_sym_TILDE] = ACTIONS(306), }, - [176] = { - [sym__gap] = STATE(301), - [sym_dis_expr] = STATE(301), + [STATE(173)] = { + [sym__gap] = STATE(175), + [sym_dis_expr] = STATE(175), [sym__form] = STATE(332), [sym_kwd_lit] = STATE(332), [sym_str_lit] = STATE(332), [sym_sym_lit] = STATE(332), [sym__metadata_lit] = STATE(424), - [sym_meta_lit] = STATE(314), - [sym_old_meta_lit] = STATE(313), + [sym_meta_lit] = STATE(312), + [sym_old_meta_lit] = STATE(315), [sym_list_lit] = STATE(332), - [sym__bare_list_lit] = STATE(392), + [sym__bare_list_lit] = STATE(402), [sym_map_lit] = STATE(332), [sym__bare_map_lit] = STATE(403), [sym_vec_lit] = STATE(332), - [sym__bare_vec_lit] = STATE(423), + [sym__bare_vec_lit] = STATE(404), [sym_set_lit] = STATE(332), - [sym__bare_set_lit] = STATE(374), + [sym__bare_set_lit] = STATE(405), [sym_anon_fn_lit] = STATE(332), [sym_regex_lit] = STATE(332), [sym_read_cond_lit] = STATE(332), @@ -14576,145 +13839,460 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_syn_quoting_lit] = STATE(332), [sym_unquote_splicing_lit] = STATE(332), [sym_unquoting_lit] = STATE(332), + [aux_sym_dis_expr_repeat1] = STATE(175), + [aux_sym_sym_lit_repeat1] = STATE(307), + [sym__ws] = ACTIONS(822), + [sym_comment] = ACTIONS(822), + [anon_sym_POUND_] = ACTIONS(7), + [sym_num_lit] = ACTIONS(680), + [anon_sym_SLASH] = ACTIONS(268), + [anon_sym_COLON] = ACTIONS(270), + [anon_sym_COLON_COLON] = ACTIONS(272), + [aux_sym_str_lit_token1] = ACTIONS(274), + [sym_char_lit] = ACTIONS(680), + [sym_nil_lit] = ACTIONS(682), + [sym_bool_lit] = ACTIONS(682), + [aux_sym__sym_qualified_token1] = ACTIONS(278), + [anon_sym_CARET] = ACTIONS(21), + [anon_sym_POUND_CARET] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(280), + [anon_sym_LBRACE] = ACTIONS(282), + [anon_sym_LBRACK] = ACTIONS(284), + [anon_sym_POUND] = ACTIONS(286), + [anon_sym_POUND_QMARK] = ACTIONS(288), + [anon_sym_POUND_QMARK_AT] = ACTIONS(290), + [anon_sym_POUND_SQUOTE] = ACTIONS(292), + [anon_sym_POUND_POUND] = ACTIONS(294), + [anon_sym_POUND_EQ] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [anon_sym_SQUOTE] = ACTIONS(300), + [anon_sym_BQUOTE] = ACTIONS(302), + [anon_sym_TILDE_AT] = ACTIONS(304), + [anon_sym_TILDE] = ACTIONS(306), + }, + [STATE(174)] = { + [sym__gap] = STATE(301), + [sym_dis_expr] = STATE(301), + [sym__form] = STATE(329), + [sym_kwd_lit] = STATE(329), + [sym_str_lit] = STATE(329), + [sym_sym_lit] = STATE(329), + [sym__metadata_lit] = STATE(424), + [sym_meta_lit] = STATE(312), + [sym_old_meta_lit] = STATE(315), + [sym_list_lit] = STATE(329), + [sym__bare_list_lit] = STATE(402), + [sym_map_lit] = STATE(329), + [sym__bare_map_lit] = STATE(403), + [sym_vec_lit] = STATE(329), + [sym__bare_vec_lit] = STATE(404), + [sym_set_lit] = STATE(329), + [sym__bare_set_lit] = STATE(405), + [sym_anon_fn_lit] = STATE(329), + [sym_regex_lit] = STATE(329), + [sym_read_cond_lit] = STATE(329), + [sym_splicing_read_cond_lit] = STATE(329), + [sym_ns_map_lit] = STATE(329), + [sym_var_quoting_lit] = STATE(329), + [sym_sym_val_lit] = STATE(329), + [sym_evaling_lit] = STATE(329), + [sym_tagged_or_ctor_lit] = STATE(329), + [sym_derefing_lit] = STATE(329), + [sym_quoting_lit] = STATE(329), + [sym_syn_quoting_lit] = STATE(329), + [sym_unquote_splicing_lit] = STATE(329), + [sym_unquoting_lit] = STATE(329), [aux_sym_dis_expr_repeat1] = STATE(301), [aux_sym_sym_lit_repeat1] = STATE(307), - [sym__ws] = ACTIONS(264), - [sym_comment] = ACTIONS(264), + [sym__ws] = ACTIONS(320), + [sym_comment] = ACTIONS(320), [anon_sym_POUND_] = ACTIONS(7), - [sym_num_lit] = ACTIONS(562), + [sym_num_lit] = ACTIONS(740), [anon_sym_SLASH] = ACTIONS(268), - [anon_sym_COLON] = ACTIONS(352), - [anon_sym_COLON_COLON] = ACTIONS(354), + [anon_sym_COLON] = ACTIONS(270), + [anon_sym_COLON_COLON] = ACTIONS(272), [aux_sym_str_lit_token1] = ACTIONS(274), - [sym_char_lit] = ACTIONS(562), - [sym_nil_lit] = ACTIONS(564), - [sym_bool_lit] = ACTIONS(564), + [sym_char_lit] = ACTIONS(740), + [sym_nil_lit] = ACTIONS(742), + [sym_bool_lit] = ACTIONS(742), [aux_sym__sym_qualified_token1] = ACTIONS(278), [anon_sym_CARET] = ACTIONS(21), [anon_sym_POUND_CARET] = ACTIONS(23), [anon_sym_LPAREN] = ACTIONS(280), [anon_sym_LBRACE] = ACTIONS(282), [anon_sym_LBRACK] = ACTIONS(284), - [anon_sym_POUND] = ACTIONS(358), + [anon_sym_POUND] = ACTIONS(286), [anon_sym_POUND_QMARK] = ACTIONS(288), [anon_sym_POUND_QMARK_AT] = ACTIONS(290), - [anon_sym_POUND_SQUOTE] = ACTIONS(360), - [anon_sym_POUND_POUND] = ACTIONS(362), + [anon_sym_POUND_SQUOTE] = ACTIONS(292), + [anon_sym_POUND_POUND] = ACTIONS(294), [anon_sym_POUND_EQ] = ACTIONS(296), - [anon_sym_AT] = ACTIONS(364), - [anon_sym_SQUOTE] = ACTIONS(366), - [anon_sym_BQUOTE] = ACTIONS(368), - [anon_sym_TILDE_AT] = ACTIONS(370), - [anon_sym_TILDE] = ACTIONS(372), - }, - [177] = { - [sym__gap] = STATE(53), - [sym_dis_expr] = STATE(53), - [sym__form] = STATE(333), - [sym_kwd_lit] = STATE(333), - [sym_str_lit] = STATE(333), - [sym_sym_lit] = STATE(333), + [anon_sym_AT] = ACTIONS(298), + [anon_sym_SQUOTE] = ACTIONS(300), + [anon_sym_BQUOTE] = ACTIONS(302), + [anon_sym_TILDE_AT] = ACTIONS(304), + [anon_sym_TILDE] = ACTIONS(306), + }, + [STATE(175)] = { + [sym__gap] = STATE(301), + [sym_dis_expr] = STATE(301), + [sym__form] = STATE(330), + [sym_kwd_lit] = STATE(330), + [sym_str_lit] = STATE(330), + [sym_sym_lit] = STATE(330), [sym__metadata_lit] = STATE(424), - [sym_meta_lit] = STATE(314), - [sym_old_meta_lit] = STATE(313), - [sym_list_lit] = STATE(333), - [sym__bare_list_lit] = STATE(392), - [sym_map_lit] = STATE(333), + [sym_meta_lit] = STATE(312), + [sym_old_meta_lit] = STATE(315), + [sym_list_lit] = STATE(330), + [sym__bare_list_lit] = STATE(402), + [sym_map_lit] = STATE(330), [sym__bare_map_lit] = STATE(403), - [sym_vec_lit] = STATE(333), - [sym__bare_vec_lit] = STATE(423), - [sym_set_lit] = STATE(333), - [sym__bare_set_lit] = STATE(374), - [sym_anon_fn_lit] = STATE(333), - [sym_regex_lit] = STATE(333), - [sym_read_cond_lit] = STATE(333), - [sym_splicing_read_cond_lit] = STATE(333), - [sym_ns_map_lit] = STATE(333), - [sym_var_quoting_lit] = STATE(333), - [sym_sym_val_lit] = STATE(333), - [sym_evaling_lit] = STATE(333), - [sym_tagged_or_ctor_lit] = STATE(333), - [sym_derefing_lit] = STATE(333), - [sym_quoting_lit] = STATE(333), - [sym_syn_quoting_lit] = STATE(333), - [sym_unquote_splicing_lit] = STATE(333), - [sym_unquoting_lit] = STATE(333), - [aux_sym_dis_expr_repeat1] = STATE(53), - [aux_sym_sym_lit_repeat1] = STATE(306), + [sym_vec_lit] = STATE(330), + [sym__bare_vec_lit] = STATE(404), + [sym_set_lit] = STATE(330), + [sym__bare_set_lit] = STATE(405), + [sym_anon_fn_lit] = STATE(330), + [sym_regex_lit] = STATE(330), + [sym_read_cond_lit] = STATE(330), + [sym_splicing_read_cond_lit] = STATE(330), + [sym_ns_map_lit] = STATE(330), + [sym_var_quoting_lit] = STATE(330), + [sym_sym_val_lit] = STATE(330), + [sym_evaling_lit] = STATE(330), + [sym_tagged_or_ctor_lit] = STATE(330), + [sym_derefing_lit] = STATE(330), + [sym_quoting_lit] = STATE(330), + [sym_syn_quoting_lit] = STATE(330), + [sym_unquote_splicing_lit] = STATE(330), + [sym_unquoting_lit] = STATE(330), + [aux_sym_dis_expr_repeat1] = STATE(301), + [aux_sym_sym_lit_repeat1] = STATE(307), + [sym__ws] = ACTIONS(320), + [sym_comment] = ACTIONS(320), + [anon_sym_POUND_] = ACTIONS(7), + [sym_num_lit] = ACTIONS(744), + [anon_sym_SLASH] = ACTIONS(268), + [anon_sym_COLON] = ACTIONS(270), + [anon_sym_COLON_COLON] = ACTIONS(272), + [aux_sym_str_lit_token1] = ACTIONS(274), + [sym_char_lit] = ACTIONS(744), + [sym_nil_lit] = ACTIONS(746), + [sym_bool_lit] = ACTIONS(746), + [aux_sym__sym_qualified_token1] = ACTIONS(278), + [anon_sym_CARET] = ACTIONS(21), + [anon_sym_POUND_CARET] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(280), + [anon_sym_LBRACE] = ACTIONS(282), + [anon_sym_LBRACK] = ACTIONS(284), + [anon_sym_POUND] = ACTIONS(286), + [anon_sym_POUND_QMARK] = ACTIONS(288), + [anon_sym_POUND_QMARK_AT] = ACTIONS(290), + [anon_sym_POUND_SQUOTE] = ACTIONS(292), + [anon_sym_POUND_POUND] = ACTIONS(294), + [anon_sym_POUND_EQ] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [anon_sym_SQUOTE] = ACTIONS(300), + [anon_sym_BQUOTE] = ACTIONS(302), + [anon_sym_TILDE_AT] = ACTIONS(304), + [anon_sym_TILDE] = ACTIONS(306), + }, + [STATE(176)] = { + [sym__gap] = STATE(185), + [sym_dis_expr] = STATE(185), + [sym__form] = STATE(418), + [sym_kwd_lit] = STATE(418), + [sym_str_lit] = STATE(418), + [sym_sym_lit] = STATE(418), + [sym__metadata_lit] = STATE(424), + [sym_meta_lit] = STATE(312), + [sym_old_meta_lit] = STATE(315), + [sym_list_lit] = STATE(418), + [sym__bare_list_lit] = STATE(402), + [sym_map_lit] = STATE(418), + [sym__bare_map_lit] = STATE(403), + [sym_vec_lit] = STATE(418), + [sym__bare_vec_lit] = STATE(404), + [sym_set_lit] = STATE(418), + [sym__bare_set_lit] = STATE(405), + [sym_anon_fn_lit] = STATE(418), + [sym_regex_lit] = STATE(418), + [sym_read_cond_lit] = STATE(418), + [sym_splicing_read_cond_lit] = STATE(418), + [sym_ns_map_lit] = STATE(418), + [sym_var_quoting_lit] = STATE(418), + [sym_sym_val_lit] = STATE(418), + [sym_evaling_lit] = STATE(418), + [sym_tagged_or_ctor_lit] = STATE(418), + [sym_derefing_lit] = STATE(418), + [sym_quoting_lit] = STATE(418), + [sym_syn_quoting_lit] = STATE(418), + [sym_unquote_splicing_lit] = STATE(418), + [sym_unquoting_lit] = STATE(418), + [aux_sym_dis_expr_repeat1] = STATE(185), + [aux_sym_sym_lit_repeat1] = STATE(307), [sym__ws] = ACTIONS(824), [sym_comment] = ACTIONS(824), [anon_sym_POUND_] = ACTIONS(7), - [sym_num_lit] = ACTIONS(558), + [sym_num_lit] = ACTIONS(464), [anon_sym_SLASH] = ACTIONS(268), - [anon_sym_COLON] = ACTIONS(426), - [anon_sym_COLON_COLON] = ACTIONS(428), + [anon_sym_COLON] = ACTIONS(270), + [anon_sym_COLON_COLON] = ACTIONS(272), [aux_sym_str_lit_token1] = ACTIONS(274), - [sym_char_lit] = ACTIONS(558), - [sym_nil_lit] = ACTIONS(560), - [sym_bool_lit] = ACTIONS(560), + [sym_char_lit] = ACTIONS(464), + [sym_nil_lit] = ACTIONS(470), + [sym_bool_lit] = ACTIONS(470), + [aux_sym__sym_qualified_token1] = ACTIONS(278), + [anon_sym_CARET] = ACTIONS(21), + [anon_sym_POUND_CARET] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(280), + [anon_sym_LBRACE] = ACTIONS(282), + [anon_sym_LBRACK] = ACTIONS(284), + [anon_sym_POUND] = ACTIONS(286), + [anon_sym_POUND_QMARK] = ACTIONS(288), + [anon_sym_POUND_QMARK_AT] = ACTIONS(290), + [anon_sym_POUND_SQUOTE] = ACTIONS(292), + [anon_sym_POUND_POUND] = ACTIONS(294), + [anon_sym_POUND_EQ] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [anon_sym_SQUOTE] = ACTIONS(300), + [anon_sym_BQUOTE] = ACTIONS(302), + [anon_sym_TILDE_AT] = ACTIONS(304), + [anon_sym_TILDE] = ACTIONS(306), + }, + [STATE(177)] = { + [sym__gap] = STATE(186), + [sym_dis_expr] = STATE(186), + [sym__form] = STATE(419), + [sym_kwd_lit] = STATE(419), + [sym_str_lit] = STATE(419), + [sym_sym_lit] = STATE(419), + [sym__metadata_lit] = STATE(424), + [sym_meta_lit] = STATE(312), + [sym_old_meta_lit] = STATE(315), + [sym_list_lit] = STATE(419), + [sym__bare_list_lit] = STATE(402), + [sym_map_lit] = STATE(419), + [sym__bare_map_lit] = STATE(403), + [sym_vec_lit] = STATE(419), + [sym__bare_vec_lit] = STATE(404), + [sym_set_lit] = STATE(419), + [sym__bare_set_lit] = STATE(405), + [sym_anon_fn_lit] = STATE(419), + [sym_regex_lit] = STATE(419), + [sym_read_cond_lit] = STATE(419), + [sym_splicing_read_cond_lit] = STATE(419), + [sym_ns_map_lit] = STATE(419), + [sym_var_quoting_lit] = STATE(419), + [sym_sym_val_lit] = STATE(419), + [sym_evaling_lit] = STATE(419), + [sym_tagged_or_ctor_lit] = STATE(419), + [sym_derefing_lit] = STATE(419), + [sym_quoting_lit] = STATE(419), + [sym_syn_quoting_lit] = STATE(419), + [sym_unquote_splicing_lit] = STATE(419), + [sym_unquoting_lit] = STATE(419), + [aux_sym_dis_expr_repeat1] = STATE(186), + [aux_sym_sym_lit_repeat1] = STATE(307), + [sym__ws] = ACTIONS(826), + [sym_comment] = ACTIONS(826), + [anon_sym_POUND_] = ACTIONS(7), + [sym_num_lit] = ACTIONS(490), + [anon_sym_SLASH] = ACTIONS(268), + [anon_sym_COLON] = ACTIONS(270), + [anon_sym_COLON_COLON] = ACTIONS(272), + [aux_sym_str_lit_token1] = ACTIONS(274), + [sym_char_lit] = ACTIONS(490), + [sym_nil_lit] = ACTIONS(492), + [sym_bool_lit] = ACTIONS(492), + [aux_sym__sym_qualified_token1] = ACTIONS(278), + [anon_sym_CARET] = ACTIONS(21), + [anon_sym_POUND_CARET] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(280), + [anon_sym_LBRACE] = ACTIONS(282), + [anon_sym_LBRACK] = ACTIONS(284), + [anon_sym_POUND] = ACTIONS(286), + [anon_sym_POUND_QMARK] = ACTIONS(288), + [anon_sym_POUND_QMARK_AT] = ACTIONS(290), + [anon_sym_POUND_SQUOTE] = ACTIONS(292), + [anon_sym_POUND_POUND] = ACTIONS(294), + [anon_sym_POUND_EQ] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [anon_sym_SQUOTE] = ACTIONS(300), + [anon_sym_BQUOTE] = ACTIONS(302), + [anon_sym_TILDE_AT] = ACTIONS(304), + [anon_sym_TILDE] = ACTIONS(306), + }, + [STATE(178)] = { + [sym__gap] = STATE(187), + [sym_dis_expr] = STATE(187), + [sym__form] = STATE(337), + [sym_kwd_lit] = STATE(337), + [sym_str_lit] = STATE(337), + [sym_sym_lit] = STATE(337), + [sym__metadata_lit] = STATE(424), + [sym_meta_lit] = STATE(312), + [sym_old_meta_lit] = STATE(315), + [sym_list_lit] = STATE(337), + [sym__bare_list_lit] = STATE(402), + [sym_map_lit] = STATE(337), + [sym__bare_map_lit] = STATE(403), + [sym_vec_lit] = STATE(337), + [sym__bare_vec_lit] = STATE(404), + [sym_set_lit] = STATE(337), + [sym__bare_set_lit] = STATE(405), + [sym_anon_fn_lit] = STATE(337), + [sym_regex_lit] = STATE(337), + [sym_read_cond_lit] = STATE(337), + [sym_splicing_read_cond_lit] = STATE(337), + [sym_ns_map_lit] = STATE(337), + [sym_var_quoting_lit] = STATE(337), + [sym_sym_val_lit] = STATE(337), + [sym_evaling_lit] = STATE(337), + [sym_tagged_or_ctor_lit] = STATE(337), + [sym_derefing_lit] = STATE(337), + [sym_quoting_lit] = STATE(337), + [sym_syn_quoting_lit] = STATE(337), + [sym_unquote_splicing_lit] = STATE(337), + [sym_unquoting_lit] = STATE(337), + [aux_sym_dis_expr_repeat1] = STATE(187), + [aux_sym_sym_lit_repeat1] = STATE(307), + [sym__ws] = ACTIONS(828), + [sym_comment] = ACTIONS(828), + [anon_sym_POUND_] = ACTIONS(7), + [sym_num_lit] = ACTIONS(496), + [anon_sym_SLASH] = ACTIONS(268), + [anon_sym_COLON] = ACTIONS(270), + [anon_sym_COLON_COLON] = ACTIONS(272), + [aux_sym_str_lit_token1] = ACTIONS(274), + [sym_char_lit] = ACTIONS(496), + [sym_nil_lit] = ACTIONS(498), + [sym_bool_lit] = ACTIONS(498), + [aux_sym__sym_qualified_token1] = ACTIONS(278), + [anon_sym_CARET] = ACTIONS(21), + [anon_sym_POUND_CARET] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(280), + [anon_sym_LBRACE] = ACTIONS(282), + [anon_sym_LBRACK] = ACTIONS(284), + [anon_sym_POUND] = ACTIONS(286), + [anon_sym_POUND_QMARK] = ACTIONS(288), + [anon_sym_POUND_QMARK_AT] = ACTIONS(290), + [anon_sym_POUND_SQUOTE] = ACTIONS(292), + [anon_sym_POUND_POUND] = ACTIONS(294), + [anon_sym_POUND_EQ] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [anon_sym_SQUOTE] = ACTIONS(300), + [anon_sym_BQUOTE] = ACTIONS(302), + [anon_sym_TILDE_AT] = ACTIONS(304), + [anon_sym_TILDE] = ACTIONS(306), + }, + [STATE(179)] = { + [sym__gap] = STATE(188), + [sym_dis_expr] = STATE(188), + [sym__form] = STATE(364), + [sym_kwd_lit] = STATE(364), + [sym_str_lit] = STATE(364), + [sym_sym_lit] = STATE(364), + [sym__metadata_lit] = STATE(424), + [sym_meta_lit] = STATE(312), + [sym_old_meta_lit] = STATE(315), + [sym_list_lit] = STATE(364), + [sym__bare_list_lit] = STATE(402), + [sym_map_lit] = STATE(364), + [sym__bare_map_lit] = STATE(403), + [sym_vec_lit] = STATE(364), + [sym__bare_vec_lit] = STATE(404), + [sym_set_lit] = STATE(364), + [sym__bare_set_lit] = STATE(405), + [sym_anon_fn_lit] = STATE(364), + [sym_regex_lit] = STATE(364), + [sym_read_cond_lit] = STATE(364), + [sym_splicing_read_cond_lit] = STATE(364), + [sym_ns_map_lit] = STATE(364), + [sym_var_quoting_lit] = STATE(364), + [sym_sym_val_lit] = STATE(364), + [sym_evaling_lit] = STATE(364), + [sym_tagged_or_ctor_lit] = STATE(364), + [sym_derefing_lit] = STATE(364), + [sym_quoting_lit] = STATE(364), + [sym_syn_quoting_lit] = STATE(364), + [sym_unquote_splicing_lit] = STATE(364), + [sym_unquoting_lit] = STATE(364), + [aux_sym_dis_expr_repeat1] = STATE(188), + [aux_sym_sym_lit_repeat1] = STATE(307), + [sym__ws] = ACTIONS(830), + [sym_comment] = ACTIONS(830), + [anon_sym_POUND_] = ACTIONS(7), + [sym_num_lit] = ACTIONS(502), + [anon_sym_SLASH] = ACTIONS(268), + [anon_sym_COLON] = ACTIONS(270), + [anon_sym_COLON_COLON] = ACTIONS(272), + [aux_sym_str_lit_token1] = ACTIONS(274), + [sym_char_lit] = ACTIONS(502), + [sym_nil_lit] = ACTIONS(504), + [sym_bool_lit] = ACTIONS(504), [aux_sym__sym_qualified_token1] = ACTIONS(278), [anon_sym_CARET] = ACTIONS(21), [anon_sym_POUND_CARET] = ACTIONS(23), [anon_sym_LPAREN] = ACTIONS(280), [anon_sym_LBRACE] = ACTIONS(282), [anon_sym_LBRACK] = ACTIONS(284), - [anon_sym_POUND] = ACTIONS(430), + [anon_sym_POUND] = ACTIONS(286), [anon_sym_POUND_QMARK] = ACTIONS(288), [anon_sym_POUND_QMARK_AT] = ACTIONS(290), - [anon_sym_POUND_SQUOTE] = ACTIONS(432), - [anon_sym_POUND_POUND] = ACTIONS(434), + [anon_sym_POUND_SQUOTE] = ACTIONS(292), + [anon_sym_POUND_POUND] = ACTIONS(294), [anon_sym_POUND_EQ] = ACTIONS(296), - [anon_sym_AT] = ACTIONS(436), - [anon_sym_SQUOTE] = ACTIONS(438), - [anon_sym_BQUOTE] = ACTIONS(440), - [anon_sym_TILDE_AT] = ACTIONS(442), - [anon_sym_TILDE] = ACTIONS(444), + [anon_sym_AT] = ACTIONS(298), + [anon_sym_SQUOTE] = ACTIONS(300), + [anon_sym_BQUOTE] = ACTIONS(302), + [anon_sym_TILDE_AT] = ACTIONS(304), + [anon_sym_TILDE] = ACTIONS(306), }, - [178] = { - [sym__gap] = STATE(201), - [sym_dis_expr] = STATE(201), - [sym__form] = STATE(333), - [sym_kwd_lit] = STATE(333), - [sym_str_lit] = STATE(333), - [sym_sym_lit] = STATE(333), + [STATE(180)] = { + [sym__gap] = STATE(189), + [sym_dis_expr] = STATE(189), + [sym__form] = STATE(395), + [sym_kwd_lit] = STATE(395), + [sym_str_lit] = STATE(395), + [sym_sym_lit] = STATE(395), [sym__metadata_lit] = STATE(424), - [sym_meta_lit] = STATE(314), - [sym_old_meta_lit] = STATE(313), - [sym_list_lit] = STATE(333), - [sym__bare_list_lit] = STATE(392), - [sym_map_lit] = STATE(333), + [sym_meta_lit] = STATE(312), + [sym_old_meta_lit] = STATE(315), + [sym_list_lit] = STATE(395), + [sym__bare_list_lit] = STATE(402), + [sym_map_lit] = STATE(395), [sym__bare_map_lit] = STATE(403), - [sym_vec_lit] = STATE(333), - [sym__bare_vec_lit] = STATE(423), - [sym_set_lit] = STATE(333), - [sym__bare_set_lit] = STATE(374), - [sym_anon_fn_lit] = STATE(333), - [sym_regex_lit] = STATE(333), - [sym_read_cond_lit] = STATE(333), - [sym_splicing_read_cond_lit] = STATE(333), - [sym_ns_map_lit] = STATE(333), - [sym_var_quoting_lit] = STATE(333), - [sym_sym_val_lit] = STATE(333), - [sym_evaling_lit] = STATE(333), - [sym_tagged_or_ctor_lit] = STATE(333), - [sym_derefing_lit] = STATE(333), - [sym_quoting_lit] = STATE(333), - [sym_syn_quoting_lit] = STATE(333), - [sym_unquote_splicing_lit] = STATE(333), - [sym_unquoting_lit] = STATE(333), - [aux_sym_dis_expr_repeat1] = STATE(201), - [aux_sym_sym_lit_repeat1] = STATE(304), - [sym__ws] = ACTIONS(826), - [sym_comment] = ACTIONS(826), + [sym_vec_lit] = STATE(395), + [sym__bare_vec_lit] = STATE(404), + [sym_set_lit] = STATE(395), + [sym__bare_set_lit] = STATE(405), + [sym_anon_fn_lit] = STATE(395), + [sym_regex_lit] = STATE(395), + [sym_read_cond_lit] = STATE(395), + [sym_splicing_read_cond_lit] = STATE(395), + [sym_ns_map_lit] = STATE(395), + [sym_var_quoting_lit] = STATE(395), + [sym_sym_val_lit] = STATE(395), + [sym_evaling_lit] = STATE(395), + [sym_tagged_or_ctor_lit] = STATE(395), + [sym_derefing_lit] = STATE(395), + [sym_quoting_lit] = STATE(395), + [sym_syn_quoting_lit] = STATE(395), + [sym_unquote_splicing_lit] = STATE(395), + [sym_unquoting_lit] = STATE(395), + [aux_sym_dis_expr_repeat1] = STATE(189), + [aux_sym_sym_lit_repeat1] = STATE(307), + [sym__ws] = ACTIONS(832), + [sym_comment] = ACTIONS(832), [anon_sym_POUND_] = ACTIONS(7), - [sym_num_lit] = ACTIONS(558), + [sym_num_lit] = ACTIONS(508), [anon_sym_SLASH] = ACTIONS(268), [anon_sym_COLON] = ACTIONS(270), [anon_sym_COLON_COLON] = ACTIONS(272), [aux_sym_str_lit_token1] = ACTIONS(274), - [sym_char_lit] = ACTIONS(558), - [sym_nil_lit] = ACTIONS(560), - [sym_bool_lit] = ACTIONS(560), + [sym_char_lit] = ACTIONS(508), + [sym_nil_lit] = ACTIONS(510), + [sym_bool_lit] = ACTIONS(510), [aux_sym__sym_qualified_token1] = ACTIONS(278), [anon_sym_CARET] = ACTIONS(21), [anon_sym_POUND_CARET] = ACTIONS(23), @@ -14733,591 +14311,528 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE_AT] = ACTIONS(304), [anon_sym_TILDE] = ACTIONS(306), }, - [179] = { - [sym__gap] = STATE(301), - [sym_dis_expr] = STATE(301), - [sym__form] = STATE(332), - [sym_kwd_lit] = STATE(332), - [sym_str_lit] = STATE(332), - [sym_sym_lit] = STATE(332), + [STATE(181)] = { + [sym__gap] = STATE(190), + [sym_dis_expr] = STATE(190), + [sym__form] = STATE(408), + [sym_kwd_lit] = STATE(408), + [sym_str_lit] = STATE(408), + [sym_sym_lit] = STATE(408), [sym__metadata_lit] = STATE(424), - [sym_meta_lit] = STATE(314), - [sym_old_meta_lit] = STATE(313), - [sym_list_lit] = STATE(332), - [sym__bare_list_lit] = STATE(392), - [sym_map_lit] = STATE(332), + [sym_meta_lit] = STATE(312), + [sym_old_meta_lit] = STATE(315), + [sym_list_lit] = STATE(408), + [sym__bare_list_lit] = STATE(402), + [sym_map_lit] = STATE(408), [sym__bare_map_lit] = STATE(403), - [sym_vec_lit] = STATE(332), - [sym__bare_vec_lit] = STATE(423), - [sym_set_lit] = STATE(332), - [sym__bare_set_lit] = STATE(374), - [sym_anon_fn_lit] = STATE(332), - [sym_regex_lit] = STATE(332), - [sym_read_cond_lit] = STATE(332), - [sym_splicing_read_cond_lit] = STATE(332), - [sym_ns_map_lit] = STATE(332), - [sym_var_quoting_lit] = STATE(332), - [sym_sym_val_lit] = STATE(332), - [sym_evaling_lit] = STATE(332), - [sym_tagged_or_ctor_lit] = STATE(332), - [sym_derefing_lit] = STATE(332), - [sym_quoting_lit] = STATE(332), - [sym_syn_quoting_lit] = STATE(332), - [sym_unquote_splicing_lit] = STATE(332), - [sym_unquoting_lit] = STATE(332), - [aux_sym_dis_expr_repeat1] = STATE(301), - [aux_sym_sym_lit_repeat1] = STATE(306), - [sym__ws] = ACTIONS(264), - [sym_comment] = ACTIONS(264), + [sym_vec_lit] = STATE(408), + [sym__bare_vec_lit] = STATE(404), + [sym_set_lit] = STATE(408), + [sym__bare_set_lit] = STATE(405), + [sym_anon_fn_lit] = STATE(408), + [sym_regex_lit] = STATE(408), + [sym_read_cond_lit] = STATE(408), + [sym_splicing_read_cond_lit] = STATE(408), + [sym_ns_map_lit] = STATE(408), + [sym_var_quoting_lit] = STATE(408), + [sym_sym_val_lit] = STATE(408), + [sym_evaling_lit] = STATE(408), + [sym_tagged_or_ctor_lit] = STATE(408), + [sym_derefing_lit] = STATE(408), + [sym_quoting_lit] = STATE(408), + [sym_syn_quoting_lit] = STATE(408), + [sym_unquote_splicing_lit] = STATE(408), + [sym_unquoting_lit] = STATE(408), + [aux_sym_dis_expr_repeat1] = STATE(190), + [aux_sym_sym_lit_repeat1] = STATE(307), + [sym__ws] = ACTIONS(834), + [sym_comment] = ACTIONS(834), [anon_sym_POUND_] = ACTIONS(7), - [sym_num_lit] = ACTIONS(562), + [sym_num_lit] = ACTIONS(514), [anon_sym_SLASH] = ACTIONS(268), - [anon_sym_COLON] = ACTIONS(426), - [anon_sym_COLON_COLON] = ACTIONS(428), + [anon_sym_COLON] = ACTIONS(270), + [anon_sym_COLON_COLON] = ACTIONS(272), [aux_sym_str_lit_token1] = ACTIONS(274), - [sym_char_lit] = ACTIONS(562), - [sym_nil_lit] = ACTIONS(564), - [sym_bool_lit] = ACTIONS(564), + [sym_char_lit] = ACTIONS(514), + [sym_nil_lit] = ACTIONS(516), + [sym_bool_lit] = ACTIONS(516), [aux_sym__sym_qualified_token1] = ACTIONS(278), [anon_sym_CARET] = ACTIONS(21), [anon_sym_POUND_CARET] = ACTIONS(23), [anon_sym_LPAREN] = ACTIONS(280), [anon_sym_LBRACE] = ACTIONS(282), [anon_sym_LBRACK] = ACTIONS(284), - [anon_sym_POUND] = ACTIONS(430), + [anon_sym_POUND] = ACTIONS(286), [anon_sym_POUND_QMARK] = ACTIONS(288), [anon_sym_POUND_QMARK_AT] = ACTIONS(290), - [anon_sym_POUND_SQUOTE] = ACTIONS(432), - [anon_sym_POUND_POUND] = ACTIONS(434), + [anon_sym_POUND_SQUOTE] = ACTIONS(292), + [anon_sym_POUND_POUND] = ACTIONS(294), [anon_sym_POUND_EQ] = ACTIONS(296), - [anon_sym_AT] = ACTIONS(436), - [anon_sym_SQUOTE] = ACTIONS(438), - [anon_sym_BQUOTE] = ACTIONS(440), - [anon_sym_TILDE_AT] = ACTIONS(442), - [anon_sym_TILDE] = ACTIONS(444), - }, - [180] = { - [sym__gap] = STATE(179), - [sym_dis_expr] = STATE(179), - [sym__form] = STATE(331), - [sym_kwd_lit] = STATE(331), - [sym_str_lit] = STATE(331), - [sym_sym_lit] = STATE(331), + [anon_sym_AT] = ACTIONS(298), + [anon_sym_SQUOTE] = ACTIONS(300), + [anon_sym_BQUOTE] = ACTIONS(302), + [anon_sym_TILDE_AT] = ACTIONS(304), + [anon_sym_TILDE] = ACTIONS(306), + }, + [STATE(182)] = { + [sym__gap] = STATE(191), + [sym_dis_expr] = STATE(191), + [sym__form] = STATE(336), + [sym_kwd_lit] = STATE(336), + [sym_str_lit] = STATE(336), + [sym_sym_lit] = STATE(336), [sym__metadata_lit] = STATE(424), - [sym_meta_lit] = STATE(314), - [sym_old_meta_lit] = STATE(313), - [sym_list_lit] = STATE(331), - [sym__bare_list_lit] = STATE(392), - [sym_map_lit] = STATE(331), + [sym_meta_lit] = STATE(312), + [sym_old_meta_lit] = STATE(315), + [sym_list_lit] = STATE(336), + [sym__bare_list_lit] = STATE(402), + [sym_map_lit] = STATE(336), [sym__bare_map_lit] = STATE(403), - [sym_vec_lit] = STATE(331), - [sym__bare_vec_lit] = STATE(423), - [sym_set_lit] = STATE(331), - [sym__bare_set_lit] = STATE(374), - [sym_anon_fn_lit] = STATE(331), - [sym_regex_lit] = STATE(331), - [sym_read_cond_lit] = STATE(331), - [sym_splicing_read_cond_lit] = STATE(331), - [sym_ns_map_lit] = STATE(331), - [sym_var_quoting_lit] = STATE(331), - [sym_sym_val_lit] = STATE(331), - [sym_evaling_lit] = STATE(331), - [sym_tagged_or_ctor_lit] = STATE(331), - [sym_derefing_lit] = STATE(331), - [sym_quoting_lit] = STATE(331), - [sym_syn_quoting_lit] = STATE(331), - [sym_unquote_splicing_lit] = STATE(331), - [sym_unquoting_lit] = STATE(331), - [aux_sym_dis_expr_repeat1] = STATE(179), - [aux_sym_sym_lit_repeat1] = STATE(306), - [sym__ws] = ACTIONS(828), - [sym_comment] = ACTIONS(828), + [sym_vec_lit] = STATE(336), + [sym__bare_vec_lit] = STATE(404), + [sym_set_lit] = STATE(336), + [sym__bare_set_lit] = STATE(405), + [sym_anon_fn_lit] = STATE(336), + [sym_regex_lit] = STATE(336), + [sym_read_cond_lit] = STATE(336), + [sym_splicing_read_cond_lit] = STATE(336), + [sym_ns_map_lit] = STATE(336), + [sym_var_quoting_lit] = STATE(336), + [sym_sym_val_lit] = STATE(336), + [sym_evaling_lit] = STATE(336), + [sym_tagged_or_ctor_lit] = STATE(336), + [sym_derefing_lit] = STATE(336), + [sym_quoting_lit] = STATE(336), + [sym_syn_quoting_lit] = STATE(336), + [sym_unquote_splicing_lit] = STATE(336), + [sym_unquoting_lit] = STATE(336), + [aux_sym_dis_expr_repeat1] = STATE(191), + [aux_sym_sym_lit_repeat1] = STATE(307), + [sym__ws] = ACTIONS(836), + [sym_comment] = ACTIONS(836), [anon_sym_POUND_] = ACTIONS(7), - [sym_num_lit] = ACTIONS(572), + [sym_num_lit] = ACTIONS(520), [anon_sym_SLASH] = ACTIONS(268), - [anon_sym_COLON] = ACTIONS(426), - [anon_sym_COLON_COLON] = ACTIONS(428), + [anon_sym_COLON] = ACTIONS(270), + [anon_sym_COLON_COLON] = ACTIONS(272), [aux_sym_str_lit_token1] = ACTIONS(274), - [sym_char_lit] = ACTIONS(572), - [sym_nil_lit] = ACTIONS(574), - [sym_bool_lit] = ACTIONS(574), + [sym_char_lit] = ACTIONS(520), + [sym_nil_lit] = ACTIONS(522), + [sym_bool_lit] = ACTIONS(522), [aux_sym__sym_qualified_token1] = ACTIONS(278), [anon_sym_CARET] = ACTIONS(21), [anon_sym_POUND_CARET] = ACTIONS(23), [anon_sym_LPAREN] = ACTIONS(280), [anon_sym_LBRACE] = ACTIONS(282), [anon_sym_LBRACK] = ACTIONS(284), - [anon_sym_POUND] = ACTIONS(430), + [anon_sym_POUND] = ACTIONS(286), [anon_sym_POUND_QMARK] = ACTIONS(288), [anon_sym_POUND_QMARK_AT] = ACTIONS(290), - [anon_sym_POUND_SQUOTE] = ACTIONS(432), - [anon_sym_POUND_POUND] = ACTIONS(434), + [anon_sym_POUND_SQUOTE] = ACTIONS(292), + [anon_sym_POUND_POUND] = ACTIONS(294), [anon_sym_POUND_EQ] = ACTIONS(296), - [anon_sym_AT] = ACTIONS(436), - [anon_sym_SQUOTE] = ACTIONS(438), - [anon_sym_BQUOTE] = ACTIONS(440), - [anon_sym_TILDE_AT] = ACTIONS(442), - [anon_sym_TILDE] = ACTIONS(444), + [anon_sym_AT] = ACTIONS(298), + [anon_sym_SQUOTE] = ACTIONS(300), + [anon_sym_BQUOTE] = ACTIONS(302), + [anon_sym_TILDE_AT] = ACTIONS(304), + [anon_sym_TILDE] = ACTIONS(306), }, - [181] = { + [STATE(183)] = { [sym__gap] = STATE(301), [sym_dis_expr] = STATE(301), - [sym__form] = STATE(329), - [sym_kwd_lit] = STATE(329), - [sym_str_lit] = STATE(329), - [sym_sym_lit] = STATE(329), + [sym__form] = STATE(377), + [sym_kwd_lit] = STATE(377), + [sym_str_lit] = STATE(377), + [sym_sym_lit] = STATE(377), [sym__metadata_lit] = STATE(424), - [sym_meta_lit] = STATE(314), - [sym_old_meta_lit] = STATE(313), - [sym_list_lit] = STATE(329), - [sym__bare_list_lit] = STATE(392), - [sym_map_lit] = STATE(329), + [sym_meta_lit] = STATE(312), + [sym_old_meta_lit] = STATE(315), + [sym_list_lit] = STATE(377), + [sym__bare_list_lit] = STATE(402), + [sym_map_lit] = STATE(377), [sym__bare_map_lit] = STATE(403), - [sym_vec_lit] = STATE(329), - [sym__bare_vec_lit] = STATE(423), - [sym_set_lit] = STATE(329), - [sym__bare_set_lit] = STATE(374), - [sym_anon_fn_lit] = STATE(329), - [sym_regex_lit] = STATE(329), - [sym_read_cond_lit] = STATE(329), - [sym_splicing_read_cond_lit] = STATE(329), - [sym_ns_map_lit] = STATE(329), - [sym_var_quoting_lit] = STATE(329), - [sym_sym_val_lit] = STATE(329), - [sym_evaling_lit] = STATE(329), - [sym_tagged_or_ctor_lit] = STATE(329), - [sym_derefing_lit] = STATE(329), - [sym_quoting_lit] = STATE(329), - [sym_syn_quoting_lit] = STATE(329), - [sym_unquote_splicing_lit] = STATE(329), - [sym_unquoting_lit] = STATE(329), + [sym_vec_lit] = STATE(377), + [sym__bare_vec_lit] = STATE(404), + [sym_set_lit] = STATE(377), + [sym__bare_set_lit] = STATE(405), + [sym_anon_fn_lit] = STATE(377), + [sym_regex_lit] = STATE(377), + [sym_read_cond_lit] = STATE(377), + [sym_splicing_read_cond_lit] = STATE(377), + [sym_ns_map_lit] = STATE(377), + [sym_var_quoting_lit] = STATE(377), + [sym_sym_val_lit] = STATE(377), + [sym_evaling_lit] = STATE(377), + [sym_tagged_or_ctor_lit] = STATE(377), + [sym_derefing_lit] = STATE(377), + [sym_quoting_lit] = STATE(377), + [sym_syn_quoting_lit] = STATE(377), + [sym_unquote_splicing_lit] = STATE(377), + [sym_unquoting_lit] = STATE(377), [aux_sym_dis_expr_repeat1] = STATE(301), [aux_sym_sym_lit_repeat1] = STATE(306), - [sym__ws] = ACTIONS(264), - [sym_comment] = ACTIONS(264), + [sym__ws] = ACTIONS(320), + [sym_comment] = ACTIONS(320), [anon_sym_POUND_] = ACTIONS(7), - [sym_num_lit] = ACTIONS(580), + [sym_num_lit] = ACTIONS(524), [anon_sym_SLASH] = ACTIONS(268), - [anon_sym_COLON] = ACTIONS(426), - [anon_sym_COLON_COLON] = ACTIONS(428), + [anon_sym_COLON] = ACTIONS(466), + [anon_sym_COLON_COLON] = ACTIONS(468), [aux_sym_str_lit_token1] = ACTIONS(274), - [sym_char_lit] = ACTIONS(580), - [sym_nil_lit] = ACTIONS(582), - [sym_bool_lit] = ACTIONS(582), + [sym_char_lit] = ACTIONS(524), + [sym_nil_lit] = ACTIONS(530), + [sym_bool_lit] = ACTIONS(530), [aux_sym__sym_qualified_token1] = ACTIONS(278), [anon_sym_CARET] = ACTIONS(21), [anon_sym_POUND_CARET] = ACTIONS(23), [anon_sym_LPAREN] = ACTIONS(280), [anon_sym_LBRACE] = ACTIONS(282), [anon_sym_LBRACK] = ACTIONS(284), - [anon_sym_POUND] = ACTIONS(430), + [anon_sym_POUND] = ACTIONS(472), [anon_sym_POUND_QMARK] = ACTIONS(288), [anon_sym_POUND_QMARK_AT] = ACTIONS(290), - [anon_sym_POUND_SQUOTE] = ACTIONS(432), - [anon_sym_POUND_POUND] = ACTIONS(434), + [anon_sym_POUND_SQUOTE] = ACTIONS(474), + [anon_sym_POUND_POUND] = ACTIONS(476), [anon_sym_POUND_EQ] = ACTIONS(296), - [anon_sym_AT] = ACTIONS(436), - [anon_sym_SQUOTE] = ACTIONS(438), - [anon_sym_BQUOTE] = ACTIONS(440), - [anon_sym_TILDE_AT] = ACTIONS(442), - [anon_sym_TILDE] = ACTIONS(444), + [anon_sym_AT] = ACTIONS(478), + [anon_sym_SQUOTE] = ACTIONS(480), + [anon_sym_BQUOTE] = ACTIONS(482), + [anon_sym_TILDE_AT] = ACTIONS(484), + [anon_sym_TILDE] = ACTIONS(486), }, - [182] = { - [sym__gap] = STATE(301), - [sym_dis_expr] = STATE(301), - [sym__form] = STATE(327), - [sym_kwd_lit] = STATE(327), - [sym_str_lit] = STATE(327), - [sym_sym_lit] = STATE(327), + [STATE(184)] = { + [sym__gap] = STATE(198), + [sym_dis_expr] = STATE(198), + [sym__form] = STATE(335), + [sym_kwd_lit] = STATE(335), + [sym_str_lit] = STATE(335), + [sym_sym_lit] = STATE(335), [sym__metadata_lit] = STATE(424), - [sym_meta_lit] = STATE(314), - [sym_old_meta_lit] = STATE(313), - [sym_list_lit] = STATE(327), - [sym__bare_list_lit] = STATE(392), - [sym_map_lit] = STATE(327), + [sym_meta_lit] = STATE(312), + [sym_old_meta_lit] = STATE(315), + [sym_list_lit] = STATE(335), + [sym__bare_list_lit] = STATE(402), + [sym_map_lit] = STATE(335), [sym__bare_map_lit] = STATE(403), - [sym_vec_lit] = STATE(327), - [sym__bare_vec_lit] = STATE(423), - [sym_set_lit] = STATE(327), - [sym__bare_set_lit] = STATE(374), - [sym_anon_fn_lit] = STATE(327), - [sym_regex_lit] = STATE(327), - [sym_read_cond_lit] = STATE(327), - [sym_splicing_read_cond_lit] = STATE(327), - [sym_ns_map_lit] = STATE(327), - [sym_var_quoting_lit] = STATE(327), - [sym_sym_val_lit] = STATE(327), - [sym_evaling_lit] = STATE(327), - [sym_tagged_or_ctor_lit] = STATE(327), - [sym_derefing_lit] = STATE(327), - [sym_quoting_lit] = STATE(327), - [sym_syn_quoting_lit] = STATE(327), - [sym_unquote_splicing_lit] = STATE(327), - [sym_unquoting_lit] = STATE(327), - [aux_sym_dis_expr_repeat1] = STATE(301), - [aux_sym_sym_lit_repeat1] = STATE(306), - [sym__ws] = ACTIONS(264), - [sym_comment] = ACTIONS(264), + [sym_vec_lit] = STATE(335), + [sym__bare_vec_lit] = STATE(404), + [sym_set_lit] = STATE(335), + [sym__bare_set_lit] = STATE(405), + [sym_anon_fn_lit] = STATE(335), + [sym_regex_lit] = STATE(335), + [sym_read_cond_lit] = STATE(335), + [sym_splicing_read_cond_lit] = STATE(335), + [sym_ns_map_lit] = STATE(335), + [sym_var_quoting_lit] = STATE(335), + [sym_sym_val_lit] = STATE(335), + [sym_evaling_lit] = STATE(335), + [sym_tagged_or_ctor_lit] = STATE(335), + [sym_derefing_lit] = STATE(335), + [sym_quoting_lit] = STATE(335), + [sym_syn_quoting_lit] = STATE(335), + [sym_unquote_splicing_lit] = STATE(335), + [sym_unquoting_lit] = STATE(335), + [aux_sym_dis_expr_repeat1] = STATE(198), + [aux_sym_sym_lit_repeat1] = STATE(307), + [sym__ws] = ACTIONS(838), + [sym_comment] = ACTIONS(838), [anon_sym_POUND_] = ACTIONS(7), - [sym_num_lit] = ACTIONS(588), + [sym_num_lit] = ACTIONS(550), [anon_sym_SLASH] = ACTIONS(268), - [anon_sym_COLON] = ACTIONS(426), - [anon_sym_COLON_COLON] = ACTIONS(428), + [anon_sym_COLON] = ACTIONS(270), + [anon_sym_COLON_COLON] = ACTIONS(272), [aux_sym_str_lit_token1] = ACTIONS(274), - [sym_char_lit] = ACTIONS(588), - [sym_nil_lit] = ACTIONS(590), - [sym_bool_lit] = ACTIONS(590), + [sym_char_lit] = ACTIONS(550), + [sym_nil_lit] = ACTIONS(552), + [sym_bool_lit] = ACTIONS(552), [aux_sym__sym_qualified_token1] = ACTIONS(278), [anon_sym_CARET] = ACTIONS(21), [anon_sym_POUND_CARET] = ACTIONS(23), [anon_sym_LPAREN] = ACTIONS(280), [anon_sym_LBRACE] = ACTIONS(282), [anon_sym_LBRACK] = ACTIONS(284), - [anon_sym_POUND] = ACTIONS(430), + [anon_sym_POUND] = ACTIONS(286), [anon_sym_POUND_QMARK] = ACTIONS(288), [anon_sym_POUND_QMARK_AT] = ACTIONS(290), - [anon_sym_POUND_SQUOTE] = ACTIONS(432), - [anon_sym_POUND_POUND] = ACTIONS(434), + [anon_sym_POUND_SQUOTE] = ACTIONS(292), + [anon_sym_POUND_POUND] = ACTIONS(294), [anon_sym_POUND_EQ] = ACTIONS(296), - [anon_sym_AT] = ACTIONS(436), - [anon_sym_SQUOTE] = ACTIONS(438), - [anon_sym_BQUOTE] = ACTIONS(440), - [anon_sym_TILDE_AT] = ACTIONS(442), - [anon_sym_TILDE] = ACTIONS(444), - }, - [183] = { - [sym__gap] = STATE(301), - [sym_dis_expr] = STATE(301), - [sym__form] = STATE(288), - [sym_kwd_lit] = STATE(288), - [sym_str_lit] = STATE(288), - [sym_sym_lit] = STATE(288), - [sym__metadata_lit] = STATE(424), - [sym_meta_lit] = STATE(314), - [sym_old_meta_lit] = STATE(313), - [sym_list_lit] = STATE(288), - [sym__bare_list_lit] = STATE(218), - [sym_map_lit] = STATE(288), - [sym__bare_map_lit] = STATE(219), - [sym_vec_lit] = STATE(288), - [sym__bare_vec_lit] = STATE(226), - [sym_set_lit] = STATE(288), - [sym__bare_set_lit] = STATE(227), - [sym_anon_fn_lit] = STATE(288), - [sym_regex_lit] = STATE(288), - [sym_read_cond_lit] = STATE(288), - [sym_splicing_read_cond_lit] = STATE(288), - [sym_ns_map_lit] = STATE(288), - [sym_var_quoting_lit] = STATE(288), - [sym_sym_val_lit] = STATE(288), - [sym_evaling_lit] = STATE(288), - [sym_tagged_or_ctor_lit] = STATE(288), - [sym_derefing_lit] = STATE(288), - [sym_quoting_lit] = STATE(288), - [sym_syn_quoting_lit] = STATE(288), - [sym_unquote_splicing_lit] = STATE(288), - [sym_unquoting_lit] = STATE(288), - [aux_sym_dis_expr_repeat1] = STATE(301), - [aux_sym_sym_lit_repeat1] = STATE(305), - [sym__ws] = ACTIONS(264), - [sym_comment] = ACTIONS(264), - [anon_sym_POUND_] = ACTIONS(7), - [sym_num_lit] = ACTIONS(736), - [anon_sym_SLASH] = ACTIONS(9), - [anon_sym_COLON] = ACTIONS(11), - [anon_sym_COLON_COLON] = ACTIONS(13), - [aux_sym_str_lit_token1] = ACTIONS(15), - [sym_char_lit] = ACTIONS(736), - [sym_nil_lit] = ACTIONS(738), - [sym_bool_lit] = ACTIONS(738), - [aux_sym__sym_qualified_token1] = ACTIONS(19), - [anon_sym_CARET] = ACTIONS(21), - [anon_sym_POUND_CARET] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_LBRACK] = 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_TILDE_AT] = ACTIONS(49), - [anon_sym_TILDE] = ACTIONS(51), + [anon_sym_AT] = ACTIONS(298), + [anon_sym_SQUOTE] = ACTIONS(300), + [anon_sym_BQUOTE] = ACTIONS(302), + [anon_sym_TILDE_AT] = ACTIONS(304), + [anon_sym_TILDE] = ACTIONS(306), }, - [184] = { + [STATE(185)] = { [sym__gap] = STATE(301), [sym_dis_expr] = STATE(301), - [sym__form] = STATE(411), - [sym_kwd_lit] = STATE(411), - [sym_str_lit] = STATE(411), - [sym_sym_lit] = STATE(411), + [sym__form] = STATE(340), + [sym_kwd_lit] = STATE(340), + [sym_str_lit] = STATE(340), + [sym_sym_lit] = STATE(340), [sym__metadata_lit] = STATE(424), - [sym_meta_lit] = STATE(314), - [sym_old_meta_lit] = STATE(313), - [sym_list_lit] = STATE(411), - [sym__bare_list_lit] = STATE(392), - [sym_map_lit] = STATE(411), + [sym_meta_lit] = STATE(312), + [sym_old_meta_lit] = STATE(315), + [sym_list_lit] = STATE(340), + [sym__bare_list_lit] = STATE(402), + [sym_map_lit] = STATE(340), [sym__bare_map_lit] = STATE(403), - [sym_vec_lit] = STATE(411), - [sym__bare_vec_lit] = STATE(423), - [sym_set_lit] = STATE(411), - [sym__bare_set_lit] = STATE(374), - [sym_anon_fn_lit] = STATE(411), - [sym_regex_lit] = STATE(411), - [sym_read_cond_lit] = STATE(411), - [sym_splicing_read_cond_lit] = STATE(411), - [sym_ns_map_lit] = STATE(411), - [sym_var_quoting_lit] = STATE(411), - [sym_sym_val_lit] = STATE(411), - [sym_evaling_lit] = STATE(411), - [sym_tagged_or_ctor_lit] = STATE(411), - [sym_derefing_lit] = STATE(411), - [sym_quoting_lit] = STATE(411), - [sym_syn_quoting_lit] = STATE(411), - [sym_unquote_splicing_lit] = STATE(411), - [sym_unquoting_lit] = STATE(411), + [sym_vec_lit] = STATE(340), + [sym__bare_vec_lit] = STATE(404), + [sym_set_lit] = STATE(340), + [sym__bare_set_lit] = STATE(405), + [sym_anon_fn_lit] = STATE(340), + [sym_regex_lit] = STATE(340), + [sym_read_cond_lit] = STATE(340), + [sym_splicing_read_cond_lit] = STATE(340), + [sym_ns_map_lit] = STATE(340), + [sym_var_quoting_lit] = STATE(340), + [sym_sym_val_lit] = STATE(340), + [sym_evaling_lit] = STATE(340), + [sym_tagged_or_ctor_lit] = STATE(340), + [sym_derefing_lit] = STATE(340), + [sym_quoting_lit] = STATE(340), + [sym_syn_quoting_lit] = STATE(340), + [sym_unquote_splicing_lit] = STATE(340), + [sym_unquoting_lit] = STATE(340), [aux_sym_dis_expr_repeat1] = STATE(301), - [aux_sym_sym_lit_repeat1] = STATE(306), - [sym__ws] = ACTIONS(264), - [sym_comment] = ACTIONS(264), + [aux_sym_sym_lit_repeat1] = STATE(307), + [sym__ws] = ACTIONS(320), + [sym_comment] = ACTIONS(320), [anon_sym_POUND_] = ACTIONS(7), - [sym_num_lit] = ACTIONS(596), + [sym_num_lit] = ACTIONS(554), [anon_sym_SLASH] = ACTIONS(268), - [anon_sym_COLON] = ACTIONS(426), - [anon_sym_COLON_COLON] = ACTIONS(428), + [anon_sym_COLON] = ACTIONS(270), + [anon_sym_COLON_COLON] = ACTIONS(272), [aux_sym_str_lit_token1] = ACTIONS(274), - [sym_char_lit] = ACTIONS(596), - [sym_nil_lit] = ACTIONS(598), - [sym_bool_lit] = ACTIONS(598), + [sym_char_lit] = ACTIONS(554), + [sym_nil_lit] = ACTIONS(556), + [sym_bool_lit] = ACTIONS(556), [aux_sym__sym_qualified_token1] = ACTIONS(278), [anon_sym_CARET] = ACTIONS(21), [anon_sym_POUND_CARET] = ACTIONS(23), [anon_sym_LPAREN] = ACTIONS(280), [anon_sym_LBRACE] = ACTIONS(282), [anon_sym_LBRACK] = ACTIONS(284), - [anon_sym_POUND] = ACTIONS(430), + [anon_sym_POUND] = ACTIONS(286), [anon_sym_POUND_QMARK] = ACTIONS(288), [anon_sym_POUND_QMARK_AT] = ACTIONS(290), - [anon_sym_POUND_SQUOTE] = ACTIONS(432), - [anon_sym_POUND_POUND] = ACTIONS(434), + [anon_sym_POUND_SQUOTE] = ACTIONS(292), + [anon_sym_POUND_POUND] = ACTIONS(294), [anon_sym_POUND_EQ] = ACTIONS(296), - [anon_sym_AT] = ACTIONS(436), - [anon_sym_SQUOTE] = ACTIONS(438), - [anon_sym_BQUOTE] = ACTIONS(440), - [anon_sym_TILDE_AT] = ACTIONS(442), - [anon_sym_TILDE] = ACTIONS(444), + [anon_sym_AT] = ACTIONS(298), + [anon_sym_SQUOTE] = ACTIONS(300), + [anon_sym_BQUOTE] = ACTIONS(302), + [anon_sym_TILDE_AT] = ACTIONS(304), + [anon_sym_TILDE] = ACTIONS(306), }, - [185] = { + [STATE(186)] = { [sym__gap] = STATE(301), [sym_dis_expr] = STATE(301), - [sym__form] = STATE(385), - [sym_kwd_lit] = STATE(385), - [sym_str_lit] = STATE(385), - [sym_sym_lit] = STATE(385), + [sym__form] = STATE(341), + [sym_kwd_lit] = STATE(341), + [sym_str_lit] = STATE(341), + [sym_sym_lit] = STATE(341), [sym__metadata_lit] = STATE(424), - [sym_meta_lit] = STATE(314), - [sym_old_meta_lit] = STATE(313), - [sym_list_lit] = STATE(385), - [sym__bare_list_lit] = STATE(392), - [sym_map_lit] = STATE(385), + [sym_meta_lit] = STATE(312), + [sym_old_meta_lit] = STATE(315), + [sym_list_lit] = STATE(341), + [sym__bare_list_lit] = STATE(402), + [sym_map_lit] = STATE(341), [sym__bare_map_lit] = STATE(403), - [sym_vec_lit] = STATE(385), - [sym__bare_vec_lit] = STATE(423), - [sym_set_lit] = STATE(385), - [sym__bare_set_lit] = STATE(374), - [sym_anon_fn_lit] = STATE(385), - [sym_regex_lit] = STATE(385), - [sym_read_cond_lit] = STATE(385), - [sym_splicing_read_cond_lit] = STATE(385), - [sym_ns_map_lit] = STATE(385), - [sym_var_quoting_lit] = STATE(385), - [sym_sym_val_lit] = STATE(385), - [sym_evaling_lit] = STATE(385), - [sym_tagged_or_ctor_lit] = STATE(385), - [sym_derefing_lit] = STATE(385), - [sym_quoting_lit] = STATE(385), - [sym_syn_quoting_lit] = STATE(385), - [sym_unquote_splicing_lit] = STATE(385), - [sym_unquoting_lit] = STATE(385), + [sym_vec_lit] = STATE(341), + [sym__bare_vec_lit] = STATE(404), + [sym_set_lit] = STATE(341), + [sym__bare_set_lit] = STATE(405), + [sym_anon_fn_lit] = STATE(341), + [sym_regex_lit] = STATE(341), + [sym_read_cond_lit] = STATE(341), + [sym_splicing_read_cond_lit] = STATE(341), + [sym_ns_map_lit] = STATE(341), + [sym_var_quoting_lit] = STATE(341), + [sym_sym_val_lit] = STATE(341), + [sym_evaling_lit] = STATE(341), + [sym_tagged_or_ctor_lit] = STATE(341), + [sym_derefing_lit] = STATE(341), + [sym_quoting_lit] = STATE(341), + [sym_syn_quoting_lit] = STATE(341), + [sym_unquote_splicing_lit] = STATE(341), + [sym_unquoting_lit] = STATE(341), [aux_sym_dis_expr_repeat1] = STATE(301), - [aux_sym_sym_lit_repeat1] = STATE(306), - [sym__ws] = ACTIONS(264), - [sym_comment] = ACTIONS(264), + [aux_sym_sym_lit_repeat1] = STATE(307), + [sym__ws] = ACTIONS(320), + [sym_comment] = ACTIONS(320), [anon_sym_POUND_] = ACTIONS(7), - [sym_num_lit] = ACTIONS(604), + [sym_num_lit] = ACTIONS(558), [anon_sym_SLASH] = ACTIONS(268), - [anon_sym_COLON] = ACTIONS(426), - [anon_sym_COLON_COLON] = ACTIONS(428), + [anon_sym_COLON] = ACTIONS(270), + [anon_sym_COLON_COLON] = ACTIONS(272), [aux_sym_str_lit_token1] = ACTIONS(274), - [sym_char_lit] = ACTIONS(604), - [sym_nil_lit] = ACTIONS(606), - [sym_bool_lit] = ACTIONS(606), + [sym_char_lit] = ACTIONS(558), + [sym_nil_lit] = ACTIONS(560), + [sym_bool_lit] = ACTIONS(560), [aux_sym__sym_qualified_token1] = ACTIONS(278), [anon_sym_CARET] = ACTIONS(21), [anon_sym_POUND_CARET] = ACTIONS(23), [anon_sym_LPAREN] = ACTIONS(280), [anon_sym_LBRACE] = ACTIONS(282), [anon_sym_LBRACK] = ACTIONS(284), - [anon_sym_POUND] = ACTIONS(430), + [anon_sym_POUND] = ACTIONS(286), [anon_sym_POUND_QMARK] = ACTIONS(288), [anon_sym_POUND_QMARK_AT] = ACTIONS(290), - [anon_sym_POUND_SQUOTE] = ACTIONS(432), - [anon_sym_POUND_POUND] = ACTIONS(434), + [anon_sym_POUND_SQUOTE] = ACTIONS(292), + [anon_sym_POUND_POUND] = ACTIONS(294), [anon_sym_POUND_EQ] = ACTIONS(296), - [anon_sym_AT] = ACTIONS(436), - [anon_sym_SQUOTE] = ACTIONS(438), - [anon_sym_BQUOTE] = ACTIONS(440), - [anon_sym_TILDE_AT] = ACTIONS(442), - [anon_sym_TILDE] = ACTIONS(444), + [anon_sym_AT] = ACTIONS(298), + [anon_sym_SQUOTE] = ACTIONS(300), + [anon_sym_BQUOTE] = ACTIONS(302), + [anon_sym_TILDE_AT] = ACTIONS(304), + [anon_sym_TILDE] = ACTIONS(306), }, - [186] = { + [STATE(187)] = { [sym__gap] = STATE(301), [sym_dis_expr] = STATE(301), - [sym__form] = STATE(335), - [sym_kwd_lit] = STATE(335), - [sym_str_lit] = STATE(335), - [sym_sym_lit] = STATE(335), + [sym__form] = STATE(343), + [sym_kwd_lit] = STATE(343), + [sym_str_lit] = STATE(343), + [sym_sym_lit] = STATE(343), [sym__metadata_lit] = STATE(424), - [sym_meta_lit] = STATE(314), - [sym_old_meta_lit] = STATE(313), - [sym_list_lit] = STATE(335), - [sym__bare_list_lit] = STATE(392), - [sym_map_lit] = STATE(335), + [sym_meta_lit] = STATE(312), + [sym_old_meta_lit] = STATE(315), + [sym_list_lit] = STATE(343), + [sym__bare_list_lit] = STATE(402), + [sym_map_lit] = STATE(343), [sym__bare_map_lit] = STATE(403), - [sym_vec_lit] = STATE(335), - [sym__bare_vec_lit] = STATE(423), - [sym_set_lit] = STATE(335), - [sym__bare_set_lit] = STATE(374), - [sym_anon_fn_lit] = STATE(335), - [sym_regex_lit] = STATE(335), - [sym_read_cond_lit] = STATE(335), - [sym_splicing_read_cond_lit] = STATE(335), - [sym_ns_map_lit] = STATE(335), - [sym_var_quoting_lit] = STATE(335), - [sym_sym_val_lit] = STATE(335), - [sym_evaling_lit] = STATE(335), - [sym_tagged_or_ctor_lit] = STATE(335), - [sym_derefing_lit] = STATE(335), - [sym_quoting_lit] = STATE(335), - [sym_syn_quoting_lit] = STATE(335), - [sym_unquote_splicing_lit] = STATE(335), - [sym_unquoting_lit] = STATE(335), + [sym_vec_lit] = STATE(343), + [sym__bare_vec_lit] = STATE(404), + [sym_set_lit] = STATE(343), + [sym__bare_set_lit] = STATE(405), + [sym_anon_fn_lit] = STATE(343), + [sym_regex_lit] = STATE(343), + [sym_read_cond_lit] = STATE(343), + [sym_splicing_read_cond_lit] = STATE(343), + [sym_ns_map_lit] = STATE(343), + [sym_var_quoting_lit] = STATE(343), + [sym_sym_val_lit] = STATE(343), + [sym_evaling_lit] = STATE(343), + [sym_tagged_or_ctor_lit] = STATE(343), + [sym_derefing_lit] = STATE(343), + [sym_quoting_lit] = STATE(343), + [sym_syn_quoting_lit] = STATE(343), + [sym_unquote_splicing_lit] = STATE(343), + [sym_unquoting_lit] = STATE(343), [aux_sym_dis_expr_repeat1] = STATE(301), - [aux_sym_sym_lit_repeat1] = STATE(306), - [sym__ws] = ACTIONS(264), - [sym_comment] = ACTIONS(264), + [aux_sym_sym_lit_repeat1] = STATE(307), + [sym__ws] = ACTIONS(320), + [sym_comment] = ACTIONS(320), [anon_sym_POUND_] = ACTIONS(7), - [sym_num_lit] = ACTIONS(608), + [sym_num_lit] = ACTIONS(562), [anon_sym_SLASH] = ACTIONS(268), - [anon_sym_COLON] = ACTIONS(426), - [anon_sym_COLON_COLON] = ACTIONS(428), + [anon_sym_COLON] = ACTIONS(270), + [anon_sym_COLON_COLON] = ACTIONS(272), [aux_sym_str_lit_token1] = ACTIONS(274), - [sym_char_lit] = ACTIONS(608), - [sym_nil_lit] = ACTIONS(610), - [sym_bool_lit] = ACTIONS(610), + [sym_char_lit] = ACTIONS(562), + [sym_nil_lit] = ACTIONS(564), + [sym_bool_lit] = ACTIONS(564), [aux_sym__sym_qualified_token1] = ACTIONS(278), [anon_sym_CARET] = ACTIONS(21), [anon_sym_POUND_CARET] = ACTIONS(23), [anon_sym_LPAREN] = ACTIONS(280), [anon_sym_LBRACE] = ACTIONS(282), [anon_sym_LBRACK] = ACTIONS(284), - [anon_sym_POUND] = ACTIONS(430), + [anon_sym_POUND] = ACTIONS(286), [anon_sym_POUND_QMARK] = ACTIONS(288), [anon_sym_POUND_QMARK_AT] = ACTIONS(290), - [anon_sym_POUND_SQUOTE] = ACTIONS(432), - [anon_sym_POUND_POUND] = ACTIONS(434), + [anon_sym_POUND_SQUOTE] = ACTIONS(292), + [anon_sym_POUND_POUND] = ACTIONS(294), [anon_sym_POUND_EQ] = ACTIONS(296), - [anon_sym_AT] = ACTIONS(436), - [anon_sym_SQUOTE] = ACTIONS(438), - [anon_sym_BQUOTE] = ACTIONS(440), - [anon_sym_TILDE_AT] = ACTIONS(442), - [anon_sym_TILDE] = ACTIONS(444), + [anon_sym_AT] = ACTIONS(298), + [anon_sym_SQUOTE] = ACTIONS(300), + [anon_sym_BQUOTE] = ACTIONS(302), + [anon_sym_TILDE_AT] = ACTIONS(304), + [anon_sym_TILDE] = ACTIONS(306), }, - [187] = { + [STATE(188)] = { [sym__gap] = STATE(301), [sym_dis_expr] = STATE(301), - [sym__form] = STATE(334), - [sym_kwd_lit] = STATE(334), - [sym_str_lit] = STATE(334), - [sym_sym_lit] = STATE(334), + [sym__form] = STATE(344), + [sym_kwd_lit] = STATE(344), + [sym_str_lit] = STATE(344), + [sym_sym_lit] = STATE(344), [sym__metadata_lit] = STATE(424), - [sym_meta_lit] = STATE(314), - [sym_old_meta_lit] = STATE(313), - [sym_list_lit] = STATE(334), - [sym__bare_list_lit] = STATE(392), - [sym_map_lit] = STATE(334), + [sym_meta_lit] = STATE(312), + [sym_old_meta_lit] = STATE(315), + [sym_list_lit] = STATE(344), + [sym__bare_list_lit] = STATE(402), + [sym_map_lit] = STATE(344), [sym__bare_map_lit] = STATE(403), - [sym_vec_lit] = STATE(334), - [sym__bare_vec_lit] = STATE(423), - [sym_set_lit] = STATE(334), - [sym__bare_set_lit] = STATE(374), - [sym_anon_fn_lit] = STATE(334), - [sym_regex_lit] = STATE(334), - [sym_read_cond_lit] = STATE(334), - [sym_splicing_read_cond_lit] = STATE(334), - [sym_ns_map_lit] = STATE(334), - [sym_var_quoting_lit] = STATE(334), - [sym_sym_val_lit] = STATE(334), - [sym_evaling_lit] = STATE(334), - [sym_tagged_or_ctor_lit] = STATE(334), - [sym_derefing_lit] = STATE(334), - [sym_quoting_lit] = STATE(334), - [sym_syn_quoting_lit] = STATE(334), - [sym_unquote_splicing_lit] = STATE(334), - [sym_unquoting_lit] = STATE(334), + [sym_vec_lit] = STATE(344), + [sym__bare_vec_lit] = STATE(404), + [sym_set_lit] = STATE(344), + [sym__bare_set_lit] = STATE(405), + [sym_anon_fn_lit] = STATE(344), + [sym_regex_lit] = STATE(344), + [sym_read_cond_lit] = STATE(344), + [sym_splicing_read_cond_lit] = STATE(344), + [sym_ns_map_lit] = STATE(344), + [sym_var_quoting_lit] = STATE(344), + [sym_sym_val_lit] = STATE(344), + [sym_evaling_lit] = STATE(344), + [sym_tagged_or_ctor_lit] = STATE(344), + [sym_derefing_lit] = STATE(344), + [sym_quoting_lit] = STATE(344), + [sym_syn_quoting_lit] = STATE(344), + [sym_unquote_splicing_lit] = STATE(344), + [sym_unquoting_lit] = STATE(344), [aux_sym_dis_expr_repeat1] = STATE(301), - [aux_sym_sym_lit_repeat1] = STATE(306), - [sym__ws] = ACTIONS(264), - [sym_comment] = ACTIONS(264), + [aux_sym_sym_lit_repeat1] = STATE(307), + [sym__ws] = ACTIONS(320), + [sym_comment] = ACTIONS(320), [anon_sym_POUND_] = ACTIONS(7), - [sym_num_lit] = ACTIONS(350), + [sym_num_lit] = ACTIONS(566), [anon_sym_SLASH] = ACTIONS(268), - [anon_sym_COLON] = ACTIONS(426), - [anon_sym_COLON_COLON] = ACTIONS(428), + [anon_sym_COLON] = ACTIONS(270), + [anon_sym_COLON_COLON] = ACTIONS(272), [aux_sym_str_lit_token1] = ACTIONS(274), - [sym_char_lit] = ACTIONS(350), - [sym_nil_lit] = ACTIONS(356), - [sym_bool_lit] = ACTIONS(356), + [sym_char_lit] = ACTIONS(566), + [sym_nil_lit] = ACTIONS(568), + [sym_bool_lit] = ACTIONS(568), [aux_sym__sym_qualified_token1] = ACTIONS(278), [anon_sym_CARET] = ACTIONS(21), [anon_sym_POUND_CARET] = ACTIONS(23), [anon_sym_LPAREN] = ACTIONS(280), [anon_sym_LBRACE] = ACTIONS(282), [anon_sym_LBRACK] = ACTIONS(284), - [anon_sym_POUND] = ACTIONS(430), + [anon_sym_POUND] = ACTIONS(286), [anon_sym_POUND_QMARK] = ACTIONS(288), [anon_sym_POUND_QMARK_AT] = ACTIONS(290), - [anon_sym_POUND_SQUOTE] = ACTIONS(432), - [anon_sym_POUND_POUND] = ACTIONS(434), + [anon_sym_POUND_SQUOTE] = ACTIONS(292), + [anon_sym_POUND_POUND] = ACTIONS(294), [anon_sym_POUND_EQ] = ACTIONS(296), - [anon_sym_AT] = ACTIONS(436), - [anon_sym_SQUOTE] = ACTIONS(438), - [anon_sym_BQUOTE] = ACTIONS(440), - [anon_sym_TILDE_AT] = ACTIONS(442), - [anon_sym_TILDE] = ACTIONS(444), + [anon_sym_AT] = ACTIONS(298), + [anon_sym_SQUOTE] = ACTIONS(300), + [anon_sym_BQUOTE] = ACTIONS(302), + [anon_sym_TILDE_AT] = ACTIONS(304), + [anon_sym_TILDE] = ACTIONS(306), }, - [188] = { - [sym__gap] = STATE(40), - [sym_dis_expr] = STATE(40), + [STATE(189)] = { + [sym__gap] = STATE(301), + [sym_dis_expr] = STATE(301), [sym__form] = STATE(345), [sym_kwd_lit] = STATE(345), [sym_str_lit] = STATE(345), [sym_sym_lit] = STATE(345), [sym__metadata_lit] = STATE(424), - [sym_meta_lit] = STATE(314), - [sym_old_meta_lit] = STATE(313), + [sym_meta_lit] = STATE(312), + [sym_old_meta_lit] = STATE(315), [sym_list_lit] = STATE(345), - [sym__bare_list_lit] = STATE(392), + [sym__bare_list_lit] = STATE(402), [sym_map_lit] = STATE(345), [sym__bare_map_lit] = STATE(403), [sym_vec_lit] = STATE(345), - [sym__bare_vec_lit] = STATE(423), + [sym__bare_vec_lit] = STATE(404), [sym_set_lit] = STATE(345), - [sym__bare_set_lit] = STATE(374), + [sym__bare_set_lit] = STATE(405), [sym_anon_fn_lit] = STATE(345), [sym_regex_lit] = STATE(345), [sym_read_cond_lit] = STATE(345), @@ -15332,55 +14847,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_syn_quoting_lit] = STATE(345), [sym_unquote_splicing_lit] = STATE(345), [sym_unquoting_lit] = STATE(345), - [aux_sym_dis_expr_repeat1] = STATE(40), - [aux_sym_sym_lit_repeat1] = STATE(306), - [sym__ws] = ACTIONS(830), - [sym_comment] = ACTIONS(830), + [aux_sym_dis_expr_repeat1] = STATE(301), + [aux_sym_sym_lit_repeat1] = STATE(307), + [sym__ws] = ACTIONS(320), + [sym_comment] = ACTIONS(320), [anon_sym_POUND_] = ACTIONS(7), - [sym_num_lit] = ACTIONS(498), + [sym_num_lit] = ACTIONS(570), [anon_sym_SLASH] = ACTIONS(268), - [anon_sym_COLON] = ACTIONS(426), - [anon_sym_COLON_COLON] = ACTIONS(428), + [anon_sym_COLON] = ACTIONS(270), + [anon_sym_COLON_COLON] = ACTIONS(272), [aux_sym_str_lit_token1] = ACTIONS(274), - [sym_char_lit] = ACTIONS(498), - [sym_nil_lit] = ACTIONS(500), - [sym_bool_lit] = ACTIONS(500), + [sym_char_lit] = ACTIONS(570), + [sym_nil_lit] = ACTIONS(572), + [sym_bool_lit] = ACTIONS(572), [aux_sym__sym_qualified_token1] = ACTIONS(278), [anon_sym_CARET] = ACTIONS(21), [anon_sym_POUND_CARET] = ACTIONS(23), [anon_sym_LPAREN] = ACTIONS(280), [anon_sym_LBRACE] = ACTIONS(282), [anon_sym_LBRACK] = ACTIONS(284), - [anon_sym_POUND] = ACTIONS(430), + [anon_sym_POUND] = ACTIONS(286), [anon_sym_POUND_QMARK] = ACTIONS(288), [anon_sym_POUND_QMARK_AT] = ACTIONS(290), - [anon_sym_POUND_SQUOTE] = ACTIONS(432), - [anon_sym_POUND_POUND] = ACTIONS(434), + [anon_sym_POUND_SQUOTE] = ACTIONS(292), + [anon_sym_POUND_POUND] = ACTIONS(294), [anon_sym_POUND_EQ] = ACTIONS(296), - [anon_sym_AT] = ACTIONS(436), - [anon_sym_SQUOTE] = ACTIONS(438), - [anon_sym_BQUOTE] = ACTIONS(440), - [anon_sym_TILDE_AT] = ACTIONS(442), - [anon_sym_TILDE] = ACTIONS(444), + [anon_sym_AT] = ACTIONS(298), + [anon_sym_SQUOTE] = ACTIONS(300), + [anon_sym_BQUOTE] = ACTIONS(302), + [anon_sym_TILDE_AT] = ACTIONS(304), + [anon_sym_TILDE] = ACTIONS(306), }, - [189] = { - [sym__gap] = STATE(198), - [sym_dis_expr] = STATE(198), + [STATE(190)] = { + [sym__gap] = STATE(301), + [sym_dis_expr] = STATE(301), + [sym__form] = STATE(346), + [sym_kwd_lit] = STATE(346), + [sym_str_lit] = STATE(346), + [sym_sym_lit] = STATE(346), + [sym__metadata_lit] = STATE(424), + [sym_meta_lit] = STATE(312), + [sym_old_meta_lit] = STATE(315), + [sym_list_lit] = STATE(346), + [sym__bare_list_lit] = STATE(402), + [sym_map_lit] = STATE(346), + [sym__bare_map_lit] = STATE(403), + [sym_vec_lit] = STATE(346), + [sym__bare_vec_lit] = STATE(404), + [sym_set_lit] = STATE(346), + [sym__bare_set_lit] = STATE(405), + [sym_anon_fn_lit] = STATE(346), + [sym_regex_lit] = STATE(346), + [sym_read_cond_lit] = STATE(346), + [sym_splicing_read_cond_lit] = STATE(346), + [sym_ns_map_lit] = STATE(346), + [sym_var_quoting_lit] = STATE(346), + [sym_sym_val_lit] = STATE(346), + [sym_evaling_lit] = STATE(346), + [sym_tagged_or_ctor_lit] = STATE(346), + [sym_derefing_lit] = STATE(346), + [sym_quoting_lit] = STATE(346), + [sym_syn_quoting_lit] = STATE(346), + [sym_unquote_splicing_lit] = STATE(346), + [sym_unquoting_lit] = STATE(346), + [aux_sym_dis_expr_repeat1] = STATE(301), + [aux_sym_sym_lit_repeat1] = STATE(307), + [sym__ws] = ACTIONS(320), + [sym_comment] = ACTIONS(320), + [anon_sym_POUND_] = ACTIONS(7), + [sym_num_lit] = ACTIONS(574), + [anon_sym_SLASH] = ACTIONS(268), + [anon_sym_COLON] = ACTIONS(270), + [anon_sym_COLON_COLON] = ACTIONS(272), + [aux_sym_str_lit_token1] = ACTIONS(274), + [sym_char_lit] = ACTIONS(574), + [sym_nil_lit] = ACTIONS(576), + [sym_bool_lit] = ACTIONS(576), + [aux_sym__sym_qualified_token1] = ACTIONS(278), + [anon_sym_CARET] = ACTIONS(21), + [anon_sym_POUND_CARET] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(280), + [anon_sym_LBRACE] = ACTIONS(282), + [anon_sym_LBRACK] = ACTIONS(284), + [anon_sym_POUND] = ACTIONS(286), + [anon_sym_POUND_QMARK] = ACTIONS(288), + [anon_sym_POUND_QMARK_AT] = ACTIONS(290), + [anon_sym_POUND_SQUOTE] = ACTIONS(292), + [anon_sym_POUND_POUND] = ACTIONS(294), + [anon_sym_POUND_EQ] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [anon_sym_SQUOTE] = ACTIONS(300), + [anon_sym_BQUOTE] = ACTIONS(302), + [anon_sym_TILDE_AT] = ACTIONS(304), + [anon_sym_TILDE] = ACTIONS(306), + }, + [STATE(191)] = { + [sym__gap] = STATE(301), + [sym_dis_expr] = STATE(301), [sym__form] = STATE(347), [sym_kwd_lit] = STATE(347), [sym_str_lit] = STATE(347), [sym_sym_lit] = STATE(347), [sym__metadata_lit] = STATE(424), - [sym_meta_lit] = STATE(314), - [sym_old_meta_lit] = STATE(313), + [sym_meta_lit] = STATE(312), + [sym_old_meta_lit] = STATE(315), [sym_list_lit] = STATE(347), - [sym__bare_list_lit] = STATE(392), + [sym__bare_list_lit] = STATE(402), [sym_map_lit] = STATE(347), [sym__bare_map_lit] = STATE(403), [sym_vec_lit] = STATE(347), - [sym__bare_vec_lit] = STATE(423), + [sym__bare_vec_lit] = STATE(404), [sym_set_lit] = STATE(347), - [sym__bare_set_lit] = STATE(374), + [sym__bare_set_lit] = STATE(405), [sym_anon_fn_lit] = STATE(347), [sym_regex_lit] = STATE(347), [sym_read_cond_lit] = STATE(347), @@ -15395,181 +14973,370 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_syn_quoting_lit] = STATE(347), [sym_unquote_splicing_lit] = STATE(347), [sym_unquoting_lit] = STATE(347), - [aux_sym_dis_expr_repeat1] = STATE(198), - [aux_sym_sym_lit_repeat1] = STATE(306), - [sym__ws] = ACTIONS(832), - [sym_comment] = ACTIONS(832), + [aux_sym_dis_expr_repeat1] = STATE(301), + [aux_sym_sym_lit_repeat1] = STATE(307), + [sym__ws] = ACTIONS(320), + [sym_comment] = ACTIONS(320), [anon_sym_POUND_] = ACTIONS(7), - [sym_num_lit] = ACTIONS(316), + [sym_num_lit] = ACTIONS(578), [anon_sym_SLASH] = ACTIONS(268), - [anon_sym_COLON] = ACTIONS(426), - [anon_sym_COLON_COLON] = ACTIONS(428), + [anon_sym_COLON] = ACTIONS(270), + [anon_sym_COLON_COLON] = ACTIONS(272), [aux_sym_str_lit_token1] = ACTIONS(274), - [sym_char_lit] = ACTIONS(316), - [sym_nil_lit] = ACTIONS(318), - [sym_bool_lit] = ACTIONS(318), + [sym_char_lit] = ACTIONS(578), + [sym_nil_lit] = ACTIONS(580), + [sym_bool_lit] = ACTIONS(580), [aux_sym__sym_qualified_token1] = ACTIONS(278), [anon_sym_CARET] = ACTIONS(21), [anon_sym_POUND_CARET] = ACTIONS(23), [anon_sym_LPAREN] = ACTIONS(280), [anon_sym_LBRACE] = ACTIONS(282), [anon_sym_LBRACK] = ACTIONS(284), - [anon_sym_POUND] = ACTIONS(430), + [anon_sym_POUND] = ACTIONS(286), [anon_sym_POUND_QMARK] = ACTIONS(288), [anon_sym_POUND_QMARK_AT] = ACTIONS(290), - [anon_sym_POUND_SQUOTE] = ACTIONS(432), - [anon_sym_POUND_POUND] = ACTIONS(434), + [anon_sym_POUND_SQUOTE] = ACTIONS(292), + [anon_sym_POUND_POUND] = ACTIONS(294), [anon_sym_POUND_EQ] = ACTIONS(296), - [anon_sym_AT] = ACTIONS(436), - [anon_sym_SQUOTE] = ACTIONS(438), - [anon_sym_BQUOTE] = ACTIONS(440), - [anon_sym_TILDE_AT] = ACTIONS(442), - [anon_sym_TILDE] = ACTIONS(444), + [anon_sym_AT] = ACTIONS(298), + [anon_sym_SQUOTE] = ACTIONS(300), + [anon_sym_BQUOTE] = ACTIONS(302), + [anon_sym_TILDE_AT] = ACTIONS(304), + [anon_sym_TILDE] = ACTIONS(306), }, - [190] = { - [sym__gap] = STATE(301), - [sym_dis_expr] = STATE(301), - [sym__form] = STATE(417), - [sym_kwd_lit] = STATE(417), - [sym_str_lit] = STATE(417), - [sym_sym_lit] = STATE(417), + [STATE(192)] = { + [sym__gap] = STATE(26), + [sym_dis_expr] = STATE(26), + [sym__form] = STATE(215), + [sym_kwd_lit] = STATE(215), + [sym_str_lit] = STATE(215), + [sym_sym_lit] = STATE(215), + [sym__metadata_lit] = STATE(424), + [sym_meta_lit] = STATE(312), + [sym_old_meta_lit] = STATE(315), + [sym_list_lit] = STATE(215), + [sym__bare_list_lit] = STATE(299), + [sym_map_lit] = STATE(215), + [sym__bare_map_lit] = STATE(214), + [sym_vec_lit] = STATE(215), + [sym__bare_vec_lit] = STATE(217), + [sym_set_lit] = STATE(215), + [sym__bare_set_lit] = STATE(219), + [sym_anon_fn_lit] = STATE(215), + [sym_regex_lit] = STATE(215), + [sym_read_cond_lit] = STATE(215), + [sym_splicing_read_cond_lit] = STATE(215), + [sym_ns_map_lit] = STATE(215), + [sym_var_quoting_lit] = STATE(215), + [sym_sym_val_lit] = STATE(215), + [sym_evaling_lit] = STATE(215), + [sym_tagged_or_ctor_lit] = STATE(215), + [sym_derefing_lit] = STATE(215), + [sym_quoting_lit] = STATE(215), + [sym_syn_quoting_lit] = STATE(215), + [sym_unquote_splicing_lit] = STATE(215), + [sym_unquoting_lit] = STATE(215), + [aux_sym_dis_expr_repeat1] = STATE(26), + [aux_sym_sym_lit_repeat1] = STATE(305), + [sym__ws] = ACTIONS(840), + [sym_comment] = ACTIONS(840), + [anon_sym_POUND_] = ACTIONS(7), + [sym_num_lit] = ACTIONS(728), + [anon_sym_SLASH] = ACTIONS(9), + [anon_sym_COLON] = ACTIONS(11), + [anon_sym_COLON_COLON] = ACTIONS(13), + [aux_sym_str_lit_token1] = ACTIONS(15), + [sym_char_lit] = ACTIONS(728), + [sym_nil_lit] = ACTIONS(730), + [sym_bool_lit] = ACTIONS(730), + [aux_sym__sym_qualified_token1] = ACTIONS(19), + [anon_sym_CARET] = ACTIONS(21), + [anon_sym_POUND_CARET] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_LBRACK] = 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_TILDE_AT] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(51), + }, + [STATE(193)] = { + [sym__gap] = STATE(202), + [sym_dis_expr] = STATE(202), + [sym__form] = STATE(358), + [sym_kwd_lit] = STATE(358), + [sym_str_lit] = STATE(358), + [sym_sym_lit] = STATE(358), [sym__metadata_lit] = STATE(424), - [sym_meta_lit] = STATE(314), - [sym_old_meta_lit] = STATE(313), - [sym_list_lit] = STATE(417), - [sym__bare_list_lit] = STATE(392), - [sym_map_lit] = STATE(417), + [sym_meta_lit] = STATE(312), + [sym_old_meta_lit] = STATE(315), + [sym_list_lit] = STATE(358), + [sym__bare_list_lit] = STATE(402), + [sym_map_lit] = STATE(358), [sym__bare_map_lit] = STATE(403), - [sym_vec_lit] = STATE(417), - [sym__bare_vec_lit] = STATE(423), - [sym_set_lit] = STATE(417), - [sym__bare_set_lit] = STATE(374), - [sym_anon_fn_lit] = STATE(417), - [sym_regex_lit] = STATE(417), - [sym_read_cond_lit] = STATE(417), - [sym_splicing_read_cond_lit] = STATE(417), - [sym_ns_map_lit] = STATE(417), - [sym_var_quoting_lit] = STATE(417), - [sym_sym_val_lit] = STATE(417), - [sym_evaling_lit] = STATE(417), - [sym_tagged_or_ctor_lit] = STATE(417), - [sym_derefing_lit] = STATE(417), - [sym_quoting_lit] = STATE(417), - [sym_syn_quoting_lit] = STATE(417), - [sym_unquote_splicing_lit] = STATE(417), - [sym_unquoting_lit] = STATE(417), - [aux_sym_dis_expr_repeat1] = STATE(301), - [aux_sym_sym_lit_repeat1] = STATE(306), - [sym__ws] = ACTIONS(264), - [sym_comment] = ACTIONS(264), + [sym_vec_lit] = STATE(358), + [sym__bare_vec_lit] = STATE(404), + [sym_set_lit] = STATE(358), + [sym__bare_set_lit] = STATE(405), + [sym_anon_fn_lit] = STATE(358), + [sym_regex_lit] = STATE(358), + [sym_read_cond_lit] = STATE(358), + [sym_splicing_read_cond_lit] = STATE(358), + [sym_ns_map_lit] = STATE(358), + [sym_var_quoting_lit] = STATE(358), + [sym_sym_val_lit] = STATE(358), + [sym_evaling_lit] = STATE(358), + [sym_tagged_or_ctor_lit] = STATE(358), + [sym_derefing_lit] = STATE(358), + [sym_quoting_lit] = STATE(358), + [sym_syn_quoting_lit] = STATE(358), + [sym_unquote_splicing_lit] = STATE(358), + [sym_unquoting_lit] = STATE(358), + [aux_sym_dis_expr_repeat1] = STATE(202), + [aux_sym_sym_lit_repeat1] = STATE(307), + [sym__ws] = ACTIONS(842), + [sym_comment] = ACTIONS(842), + [anon_sym_POUND_] = ACTIONS(7), + [sym_num_lit] = ACTIONS(586), + [anon_sym_SLASH] = ACTIONS(268), + [anon_sym_COLON] = ACTIONS(270), + [anon_sym_COLON_COLON] = ACTIONS(272), + [aux_sym_str_lit_token1] = ACTIONS(274), + [sym_char_lit] = ACTIONS(586), + [sym_nil_lit] = ACTIONS(588), + [sym_bool_lit] = ACTIONS(588), + [aux_sym__sym_qualified_token1] = ACTIONS(278), + [anon_sym_CARET] = ACTIONS(21), + [anon_sym_POUND_CARET] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(280), + [anon_sym_LBRACE] = ACTIONS(282), + [anon_sym_LBRACK] = ACTIONS(284), + [anon_sym_POUND] = ACTIONS(286), + [anon_sym_POUND_QMARK] = ACTIONS(288), + [anon_sym_POUND_QMARK_AT] = ACTIONS(290), + [anon_sym_POUND_SQUOTE] = ACTIONS(292), + [anon_sym_POUND_POUND] = ACTIONS(294), + [anon_sym_POUND_EQ] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [anon_sym_SQUOTE] = ACTIONS(300), + [anon_sym_BQUOTE] = ACTIONS(302), + [anon_sym_TILDE_AT] = ACTIONS(304), + [anon_sym_TILDE] = ACTIONS(306), + }, + [STATE(194)] = { + [sym__gap] = STATE(203), + [sym_dis_expr] = STATE(203), + [sym__form] = STATE(360), + [sym_kwd_lit] = STATE(360), + [sym_str_lit] = STATE(360), + [sym_sym_lit] = STATE(360), + [sym__metadata_lit] = STATE(424), + [sym_meta_lit] = STATE(312), + [sym_old_meta_lit] = STATE(315), + [sym_list_lit] = STATE(360), + [sym__bare_list_lit] = STATE(402), + [sym_map_lit] = STATE(360), + [sym__bare_map_lit] = STATE(403), + [sym_vec_lit] = STATE(360), + [sym__bare_vec_lit] = STATE(404), + [sym_set_lit] = STATE(360), + [sym__bare_set_lit] = STATE(405), + [sym_anon_fn_lit] = STATE(360), + [sym_regex_lit] = STATE(360), + [sym_read_cond_lit] = STATE(360), + [sym_splicing_read_cond_lit] = STATE(360), + [sym_ns_map_lit] = STATE(360), + [sym_var_quoting_lit] = STATE(360), + [sym_sym_val_lit] = STATE(360), + [sym_evaling_lit] = STATE(360), + [sym_tagged_or_ctor_lit] = STATE(360), + [sym_derefing_lit] = STATE(360), + [sym_quoting_lit] = STATE(360), + [sym_syn_quoting_lit] = STATE(360), + [sym_unquote_splicing_lit] = STATE(360), + [sym_unquoting_lit] = STATE(360), + [aux_sym_dis_expr_repeat1] = STATE(203), + [aux_sym_sym_lit_repeat1] = STATE(307), + [sym__ws] = ACTIONS(844), + [sym_comment] = ACTIONS(844), + [anon_sym_POUND_] = ACTIONS(7), + [sym_num_lit] = ACTIONS(592), + [anon_sym_SLASH] = ACTIONS(268), + [anon_sym_COLON] = ACTIONS(270), + [anon_sym_COLON_COLON] = ACTIONS(272), + [aux_sym_str_lit_token1] = ACTIONS(274), + [sym_char_lit] = ACTIONS(592), + [sym_nil_lit] = ACTIONS(594), + [sym_bool_lit] = ACTIONS(594), + [aux_sym__sym_qualified_token1] = ACTIONS(278), + [anon_sym_CARET] = ACTIONS(21), + [anon_sym_POUND_CARET] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(280), + [anon_sym_LBRACE] = ACTIONS(282), + [anon_sym_LBRACK] = ACTIONS(284), + [anon_sym_POUND] = ACTIONS(286), + [anon_sym_POUND_QMARK] = ACTIONS(288), + [anon_sym_POUND_QMARK_AT] = ACTIONS(290), + [anon_sym_POUND_SQUOTE] = ACTIONS(292), + [anon_sym_POUND_POUND] = ACTIONS(294), + [anon_sym_POUND_EQ] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [anon_sym_SQUOTE] = ACTIONS(300), + [anon_sym_BQUOTE] = ACTIONS(302), + [anon_sym_TILDE_AT] = ACTIONS(304), + [anon_sym_TILDE] = ACTIONS(306), + }, + [STATE(195)] = { + [sym__gap] = STATE(204), + [sym_dis_expr] = STATE(204), + [sym__form] = STATE(362), + [sym_kwd_lit] = STATE(362), + [sym_str_lit] = STATE(362), + [sym_sym_lit] = STATE(362), + [sym__metadata_lit] = STATE(424), + [sym_meta_lit] = STATE(312), + [sym_old_meta_lit] = STATE(315), + [sym_list_lit] = STATE(362), + [sym__bare_list_lit] = STATE(402), + [sym_map_lit] = STATE(362), + [sym__bare_map_lit] = STATE(403), + [sym_vec_lit] = STATE(362), + [sym__bare_vec_lit] = STATE(404), + [sym_set_lit] = STATE(362), + [sym__bare_set_lit] = STATE(405), + [sym_anon_fn_lit] = STATE(362), + [sym_regex_lit] = STATE(362), + [sym_read_cond_lit] = STATE(362), + [sym_splicing_read_cond_lit] = STATE(362), + [sym_ns_map_lit] = STATE(362), + [sym_var_quoting_lit] = STATE(362), + [sym_sym_val_lit] = STATE(362), + [sym_evaling_lit] = STATE(362), + [sym_tagged_or_ctor_lit] = STATE(362), + [sym_derefing_lit] = STATE(362), + [sym_quoting_lit] = STATE(362), + [sym_syn_quoting_lit] = STATE(362), + [sym_unquote_splicing_lit] = STATE(362), + [sym_unquoting_lit] = STATE(362), + [aux_sym_dis_expr_repeat1] = STATE(204), + [aux_sym_sym_lit_repeat1] = STATE(307), + [sym__ws] = ACTIONS(846), + [sym_comment] = ACTIONS(846), [anon_sym_POUND_] = ACTIONS(7), - [sym_num_lit] = ACTIONS(374), + [sym_num_lit] = ACTIONS(598), [anon_sym_SLASH] = ACTIONS(268), - [anon_sym_COLON] = ACTIONS(426), - [anon_sym_COLON_COLON] = ACTIONS(428), + [anon_sym_COLON] = ACTIONS(270), + [anon_sym_COLON_COLON] = ACTIONS(272), [aux_sym_str_lit_token1] = ACTIONS(274), - [sym_char_lit] = ACTIONS(374), - [sym_nil_lit] = ACTIONS(376), - [sym_bool_lit] = ACTIONS(376), + [sym_char_lit] = ACTIONS(598), + [sym_nil_lit] = ACTIONS(600), + [sym_bool_lit] = ACTIONS(600), [aux_sym__sym_qualified_token1] = ACTIONS(278), [anon_sym_CARET] = ACTIONS(21), [anon_sym_POUND_CARET] = ACTIONS(23), [anon_sym_LPAREN] = ACTIONS(280), [anon_sym_LBRACE] = ACTIONS(282), [anon_sym_LBRACK] = ACTIONS(284), - [anon_sym_POUND] = ACTIONS(430), + [anon_sym_POUND] = ACTIONS(286), [anon_sym_POUND_QMARK] = ACTIONS(288), [anon_sym_POUND_QMARK_AT] = ACTIONS(290), - [anon_sym_POUND_SQUOTE] = ACTIONS(432), - [anon_sym_POUND_POUND] = ACTIONS(434), + [anon_sym_POUND_SQUOTE] = ACTIONS(292), + [anon_sym_POUND_POUND] = ACTIONS(294), [anon_sym_POUND_EQ] = ACTIONS(296), - [anon_sym_AT] = ACTIONS(436), - [anon_sym_SQUOTE] = ACTIONS(438), - [anon_sym_BQUOTE] = ACTIONS(440), - [anon_sym_TILDE_AT] = ACTIONS(442), - [anon_sym_TILDE] = ACTIONS(444), + [anon_sym_AT] = ACTIONS(298), + [anon_sym_SQUOTE] = ACTIONS(300), + [anon_sym_BQUOTE] = ACTIONS(302), + [anon_sym_TILDE_AT] = ACTIONS(304), + [anon_sym_TILDE] = ACTIONS(306), }, - [191] = { - [sym__gap] = STATE(203), - [sym_dis_expr] = STATE(203), - [sym__form] = STATE(355), - [sym_kwd_lit] = STATE(355), - [sym_str_lit] = STATE(355), - [sym_sym_lit] = STATE(355), + [STATE(196)] = { + [sym__gap] = STATE(205), + [sym_dis_expr] = STATE(205), + [sym__form] = STATE(365), + [sym_kwd_lit] = STATE(365), + [sym_str_lit] = STATE(365), + [sym_sym_lit] = STATE(365), [sym__metadata_lit] = STATE(424), - [sym_meta_lit] = STATE(314), - [sym_old_meta_lit] = STATE(313), - [sym_list_lit] = STATE(355), - [sym__bare_list_lit] = STATE(392), - [sym_map_lit] = STATE(355), + [sym_meta_lit] = STATE(312), + [sym_old_meta_lit] = STATE(315), + [sym_list_lit] = STATE(365), + [sym__bare_list_lit] = STATE(402), + [sym_map_lit] = STATE(365), [sym__bare_map_lit] = STATE(403), - [sym_vec_lit] = STATE(355), - [sym__bare_vec_lit] = STATE(423), - [sym_set_lit] = STATE(355), - [sym__bare_set_lit] = STATE(374), - [sym_anon_fn_lit] = STATE(355), - [sym_regex_lit] = STATE(355), - [sym_read_cond_lit] = STATE(355), - [sym_splicing_read_cond_lit] = STATE(355), - [sym_ns_map_lit] = STATE(355), - [sym_var_quoting_lit] = STATE(355), - [sym_sym_val_lit] = STATE(355), - [sym_evaling_lit] = STATE(355), - [sym_tagged_or_ctor_lit] = STATE(355), - [sym_derefing_lit] = STATE(355), - [sym_quoting_lit] = STATE(355), - [sym_syn_quoting_lit] = STATE(355), - [sym_unquote_splicing_lit] = STATE(355), - [sym_unquoting_lit] = STATE(355), - [aux_sym_dis_expr_repeat1] = STATE(203), - [aux_sym_sym_lit_repeat1] = STATE(306), - [sym__ws] = ACTIONS(834), - [sym_comment] = ACTIONS(834), + [sym_vec_lit] = STATE(365), + [sym__bare_vec_lit] = STATE(404), + [sym_set_lit] = STATE(365), + [sym__bare_set_lit] = STATE(405), + [sym_anon_fn_lit] = STATE(365), + [sym_regex_lit] = STATE(365), + [sym_read_cond_lit] = STATE(365), + [sym_splicing_read_cond_lit] = STATE(365), + [sym_ns_map_lit] = STATE(365), + [sym_var_quoting_lit] = STATE(365), + [sym_sym_val_lit] = STATE(365), + [sym_evaling_lit] = STATE(365), + [sym_tagged_or_ctor_lit] = STATE(365), + [sym_derefing_lit] = STATE(365), + [sym_quoting_lit] = STATE(365), + [sym_syn_quoting_lit] = STATE(365), + [sym_unquote_splicing_lit] = STATE(365), + [sym_unquoting_lit] = STATE(365), + [aux_sym_dis_expr_repeat1] = STATE(205), + [aux_sym_sym_lit_repeat1] = STATE(307), + [sym__ws] = ACTIONS(848), + [sym_comment] = ACTIONS(848), [anon_sym_POUND_] = ACTIONS(7), - [sym_num_lit] = ACTIONS(528), + [sym_num_lit] = ACTIONS(604), [anon_sym_SLASH] = ACTIONS(268), - [anon_sym_COLON] = ACTIONS(426), - [anon_sym_COLON_COLON] = ACTIONS(428), + [anon_sym_COLON] = ACTIONS(270), + [anon_sym_COLON_COLON] = ACTIONS(272), [aux_sym_str_lit_token1] = ACTIONS(274), - [sym_char_lit] = ACTIONS(528), - [sym_nil_lit] = ACTIONS(530), - [sym_bool_lit] = ACTIONS(530), + [sym_char_lit] = ACTIONS(604), + [sym_nil_lit] = ACTIONS(606), + [sym_bool_lit] = ACTIONS(606), [aux_sym__sym_qualified_token1] = ACTIONS(278), [anon_sym_CARET] = ACTIONS(21), [anon_sym_POUND_CARET] = ACTIONS(23), [anon_sym_LPAREN] = ACTIONS(280), [anon_sym_LBRACE] = ACTIONS(282), [anon_sym_LBRACK] = ACTIONS(284), - [anon_sym_POUND] = ACTIONS(430), + [anon_sym_POUND] = ACTIONS(286), [anon_sym_POUND_QMARK] = ACTIONS(288), [anon_sym_POUND_QMARK_AT] = ACTIONS(290), - [anon_sym_POUND_SQUOTE] = ACTIONS(432), - [anon_sym_POUND_POUND] = ACTIONS(434), + [anon_sym_POUND_SQUOTE] = ACTIONS(292), + [anon_sym_POUND_POUND] = ACTIONS(294), [anon_sym_POUND_EQ] = ACTIONS(296), - [anon_sym_AT] = ACTIONS(436), - [anon_sym_SQUOTE] = ACTIONS(438), - [anon_sym_BQUOTE] = ACTIONS(440), - [anon_sym_TILDE_AT] = ACTIONS(442), - [anon_sym_TILDE] = ACTIONS(444), + [anon_sym_AT] = ACTIONS(298), + [anon_sym_SQUOTE] = ACTIONS(300), + [anon_sym_BQUOTE] = ACTIONS(302), + [anon_sym_TILDE_AT] = ACTIONS(304), + [anon_sym_TILDE] = ACTIONS(306), }, - [192] = { - [sym__gap] = STATE(205), - [sym_dis_expr] = STATE(205), + [STATE(197)] = { + [sym__gap] = STATE(206), + [sym_dis_expr] = STATE(206), [sym__form] = STATE(366), [sym_kwd_lit] = STATE(366), [sym_str_lit] = STATE(366), [sym_sym_lit] = STATE(366), [sym__metadata_lit] = STATE(424), - [sym_meta_lit] = STATE(314), - [sym_old_meta_lit] = STATE(313), + [sym_meta_lit] = STATE(312), + [sym_old_meta_lit] = STATE(315), [sym_list_lit] = STATE(366), - [sym__bare_list_lit] = STATE(392), + [sym__bare_list_lit] = STATE(402), [sym_map_lit] = STATE(366), [sym__bare_map_lit] = STATE(403), [sym_vec_lit] = STATE(366), - [sym__bare_vec_lit] = STATE(423), + [sym__bare_vec_lit] = STATE(404), [sym_set_lit] = STATE(366), - [sym__bare_set_lit] = STATE(374), + [sym__bare_set_lit] = STATE(405), [sym_anon_fn_lit] = STATE(366), [sym_regex_lit] = STATE(366), [sym_read_cond_lit] = STATE(366), @@ -15584,118 +15351,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_syn_quoting_lit] = STATE(366), [sym_unquote_splicing_lit] = STATE(366), [sym_unquoting_lit] = STATE(366), - [aux_sym_dis_expr_repeat1] = STATE(205), - [aux_sym_sym_lit_repeat1] = STATE(306), - [sym__ws] = ACTIONS(836), - [sym_comment] = ACTIONS(836), - [anon_sym_POUND_] = ACTIONS(7), - [sym_num_lit] = ACTIONS(522), - [anon_sym_SLASH] = ACTIONS(268), - [anon_sym_COLON] = ACTIONS(426), - [anon_sym_COLON_COLON] = ACTIONS(428), - [aux_sym_str_lit_token1] = ACTIONS(274), - [sym_char_lit] = ACTIONS(522), - [sym_nil_lit] = ACTIONS(524), - [sym_bool_lit] = ACTIONS(524), - [aux_sym__sym_qualified_token1] = ACTIONS(278), - [anon_sym_CARET] = ACTIONS(21), - [anon_sym_POUND_CARET] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(280), - [anon_sym_LBRACE] = ACTIONS(282), - [anon_sym_LBRACK] = ACTIONS(284), - [anon_sym_POUND] = ACTIONS(430), - [anon_sym_POUND_QMARK] = ACTIONS(288), - [anon_sym_POUND_QMARK_AT] = ACTIONS(290), - [anon_sym_POUND_SQUOTE] = ACTIONS(432), - [anon_sym_POUND_POUND] = ACTIONS(434), - [anon_sym_POUND_EQ] = ACTIONS(296), - [anon_sym_AT] = ACTIONS(436), - [anon_sym_SQUOTE] = ACTIONS(438), - [anon_sym_BQUOTE] = ACTIONS(440), - [anon_sym_TILDE_AT] = ACTIONS(442), - [anon_sym_TILDE] = ACTIONS(444), - }, - [193] = { - [sym__gap] = STATE(207), - [sym_dis_expr] = STATE(207), - [sym__form] = STATE(367), - [sym_kwd_lit] = STATE(367), - [sym_str_lit] = STATE(367), - [sym_sym_lit] = STATE(367), - [sym__metadata_lit] = STATE(424), - [sym_meta_lit] = STATE(314), - [sym_old_meta_lit] = STATE(313), - [sym_list_lit] = STATE(367), - [sym__bare_list_lit] = STATE(392), - [sym_map_lit] = STATE(367), - [sym__bare_map_lit] = STATE(403), - [sym_vec_lit] = STATE(367), - [sym__bare_vec_lit] = STATE(423), - [sym_set_lit] = STATE(367), - [sym__bare_set_lit] = STATE(374), - [sym_anon_fn_lit] = STATE(367), - [sym_regex_lit] = STATE(367), - [sym_read_cond_lit] = STATE(367), - [sym_splicing_read_cond_lit] = STATE(367), - [sym_ns_map_lit] = STATE(367), - [sym_var_quoting_lit] = STATE(367), - [sym_sym_val_lit] = STATE(367), - [sym_evaling_lit] = STATE(367), - [sym_tagged_or_ctor_lit] = STATE(367), - [sym_derefing_lit] = STATE(367), - [sym_quoting_lit] = STATE(367), - [sym_syn_quoting_lit] = STATE(367), - [sym_unquote_splicing_lit] = STATE(367), - [sym_unquoting_lit] = STATE(367), - [aux_sym_dis_expr_repeat1] = STATE(207), - [aux_sym_sym_lit_repeat1] = STATE(306), - [sym__ws] = ACTIONS(838), - [sym_comment] = ACTIONS(838), + [aux_sym_dis_expr_repeat1] = STATE(206), + [aux_sym_sym_lit_repeat1] = STATE(307), + [sym__ws] = ACTIONS(850), + [sym_comment] = ACTIONS(850), [anon_sym_POUND_] = ACTIONS(7), - [sym_num_lit] = ACTIONS(516), + [sym_num_lit] = ACTIONS(610), [anon_sym_SLASH] = ACTIONS(268), - [anon_sym_COLON] = ACTIONS(426), - [anon_sym_COLON_COLON] = ACTIONS(428), + [anon_sym_COLON] = ACTIONS(270), + [anon_sym_COLON_COLON] = ACTIONS(272), [aux_sym_str_lit_token1] = ACTIONS(274), - [sym_char_lit] = ACTIONS(516), - [sym_nil_lit] = ACTIONS(518), - [sym_bool_lit] = ACTIONS(518), + [sym_char_lit] = ACTIONS(610), + [sym_nil_lit] = ACTIONS(612), + [sym_bool_lit] = ACTIONS(612), [aux_sym__sym_qualified_token1] = ACTIONS(278), [anon_sym_CARET] = ACTIONS(21), [anon_sym_POUND_CARET] = ACTIONS(23), [anon_sym_LPAREN] = ACTIONS(280), [anon_sym_LBRACE] = ACTIONS(282), [anon_sym_LBRACK] = ACTIONS(284), - [anon_sym_POUND] = ACTIONS(430), + [anon_sym_POUND] = ACTIONS(286), [anon_sym_POUND_QMARK] = ACTIONS(288), [anon_sym_POUND_QMARK_AT] = ACTIONS(290), - [anon_sym_POUND_SQUOTE] = ACTIONS(432), - [anon_sym_POUND_POUND] = ACTIONS(434), + [anon_sym_POUND_SQUOTE] = ACTIONS(292), + [anon_sym_POUND_POUND] = ACTIONS(294), [anon_sym_POUND_EQ] = ACTIONS(296), - [anon_sym_AT] = ACTIONS(436), - [anon_sym_SQUOTE] = ACTIONS(438), - [anon_sym_BQUOTE] = ACTIONS(440), - [anon_sym_TILDE_AT] = ACTIONS(442), - [anon_sym_TILDE] = ACTIONS(444), + [anon_sym_AT] = ACTIONS(298), + [anon_sym_SQUOTE] = ACTIONS(300), + [anon_sym_BQUOTE] = ACTIONS(302), + [anon_sym_TILDE_AT] = ACTIONS(304), + [anon_sym_TILDE] = ACTIONS(306), }, - [194] = { - [sym__gap] = STATE(210), - [sym_dis_expr] = STATE(210), + [STATE(198)] = { + [sym__gap] = STATE(301), + [sym_dis_expr] = STATE(301), [sym__form] = STATE(370), [sym_kwd_lit] = STATE(370), [sym_str_lit] = STATE(370), [sym_sym_lit] = STATE(370), [sym__metadata_lit] = STATE(424), - [sym_meta_lit] = STATE(314), - [sym_old_meta_lit] = STATE(313), + [sym_meta_lit] = STATE(312), + [sym_old_meta_lit] = STATE(315), [sym_list_lit] = STATE(370), - [sym__bare_list_lit] = STATE(392), + [sym__bare_list_lit] = STATE(402), [sym_map_lit] = STATE(370), [sym__bare_map_lit] = STATE(403), [sym_vec_lit] = STATE(370), - [sym__bare_vec_lit] = STATE(423), + [sym__bare_vec_lit] = STATE(404), [sym_set_lit] = STATE(370), - [sym__bare_set_lit] = STATE(374), + [sym__bare_set_lit] = STATE(405), [sym_anon_fn_lit] = STATE(370), [sym_regex_lit] = STATE(370), [sym_read_cond_lit] = STATE(370), @@ -15710,55 +15414,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_syn_quoting_lit] = STATE(370), [sym_unquote_splicing_lit] = STATE(370), [sym_unquoting_lit] = STATE(370), - [aux_sym_dis_expr_repeat1] = STATE(210), - [aux_sym_sym_lit_repeat1] = STATE(306), - [sym__ws] = ACTIONS(840), - [sym_comment] = ACTIONS(840), + [aux_sym_dis_expr_repeat1] = STATE(301), + [aux_sym_sym_lit_repeat1] = STATE(307), + [sym__ws] = ACTIONS(320), + [sym_comment] = ACTIONS(320), [anon_sym_POUND_] = ACTIONS(7), - [sym_num_lit] = ACTIONS(510), + [sym_num_lit] = ACTIONS(614), [anon_sym_SLASH] = ACTIONS(268), - [anon_sym_COLON] = ACTIONS(426), - [anon_sym_COLON_COLON] = ACTIONS(428), + [anon_sym_COLON] = ACTIONS(270), + [anon_sym_COLON_COLON] = ACTIONS(272), [aux_sym_str_lit_token1] = ACTIONS(274), - [sym_char_lit] = ACTIONS(510), - [sym_nil_lit] = ACTIONS(512), - [sym_bool_lit] = ACTIONS(512), + [sym_char_lit] = ACTIONS(614), + [sym_nil_lit] = ACTIONS(616), + [sym_bool_lit] = ACTIONS(616), [aux_sym__sym_qualified_token1] = ACTIONS(278), [anon_sym_CARET] = ACTIONS(21), [anon_sym_POUND_CARET] = ACTIONS(23), [anon_sym_LPAREN] = ACTIONS(280), [anon_sym_LBRACE] = ACTIONS(282), [anon_sym_LBRACK] = ACTIONS(284), - [anon_sym_POUND] = ACTIONS(430), + [anon_sym_POUND] = ACTIONS(286), [anon_sym_POUND_QMARK] = ACTIONS(288), [anon_sym_POUND_QMARK_AT] = ACTIONS(290), - [anon_sym_POUND_SQUOTE] = ACTIONS(432), - [anon_sym_POUND_POUND] = ACTIONS(434), + [anon_sym_POUND_SQUOTE] = ACTIONS(292), + [anon_sym_POUND_POUND] = ACTIONS(294), [anon_sym_POUND_EQ] = ACTIONS(296), - [anon_sym_AT] = ACTIONS(436), - [anon_sym_SQUOTE] = ACTIONS(438), - [anon_sym_BQUOTE] = ACTIONS(440), - [anon_sym_TILDE_AT] = ACTIONS(442), - [anon_sym_TILDE] = ACTIONS(444), + [anon_sym_AT] = ACTIONS(298), + [anon_sym_SQUOTE] = ACTIONS(300), + [anon_sym_BQUOTE] = ACTIONS(302), + [anon_sym_TILDE_AT] = ACTIONS(304), + [anon_sym_TILDE] = ACTIONS(306), }, - [195] = { - [sym__gap] = STATE(212), - [sym_dis_expr] = STATE(212), + [STATE(199)] = { + [sym__gap] = STATE(207), + [sym_dis_expr] = STATE(207), [sym__form] = STATE(371), [sym_kwd_lit] = STATE(371), [sym_str_lit] = STATE(371), [sym_sym_lit] = STATE(371), [sym__metadata_lit] = STATE(424), - [sym_meta_lit] = STATE(314), - [sym_old_meta_lit] = STATE(313), + [sym_meta_lit] = STATE(312), + [sym_old_meta_lit] = STATE(315), [sym_list_lit] = STATE(371), - [sym__bare_list_lit] = STATE(392), + [sym__bare_list_lit] = STATE(402), [sym_map_lit] = STATE(371), [sym__bare_map_lit] = STATE(403), [sym_vec_lit] = STATE(371), - [sym__bare_vec_lit] = STATE(423), + [sym__bare_vec_lit] = STATE(404), [sym_set_lit] = STATE(371), - [sym__bare_set_lit] = STATE(374), + [sym__bare_set_lit] = STATE(405), [sym_anon_fn_lit] = STATE(371), [sym_regex_lit] = STATE(371), [sym_read_cond_lit] = STATE(371), @@ -15773,353 +15477,227 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_syn_quoting_lit] = STATE(371), [sym_unquote_splicing_lit] = STATE(371), [sym_unquoting_lit] = STATE(371), - [aux_sym_dis_expr_repeat1] = STATE(212), - [aux_sym_sym_lit_repeat1] = STATE(306), - [sym__ws] = ACTIONS(842), - [sym_comment] = ACTIONS(842), - [anon_sym_POUND_] = ACTIONS(7), - [sym_num_lit] = ACTIONS(504), - [anon_sym_SLASH] = ACTIONS(268), - [anon_sym_COLON] = ACTIONS(426), - [anon_sym_COLON_COLON] = ACTIONS(428), - [aux_sym_str_lit_token1] = ACTIONS(274), - [sym_char_lit] = ACTIONS(504), - [sym_nil_lit] = ACTIONS(506), - [sym_bool_lit] = ACTIONS(506), - [aux_sym__sym_qualified_token1] = ACTIONS(278), - [anon_sym_CARET] = ACTIONS(21), - [anon_sym_POUND_CARET] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(280), - [anon_sym_LBRACE] = ACTIONS(282), - [anon_sym_LBRACK] = ACTIONS(284), - [anon_sym_POUND] = ACTIONS(430), - [anon_sym_POUND_QMARK] = ACTIONS(288), - [anon_sym_POUND_QMARK_AT] = ACTIONS(290), - [anon_sym_POUND_SQUOTE] = ACTIONS(432), - [anon_sym_POUND_POUND] = ACTIONS(434), - [anon_sym_POUND_EQ] = ACTIONS(296), - [anon_sym_AT] = ACTIONS(436), - [anon_sym_SQUOTE] = ACTIONS(438), - [anon_sym_BQUOTE] = ACTIONS(440), - [anon_sym_TILDE_AT] = ACTIONS(442), - [anon_sym_TILDE] = ACTIONS(444), - }, - [196] = { - [sym__gap] = STATE(301), - [sym_dis_expr] = STATE(301), - [sym__form] = STATE(350), - [sym_kwd_lit] = STATE(350), - [sym_str_lit] = STATE(350), - [sym_sym_lit] = STATE(350), - [sym__metadata_lit] = STATE(424), - [sym_meta_lit] = STATE(314), - [sym_old_meta_lit] = STATE(313), - [sym_list_lit] = STATE(350), - [sym__bare_list_lit] = STATE(392), - [sym_map_lit] = STATE(350), - [sym__bare_map_lit] = STATE(403), - [sym_vec_lit] = STATE(350), - [sym__bare_vec_lit] = STATE(423), - [sym_set_lit] = STATE(350), - [sym__bare_set_lit] = STATE(374), - [sym_anon_fn_lit] = STATE(350), - [sym_regex_lit] = STATE(350), - [sym_read_cond_lit] = STATE(350), - [sym_splicing_read_cond_lit] = STATE(350), - [sym_ns_map_lit] = STATE(350), - [sym_var_quoting_lit] = STATE(350), - [sym_sym_val_lit] = STATE(350), - [sym_evaling_lit] = STATE(350), - [sym_tagged_or_ctor_lit] = STATE(350), - [sym_derefing_lit] = STATE(350), - [sym_quoting_lit] = STATE(350), - [sym_syn_quoting_lit] = STATE(350), - [sym_unquote_splicing_lit] = STATE(350), - [sym_unquoting_lit] = STATE(350), - [aux_sym_dis_expr_repeat1] = STATE(301), - [aux_sym_sym_lit_repeat1] = STATE(306), - [sym__ws] = ACTIONS(264), - [sym_comment] = ACTIONS(264), - [anon_sym_POUND_] = ACTIONS(7), - [sym_num_lit] = ACTIONS(612), - [anon_sym_SLASH] = ACTIONS(268), - [anon_sym_COLON] = ACTIONS(426), - [anon_sym_COLON_COLON] = ACTIONS(428), - [aux_sym_str_lit_token1] = ACTIONS(274), - [sym_char_lit] = ACTIONS(612), - [sym_nil_lit] = ACTIONS(614), - [sym_bool_lit] = ACTIONS(614), - [aux_sym__sym_qualified_token1] = ACTIONS(278), - [anon_sym_CARET] = ACTIONS(21), - [anon_sym_POUND_CARET] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(280), - [anon_sym_LBRACE] = ACTIONS(282), - [anon_sym_LBRACK] = ACTIONS(284), - [anon_sym_POUND] = ACTIONS(430), - [anon_sym_POUND_QMARK] = ACTIONS(288), - [anon_sym_POUND_QMARK_AT] = ACTIONS(290), - [anon_sym_POUND_SQUOTE] = ACTIONS(432), - [anon_sym_POUND_POUND] = ACTIONS(434), - [anon_sym_POUND_EQ] = ACTIONS(296), - [anon_sym_AT] = ACTIONS(436), - [anon_sym_SQUOTE] = ACTIONS(438), - [anon_sym_BQUOTE] = ACTIONS(440), - [anon_sym_TILDE_AT] = ACTIONS(442), - [anon_sym_TILDE] = ACTIONS(444), - }, - [197] = { - [sym__gap] = STATE(181), - [sym_dis_expr] = STATE(181), - [sym__form] = STATE(357), - [sym_kwd_lit] = STATE(357), - [sym_str_lit] = STATE(357), - [sym_sym_lit] = STATE(357), - [sym__metadata_lit] = STATE(424), - [sym_meta_lit] = STATE(314), - [sym_old_meta_lit] = STATE(313), - [sym_list_lit] = STATE(357), - [sym__bare_list_lit] = STATE(392), - [sym_map_lit] = STATE(357), - [sym__bare_map_lit] = STATE(403), - [sym_vec_lit] = STATE(357), - [sym__bare_vec_lit] = STATE(423), - [sym_set_lit] = STATE(357), - [sym__bare_set_lit] = STATE(374), - [sym_anon_fn_lit] = STATE(357), - [sym_regex_lit] = STATE(357), - [sym_read_cond_lit] = STATE(357), - [sym_splicing_read_cond_lit] = STATE(357), - [sym_ns_map_lit] = STATE(357), - [sym_var_quoting_lit] = STATE(357), - [sym_sym_val_lit] = STATE(357), - [sym_evaling_lit] = STATE(357), - [sym_tagged_or_ctor_lit] = STATE(357), - [sym_derefing_lit] = STATE(357), - [sym_quoting_lit] = STATE(357), - [sym_syn_quoting_lit] = STATE(357), - [sym_unquote_splicing_lit] = STATE(357), - [sym_unquoting_lit] = STATE(357), - [aux_sym_dis_expr_repeat1] = STATE(181), - [aux_sym_sym_lit_repeat1] = STATE(306), - [sym__ws] = ACTIONS(844), - [sym_comment] = ACTIONS(844), + [aux_sym_dis_expr_repeat1] = STATE(207), + [aux_sym_sym_lit_repeat1] = STATE(307), + [sym__ws] = ACTIONS(852), + [sym_comment] = ACTIONS(852), [anon_sym_POUND_] = ACTIONS(7), - [sym_num_lit] = ACTIONS(384), + [sym_num_lit] = ACTIONS(620), [anon_sym_SLASH] = ACTIONS(268), - [anon_sym_COLON] = ACTIONS(426), - [anon_sym_COLON_COLON] = ACTIONS(428), + [anon_sym_COLON] = ACTIONS(270), + [anon_sym_COLON_COLON] = ACTIONS(272), [aux_sym_str_lit_token1] = ACTIONS(274), - [sym_char_lit] = ACTIONS(384), - [sym_nil_lit] = ACTIONS(386), - [sym_bool_lit] = ACTIONS(386), + [sym_char_lit] = ACTIONS(620), + [sym_nil_lit] = ACTIONS(622), + [sym_bool_lit] = ACTIONS(622), [aux_sym__sym_qualified_token1] = ACTIONS(278), [anon_sym_CARET] = ACTIONS(21), [anon_sym_POUND_CARET] = ACTIONS(23), [anon_sym_LPAREN] = ACTIONS(280), [anon_sym_LBRACE] = ACTIONS(282), [anon_sym_LBRACK] = ACTIONS(284), - [anon_sym_POUND] = ACTIONS(430), + [anon_sym_POUND] = ACTIONS(286), [anon_sym_POUND_QMARK] = ACTIONS(288), [anon_sym_POUND_QMARK_AT] = ACTIONS(290), - [anon_sym_POUND_SQUOTE] = ACTIONS(432), - [anon_sym_POUND_POUND] = ACTIONS(434), + [anon_sym_POUND_SQUOTE] = ACTIONS(292), + [anon_sym_POUND_POUND] = ACTIONS(294), [anon_sym_POUND_EQ] = ACTIONS(296), - [anon_sym_AT] = ACTIONS(436), - [anon_sym_SQUOTE] = ACTIONS(438), - [anon_sym_BQUOTE] = ACTIONS(440), - [anon_sym_TILDE_AT] = ACTIONS(442), - [anon_sym_TILDE] = ACTIONS(444), + [anon_sym_AT] = ACTIONS(298), + [anon_sym_SQUOTE] = ACTIONS(300), + [anon_sym_BQUOTE] = ACTIONS(302), + [anon_sym_TILDE_AT] = ACTIONS(304), + [anon_sym_TILDE] = ACTIONS(306), }, - [198] = { - [sym__gap] = STATE(301), - [sym_dis_expr] = STATE(301), - [sym__form] = STATE(419), - [sym_kwd_lit] = STATE(419), - [sym_str_lit] = STATE(419), - [sym_sym_lit] = STATE(419), + [STATE(200)] = { + [sym__gap] = STATE(208), + [sym_dis_expr] = STATE(208), + [sym__form] = STATE(376), + [sym_kwd_lit] = STATE(376), + [sym_str_lit] = STATE(376), + [sym_sym_lit] = STATE(376), [sym__metadata_lit] = STATE(424), - [sym_meta_lit] = STATE(314), - [sym_old_meta_lit] = STATE(313), - [sym_list_lit] = STATE(419), - [sym__bare_list_lit] = STATE(392), - [sym_map_lit] = STATE(419), + [sym_meta_lit] = STATE(312), + [sym_old_meta_lit] = STATE(315), + [sym_list_lit] = STATE(376), + [sym__bare_list_lit] = STATE(402), + [sym_map_lit] = STATE(376), [sym__bare_map_lit] = STATE(403), - [sym_vec_lit] = STATE(419), - [sym__bare_vec_lit] = STATE(423), - [sym_set_lit] = STATE(419), - [sym__bare_set_lit] = STATE(374), - [sym_anon_fn_lit] = STATE(419), - [sym_regex_lit] = STATE(419), - [sym_read_cond_lit] = STATE(419), - [sym_splicing_read_cond_lit] = STATE(419), - [sym_ns_map_lit] = STATE(419), - [sym_var_quoting_lit] = STATE(419), - [sym_sym_val_lit] = STATE(419), - [sym_evaling_lit] = STATE(419), - [sym_tagged_or_ctor_lit] = STATE(419), - [sym_derefing_lit] = STATE(419), - [sym_quoting_lit] = STATE(419), - [sym_syn_quoting_lit] = STATE(419), - [sym_unquote_splicing_lit] = STATE(419), - [sym_unquoting_lit] = STATE(419), - [aux_sym_dis_expr_repeat1] = STATE(301), - [aux_sym_sym_lit_repeat1] = STATE(306), - [sym__ws] = ACTIONS(264), - [sym_comment] = ACTIONS(264), + [sym_vec_lit] = STATE(376), + [sym__bare_vec_lit] = STATE(404), + [sym_set_lit] = STATE(376), + [sym__bare_set_lit] = STATE(405), + [sym_anon_fn_lit] = STATE(376), + [sym_regex_lit] = STATE(376), + [sym_read_cond_lit] = STATE(376), + [sym_splicing_read_cond_lit] = STATE(376), + [sym_ns_map_lit] = STATE(376), + [sym_var_quoting_lit] = STATE(376), + [sym_sym_val_lit] = STATE(376), + [sym_evaling_lit] = STATE(376), + [sym_tagged_or_ctor_lit] = STATE(376), + [sym_derefing_lit] = STATE(376), + [sym_quoting_lit] = STATE(376), + [sym_syn_quoting_lit] = STATE(376), + [sym_unquote_splicing_lit] = STATE(376), + [sym_unquoting_lit] = STATE(376), + [aux_sym_dis_expr_repeat1] = STATE(208), + [aux_sym_sym_lit_repeat1] = STATE(307), + [sym__ws] = ACTIONS(854), + [sym_comment] = ACTIONS(854), [anon_sym_POUND_] = ACTIONS(7), - [sym_num_lit] = ACTIONS(482), + [sym_num_lit] = ACTIONS(626), [anon_sym_SLASH] = ACTIONS(268), - [anon_sym_COLON] = ACTIONS(426), - [anon_sym_COLON_COLON] = ACTIONS(428), + [anon_sym_COLON] = ACTIONS(270), + [anon_sym_COLON_COLON] = ACTIONS(272), [aux_sym_str_lit_token1] = ACTIONS(274), - [sym_char_lit] = ACTIONS(482), - [sym_nil_lit] = ACTIONS(484), - [sym_bool_lit] = ACTIONS(484), + [sym_char_lit] = ACTIONS(626), + [sym_nil_lit] = ACTIONS(628), + [sym_bool_lit] = ACTIONS(628), [aux_sym__sym_qualified_token1] = ACTIONS(278), [anon_sym_CARET] = ACTIONS(21), [anon_sym_POUND_CARET] = ACTIONS(23), [anon_sym_LPAREN] = ACTIONS(280), [anon_sym_LBRACE] = ACTIONS(282), [anon_sym_LBRACK] = ACTIONS(284), - [anon_sym_POUND] = ACTIONS(430), + [anon_sym_POUND] = ACTIONS(286), [anon_sym_POUND_QMARK] = ACTIONS(288), [anon_sym_POUND_QMARK_AT] = ACTIONS(290), - [anon_sym_POUND_SQUOTE] = ACTIONS(432), - [anon_sym_POUND_POUND] = ACTIONS(434), + [anon_sym_POUND_SQUOTE] = ACTIONS(292), + [anon_sym_POUND_POUND] = ACTIONS(294), [anon_sym_POUND_EQ] = ACTIONS(296), - [anon_sym_AT] = ACTIONS(436), - [anon_sym_SQUOTE] = ACTIONS(438), - [anon_sym_BQUOTE] = ACTIONS(440), - [anon_sym_TILDE_AT] = ACTIONS(442), - [anon_sym_TILDE] = ACTIONS(444), + [anon_sym_AT] = ACTIONS(298), + [anon_sym_SQUOTE] = ACTIONS(300), + [anon_sym_BQUOTE] = ACTIONS(302), + [anon_sym_TILDE_AT] = ACTIONS(304), + [anon_sym_TILDE] = ACTIONS(306), }, - [199] = { + [STATE(201)] = { [sym__gap] = STATE(301), [sym_dis_expr] = STATE(301), - [sym__form] = STATE(364), - [sym_kwd_lit] = STATE(364), - [sym_str_lit] = STATE(364), - [sym_sym_lit] = STATE(364), + [sym__form] = STATE(381), + [sym_kwd_lit] = STATE(381), + [sym_str_lit] = STATE(381), + [sym_sym_lit] = STATE(381), [sym__metadata_lit] = STATE(424), - [sym_meta_lit] = STATE(314), - [sym_old_meta_lit] = STATE(313), - [sym_list_lit] = STATE(364), - [sym__bare_list_lit] = STATE(392), - [sym_map_lit] = STATE(364), + [sym_meta_lit] = STATE(312), + [sym_old_meta_lit] = STATE(315), + [sym_list_lit] = STATE(381), + [sym__bare_list_lit] = STATE(402), + [sym_map_lit] = STATE(381), [sym__bare_map_lit] = STATE(403), - [sym_vec_lit] = STATE(364), - [sym__bare_vec_lit] = STATE(423), - [sym_set_lit] = STATE(364), - [sym__bare_set_lit] = STATE(374), - [sym_anon_fn_lit] = STATE(364), - [sym_regex_lit] = STATE(364), - [sym_read_cond_lit] = STATE(364), - [sym_splicing_read_cond_lit] = STATE(364), - [sym_ns_map_lit] = STATE(364), - [sym_var_quoting_lit] = STATE(364), - [sym_sym_val_lit] = STATE(364), - [sym_evaling_lit] = STATE(364), - [sym_tagged_or_ctor_lit] = STATE(364), - [sym_derefing_lit] = STATE(364), - [sym_quoting_lit] = STATE(364), - [sym_syn_quoting_lit] = STATE(364), - [sym_unquote_splicing_lit] = STATE(364), - [sym_unquoting_lit] = STATE(364), + [sym_vec_lit] = STATE(381), + [sym__bare_vec_lit] = STATE(404), + [sym_set_lit] = STATE(381), + [sym__bare_set_lit] = STATE(405), + [sym_anon_fn_lit] = STATE(381), + [sym_regex_lit] = STATE(381), + [sym_read_cond_lit] = STATE(381), + [sym_splicing_read_cond_lit] = STATE(381), + [sym_ns_map_lit] = STATE(381), + [sym_var_quoting_lit] = STATE(381), + [sym_sym_val_lit] = STATE(381), + [sym_evaling_lit] = STATE(381), + [sym_tagged_or_ctor_lit] = STATE(381), + [sym_derefing_lit] = STATE(381), + [sym_quoting_lit] = STATE(381), + [sym_syn_quoting_lit] = STATE(381), + [sym_unquote_splicing_lit] = STATE(381), + [sym_unquoting_lit] = STATE(381), [aux_sym_dis_expr_repeat1] = STATE(301), - [aux_sym_sym_lit_repeat1] = STATE(306), - [sym__ws] = ACTIONS(264), - [sym_comment] = ACTIONS(264), + [aux_sym_sym_lit_repeat1] = STATE(307), + [sym__ws] = ACTIONS(320), + [sym_comment] = ACTIONS(320), [anon_sym_POUND_] = ACTIONS(7), - [sym_num_lit] = ACTIONS(394), + [sym_num_lit] = ACTIONS(630), [anon_sym_SLASH] = ACTIONS(268), - [anon_sym_COLON] = ACTIONS(426), - [anon_sym_COLON_COLON] = ACTIONS(428), - [aux_sym_str_lit_token1] = ACTIONS(274), - [sym_char_lit] = ACTIONS(394), - [sym_nil_lit] = ACTIONS(396), - [sym_bool_lit] = ACTIONS(396), + [anon_sym_COLON] = ACTIONS(270), + [anon_sym_COLON_COLON] = ACTIONS(272), + [aux_sym_str_lit_token1] = ACTIONS(274), + [sym_char_lit] = ACTIONS(630), + [sym_nil_lit] = ACTIONS(632), + [sym_bool_lit] = ACTIONS(632), [aux_sym__sym_qualified_token1] = ACTIONS(278), [anon_sym_CARET] = ACTIONS(21), [anon_sym_POUND_CARET] = ACTIONS(23), [anon_sym_LPAREN] = ACTIONS(280), [anon_sym_LBRACE] = ACTIONS(282), [anon_sym_LBRACK] = ACTIONS(284), - [anon_sym_POUND] = ACTIONS(430), + [anon_sym_POUND] = ACTIONS(286), [anon_sym_POUND_QMARK] = ACTIONS(288), [anon_sym_POUND_QMARK_AT] = ACTIONS(290), - [anon_sym_POUND_SQUOTE] = ACTIONS(432), - [anon_sym_POUND_POUND] = ACTIONS(434), + [anon_sym_POUND_SQUOTE] = ACTIONS(292), + [anon_sym_POUND_POUND] = ACTIONS(294), [anon_sym_POUND_EQ] = ACTIONS(296), - [anon_sym_AT] = ACTIONS(436), - [anon_sym_SQUOTE] = ACTIONS(438), - [anon_sym_BQUOTE] = ACTIONS(440), - [anon_sym_TILDE_AT] = ACTIONS(442), - [anon_sym_TILDE] = ACTIONS(444), - }, - [200] = { - [sym__gap] = STATE(196), - [sym_dis_expr] = STATE(196), - [sym__form] = STATE(405), - [sym_kwd_lit] = STATE(405), - [sym_str_lit] = STATE(405), - [sym_sym_lit] = STATE(405), + [anon_sym_AT] = ACTIONS(298), + [anon_sym_SQUOTE] = ACTIONS(300), + [anon_sym_BQUOTE] = ACTIONS(302), + [anon_sym_TILDE_AT] = ACTIONS(304), + [anon_sym_TILDE] = ACTIONS(306), + }, + [STATE(202)] = { + [sym__gap] = STATE(301), + [sym_dis_expr] = STATE(301), + [sym__form] = STATE(385), + [sym_kwd_lit] = STATE(385), + [sym_str_lit] = STATE(385), + [sym_sym_lit] = STATE(385), [sym__metadata_lit] = STATE(424), - [sym_meta_lit] = STATE(314), - [sym_old_meta_lit] = STATE(313), - [sym_list_lit] = STATE(405), - [sym__bare_list_lit] = STATE(392), - [sym_map_lit] = STATE(405), + [sym_meta_lit] = STATE(312), + [sym_old_meta_lit] = STATE(315), + [sym_list_lit] = STATE(385), + [sym__bare_list_lit] = STATE(402), + [sym_map_lit] = STATE(385), [sym__bare_map_lit] = STATE(403), - [sym_vec_lit] = STATE(405), - [sym__bare_vec_lit] = STATE(423), - [sym_set_lit] = STATE(405), - [sym__bare_set_lit] = STATE(374), - [sym_anon_fn_lit] = STATE(405), - [sym_regex_lit] = STATE(405), - [sym_read_cond_lit] = STATE(405), - [sym_splicing_read_cond_lit] = STATE(405), - [sym_ns_map_lit] = STATE(405), - [sym_var_quoting_lit] = STATE(405), - [sym_sym_val_lit] = STATE(405), - [sym_evaling_lit] = STATE(405), - [sym_tagged_or_ctor_lit] = STATE(405), - [sym_derefing_lit] = STATE(405), - [sym_quoting_lit] = STATE(405), - [sym_syn_quoting_lit] = STATE(405), - [sym_unquote_splicing_lit] = STATE(405), - [sym_unquoting_lit] = STATE(405), - [aux_sym_dis_expr_repeat1] = STATE(196), - [aux_sym_sym_lit_repeat1] = STATE(306), - [sym__ws] = ACTIONS(846), - [sym_comment] = ACTIONS(846), + [sym_vec_lit] = STATE(385), + [sym__bare_vec_lit] = STATE(404), + [sym_set_lit] = STATE(385), + [sym__bare_set_lit] = STATE(405), + [sym_anon_fn_lit] = STATE(385), + [sym_regex_lit] = STATE(385), + [sym_read_cond_lit] = STATE(385), + [sym_splicing_read_cond_lit] = STATE(385), + [sym_ns_map_lit] = STATE(385), + [sym_var_quoting_lit] = STATE(385), + [sym_sym_val_lit] = STATE(385), + [sym_evaling_lit] = STATE(385), + [sym_tagged_or_ctor_lit] = STATE(385), + [sym_derefing_lit] = STATE(385), + [sym_quoting_lit] = STATE(385), + [sym_syn_quoting_lit] = STATE(385), + [sym_unquote_splicing_lit] = STATE(385), + [sym_unquoting_lit] = STATE(385), + [aux_sym_dis_expr_repeat1] = STATE(301), + [aux_sym_sym_lit_repeat1] = STATE(307), + [sym__ws] = ACTIONS(320), + [sym_comment] = ACTIONS(320), [anon_sym_POUND_] = ACTIONS(7), - [sym_num_lit] = ACTIONS(454), + [sym_num_lit] = ACTIONS(634), [anon_sym_SLASH] = ACTIONS(268), - [anon_sym_COLON] = ACTIONS(426), - [anon_sym_COLON_COLON] = ACTIONS(428), + [anon_sym_COLON] = ACTIONS(270), + [anon_sym_COLON_COLON] = ACTIONS(272), [aux_sym_str_lit_token1] = ACTIONS(274), - [sym_char_lit] = ACTIONS(454), - [sym_nil_lit] = ACTIONS(456), - [sym_bool_lit] = ACTIONS(456), + [sym_char_lit] = ACTIONS(634), + [sym_nil_lit] = ACTIONS(636), + [sym_bool_lit] = ACTIONS(636), [aux_sym__sym_qualified_token1] = ACTIONS(278), [anon_sym_CARET] = ACTIONS(21), [anon_sym_POUND_CARET] = ACTIONS(23), [anon_sym_LPAREN] = ACTIONS(280), [anon_sym_LBRACE] = ACTIONS(282), [anon_sym_LBRACK] = ACTIONS(284), - [anon_sym_POUND] = ACTIONS(430), + [anon_sym_POUND] = ACTIONS(286), [anon_sym_POUND_QMARK] = ACTIONS(288), [anon_sym_POUND_QMARK_AT] = ACTIONS(290), - [anon_sym_POUND_SQUOTE] = ACTIONS(432), - [anon_sym_POUND_POUND] = ACTIONS(434), + [anon_sym_POUND_SQUOTE] = ACTIONS(292), + [anon_sym_POUND_POUND] = ACTIONS(294), [anon_sym_POUND_EQ] = ACTIONS(296), - [anon_sym_AT] = ACTIONS(436), - [anon_sym_SQUOTE] = ACTIONS(438), - [anon_sym_BQUOTE] = ACTIONS(440), - [anon_sym_TILDE_AT] = ACTIONS(442), - [anon_sym_TILDE] = ACTIONS(444), + [anon_sym_AT] = ACTIONS(298), + [anon_sym_SQUOTE] = ACTIONS(300), + [anon_sym_BQUOTE] = ACTIONS(302), + [anon_sym_TILDE_AT] = ACTIONS(304), + [anon_sym_TILDE] = ACTIONS(306), }, - [201] = { + [STATE(203)] = { [sym__gap] = STATE(301), [sym_dis_expr] = STATE(301), [sym__form] = STATE(386), @@ -16127,16 +15705,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_str_lit] = STATE(386), [sym_sym_lit] = STATE(386), [sym__metadata_lit] = STATE(424), - [sym_meta_lit] = STATE(314), - [sym_old_meta_lit] = STATE(313), + [sym_meta_lit] = STATE(312), + [sym_old_meta_lit] = STATE(315), [sym_list_lit] = STATE(386), - [sym__bare_list_lit] = STATE(392), + [sym__bare_list_lit] = STATE(402), [sym_map_lit] = STATE(386), [sym__bare_map_lit] = STATE(403), [sym_vec_lit] = STATE(386), - [sym__bare_vec_lit] = STATE(423), + [sym__bare_vec_lit] = STATE(404), [sym_set_lit] = STATE(386), - [sym__bare_set_lit] = STATE(374), + [sym__bare_set_lit] = STATE(405), [sym_anon_fn_lit] = STATE(386), [sym_regex_lit] = STATE(386), [sym_read_cond_lit] = STATE(386), @@ -16152,18 +15730,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unquote_splicing_lit] = STATE(386), [sym_unquoting_lit] = STATE(386), [aux_sym_dis_expr_repeat1] = STATE(301), - [aux_sym_sym_lit_repeat1] = STATE(304), - [sym__ws] = ACTIONS(264), - [sym_comment] = ACTIONS(264), + [aux_sym_sym_lit_repeat1] = STATE(307), + [sym__ws] = ACTIONS(320), + [sym_comment] = ACTIONS(320), [anon_sym_POUND_] = ACTIONS(7), - [sym_num_lit] = ACTIONS(492), + [sym_num_lit] = ACTIONS(638), [anon_sym_SLASH] = ACTIONS(268), [anon_sym_COLON] = ACTIONS(270), [anon_sym_COLON_COLON] = ACTIONS(272), [aux_sym_str_lit_token1] = ACTIONS(274), - [sym_char_lit] = ACTIONS(492), - [sym_nil_lit] = ACTIONS(494), - [sym_bool_lit] = ACTIONS(494), + [sym_char_lit] = ACTIONS(638), + [sym_nil_lit] = ACTIONS(640), + [sym_bool_lit] = ACTIONS(640), [aux_sym__sym_qualified_token1] = ACTIONS(278), [anon_sym_CARET] = ACTIONS(21), [anon_sym_POUND_CARET] = ACTIONS(23), @@ -16182,698 +15760,572 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE_AT] = ACTIONS(304), [anon_sym_TILDE] = ACTIONS(306), }, - [202] = { - [sym__gap] = STATE(182), - [sym_dis_expr] = STATE(182), - [sym__form] = STATE(362), - [sym_kwd_lit] = STATE(362), - [sym_str_lit] = STATE(362), - [sym_sym_lit] = STATE(362), - [sym__metadata_lit] = STATE(424), - [sym_meta_lit] = STATE(314), - [sym_old_meta_lit] = STATE(313), - [sym_list_lit] = STATE(362), - [sym__bare_list_lit] = STATE(392), - [sym_map_lit] = STATE(362), - [sym__bare_map_lit] = STATE(403), - [sym_vec_lit] = STATE(362), - [sym__bare_vec_lit] = STATE(423), - [sym_set_lit] = STATE(362), - [sym__bare_set_lit] = STATE(374), - [sym_anon_fn_lit] = STATE(362), - [sym_regex_lit] = STATE(362), - [sym_read_cond_lit] = STATE(362), - [sym_splicing_read_cond_lit] = STATE(362), - [sym_ns_map_lit] = STATE(362), - [sym_var_quoting_lit] = STATE(362), - [sym_sym_val_lit] = STATE(362), - [sym_evaling_lit] = STATE(362), - [sym_tagged_or_ctor_lit] = STATE(362), - [sym_derefing_lit] = STATE(362), - [sym_quoting_lit] = STATE(362), - [sym_syn_quoting_lit] = STATE(362), - [sym_unquote_splicing_lit] = STATE(362), - [sym_unquoting_lit] = STATE(362), - [aux_sym_dis_expr_repeat1] = STATE(182), - [aux_sym_sym_lit_repeat1] = STATE(306), - [sym__ws] = ACTIONS(848), - [sym_comment] = ACTIONS(848), - [anon_sym_POUND_] = ACTIONS(7), - [sym_num_lit] = ACTIONS(390), - [anon_sym_SLASH] = ACTIONS(268), - [anon_sym_COLON] = ACTIONS(426), - [anon_sym_COLON_COLON] = ACTIONS(428), - [aux_sym_str_lit_token1] = ACTIONS(274), - [sym_char_lit] = ACTIONS(390), - [sym_nil_lit] = ACTIONS(392), - [sym_bool_lit] = ACTIONS(392), - [aux_sym__sym_qualified_token1] = ACTIONS(278), - [anon_sym_CARET] = ACTIONS(21), - [anon_sym_POUND_CARET] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(280), - [anon_sym_LBRACE] = ACTIONS(282), - [anon_sym_LBRACK] = ACTIONS(284), - [anon_sym_POUND] = ACTIONS(430), - [anon_sym_POUND_QMARK] = ACTIONS(288), - [anon_sym_POUND_QMARK_AT] = ACTIONS(290), - [anon_sym_POUND_SQUOTE] = ACTIONS(432), - [anon_sym_POUND_POUND] = ACTIONS(434), - [anon_sym_POUND_EQ] = ACTIONS(296), - [anon_sym_AT] = ACTIONS(436), - [anon_sym_SQUOTE] = ACTIONS(438), - [anon_sym_BQUOTE] = ACTIONS(440), - [anon_sym_TILDE_AT] = ACTIONS(442), - [anon_sym_TILDE] = ACTIONS(444), - }, - [203] = { + [STATE(204)] = { [sym__gap] = STATE(301), [sym_dis_expr] = STATE(301), - [sym__form] = STATE(416), - [sym_kwd_lit] = STATE(416), - [sym_str_lit] = STATE(416), - [sym_sym_lit] = STATE(416), + [sym__form] = STATE(387), + [sym_kwd_lit] = STATE(387), + [sym_str_lit] = STATE(387), + [sym_sym_lit] = STATE(387), [sym__metadata_lit] = STATE(424), - [sym_meta_lit] = STATE(314), - [sym_old_meta_lit] = STATE(313), - [sym_list_lit] = STATE(416), - [sym__bare_list_lit] = STATE(392), - [sym_map_lit] = STATE(416), + [sym_meta_lit] = STATE(312), + [sym_old_meta_lit] = STATE(315), + [sym_list_lit] = STATE(387), + [sym__bare_list_lit] = STATE(402), + [sym_map_lit] = STATE(387), [sym__bare_map_lit] = STATE(403), - [sym_vec_lit] = STATE(416), - [sym__bare_vec_lit] = STATE(423), - [sym_set_lit] = STATE(416), - [sym__bare_set_lit] = STATE(374), - [sym_anon_fn_lit] = STATE(416), - [sym_regex_lit] = STATE(416), - [sym_read_cond_lit] = STATE(416), - [sym_splicing_read_cond_lit] = STATE(416), - [sym_ns_map_lit] = STATE(416), - [sym_var_quoting_lit] = STATE(416), - [sym_sym_val_lit] = STATE(416), - [sym_evaling_lit] = STATE(416), - [sym_tagged_or_ctor_lit] = STATE(416), - [sym_derefing_lit] = STATE(416), - [sym_quoting_lit] = STATE(416), - [sym_syn_quoting_lit] = STATE(416), - [sym_unquote_splicing_lit] = STATE(416), - [sym_unquoting_lit] = STATE(416), + [sym_vec_lit] = STATE(387), + [sym__bare_vec_lit] = STATE(404), + [sym_set_lit] = STATE(387), + [sym__bare_set_lit] = STATE(405), + [sym_anon_fn_lit] = STATE(387), + [sym_regex_lit] = STATE(387), + [sym_read_cond_lit] = STATE(387), + [sym_splicing_read_cond_lit] = STATE(387), + [sym_ns_map_lit] = STATE(387), + [sym_var_quoting_lit] = STATE(387), + [sym_sym_val_lit] = STATE(387), + [sym_evaling_lit] = STATE(387), + [sym_tagged_or_ctor_lit] = STATE(387), + [sym_derefing_lit] = STATE(387), + [sym_quoting_lit] = STATE(387), + [sym_syn_quoting_lit] = STATE(387), + [sym_unquote_splicing_lit] = STATE(387), + [sym_unquoting_lit] = STATE(387), [aux_sym_dis_expr_repeat1] = STATE(301), - [aux_sym_sym_lit_repeat1] = STATE(306), - [sym__ws] = ACTIONS(264), - [sym_comment] = ACTIONS(264), + [aux_sym_sym_lit_repeat1] = STATE(307), + [sym__ws] = ACTIONS(320), + [sym_comment] = ACTIONS(320), [anon_sym_POUND_] = ACTIONS(7), - [sym_num_lit] = ACTIONS(478), + [sym_num_lit] = ACTIONS(642), [anon_sym_SLASH] = ACTIONS(268), - [anon_sym_COLON] = ACTIONS(426), - [anon_sym_COLON_COLON] = ACTIONS(428), + [anon_sym_COLON] = ACTIONS(270), + [anon_sym_COLON_COLON] = ACTIONS(272), [aux_sym_str_lit_token1] = ACTIONS(274), - [sym_char_lit] = ACTIONS(478), - [sym_nil_lit] = ACTIONS(480), - [sym_bool_lit] = ACTIONS(480), + [sym_char_lit] = ACTIONS(642), + [sym_nil_lit] = ACTIONS(644), + [sym_bool_lit] = ACTIONS(644), [aux_sym__sym_qualified_token1] = ACTIONS(278), [anon_sym_CARET] = ACTIONS(21), [anon_sym_POUND_CARET] = ACTIONS(23), [anon_sym_LPAREN] = ACTIONS(280), [anon_sym_LBRACE] = ACTIONS(282), [anon_sym_LBRACK] = ACTIONS(284), - [anon_sym_POUND] = ACTIONS(430), + [anon_sym_POUND] = ACTIONS(286), [anon_sym_POUND_QMARK] = ACTIONS(288), [anon_sym_POUND_QMARK_AT] = ACTIONS(290), - [anon_sym_POUND_SQUOTE] = ACTIONS(432), - [anon_sym_POUND_POUND] = ACTIONS(434), + [anon_sym_POUND_SQUOTE] = ACTIONS(292), + [anon_sym_POUND_POUND] = ACTIONS(294), [anon_sym_POUND_EQ] = ACTIONS(296), - [anon_sym_AT] = ACTIONS(436), - [anon_sym_SQUOTE] = ACTIONS(438), - [anon_sym_BQUOTE] = ACTIONS(440), - [anon_sym_TILDE_AT] = ACTIONS(442), - [anon_sym_TILDE] = ACTIONS(444), + [anon_sym_AT] = ACTIONS(298), + [anon_sym_SQUOTE] = ACTIONS(300), + [anon_sym_BQUOTE] = ACTIONS(302), + [anon_sym_TILDE_AT] = ACTIONS(304), + [anon_sym_TILDE] = ACTIONS(306), }, - [204] = { - [sym__gap] = STATE(190), - [sym_dis_expr] = STATE(190), - [sym__form] = STATE(393), - [sym_kwd_lit] = STATE(393), - [sym_str_lit] = STATE(393), - [sym_sym_lit] = STATE(393), + [STATE(205)] = { + [sym__gap] = STATE(301), + [sym_dis_expr] = STATE(301), + [sym__form] = STATE(388), + [sym_kwd_lit] = STATE(388), + [sym_str_lit] = STATE(388), + [sym_sym_lit] = STATE(388), [sym__metadata_lit] = STATE(424), - [sym_meta_lit] = STATE(314), - [sym_old_meta_lit] = STATE(313), - [sym_list_lit] = STATE(393), - [sym__bare_list_lit] = STATE(392), - [sym_map_lit] = STATE(393), + [sym_meta_lit] = STATE(312), + [sym_old_meta_lit] = STATE(315), + [sym_list_lit] = STATE(388), + [sym__bare_list_lit] = STATE(402), + [sym_map_lit] = STATE(388), [sym__bare_map_lit] = STATE(403), - [sym_vec_lit] = STATE(393), - [sym__bare_vec_lit] = STATE(423), - [sym_set_lit] = STATE(393), - [sym__bare_set_lit] = STATE(374), - [sym_anon_fn_lit] = STATE(393), - [sym_regex_lit] = STATE(393), - [sym_read_cond_lit] = STATE(393), - [sym_splicing_read_cond_lit] = STATE(393), - [sym_ns_map_lit] = STATE(393), - [sym_var_quoting_lit] = STATE(393), - [sym_sym_val_lit] = STATE(393), - [sym_evaling_lit] = STATE(393), - [sym_tagged_or_ctor_lit] = STATE(393), - [sym_derefing_lit] = STATE(393), - [sym_quoting_lit] = STATE(393), - [sym_syn_quoting_lit] = STATE(393), - [sym_unquote_splicing_lit] = STATE(393), - [sym_unquoting_lit] = STATE(393), - [aux_sym_dis_expr_repeat1] = STATE(190), - [aux_sym_sym_lit_repeat1] = STATE(306), - [sym__ws] = ACTIONS(850), - [sym_comment] = ACTIONS(850), + [sym_vec_lit] = STATE(388), + [sym__bare_vec_lit] = STATE(404), + [sym_set_lit] = STATE(388), + [sym__bare_set_lit] = STATE(405), + [sym_anon_fn_lit] = STATE(388), + [sym_regex_lit] = STATE(388), + [sym_read_cond_lit] = STATE(388), + [sym_splicing_read_cond_lit] = STATE(388), + [sym_ns_map_lit] = STATE(388), + [sym_var_quoting_lit] = STATE(388), + [sym_sym_val_lit] = STATE(388), + [sym_evaling_lit] = STATE(388), + [sym_tagged_or_ctor_lit] = STATE(388), + [sym_derefing_lit] = STATE(388), + [sym_quoting_lit] = STATE(388), + [sym_syn_quoting_lit] = STATE(388), + [sym_unquote_splicing_lit] = STATE(388), + [sym_unquoting_lit] = STATE(388), + [aux_sym_dis_expr_repeat1] = STATE(301), + [aux_sym_sym_lit_repeat1] = STATE(307), + [sym__ws] = ACTIONS(320), + [sym_comment] = ACTIONS(320), [anon_sym_POUND_] = ACTIONS(7), - [sym_num_lit] = ACTIONS(448), + [sym_num_lit] = ACTIONS(646), [anon_sym_SLASH] = ACTIONS(268), - [anon_sym_COLON] = ACTIONS(426), - [anon_sym_COLON_COLON] = ACTIONS(428), + [anon_sym_COLON] = ACTIONS(270), + [anon_sym_COLON_COLON] = ACTIONS(272), [aux_sym_str_lit_token1] = ACTIONS(274), - [sym_char_lit] = ACTIONS(448), - [sym_nil_lit] = ACTIONS(450), - [sym_bool_lit] = ACTIONS(450), + [sym_char_lit] = ACTIONS(646), + [sym_nil_lit] = ACTIONS(648), + [sym_bool_lit] = ACTIONS(648), [aux_sym__sym_qualified_token1] = ACTIONS(278), [anon_sym_CARET] = ACTIONS(21), [anon_sym_POUND_CARET] = ACTIONS(23), [anon_sym_LPAREN] = ACTIONS(280), [anon_sym_LBRACE] = ACTIONS(282), [anon_sym_LBRACK] = ACTIONS(284), - [anon_sym_POUND] = ACTIONS(430), + [anon_sym_POUND] = ACTIONS(286), [anon_sym_POUND_QMARK] = ACTIONS(288), [anon_sym_POUND_QMARK_AT] = ACTIONS(290), - [anon_sym_POUND_SQUOTE] = ACTIONS(432), - [anon_sym_POUND_POUND] = ACTIONS(434), + [anon_sym_POUND_SQUOTE] = ACTIONS(292), + [anon_sym_POUND_POUND] = ACTIONS(294), [anon_sym_POUND_EQ] = ACTIONS(296), - [anon_sym_AT] = ACTIONS(436), - [anon_sym_SQUOTE] = ACTIONS(438), - [anon_sym_BQUOTE] = ACTIONS(440), - [anon_sym_TILDE_AT] = ACTIONS(442), - [anon_sym_TILDE] = ACTIONS(444), + [anon_sym_AT] = ACTIONS(298), + [anon_sym_SQUOTE] = ACTIONS(300), + [anon_sym_BQUOTE] = ACTIONS(302), + [anon_sym_TILDE_AT] = ACTIONS(304), + [anon_sym_TILDE] = ACTIONS(306), }, - [205] = { + [STATE(206)] = { [sym__gap] = STATE(301), [sym_dis_expr] = STATE(301), - [sym__form] = STATE(415), - [sym_kwd_lit] = STATE(415), - [sym_str_lit] = STATE(415), - [sym_sym_lit] = STATE(415), + [sym__form] = STATE(389), + [sym_kwd_lit] = STATE(389), + [sym_str_lit] = STATE(389), + [sym_sym_lit] = STATE(389), [sym__metadata_lit] = STATE(424), - [sym_meta_lit] = STATE(314), - [sym_old_meta_lit] = STATE(313), - [sym_list_lit] = STATE(415), - [sym__bare_list_lit] = STATE(392), - [sym_map_lit] = STATE(415), + [sym_meta_lit] = STATE(312), + [sym_old_meta_lit] = STATE(315), + [sym_list_lit] = STATE(389), + [sym__bare_list_lit] = STATE(402), + [sym_map_lit] = STATE(389), [sym__bare_map_lit] = STATE(403), - [sym_vec_lit] = STATE(415), - [sym__bare_vec_lit] = STATE(423), - [sym_set_lit] = STATE(415), - [sym__bare_set_lit] = STATE(374), - [sym_anon_fn_lit] = STATE(415), - [sym_regex_lit] = STATE(415), - [sym_read_cond_lit] = STATE(415), - [sym_splicing_read_cond_lit] = STATE(415), - [sym_ns_map_lit] = STATE(415), - [sym_var_quoting_lit] = STATE(415), - [sym_sym_val_lit] = STATE(415), - [sym_evaling_lit] = STATE(415), - [sym_tagged_or_ctor_lit] = STATE(415), - [sym_derefing_lit] = STATE(415), - [sym_quoting_lit] = STATE(415), - [sym_syn_quoting_lit] = STATE(415), - [sym_unquote_splicing_lit] = STATE(415), - [sym_unquoting_lit] = STATE(415), + [sym_vec_lit] = STATE(389), + [sym__bare_vec_lit] = STATE(404), + [sym_set_lit] = STATE(389), + [sym__bare_set_lit] = STATE(405), + [sym_anon_fn_lit] = STATE(389), + [sym_regex_lit] = STATE(389), + [sym_read_cond_lit] = STATE(389), + [sym_splicing_read_cond_lit] = STATE(389), + [sym_ns_map_lit] = STATE(389), + [sym_var_quoting_lit] = STATE(389), + [sym_sym_val_lit] = STATE(389), + [sym_evaling_lit] = STATE(389), + [sym_tagged_or_ctor_lit] = STATE(389), + [sym_derefing_lit] = STATE(389), + [sym_quoting_lit] = STATE(389), + [sym_syn_quoting_lit] = STATE(389), + [sym_unquote_splicing_lit] = STATE(389), + [sym_unquoting_lit] = STATE(389), [aux_sym_dis_expr_repeat1] = STATE(301), - [aux_sym_sym_lit_repeat1] = STATE(306), - [sym__ws] = ACTIONS(264), - [sym_comment] = ACTIONS(264), + [aux_sym_sym_lit_repeat1] = STATE(307), + [sym__ws] = ACTIONS(320), + [sym_comment] = ACTIONS(320), [anon_sym_POUND_] = ACTIONS(7), - [sym_num_lit] = ACTIONS(474), + [sym_num_lit] = ACTIONS(650), [anon_sym_SLASH] = ACTIONS(268), - [anon_sym_COLON] = ACTIONS(426), - [anon_sym_COLON_COLON] = ACTIONS(428), + [anon_sym_COLON] = ACTIONS(270), + [anon_sym_COLON_COLON] = ACTIONS(272), [aux_sym_str_lit_token1] = ACTIONS(274), - [sym_char_lit] = ACTIONS(474), - [sym_nil_lit] = ACTIONS(476), - [sym_bool_lit] = ACTIONS(476), + [sym_char_lit] = ACTIONS(650), + [sym_nil_lit] = ACTIONS(652), + [sym_bool_lit] = ACTIONS(652), [aux_sym__sym_qualified_token1] = ACTIONS(278), [anon_sym_CARET] = ACTIONS(21), [anon_sym_POUND_CARET] = ACTIONS(23), [anon_sym_LPAREN] = ACTIONS(280), [anon_sym_LBRACE] = ACTIONS(282), [anon_sym_LBRACK] = ACTIONS(284), - [anon_sym_POUND] = ACTIONS(430), + [anon_sym_POUND] = ACTIONS(286), [anon_sym_POUND_QMARK] = ACTIONS(288), [anon_sym_POUND_QMARK_AT] = ACTIONS(290), - [anon_sym_POUND_SQUOTE] = ACTIONS(432), - [anon_sym_POUND_POUND] = ACTIONS(434), + [anon_sym_POUND_SQUOTE] = ACTIONS(292), + [anon_sym_POUND_POUND] = ACTIONS(294), [anon_sym_POUND_EQ] = ACTIONS(296), - [anon_sym_AT] = ACTIONS(436), - [anon_sym_SQUOTE] = ACTIONS(438), - [anon_sym_BQUOTE] = ACTIONS(440), - [anon_sym_TILDE_AT] = ACTIONS(442), - [anon_sym_TILDE] = ACTIONS(444), + [anon_sym_AT] = ACTIONS(298), + [anon_sym_SQUOTE] = ACTIONS(300), + [anon_sym_BQUOTE] = ACTIONS(302), + [anon_sym_TILDE_AT] = ACTIONS(304), + [anon_sym_TILDE] = ACTIONS(306), }, - [206] = { - [sym__gap] = STATE(187), - [sym_dis_expr] = STATE(187), - [sym__form] = STATE(391), - [sym_kwd_lit] = STATE(391), - [sym_str_lit] = STATE(391), - [sym_sym_lit] = STATE(391), + [STATE(207)] = { + [sym__gap] = STATE(301), + [sym_dis_expr] = STATE(301), + [sym__form] = STATE(390), + [sym_kwd_lit] = STATE(390), + [sym_str_lit] = STATE(390), + [sym_sym_lit] = STATE(390), [sym__metadata_lit] = STATE(424), - [sym_meta_lit] = STATE(314), - [sym_old_meta_lit] = STATE(313), - [sym_list_lit] = STATE(391), - [sym__bare_list_lit] = STATE(392), - [sym_map_lit] = STATE(391), + [sym_meta_lit] = STATE(312), + [sym_old_meta_lit] = STATE(315), + [sym_list_lit] = STATE(390), + [sym__bare_list_lit] = STATE(402), + [sym_map_lit] = STATE(390), [sym__bare_map_lit] = STATE(403), - [sym_vec_lit] = STATE(391), - [sym__bare_vec_lit] = STATE(423), - [sym_set_lit] = STATE(391), - [sym__bare_set_lit] = STATE(374), - [sym_anon_fn_lit] = STATE(391), - [sym_regex_lit] = STATE(391), - [sym_read_cond_lit] = STATE(391), - [sym_splicing_read_cond_lit] = STATE(391), - [sym_ns_map_lit] = STATE(391), - [sym_var_quoting_lit] = STATE(391), - [sym_sym_val_lit] = STATE(391), - [sym_evaling_lit] = STATE(391), - [sym_tagged_or_ctor_lit] = STATE(391), - [sym_derefing_lit] = STATE(391), - [sym_quoting_lit] = STATE(391), - [sym_syn_quoting_lit] = STATE(391), - [sym_unquote_splicing_lit] = STATE(391), - [sym_unquoting_lit] = STATE(391), - [aux_sym_dis_expr_repeat1] = STATE(187), - [aux_sym_sym_lit_repeat1] = STATE(306), - [sym__ws] = ACTIONS(852), - [sym_comment] = ACTIONS(852), + [sym_vec_lit] = STATE(390), + [sym__bare_vec_lit] = STATE(404), + [sym_set_lit] = STATE(390), + [sym__bare_set_lit] = STATE(405), + [sym_anon_fn_lit] = STATE(390), + [sym_regex_lit] = STATE(390), + [sym_read_cond_lit] = STATE(390), + [sym_splicing_read_cond_lit] = STATE(390), + [sym_ns_map_lit] = STATE(390), + [sym_var_quoting_lit] = STATE(390), + [sym_sym_val_lit] = STATE(390), + [sym_evaling_lit] = STATE(390), + [sym_tagged_or_ctor_lit] = STATE(390), + [sym_derefing_lit] = STATE(390), + [sym_quoting_lit] = STATE(390), + [sym_syn_quoting_lit] = STATE(390), + [sym_unquote_splicing_lit] = STATE(390), + [sym_unquoting_lit] = STATE(390), + [aux_sym_dis_expr_repeat1] = STATE(301), + [aux_sym_sym_lit_repeat1] = STATE(307), + [sym__ws] = ACTIONS(320), + [sym_comment] = ACTIONS(320), [anon_sym_POUND_] = ACTIONS(7), - [sym_num_lit] = ACTIONS(418), + [sym_num_lit] = ACTIONS(654), [anon_sym_SLASH] = ACTIONS(268), - [anon_sym_COLON] = ACTIONS(426), - [anon_sym_COLON_COLON] = ACTIONS(428), + [anon_sym_COLON] = ACTIONS(270), + [anon_sym_COLON_COLON] = ACTIONS(272), [aux_sym_str_lit_token1] = ACTIONS(274), - [sym_char_lit] = ACTIONS(418), - [sym_nil_lit] = ACTIONS(420), - [sym_bool_lit] = ACTIONS(420), + [sym_char_lit] = ACTIONS(654), + [sym_nil_lit] = ACTIONS(656), + [sym_bool_lit] = ACTIONS(656), [aux_sym__sym_qualified_token1] = ACTIONS(278), [anon_sym_CARET] = ACTIONS(21), [anon_sym_POUND_CARET] = ACTIONS(23), [anon_sym_LPAREN] = ACTIONS(280), [anon_sym_LBRACE] = ACTIONS(282), [anon_sym_LBRACK] = ACTIONS(284), - [anon_sym_POUND] = ACTIONS(430), + [anon_sym_POUND] = ACTIONS(286), [anon_sym_POUND_QMARK] = ACTIONS(288), [anon_sym_POUND_QMARK_AT] = ACTIONS(290), - [anon_sym_POUND_SQUOTE] = ACTIONS(432), - [anon_sym_POUND_POUND] = ACTIONS(434), + [anon_sym_POUND_SQUOTE] = ACTIONS(292), + [anon_sym_POUND_POUND] = ACTIONS(294), [anon_sym_POUND_EQ] = ACTIONS(296), - [anon_sym_AT] = ACTIONS(436), - [anon_sym_SQUOTE] = ACTIONS(438), - [anon_sym_BQUOTE] = ACTIONS(440), - [anon_sym_TILDE_AT] = ACTIONS(442), - [anon_sym_TILDE] = ACTIONS(444), + [anon_sym_AT] = ACTIONS(298), + [anon_sym_SQUOTE] = ACTIONS(300), + [anon_sym_BQUOTE] = ACTIONS(302), + [anon_sym_TILDE_AT] = ACTIONS(304), + [anon_sym_TILDE] = ACTIONS(306), }, - [207] = { + [STATE(208)] = { [sym__gap] = STATE(301), [sym_dis_expr] = STATE(301), - [sym__form] = STATE(414), - [sym_kwd_lit] = STATE(414), - [sym_str_lit] = STATE(414), - [sym_sym_lit] = STATE(414), + [sym__form] = STATE(392), + [sym_kwd_lit] = STATE(392), + [sym_str_lit] = STATE(392), + [sym_sym_lit] = STATE(392), [sym__metadata_lit] = STATE(424), - [sym_meta_lit] = STATE(314), - [sym_old_meta_lit] = STATE(313), - [sym_list_lit] = STATE(414), - [sym__bare_list_lit] = STATE(392), - [sym_map_lit] = STATE(414), + [sym_meta_lit] = STATE(312), + [sym_old_meta_lit] = STATE(315), + [sym_list_lit] = STATE(392), + [sym__bare_list_lit] = STATE(402), + [sym_map_lit] = STATE(392), [sym__bare_map_lit] = STATE(403), - [sym_vec_lit] = STATE(414), - [sym__bare_vec_lit] = STATE(423), - [sym_set_lit] = STATE(414), - [sym__bare_set_lit] = STATE(374), - [sym_anon_fn_lit] = STATE(414), - [sym_regex_lit] = STATE(414), - [sym_read_cond_lit] = STATE(414), - [sym_splicing_read_cond_lit] = STATE(414), - [sym_ns_map_lit] = STATE(414), - [sym_var_quoting_lit] = STATE(414), - [sym_sym_val_lit] = STATE(414), - [sym_evaling_lit] = STATE(414), - [sym_tagged_or_ctor_lit] = STATE(414), - [sym_derefing_lit] = STATE(414), - [sym_quoting_lit] = STATE(414), - [sym_syn_quoting_lit] = STATE(414), - [sym_unquote_splicing_lit] = STATE(414), - [sym_unquoting_lit] = STATE(414), + [sym_vec_lit] = STATE(392), + [sym__bare_vec_lit] = STATE(404), + [sym_set_lit] = STATE(392), + [sym__bare_set_lit] = STATE(405), + [sym_anon_fn_lit] = STATE(392), + [sym_regex_lit] = STATE(392), + [sym_read_cond_lit] = STATE(392), + [sym_splicing_read_cond_lit] = STATE(392), + [sym_ns_map_lit] = STATE(392), + [sym_var_quoting_lit] = STATE(392), + [sym_sym_val_lit] = STATE(392), + [sym_evaling_lit] = STATE(392), + [sym_tagged_or_ctor_lit] = STATE(392), + [sym_derefing_lit] = STATE(392), + [sym_quoting_lit] = STATE(392), + [sym_syn_quoting_lit] = STATE(392), + [sym_unquote_splicing_lit] = STATE(392), + [sym_unquoting_lit] = STATE(392), [aux_sym_dis_expr_repeat1] = STATE(301), - [aux_sym_sym_lit_repeat1] = STATE(306), - [sym__ws] = ACTIONS(264), - [sym_comment] = ACTIONS(264), - [anon_sym_POUND_] = ACTIONS(7), - [sym_num_lit] = ACTIONS(470), - [anon_sym_SLASH] = ACTIONS(268), - [anon_sym_COLON] = ACTIONS(426), - [anon_sym_COLON_COLON] = ACTIONS(428), - [aux_sym_str_lit_token1] = ACTIONS(274), - [sym_char_lit] = ACTIONS(470), - [sym_nil_lit] = ACTIONS(472), - [sym_bool_lit] = ACTIONS(472), - [aux_sym__sym_qualified_token1] = ACTIONS(278), - [anon_sym_CARET] = ACTIONS(21), - [anon_sym_POUND_CARET] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(280), - [anon_sym_LBRACE] = ACTIONS(282), - [anon_sym_LBRACK] = ACTIONS(284), - [anon_sym_POUND] = ACTIONS(430), - [anon_sym_POUND_QMARK] = ACTIONS(288), - [anon_sym_POUND_QMARK_AT] = ACTIONS(290), - [anon_sym_POUND_SQUOTE] = ACTIONS(432), - [anon_sym_POUND_POUND] = ACTIONS(434), - [anon_sym_POUND_EQ] = ACTIONS(296), - [anon_sym_AT] = ACTIONS(436), - [anon_sym_SQUOTE] = ACTIONS(438), - [anon_sym_BQUOTE] = ACTIONS(440), - [anon_sym_TILDE_AT] = ACTIONS(442), - [anon_sym_TILDE] = ACTIONS(444), - }, - [208] = { - [sym__gap] = STATE(199), - [sym_dis_expr] = STATE(199), - [sym__form] = STATE(409), - [sym_kwd_lit] = STATE(409), - [sym_str_lit] = STATE(409), - [sym_sym_lit] = STATE(409), - [sym__metadata_lit] = STATE(424), - [sym_meta_lit] = STATE(314), - [sym_old_meta_lit] = STATE(313), - [sym_list_lit] = STATE(409), - [sym__bare_list_lit] = STATE(392), - [sym_map_lit] = STATE(409), - [sym__bare_map_lit] = STATE(403), - [sym_vec_lit] = STATE(409), - [sym__bare_vec_lit] = STATE(423), - [sym_set_lit] = STATE(409), - [sym__bare_set_lit] = STATE(374), - [sym_anon_fn_lit] = STATE(409), - [sym_regex_lit] = STATE(409), - [sym_read_cond_lit] = STATE(409), - [sym_splicing_read_cond_lit] = STATE(409), - [sym_ns_map_lit] = STATE(409), - [sym_var_quoting_lit] = STATE(409), - [sym_sym_val_lit] = STATE(409), - [sym_evaling_lit] = STATE(409), - [sym_tagged_or_ctor_lit] = STATE(409), - [sym_derefing_lit] = STATE(409), - [sym_quoting_lit] = STATE(409), - [sym_syn_quoting_lit] = STATE(409), - [sym_unquote_splicing_lit] = STATE(409), - [sym_unquoting_lit] = STATE(409), - [aux_sym_dis_expr_repeat1] = STATE(199), - [aux_sym_sym_lit_repeat1] = STATE(306), - [sym__ws] = ACTIONS(854), - [sym_comment] = ACTIONS(854), + [aux_sym_sym_lit_repeat1] = STATE(307), + [sym__ws] = ACTIONS(320), + [sym_comment] = ACTIONS(320), [anon_sym_POUND_] = ACTIONS(7), - [sym_num_lit] = ACTIONS(488), + [sym_num_lit] = ACTIONS(658), [anon_sym_SLASH] = ACTIONS(268), - [anon_sym_COLON] = ACTIONS(426), - [anon_sym_COLON_COLON] = ACTIONS(428), + [anon_sym_COLON] = ACTIONS(270), + [anon_sym_COLON_COLON] = ACTIONS(272), [aux_sym_str_lit_token1] = ACTIONS(274), - [sym_char_lit] = ACTIONS(488), - [sym_nil_lit] = ACTIONS(490), - [sym_bool_lit] = ACTIONS(490), + [sym_char_lit] = ACTIONS(658), + [sym_nil_lit] = ACTIONS(660), + [sym_bool_lit] = ACTIONS(660), [aux_sym__sym_qualified_token1] = ACTIONS(278), [anon_sym_CARET] = ACTIONS(21), [anon_sym_POUND_CARET] = ACTIONS(23), [anon_sym_LPAREN] = ACTIONS(280), [anon_sym_LBRACE] = ACTIONS(282), [anon_sym_LBRACK] = ACTIONS(284), - [anon_sym_POUND] = ACTIONS(430), + [anon_sym_POUND] = ACTIONS(286), [anon_sym_POUND_QMARK] = ACTIONS(288), [anon_sym_POUND_QMARK_AT] = ACTIONS(290), - [anon_sym_POUND_SQUOTE] = ACTIONS(432), - [anon_sym_POUND_POUND] = ACTIONS(434), + [anon_sym_POUND_SQUOTE] = ACTIONS(292), + [anon_sym_POUND_POUND] = ACTIONS(294), [anon_sym_POUND_EQ] = ACTIONS(296), - [anon_sym_AT] = ACTIONS(436), - [anon_sym_SQUOTE] = ACTIONS(438), - [anon_sym_BQUOTE] = ACTIONS(440), - [anon_sym_TILDE_AT] = ACTIONS(442), - [anon_sym_TILDE] = ACTIONS(444), + [anon_sym_AT] = ACTIONS(298), + [anon_sym_SQUOTE] = ACTIONS(300), + [anon_sym_BQUOTE] = ACTIONS(302), + [anon_sym_TILDE_AT] = ACTIONS(304), + [anon_sym_TILDE] = ACTIONS(306), }, - [209] = { - [sym__gap] = STATE(186), - [sym_dis_expr] = STATE(186), - [sym__form] = STATE(410), - [sym_kwd_lit] = STATE(410), - [sym_str_lit] = STATE(410), - [sym_sym_lit] = STATE(410), + [STATE(209)] = { + [sym__gap] = STATE(210), + [sym_dis_expr] = STATE(210), + [sym__form] = STATE(394), + [sym_kwd_lit] = STATE(394), + [sym_str_lit] = STATE(394), + [sym_sym_lit] = STATE(394), [sym__metadata_lit] = STATE(424), - [sym_meta_lit] = STATE(314), - [sym_old_meta_lit] = STATE(313), - [sym_list_lit] = STATE(410), - [sym__bare_list_lit] = STATE(392), - [sym_map_lit] = STATE(410), + [sym_meta_lit] = STATE(312), + [sym_old_meta_lit] = STATE(315), + [sym_list_lit] = STATE(394), + [sym__bare_list_lit] = STATE(402), + [sym_map_lit] = STATE(394), [sym__bare_map_lit] = STATE(403), - [sym_vec_lit] = STATE(410), - [sym__bare_vec_lit] = STATE(423), - [sym_set_lit] = STATE(410), - [sym__bare_set_lit] = STATE(374), - [sym_anon_fn_lit] = STATE(410), - [sym_regex_lit] = STATE(410), - [sym_read_cond_lit] = STATE(410), - [sym_splicing_read_cond_lit] = STATE(410), - [sym_ns_map_lit] = STATE(410), - [sym_var_quoting_lit] = STATE(410), - [sym_sym_val_lit] = STATE(410), - [sym_evaling_lit] = STATE(410), - [sym_tagged_or_ctor_lit] = STATE(410), - [sym_derefing_lit] = STATE(410), - [sym_quoting_lit] = STATE(410), - [sym_syn_quoting_lit] = STATE(410), - [sym_unquote_splicing_lit] = STATE(410), - [sym_unquoting_lit] = STATE(410), - [aux_sym_dis_expr_repeat1] = STATE(186), - [aux_sym_sym_lit_repeat1] = STATE(306), + [sym_vec_lit] = STATE(394), + [sym__bare_vec_lit] = STATE(404), + [sym_set_lit] = STATE(394), + [sym__bare_set_lit] = STATE(405), + [sym_anon_fn_lit] = STATE(394), + [sym_regex_lit] = STATE(394), + [sym_read_cond_lit] = STATE(394), + [sym_splicing_read_cond_lit] = STATE(394), + [sym_ns_map_lit] = STATE(394), + [sym_var_quoting_lit] = STATE(394), + [sym_sym_val_lit] = STATE(394), + [sym_evaling_lit] = STATE(394), + [sym_tagged_or_ctor_lit] = STATE(394), + [sym_derefing_lit] = STATE(394), + [sym_quoting_lit] = STATE(394), + [sym_syn_quoting_lit] = STATE(394), + [sym_unquote_splicing_lit] = STATE(394), + [sym_unquoting_lit] = STATE(394), + [aux_sym_dis_expr_repeat1] = STATE(210), + [aux_sym_sym_lit_repeat1] = STATE(307), [sym__ws] = ACTIONS(856), [sym_comment] = ACTIONS(856), [anon_sym_POUND_] = ACTIONS(7), - [sym_num_lit] = ACTIONS(412), + [sym_num_lit] = ACTIONS(664), [anon_sym_SLASH] = ACTIONS(268), - [anon_sym_COLON] = ACTIONS(426), - [anon_sym_COLON_COLON] = ACTIONS(428), + [anon_sym_COLON] = ACTIONS(270), + [anon_sym_COLON_COLON] = ACTIONS(272), [aux_sym_str_lit_token1] = ACTIONS(274), - [sym_char_lit] = ACTIONS(412), - [sym_nil_lit] = ACTIONS(414), - [sym_bool_lit] = ACTIONS(414), + [sym_char_lit] = ACTIONS(664), + [sym_nil_lit] = ACTIONS(666), + [sym_bool_lit] = ACTIONS(666), [aux_sym__sym_qualified_token1] = ACTIONS(278), [anon_sym_CARET] = ACTIONS(21), [anon_sym_POUND_CARET] = ACTIONS(23), [anon_sym_LPAREN] = ACTIONS(280), [anon_sym_LBRACE] = ACTIONS(282), [anon_sym_LBRACK] = ACTIONS(284), - [anon_sym_POUND] = ACTIONS(430), + [anon_sym_POUND] = ACTIONS(286), [anon_sym_POUND_QMARK] = ACTIONS(288), [anon_sym_POUND_QMARK_AT] = ACTIONS(290), - [anon_sym_POUND_SQUOTE] = ACTIONS(432), - [anon_sym_POUND_POUND] = ACTIONS(434), + [anon_sym_POUND_SQUOTE] = ACTIONS(292), + [anon_sym_POUND_POUND] = ACTIONS(294), [anon_sym_POUND_EQ] = ACTIONS(296), - [anon_sym_AT] = ACTIONS(436), - [anon_sym_SQUOTE] = ACTIONS(438), - [anon_sym_BQUOTE] = ACTIONS(440), - [anon_sym_TILDE_AT] = ACTIONS(442), - [anon_sym_TILDE] = ACTIONS(444), + [anon_sym_AT] = ACTIONS(298), + [anon_sym_SQUOTE] = ACTIONS(300), + [anon_sym_BQUOTE] = ACTIONS(302), + [anon_sym_TILDE_AT] = ACTIONS(304), + [anon_sym_TILDE] = ACTIONS(306), }, - [210] = { + [STATE(210)] = { [sym__gap] = STATE(301), [sym_dis_expr] = STATE(301), - [sym__form] = STATE(412), - [sym_kwd_lit] = STATE(412), - [sym_str_lit] = STATE(412), - [sym_sym_lit] = STATE(412), + [sym__form] = STATE(396), + [sym_kwd_lit] = STATE(396), + [sym_str_lit] = STATE(396), + [sym_sym_lit] = STATE(396), [sym__metadata_lit] = STATE(424), - [sym_meta_lit] = STATE(314), - [sym_old_meta_lit] = STATE(313), - [sym_list_lit] = STATE(412), - [sym__bare_list_lit] = STATE(392), - [sym_map_lit] = STATE(412), + [sym_meta_lit] = STATE(312), + [sym_old_meta_lit] = STATE(315), + [sym_list_lit] = STATE(396), + [sym__bare_list_lit] = STATE(402), + [sym_map_lit] = STATE(396), [sym__bare_map_lit] = STATE(403), - [sym_vec_lit] = STATE(412), - [sym__bare_vec_lit] = STATE(423), - [sym_set_lit] = STATE(412), - [sym__bare_set_lit] = STATE(374), - [sym_anon_fn_lit] = STATE(412), - [sym_regex_lit] = STATE(412), - [sym_read_cond_lit] = STATE(412), - [sym_splicing_read_cond_lit] = STATE(412), - [sym_ns_map_lit] = STATE(412), - [sym_var_quoting_lit] = STATE(412), - [sym_sym_val_lit] = STATE(412), - [sym_evaling_lit] = STATE(412), - [sym_tagged_or_ctor_lit] = STATE(412), - [sym_derefing_lit] = STATE(412), - [sym_quoting_lit] = STATE(412), - [sym_syn_quoting_lit] = STATE(412), - [sym_unquote_splicing_lit] = STATE(412), - [sym_unquoting_lit] = STATE(412), + [sym_vec_lit] = STATE(396), + [sym__bare_vec_lit] = STATE(404), + [sym_set_lit] = STATE(396), + [sym__bare_set_lit] = STATE(405), + [sym_anon_fn_lit] = STATE(396), + [sym_regex_lit] = STATE(396), + [sym_read_cond_lit] = STATE(396), + [sym_splicing_read_cond_lit] = STATE(396), + [sym_ns_map_lit] = STATE(396), + [sym_var_quoting_lit] = STATE(396), + [sym_sym_val_lit] = STATE(396), + [sym_evaling_lit] = STATE(396), + [sym_tagged_or_ctor_lit] = STATE(396), + [sym_derefing_lit] = STATE(396), + [sym_quoting_lit] = STATE(396), + [sym_syn_quoting_lit] = STATE(396), + [sym_unquote_splicing_lit] = STATE(396), + [sym_unquoting_lit] = STATE(396), [aux_sym_dis_expr_repeat1] = STATE(301), - [aux_sym_sym_lit_repeat1] = STATE(306), - [sym__ws] = ACTIONS(264), - [sym_comment] = ACTIONS(264), + [aux_sym_sym_lit_repeat1] = STATE(307), + [sym__ws] = ACTIONS(320), + [sym_comment] = ACTIONS(320), [anon_sym_POUND_] = ACTIONS(7), - [sym_num_lit] = ACTIONS(466), + [sym_num_lit] = ACTIONS(668), [anon_sym_SLASH] = ACTIONS(268), - [anon_sym_COLON] = ACTIONS(426), - [anon_sym_COLON_COLON] = ACTIONS(428), + [anon_sym_COLON] = ACTIONS(270), + [anon_sym_COLON_COLON] = ACTIONS(272), [aux_sym_str_lit_token1] = ACTIONS(274), - [sym_char_lit] = ACTIONS(466), - [sym_nil_lit] = ACTIONS(468), - [sym_bool_lit] = ACTIONS(468), + [sym_char_lit] = ACTIONS(668), + [sym_nil_lit] = ACTIONS(670), + [sym_bool_lit] = ACTIONS(670), [aux_sym__sym_qualified_token1] = ACTIONS(278), [anon_sym_CARET] = ACTIONS(21), [anon_sym_POUND_CARET] = ACTIONS(23), [anon_sym_LPAREN] = ACTIONS(280), [anon_sym_LBRACE] = ACTIONS(282), [anon_sym_LBRACK] = ACTIONS(284), - [anon_sym_POUND] = ACTIONS(430), + [anon_sym_POUND] = ACTIONS(286), [anon_sym_POUND_QMARK] = ACTIONS(288), [anon_sym_POUND_QMARK_AT] = ACTIONS(290), - [anon_sym_POUND_SQUOTE] = ACTIONS(432), - [anon_sym_POUND_POUND] = ACTIONS(434), + [anon_sym_POUND_SQUOTE] = ACTIONS(292), + [anon_sym_POUND_POUND] = ACTIONS(294), [anon_sym_POUND_EQ] = ACTIONS(296), - [anon_sym_AT] = ACTIONS(436), - [anon_sym_SQUOTE] = ACTIONS(438), - [anon_sym_BQUOTE] = ACTIONS(440), - [anon_sym_TILDE_AT] = ACTIONS(442), - [anon_sym_TILDE] = ACTIONS(444), + [anon_sym_AT] = ACTIONS(298), + [anon_sym_SQUOTE] = ACTIONS(300), + [anon_sym_BQUOTE] = ACTIONS(302), + [anon_sym_TILDE_AT] = ACTIONS(304), + [anon_sym_TILDE] = ACTIONS(306), }, - [211] = { - [sym__gap] = STATE(185), - [sym_dis_expr] = STATE(185), - [sym__form] = STATE(384), - [sym_kwd_lit] = STATE(384), - [sym_str_lit] = STATE(384), - [sym_sym_lit] = STATE(384), + [STATE(211)] = { + [sym__gap] = STATE(183), + [sym_dis_expr] = STATE(183), + [sym__form] = STATE(406), + [sym_kwd_lit] = STATE(406), + [sym_str_lit] = STATE(406), + [sym_sym_lit] = STATE(406), [sym__metadata_lit] = STATE(424), - [sym_meta_lit] = STATE(314), - [sym_old_meta_lit] = STATE(313), - [sym_list_lit] = STATE(384), - [sym__bare_list_lit] = STATE(392), - [sym_map_lit] = STATE(384), + [sym_meta_lit] = STATE(312), + [sym_old_meta_lit] = STATE(315), + [sym_list_lit] = STATE(406), + [sym__bare_list_lit] = STATE(402), + [sym_map_lit] = STATE(406), [sym__bare_map_lit] = STATE(403), - [sym_vec_lit] = STATE(384), - [sym__bare_vec_lit] = STATE(423), - [sym_set_lit] = STATE(384), - [sym__bare_set_lit] = STATE(374), - [sym_anon_fn_lit] = STATE(384), - [sym_regex_lit] = STATE(384), - [sym_read_cond_lit] = STATE(384), - [sym_splicing_read_cond_lit] = STATE(384), - [sym_ns_map_lit] = STATE(384), - [sym_var_quoting_lit] = STATE(384), - [sym_sym_val_lit] = STATE(384), - [sym_evaling_lit] = STATE(384), - [sym_tagged_or_ctor_lit] = STATE(384), - [sym_derefing_lit] = STATE(384), - [sym_quoting_lit] = STATE(384), - [sym_syn_quoting_lit] = STATE(384), - [sym_unquote_splicing_lit] = STATE(384), - [sym_unquoting_lit] = STATE(384), - [aux_sym_dis_expr_repeat1] = STATE(185), + [sym_vec_lit] = STATE(406), + [sym__bare_vec_lit] = STATE(404), + [sym_set_lit] = STATE(406), + [sym__bare_set_lit] = STATE(405), + [sym_anon_fn_lit] = STATE(406), + [sym_regex_lit] = STATE(406), + [sym_read_cond_lit] = STATE(406), + [sym_splicing_read_cond_lit] = STATE(406), + [sym_ns_map_lit] = STATE(406), + [sym_var_quoting_lit] = STATE(406), + [sym_sym_val_lit] = STATE(406), + [sym_evaling_lit] = STATE(406), + [sym_tagged_or_ctor_lit] = STATE(406), + [sym_derefing_lit] = STATE(406), + [sym_quoting_lit] = STATE(406), + [sym_syn_quoting_lit] = STATE(406), + [sym_unquote_splicing_lit] = STATE(406), + [sym_unquoting_lit] = STATE(406), + [aux_sym_dis_expr_repeat1] = STATE(183), [aux_sym_sym_lit_repeat1] = STATE(306), [sym__ws] = ACTIONS(858), [sym_comment] = ACTIONS(858), [anon_sym_POUND_] = ACTIONS(7), - [sym_num_lit] = ACTIONS(406), + [sym_num_lit] = ACTIONS(674), [anon_sym_SLASH] = ACTIONS(268), - [anon_sym_COLON] = ACTIONS(426), - [anon_sym_COLON_COLON] = ACTIONS(428), + [anon_sym_COLON] = ACTIONS(466), + [anon_sym_COLON_COLON] = ACTIONS(468), [aux_sym_str_lit_token1] = ACTIONS(274), - [sym_char_lit] = ACTIONS(406), - [sym_nil_lit] = ACTIONS(408), - [sym_bool_lit] = ACTIONS(408), + [sym_char_lit] = ACTIONS(674), + [sym_nil_lit] = ACTIONS(676), + [sym_bool_lit] = ACTIONS(676), [aux_sym__sym_qualified_token1] = ACTIONS(278), [anon_sym_CARET] = ACTIONS(21), [anon_sym_POUND_CARET] = ACTIONS(23), [anon_sym_LPAREN] = ACTIONS(280), [anon_sym_LBRACE] = ACTIONS(282), [anon_sym_LBRACK] = ACTIONS(284), - [anon_sym_POUND] = ACTIONS(430), + [anon_sym_POUND] = ACTIONS(472), [anon_sym_POUND_QMARK] = ACTIONS(288), [anon_sym_POUND_QMARK_AT] = ACTIONS(290), - [anon_sym_POUND_SQUOTE] = ACTIONS(432), - [anon_sym_POUND_POUND] = ACTIONS(434), + [anon_sym_POUND_SQUOTE] = ACTIONS(474), + [anon_sym_POUND_POUND] = ACTIONS(476), [anon_sym_POUND_EQ] = ACTIONS(296), - [anon_sym_AT] = ACTIONS(436), - [anon_sym_SQUOTE] = ACTIONS(438), - [anon_sym_BQUOTE] = ACTIONS(440), - [anon_sym_TILDE_AT] = ACTIONS(442), - [anon_sym_TILDE] = ACTIONS(444), + [anon_sym_AT] = ACTIONS(478), + [anon_sym_SQUOTE] = ACTIONS(480), + [anon_sym_BQUOTE] = ACTIONS(482), + [anon_sym_TILDE_AT] = ACTIONS(484), + [anon_sym_TILDE] = ACTIONS(486), }, - [212] = { + [STATE(212)] = { [sym__gap] = STATE(301), [sym_dis_expr] = STATE(301), - [sym__form] = STATE(369), - [sym_kwd_lit] = STATE(369), - [sym_str_lit] = STATE(369), - [sym_sym_lit] = STATE(369), + [sym__form] = STATE(290), + [sym_kwd_lit] = STATE(290), + [sym_str_lit] = STATE(290), + [sym_sym_lit] = STATE(290), [sym__metadata_lit] = STATE(424), - [sym_meta_lit] = STATE(314), - [sym_old_meta_lit] = STATE(313), - [sym_list_lit] = STATE(369), - [sym__bare_list_lit] = STATE(392), - [sym_map_lit] = STATE(369), - [sym__bare_map_lit] = STATE(403), - [sym_vec_lit] = STATE(369), - [sym__bare_vec_lit] = STATE(423), - [sym_set_lit] = STATE(369), - [sym__bare_set_lit] = STATE(374), - [sym_anon_fn_lit] = STATE(369), - [sym_regex_lit] = STATE(369), - [sym_read_cond_lit] = STATE(369), - [sym_splicing_read_cond_lit] = STATE(369), - [sym_ns_map_lit] = STATE(369), - [sym_var_quoting_lit] = STATE(369), - [sym_sym_val_lit] = STATE(369), - [sym_evaling_lit] = STATE(369), - [sym_tagged_or_ctor_lit] = STATE(369), - [sym_derefing_lit] = STATE(369), - [sym_quoting_lit] = STATE(369), - [sym_syn_quoting_lit] = STATE(369), - [sym_unquote_splicing_lit] = STATE(369), - [sym_unquoting_lit] = STATE(369), + [sym_meta_lit] = STATE(312), + [sym_old_meta_lit] = STATE(315), + [sym_list_lit] = STATE(290), + [sym__bare_list_lit] = STATE(299), + [sym_map_lit] = STATE(290), + [sym__bare_map_lit] = STATE(214), + [sym_vec_lit] = STATE(290), + [sym__bare_vec_lit] = STATE(217), + [sym_set_lit] = STATE(290), + [sym__bare_set_lit] = STATE(219), + [sym_anon_fn_lit] = STATE(290), + [sym_regex_lit] = STATE(290), + [sym_read_cond_lit] = STATE(290), + [sym_splicing_read_cond_lit] = STATE(290), + [sym_ns_map_lit] = STATE(290), + [sym_var_quoting_lit] = STATE(290), + [sym_sym_val_lit] = STATE(290), + [sym_evaling_lit] = STATE(290), + [sym_tagged_or_ctor_lit] = STATE(290), + [sym_derefing_lit] = STATE(290), + [sym_quoting_lit] = STATE(290), + [sym_syn_quoting_lit] = STATE(290), + [sym_unquote_splicing_lit] = STATE(290), + [sym_unquoting_lit] = STATE(290), [aux_sym_dis_expr_repeat1] = STATE(301), - [aux_sym_sym_lit_repeat1] = STATE(306), - [sym__ws] = ACTIONS(264), - [sym_comment] = ACTIONS(264), + [aux_sym_sym_lit_repeat1] = STATE(303), + [sym__ws] = ACTIONS(320), + [sym_comment] = ACTIONS(320), [anon_sym_POUND_] = ACTIONS(7), - [sym_num_lit] = ACTIONS(458), - [anon_sym_SLASH] = ACTIONS(268), - [anon_sym_COLON] = ACTIONS(426), - [anon_sym_COLON_COLON] = ACTIONS(428), - [aux_sym_str_lit_token1] = ACTIONS(274), - [sym_char_lit] = ACTIONS(458), - [sym_nil_lit] = ACTIONS(460), - [sym_bool_lit] = ACTIONS(460), - [aux_sym__sym_qualified_token1] = ACTIONS(278), + [sym_num_lit] = ACTIONS(448), + [anon_sym_SLASH] = ACTIONS(9), + [anon_sym_COLON] = ACTIONS(698), + [anon_sym_COLON_COLON] = ACTIONS(700), + [aux_sym_str_lit_token1] = ACTIONS(15), + [sym_char_lit] = ACTIONS(448), + [sym_nil_lit] = ACTIONS(450), + [sym_bool_lit] = ACTIONS(450), + [aux_sym__sym_qualified_token1] = ACTIONS(19), [anon_sym_CARET] = ACTIONS(21), [anon_sym_POUND_CARET] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(280), - [anon_sym_LBRACE] = ACTIONS(282), - [anon_sym_LBRACK] = ACTIONS(284), - [anon_sym_POUND] = ACTIONS(430), - [anon_sym_POUND_QMARK] = ACTIONS(288), - [anon_sym_POUND_QMARK_AT] = ACTIONS(290), - [anon_sym_POUND_SQUOTE] = ACTIONS(432), - [anon_sym_POUND_POUND] = ACTIONS(434), - [anon_sym_POUND_EQ] = ACTIONS(296), - [anon_sym_AT] = ACTIONS(436), - [anon_sym_SQUOTE] = ACTIONS(438), - [anon_sym_BQUOTE] = ACTIONS(440), - [anon_sym_TILDE_AT] = ACTIONS(442), - [anon_sym_TILDE] = ACTIONS(444), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_POUND] = ACTIONS(704), + [anon_sym_POUND_QMARK] = ACTIONS(33), + [anon_sym_POUND_QMARK_AT] = ACTIONS(35), + [anon_sym_POUND_SQUOTE] = ACTIONS(706), + [anon_sym_POUND_POUND] = ACTIONS(708), + [anon_sym_POUND_EQ] = ACTIONS(41), + [anon_sym_AT] = ACTIONS(710), + [anon_sym_SQUOTE] = ACTIONS(712), + [anon_sym_BQUOTE] = ACTIONS(714), + [anon_sym_TILDE_AT] = ACTIONS(716), + [anon_sym_TILDE] = ACTIONS(718), }, }; @@ -17020,10 +16472,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_TILDE_AT, - [151] = 3, - ACTIONS(880), 1, - anon_sym_SLASH, - ACTIONS(882), 7, + [151] = 2, + ACTIONS(880), 7, anon_sym_COLON, sym_nil_lit, sym_bool_lit, @@ -17031,12 +16481,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_TILDE, - ACTIONS(878), 24, + ACTIONS(878), 25, ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, sym_num_lit, + anon_sym_SLASH, anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, @@ -17056,8 +16507,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_TILDE_AT, - [190] = 2, - ACTIONS(886), 7, + [188] = 2, + ACTIONS(884), 7, anon_sym_COLON, sym_nil_lit, sym_bool_lit, @@ -17065,7 +16516,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_TILDE, - ACTIONS(884), 25, + ACTIONS(882), 25, ts_builtin_sym_end, sym__ws, sym_comment, @@ -17091,8 +16542,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_TILDE_AT, - [227] = 2, - ACTIONS(890), 7, + [225] = 2, + ACTIONS(888), 7, anon_sym_COLON, sym_nil_lit, sym_bool_lit, @@ -17100,7 +16551,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_TILDE, - ACTIONS(888), 25, + ACTIONS(886), 25, ts_builtin_sym_end, sym__ws, sym_comment, @@ -17126,8 +16577,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_TILDE_AT, - [264] = 2, - ACTIONS(894), 7, + [262] = 2, + ACTIONS(892), 7, anon_sym_COLON, sym_nil_lit, sym_bool_lit, @@ -17135,7 +16586,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_TILDE, - ACTIONS(892), 25, + ACTIONS(890), 25, ts_builtin_sym_end, sym__ws, sym_comment, @@ -17161,8 +16612,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_TILDE_AT, - [301] = 2, - ACTIONS(898), 7, + [299] = 2, + ACTIONS(896), 7, anon_sym_COLON, sym_nil_lit, sym_bool_lit, @@ -17170,7 +16621,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_TILDE, - ACTIONS(896), 25, + ACTIONS(894), 25, ts_builtin_sym_end, sym__ws, sym_comment, @@ -17196,8 +16647,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_TILDE_AT, - [338] = 2, - ACTIONS(902), 7, + [336] = 2, + ACTIONS(900), 7, anon_sym_COLON, sym_nil_lit, sym_bool_lit, @@ -17205,7 +16656,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_TILDE, - ACTIONS(900), 25, + ACTIONS(898), 25, ts_builtin_sym_end, sym__ws, sym_comment, @@ -17231,8 +16682,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_TILDE_AT, - [375] = 2, - ACTIONS(906), 7, + [373] = 2, + ACTIONS(904), 7, anon_sym_COLON, sym_nil_lit, sym_bool_lit, @@ -17240,7 +16691,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_TILDE, - ACTIONS(904), 25, + ACTIONS(902), 25, ts_builtin_sym_end, sym__ws, sym_comment, @@ -17266,8 +16717,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_TILDE_AT, - [412] = 2, - ACTIONS(910), 7, + [410] = 2, + ACTIONS(908), 7, anon_sym_COLON, sym_nil_lit, sym_bool_lit, @@ -17275,7 +16726,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_TILDE, - ACTIONS(908), 25, + ACTIONS(906), 25, ts_builtin_sym_end, sym__ws, sym_comment, @@ -17301,8 +16752,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_TILDE_AT, - [449] = 2, - ACTIONS(914), 7, + [447] = 2, + ACTIONS(912), 7, anon_sym_COLON, sym_nil_lit, sym_bool_lit, @@ -17310,7 +16761,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_TILDE, - ACTIONS(912), 25, + ACTIONS(910), 25, ts_builtin_sym_end, sym__ws, sym_comment, @@ -17336,8 +16787,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_TILDE_AT, - [486] = 2, - ACTIONS(918), 7, + [484] = 3, + ACTIONS(914), 1, + anon_sym_SLASH, + ACTIONS(912), 7, anon_sym_COLON, sym_nil_lit, sym_bool_lit, @@ -17345,13 +16798,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_TILDE, - ACTIONS(916), 25, + ACTIONS(910), 24, ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, sym_num_lit, - anon_sym_SLASH, anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, @@ -17371,8 +16823,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_TILDE_AT, - [523] = 2, - ACTIONS(922), 7, + [523] = 3, + ACTIONS(918), 1, + anon_sym_SLASH, + ACTIONS(920), 7, anon_sym_COLON, sym_nil_lit, sym_bool_lit, @@ -17380,13 +16834,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_TILDE, - ACTIONS(920), 25, + ACTIONS(916), 24, ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, sym_num_lit, - anon_sym_SLASH, anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, @@ -17406,8 +16859,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_TILDE_AT, - [560] = 2, - ACTIONS(926), 7, + [562] = 3, + ACTIONS(922), 1, + anon_sym_SLASH, + ACTIONS(862), 7, anon_sym_COLON, sym_nil_lit, sym_bool_lit, @@ -17415,13 +16870,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_TILDE, - ACTIONS(924), 25, + ACTIONS(860), 24, ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, sym_num_lit, - anon_sym_SLASH, anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, @@ -17441,8 +16895,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_TILDE_AT, - [597] = 2, - ACTIONS(930), 7, + [601] = 2, + ACTIONS(920), 7, anon_sym_COLON, sym_nil_lit, sym_bool_lit, @@ -17450,7 +16904,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_TILDE, - ACTIONS(928), 25, + ACTIONS(916), 25, ts_builtin_sym_end, sym__ws, sym_comment, @@ -17476,10 +16930,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_TILDE_AT, - [634] = 3, - ACTIONS(932), 1, - anon_sym_SLASH, - ACTIONS(862), 7, + [638] = 2, + ACTIONS(926), 7, anon_sym_COLON, sym_nil_lit, sym_bool_lit, @@ -17487,12 +16939,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_TILDE, - ACTIONS(860), 24, + ACTIONS(924), 25, ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, sym_num_lit, + anon_sym_SLASH, anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, @@ -17512,8 +16965,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_TILDE_AT, - [673] = 2, - ACTIONS(936), 7, + [675] = 2, + ACTIONS(930), 7, anon_sym_COLON, sym_nil_lit, sym_bool_lit, @@ -17521,7 +16974,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_TILDE, - ACTIONS(934), 25, + ACTIONS(928), 25, ts_builtin_sym_end, sym__ws, sym_comment, @@ -17547,8 +17000,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_TILDE_AT, - [710] = 2, - ACTIONS(926), 7, + [712] = 2, + ACTIONS(934), 7, anon_sym_COLON, sym_nil_lit, sym_bool_lit, @@ -17556,7 +17009,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_TILDE, - ACTIONS(924), 25, + ACTIONS(932), 25, ts_builtin_sym_end, sym__ws, sym_comment, @@ -17582,8 +17035,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_TILDE_AT, - [747] = 2, - ACTIONS(940), 7, + [749] = 2, + ACTIONS(938), 7, anon_sym_COLON, sym_nil_lit, sym_bool_lit, @@ -17591,7 +17044,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_TILDE, - ACTIONS(938), 25, + ACTIONS(936), 25, ts_builtin_sym_end, sym__ws, sym_comment, @@ -17617,8 +17070,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_TILDE_AT, - [784] = 2, - ACTIONS(944), 7, + [786] = 2, + ACTIONS(942), 7, anon_sym_COLON, sym_nil_lit, sym_bool_lit, @@ -17626,7 +17079,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_TILDE, - ACTIONS(942), 25, + ACTIONS(940), 25, ts_builtin_sym_end, sym__ws, sym_comment, @@ -17652,8 +17105,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_TILDE_AT, - [821] = 2, - ACTIONS(948), 7, + [823] = 2, + ACTIONS(946), 7, anon_sym_COLON, sym_nil_lit, sym_bool_lit, @@ -17661,7 +17114,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_TILDE, - ACTIONS(946), 25, + ACTIONS(944), 25, ts_builtin_sym_end, sym__ws, sym_comment, @@ -17687,8 +17140,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_TILDE_AT, - [858] = 2, - ACTIONS(952), 7, + [860] = 2, + ACTIONS(950), 7, anon_sym_COLON, sym_nil_lit, sym_bool_lit, @@ -17696,7 +17149,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_TILDE, - ACTIONS(950), 25, + ACTIONS(948), 25, ts_builtin_sym_end, sym__ws, sym_comment, @@ -17722,8 +17175,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_TILDE_AT, - [895] = 2, - ACTIONS(956), 7, + [897] = 2, + ACTIONS(954), 7, anon_sym_COLON, sym_nil_lit, sym_bool_lit, @@ -17731,7 +17184,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_TILDE, - ACTIONS(954), 25, + ACTIONS(952), 25, ts_builtin_sym_end, sym__ws, sym_comment, @@ -17757,8 +17210,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_TILDE_AT, - [932] = 2, - ACTIONS(960), 7, + [934] = 2, + ACTIONS(958), 7, anon_sym_COLON, sym_nil_lit, sym_bool_lit, @@ -17766,7 +17219,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_TILDE, - ACTIONS(958), 25, + ACTIONS(956), 25, ts_builtin_sym_end, sym__ws, sym_comment, @@ -17792,8 +17245,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_TILDE_AT, - [969] = 2, - ACTIONS(964), 7, + [971] = 2, + ACTIONS(962), 7, anon_sym_COLON, sym_nil_lit, sym_bool_lit, @@ -17801,7 +17254,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_TILDE, - ACTIONS(962), 25, + ACTIONS(960), 25, ts_builtin_sym_end, sym__ws, sym_comment, @@ -17827,8 +17280,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_TILDE_AT, - [1006] = 2, - ACTIONS(968), 7, + [1008] = 2, + ACTIONS(966), 7, anon_sym_COLON, sym_nil_lit, sym_bool_lit, @@ -17836,7 +17289,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_TILDE, - ACTIONS(966), 25, + ACTIONS(964), 25, ts_builtin_sym_end, sym__ws, sym_comment, @@ -17862,8 +17315,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_TILDE_AT, - [1043] = 2, - ACTIONS(972), 7, + [1045] = 2, + ACTIONS(970), 7, anon_sym_COLON, sym_nil_lit, sym_bool_lit, @@ -17871,7 +17324,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_TILDE, - ACTIONS(970), 25, + ACTIONS(968), 25, ts_builtin_sym_end, sym__ws, sym_comment, @@ -17897,8 +17350,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_TILDE_AT, - [1080] = 2, - ACTIONS(926), 7, + [1082] = 2, + ACTIONS(974), 7, anon_sym_COLON, sym_nil_lit, sym_bool_lit, @@ -17906,7 +17359,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_TILDE, - ACTIONS(924), 25, + ACTIONS(972), 25, ts_builtin_sym_end, sym__ws, sym_comment, @@ -17932,8 +17385,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_TILDE_AT, - [1117] = 2, - ACTIONS(976), 7, + [1119] = 2, + ACTIONS(978), 7, anon_sym_COLON, sym_nil_lit, sym_bool_lit, @@ -17941,7 +17394,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_TILDE, - ACTIONS(974), 25, + ACTIONS(976), 25, ts_builtin_sym_end, sym__ws, sym_comment, @@ -17967,8 +17420,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_TILDE_AT, - [1154] = 2, - ACTIONS(980), 7, + [1156] = 2, + ACTIONS(982), 7, anon_sym_COLON, sym_nil_lit, sym_bool_lit, @@ -17976,7 +17429,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_TILDE, - ACTIONS(978), 25, + ACTIONS(980), 25, ts_builtin_sym_end, sym__ws, sym_comment, @@ -18002,8 +17455,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_TILDE_AT, - [1191] = 2, - ACTIONS(984), 7, + [1193] = 2, + ACTIONS(986), 7, anon_sym_COLON, sym_nil_lit, sym_bool_lit, @@ -18011,7 +17464,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_TILDE, - ACTIONS(982), 25, + ACTIONS(984), 25, ts_builtin_sym_end, sym__ws, sym_comment, @@ -18037,8 +17490,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_TILDE_AT, - [1228] = 2, - ACTIONS(988), 7, + [1230] = 2, + ACTIONS(990), 7, anon_sym_COLON, sym_nil_lit, sym_bool_lit, @@ -18046,7 +17499,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_TILDE, - ACTIONS(986), 25, + ACTIONS(988), 25, ts_builtin_sym_end, sym__ws, sym_comment, @@ -18072,8 +17525,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_TILDE_AT, - [1265] = 2, - ACTIONS(992), 7, + [1267] = 2, + ACTIONS(994), 7, anon_sym_COLON, sym_nil_lit, sym_bool_lit, @@ -18081,7 +17534,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_TILDE, - ACTIONS(990), 25, + ACTIONS(992), 25, ts_builtin_sym_end, sym__ws, sym_comment, @@ -18107,8 +17560,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_TILDE_AT, - [1302] = 2, - ACTIONS(996), 7, + [1304] = 2, + ACTIONS(998), 7, anon_sym_COLON, sym_nil_lit, sym_bool_lit, @@ -18116,7 +17569,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_TILDE, - ACTIONS(994), 25, + ACTIONS(996), 25, ts_builtin_sym_end, sym__ws, sym_comment, @@ -18142,8 +17595,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_TILDE_AT, - [1339] = 2, - ACTIONS(1000), 7, + [1341] = 2, + ACTIONS(1002), 7, anon_sym_COLON, sym_nil_lit, sym_bool_lit, @@ -18151,7 +17604,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_TILDE, - ACTIONS(998), 25, + ACTIONS(1000), 25, ts_builtin_sym_end, sym__ws, sym_comment, @@ -18177,8 +17630,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_TILDE_AT, - [1376] = 2, - ACTIONS(1004), 7, + [1378] = 2, + ACTIONS(1006), 7, anon_sym_COLON, sym_nil_lit, sym_bool_lit, @@ -18186,7 +17639,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_TILDE, - ACTIONS(1002), 25, + ACTIONS(1004), 25, ts_builtin_sym_end, sym__ws, sym_comment, @@ -18212,8 +17665,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_TILDE_AT, - [1413] = 2, - ACTIONS(1008), 7, + [1415] = 2, + ACTIONS(1010), 7, anon_sym_COLON, sym_nil_lit, sym_bool_lit, @@ -18221,7 +17674,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_TILDE, - ACTIONS(1006), 25, + ACTIONS(1008), 25, ts_builtin_sym_end, sym__ws, sym_comment, @@ -18247,10 +17700,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_TILDE_AT, - [1450] = 3, - ACTIONS(1010), 1, - anon_sym_SLASH, - ACTIONS(1008), 7, + [1452] = 2, + ACTIONS(1014), 7, anon_sym_COLON, sym_nil_lit, sym_bool_lit, @@ -18258,12 +17709,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_TILDE, - ACTIONS(1006), 24, + ACTIONS(1012), 25, ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, sym_num_lit, + anon_sym_SLASH, anon_sym_COLON_COLON, aux_sym_str_lit_token1, sym_char_lit, @@ -18284,7 +17736,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_TILDE_AT, [1489] = 2, - ACTIONS(1014), 7, + ACTIONS(1018), 7, anon_sym_COLON, sym_nil_lit, sym_bool_lit, @@ -18292,7 +17744,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_TILDE, - ACTIONS(1012), 25, + ACTIONS(1016), 25, ts_builtin_sym_end, sym__ws, sym_comment, @@ -18319,7 +17771,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_TILDE_AT, [1526] = 2, - ACTIONS(1018), 7, + ACTIONS(1022), 7, anon_sym_COLON, sym_nil_lit, sym_bool_lit, @@ -18327,7 +17779,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_TILDE, - ACTIONS(1016), 25, + ACTIONS(1020), 25, ts_builtin_sym_end, sym__ws, sym_comment, @@ -18354,7 +17806,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_TILDE_AT, [1563] = 2, - ACTIONS(1022), 7, + ACTIONS(1026), 7, anon_sym_COLON, sym_nil_lit, sym_bool_lit, @@ -18362,7 +17814,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_TILDE, - ACTIONS(1020), 25, + ACTIONS(1024), 25, ts_builtin_sym_end, sym__ws, sym_comment, @@ -18389,7 +17841,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_TILDE_AT, [1600] = 2, - ACTIONS(1026), 7, + ACTIONS(1030), 7, anon_sym_COLON, sym_nil_lit, sym_bool_lit, @@ -18397,7 +17849,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_TILDE, - ACTIONS(1024), 25, + ACTIONS(1028), 25, ts_builtin_sym_end, sym__ws, sym_comment, @@ -18424,7 +17876,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_TILDE_AT, [1637] = 2, - ACTIONS(1030), 7, + ACTIONS(1034), 7, anon_sym_COLON, sym_nil_lit, sym_bool_lit, @@ -18432,7 +17884,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_TILDE, - ACTIONS(1028), 25, + ACTIONS(1032), 25, ts_builtin_sym_end, sym__ws, sym_comment, @@ -18459,7 +17911,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_TILDE_AT, [1674] = 2, - ACTIONS(1034), 7, + ACTIONS(1038), 7, anon_sym_COLON, sym_nil_lit, sym_bool_lit, @@ -18467,7 +17919,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_TILDE, - ACTIONS(1032), 25, + ACTIONS(1036), 25, ts_builtin_sym_end, sym__ws, sym_comment, @@ -18529,7 +17981,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_TILDE_AT, [1748] = 2, - ACTIONS(1042), 7, + ACTIONS(1038), 7, anon_sym_COLON, sym_nil_lit, sym_bool_lit, @@ -18537,7 +17989,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_TILDE, - ACTIONS(1040), 25, + ACTIONS(1036), 25, ts_builtin_sym_end, sym__ws, sym_comment, @@ -18564,7 +18016,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_TILDE_AT, [1785] = 2, - ACTIONS(1046), 7, + ACTIONS(1042), 7, anon_sym_COLON, sym_nil_lit, sym_bool_lit, @@ -18572,7 +18024,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_TILDE, - ACTIONS(1044), 25, + ACTIONS(1040), 25, ts_builtin_sym_end, sym__ws, sym_comment, @@ -18599,7 +18051,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_TILDE_AT, [1822] = 2, - ACTIONS(1050), 7, + ACTIONS(1046), 7, anon_sym_COLON, sym_nil_lit, sym_bool_lit, @@ -18607,7 +18059,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_TILDE, - ACTIONS(1048), 25, + ACTIONS(1044), 25, ts_builtin_sym_end, sym__ws, sym_comment, @@ -18634,7 +18086,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_TILDE_AT, [1859] = 2, - ACTIONS(1054), 7, + ACTIONS(1050), 7, anon_sym_COLON, sym_nil_lit, sym_bool_lit, @@ -18642,7 +18094,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_TILDE, - ACTIONS(1052), 25, + ACTIONS(1048), 25, ts_builtin_sym_end, sym__ws, sym_comment, @@ -18669,7 +18121,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_TILDE_AT, [1896] = 2, - ACTIONS(1058), 7, + ACTIONS(1054), 7, anon_sym_COLON, sym_nil_lit, sym_bool_lit, @@ -18677,7 +18129,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_TILDE, - ACTIONS(1056), 25, + ACTIONS(1052), 25, ts_builtin_sym_end, sym__ws, sym_comment, @@ -18704,7 +18156,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_TILDE_AT, [1933] = 2, - ACTIONS(1062), 7, + ACTIONS(1058), 7, anon_sym_COLON, sym_nil_lit, sym_bool_lit, @@ -18712,7 +18164,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_TILDE, - ACTIONS(1060), 25, + ACTIONS(1056), 25, ts_builtin_sym_end, sym__ws, sym_comment, @@ -18739,7 +18191,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_TILDE_AT, [1970] = 2, - ACTIONS(1066), 7, + ACTIONS(1062), 7, anon_sym_COLON, sym_nil_lit, sym_bool_lit, @@ -18747,7 +18199,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_TILDE, - ACTIONS(1064), 25, + ACTIONS(1060), 25, ts_builtin_sym_end, sym__ws, sym_comment, @@ -18774,7 +18226,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_TILDE_AT, [2007] = 2, - ACTIONS(1070), 7, + ACTIONS(1066), 7, anon_sym_COLON, sym_nil_lit, sym_bool_lit, @@ -18782,7 +18234,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_TILDE, - ACTIONS(1068), 25, + ACTIONS(1064), 25, ts_builtin_sym_end, sym__ws, sym_comment, @@ -18809,7 +18261,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_TILDE_AT, [2044] = 2, - ACTIONS(1074), 7, + ACTIONS(1070), 7, anon_sym_COLON, sym_nil_lit, sym_bool_lit, @@ -18817,7 +18269,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_TILDE, - ACTIONS(1072), 25, + ACTIONS(1068), 25, ts_builtin_sym_end, sym__ws, sym_comment, @@ -18844,7 +18296,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_TILDE_AT, [2081] = 2, - ACTIONS(1078), 7, + ACTIONS(1074), 7, anon_sym_COLON, sym_nil_lit, sym_bool_lit, @@ -18852,7 +18304,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_TILDE, - ACTIONS(1076), 25, + ACTIONS(1072), 25, ts_builtin_sym_end, sym__ws, sym_comment, @@ -18879,7 +18331,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_TILDE_AT, [2118] = 2, - ACTIONS(1082), 7, + ACTIONS(1078), 7, anon_sym_COLON, sym_nil_lit, sym_bool_lit, @@ -18887,7 +18339,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_TILDE, - ACTIONS(1080), 25, + ACTIONS(1076), 25, ts_builtin_sym_end, sym__ws, sym_comment, @@ -18914,7 +18366,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_TILDE_AT, [2155] = 2, - ACTIONS(1086), 7, + ACTIONS(1082), 7, anon_sym_COLON, sym_nil_lit, sym_bool_lit, @@ -18922,7 +18374,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_TILDE, - ACTIONS(1084), 25, + ACTIONS(1080), 25, ts_builtin_sym_end, sym__ws, sym_comment, @@ -18949,7 +18401,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_TILDE_AT, [2192] = 2, - ACTIONS(1090), 7, + ACTIONS(1086), 7, anon_sym_COLON, sym_nil_lit, sym_bool_lit, @@ -18957,7 +18409,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_TILDE, - ACTIONS(1088), 25, + ACTIONS(1084), 25, ts_builtin_sym_end, sym__ws, sym_comment, @@ -18984,7 +18436,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_TILDE_AT, [2229] = 2, - ACTIONS(1034), 7, + ACTIONS(1090), 7, anon_sym_COLON, sym_nil_lit, sym_bool_lit, @@ -18992,7 +18444,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_TILDE, - ACTIONS(1032), 25, + ACTIONS(1088), 25, ts_builtin_sym_end, sym__ws, sym_comment, @@ -19089,7 +18541,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_TILDE_AT, [2340] = 2, - ACTIONS(1102), 7, + ACTIONS(1094), 7, anon_sym_COLON, sym_nil_lit, sym_bool_lit, @@ -19097,7 +18549,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_TILDE, - ACTIONS(1100), 25, + ACTIONS(1092), 25, ts_builtin_sym_end, sym__ws, sym_comment, @@ -19124,7 +18576,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_TILDE_AT, [2377] = 2, - ACTIONS(1106), 7, + ACTIONS(1102), 7, anon_sym_COLON, sym_nil_lit, sym_bool_lit, @@ -19132,7 +18584,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_TILDE, - ACTIONS(1104), 25, + ACTIONS(1100), 25, ts_builtin_sym_end, sym__ws, sym_comment, @@ -19159,7 +18611,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_TILDE_AT, [2414] = 2, - ACTIONS(1110), 7, + ACTIONS(1106), 7, anon_sym_COLON, sym_nil_lit, sym_bool_lit, @@ -19167,7 +18619,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_TILDE, - ACTIONS(1108), 25, + ACTIONS(1104), 25, ts_builtin_sym_end, sym__ws, sym_comment, @@ -19194,7 +18646,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_TILDE_AT, [2451] = 2, - ACTIONS(1114), 7, + ACTIONS(1110), 7, anon_sym_COLON, sym_nil_lit, sym_bool_lit, @@ -19202,7 +18654,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_TILDE, - ACTIONS(1112), 25, + ACTIONS(1108), 25, ts_builtin_sym_end, sym__ws, sym_comment, @@ -19229,7 +18681,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_TILDE_AT, [2488] = 2, - ACTIONS(882), 7, + ACTIONS(1114), 7, anon_sym_COLON, sym_nil_lit, sym_bool_lit, @@ -19237,7 +18689,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_TILDE, - ACTIONS(878), 25, + ACTIONS(1112), 25, ts_builtin_sym_end, sym__ws, sym_comment, @@ -19264,7 +18716,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_TILDE_AT, [2525] = 2, - ACTIONS(1118), 7, + ACTIONS(1114), 7, anon_sym_COLON, sym_nil_lit, sym_bool_lit, @@ -19272,7 +18724,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_TILDE, - ACTIONS(1116), 25, + ACTIONS(1112), 25, ts_builtin_sym_end, sym__ws, sym_comment, @@ -19299,7 +18751,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_TILDE_AT, [2562] = 2, - ACTIONS(1122), 7, + ACTIONS(1114), 7, anon_sym_COLON, sym_nil_lit, sym_bool_lit, @@ -19307,7 +18759,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_TILDE, - ACTIONS(1120), 25, + ACTIONS(1112), 25, ts_builtin_sym_end, sym__ws, sym_comment, @@ -19334,7 +18786,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_TILDE_AT, [2599] = 2, - ACTIONS(1126), 7, + ACTIONS(1118), 7, anon_sym_COLON, sym_nil_lit, sym_bool_lit, @@ -19342,7 +18794,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_TILDE, - ACTIONS(1124), 25, + ACTIONS(1116), 25, ts_builtin_sym_end, sym__ws, sym_comment, @@ -19369,7 +18821,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_TILDE_AT, [2636] = 2, - ACTIONS(1130), 7, + ACTIONS(1122), 7, anon_sym_COLON, sym_nil_lit, sym_bool_lit, @@ -19377,7 +18829,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_TILDE, - ACTIONS(1128), 25, + ACTIONS(1120), 25, ts_builtin_sym_end, sym__ws, sym_comment, @@ -19404,7 +18856,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_TILDE_AT, [2673] = 2, - ACTIONS(1130), 7, + ACTIONS(1126), 7, anon_sym_COLON, sym_nil_lit, sym_bool_lit, @@ -19412,7 +18864,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_TILDE, - ACTIONS(1128), 25, + ACTIONS(1124), 25, ts_builtin_sym_end, sym__ws, sym_comment, @@ -19614,7 +19066,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_TILDE_AT, [2895] = 2, - ACTIONS(1150), 7, + ACTIONS(1142), 7, anon_sym_COLON, sym_nil_lit, sym_bool_lit, @@ -19622,7 +19074,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_TILDE, - ACTIONS(1148), 25, + ACTIONS(1140), 25, ts_builtin_sym_end, sym__ws, sym_comment, @@ -19649,7 +19101,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_TILDE_AT, [2932] = 2, - ACTIONS(1154), 7, + ACTIONS(1150), 7, anon_sym_COLON, sym_nil_lit, sym_bool_lit, @@ -19657,7 +19109,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_TILDE, - ACTIONS(1152), 25, + ACTIONS(1148), 25, ts_builtin_sym_end, sym__ws, sym_comment, @@ -19684,7 +19136,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_TILDE_AT, [2969] = 2, - ACTIONS(1158), 7, + ACTIONS(1154), 7, anon_sym_COLON, sym_nil_lit, sym_bool_lit, @@ -19692,7 +19144,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_TILDE, - ACTIONS(1156), 25, + ACTIONS(1152), 25, ts_builtin_sym_end, sym__ws, sym_comment, @@ -19719,7 +19171,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_TILDE_AT, [3006] = 2, - ACTIONS(898), 7, + ACTIONS(1158), 7, anon_sym_COLON, sym_nil_lit, sym_bool_lit, @@ -19727,7 +19179,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_TILDE, - ACTIONS(896), 25, + ACTIONS(1156), 25, ts_builtin_sym_end, sym__ws, sym_comment, @@ -20069,19 +19521,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_AT, ACTIONS(1220), 1, anon_sym_TILDE, - STATE(253), 1, + STATE(230), 1, sym__bare_list_lit, - STATE(254), 1, + STATE(231), 1, sym__bare_map_lit, - STATE(255), 1, + STATE(232), 1, sym__bare_vec_lit, - STATE(256), 1, + STATE(233), 1, sym__bare_set_lit, - STATE(313), 1, - sym_old_meta_lit, - STATE(314), 1, + STATE(312), 1, sym_meta_lit, - STATE(324), 1, + STATE(315), 1, + sym_old_meta_lit, + STATE(323), 1, aux_sym_sym_lit_repeat1, STATE(424), 1, sym__metadata_lit, @@ -20120,19 +19572,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_AT, ACTIONS(1244), 1, anon_sym_TILDE, - STATE(313), 1, - sym_old_meta_lit, - STATE(314), 1, + STATE(312), 1, sym_meta_lit, - STATE(324), 1, + STATE(315), 1, + sym_old_meta_lit, + STATE(323), 1, aux_sym_sym_lit_repeat1, - STATE(377), 1, + STATE(414), 1, sym__bare_list_lit, - STATE(380), 1, + STATE(420), 1, sym__bare_map_lit, - STATE(381), 1, + STATE(421), 1, sym__bare_vec_lit, - STATE(382), 1, + STATE(422), 1, sym__bare_set_lit, STATE(424), 1, sym__metadata_lit, @@ -20171,19 +19623,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_AT, ACTIONS(1258), 1, anon_sym_TILDE, - STATE(253), 1, + STATE(230), 1, sym__bare_list_lit, - STATE(254), 1, + STATE(231), 1, sym__bare_map_lit, - STATE(255), 1, + STATE(232), 1, sym__bare_vec_lit, - STATE(256), 1, + STATE(233), 1, sym__bare_set_lit, - STATE(313), 1, - sym_old_meta_lit, - STATE(314), 1, + STATE(312), 1, sym_meta_lit, - STATE(324), 1, + STATE(315), 1, + sym_old_meta_lit, + STATE(323), 1, aux_sym_sym_lit_repeat1, STATE(424), 1, sym__metadata_lit, @@ -20222,19 +19674,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_AT, ACTIONS(1272), 1, anon_sym_TILDE, - STATE(313), 1, - sym_old_meta_lit, - STATE(314), 1, + STATE(312), 1, sym_meta_lit, - STATE(324), 1, + STATE(315), 1, + sym_old_meta_lit, + STATE(323), 1, aux_sym_sym_lit_repeat1, - STATE(377), 1, + STATE(414), 1, sym__bare_list_lit, - STATE(380), 1, + STATE(420), 1, sym__bare_map_lit, - STATE(381), 1, + STATE(421), 1, sym__bare_vec_lit, - STATE(382), 1, + STATE(422), 1, sym__bare_set_lit, STATE(424), 1, sym__metadata_lit, @@ -20273,28 +19725,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_AT, ACTIONS(1286), 1, anon_sym_TILDE, - STATE(313), 1, - sym_old_meta_lit, - STATE(314), 1, + STATE(312), 1, sym_meta_lit, - STATE(324), 1, + STATE(315), 1, + sym_old_meta_lit, + STATE(323), 1, aux_sym_sym_lit_repeat1, - STATE(377), 1, + STATE(414), 1, sym__bare_list_lit, - STATE(380), 1, + STATE(420), 1, sym__bare_map_lit, - STATE(381), 1, + STATE(421), 1, sym__bare_vec_lit, - STATE(382), 1, + STATE(422), 1, sym__bare_set_lit, STATE(424), 1, sym__metadata_lit, [3723] = 19, ACTIONS(9), 1, anon_sym_SLASH, - ACTIONS(25), 1, + ACTIONS(280), 1, anon_sym_LPAREN, - ACTIONS(716), 1, + ACTIONS(698), 1, anon_sym_COLON, ACTIONS(1290), 1, anon_sym_POUND_, @@ -20310,86 +19762,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(1302), 1, anon_sym_LBRACE, - STATE(160), 1, + STATE(144), 1, sym_sym_lit, - STATE(236), 1, + STATE(415), 1, sym__bare_list_lit, STATE(424), 1, sym__metadata_lit, - STATE(442), 1, - sym_meta_lit, - STATE(447), 1, + STATE(443), 1, sym_old_meta_lit, - STATE(452), 1, + STATE(445), 1, + sym_meta_lit, + STATE(450), 1, aux_sym_sym_lit_repeat1, ACTIONS(1288), 2, sym__ws, sym_comment, - STATE(454), 2, + STATE(458), 2, sym_kwd_lit, sym_auto_res_mark, - STATE(428), 3, + STATE(427), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [3785] = 19, - ACTIONS(9), 1, - anon_sym_SLASH, - ACTIONS(280), 1, - anon_sym_LPAREN, - ACTIONS(716), 1, - anon_sym_COLON, - ACTIONS(1290), 1, - anon_sym_POUND_, - ACTIONS(1292), 1, - anon_sym_COLON_COLON, - ACTIONS(1296), 1, - aux_sym__sym_qualified_token1, - ACTIONS(1298), 1, - anon_sym_CARET, - ACTIONS(1300), 1, - anon_sym_POUND_CARET, + [3785] = 5, ACTIONS(1306), 1, - aux_sym_str_lit_token1, - ACTIONS(1308), 1, - anon_sym_LBRACE, - STATE(208), 1, - sym_sym_lit, - STATE(342), 1, - sym__bare_list_lit, - STATE(424), 1, - sym__metadata_lit, - STATE(442), 1, - sym_meta_lit, - STATE(447), 1, - sym_old_meta_lit, - STATE(452), 1, - aux_sym_sym_lit_repeat1, - ACTIONS(1304), 2, - sym__ws, - sym_comment, - STATE(461), 2, - sym_kwd_lit, - sym_auto_res_mark, - STATE(429), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - [3847] = 5, - ACTIONS(1312), 1, anon_sym_POUND_, - ACTIONS(1310), 2, + ACTIONS(1304), 2, sym__ws, sym_comment, - ACTIONS(1316), 3, + ACTIONS(1310), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_TILDE, - STATE(317), 3, + STATE(310), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(1314), 14, + ACTIONS(1308), 14, anon_sym_SLASH, aux_sym__sym_qualified_token1, anon_sym_CARET, @@ -20404,21 +19813,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_TILDE_AT, - [3881] = 5, - ACTIONS(1312), 1, + [3819] = 5, + ACTIONS(1315), 1, anon_sym_POUND_, - ACTIONS(1310), 2, + ACTIONS(1312), 2, sym__ws, sym_comment, - ACTIONS(1320), 3, + ACTIONS(1192), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_TILDE, - STATE(317), 3, + STATE(310), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(1318), 14, + ACTIONS(1190), 14, anon_sym_SLASH, aux_sym__sym_qualified_token1, anon_sym_CARET, @@ -20433,12 +19842,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_TILDE_AT, - [3915] = 19, + [3853] = 19, ACTIONS(9), 1, anon_sym_SLASH, - ACTIONS(280), 1, + ACTIONS(25), 1, anon_sym_LPAREN, - ACTIONS(716), 1, + ACTIONS(698), 1, anon_sym_COLON, ACTIONS(1290), 1, anon_sym_POUND_, @@ -20450,34 +19859,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(1300), 1, anon_sym_POUND_CARET, - ACTIONS(1306), 1, + ACTIONS(1320), 1, aux_sym_str_lit_token1, - ACTIONS(1308), 1, + ACTIONS(1322), 1, anon_sym_LBRACE, - STATE(107), 1, + STATE(23), 1, sym_sym_lit, - STATE(342), 1, + STATE(293), 1, sym__bare_list_lit, STATE(424), 1, sym__metadata_lit, - STATE(442), 1, - sym_meta_lit, - STATE(447), 1, + STATE(443), 1, sym_old_meta_lit, - STATE(452), 1, + STATE(445), 1, + sym_meta_lit, + STATE(450), 1, aux_sym_sym_lit_repeat1, - ACTIONS(1322), 2, + ACTIONS(1318), 2, sym__ws, sym_comment, STATE(461), 2, sym_kwd_lit, sym_auto_res_mark, - STATE(431), 3, + STATE(428), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [3977] = 5, - ACTIONS(1312), 1, + [3915] = 5, + ACTIONS(1306), 1, anon_sym_POUND_, ACTIONS(1324), 2, sym__ws, @@ -20486,7 +19895,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_TILDE, - STATE(310), 3, + STATE(314), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, @@ -20505,17 +19914,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_TILDE_AT, - [4011] = 5, - ACTIONS(1312), 1, + [3949] = 19, + ACTIONS(9), 1, + anon_sym_SLASH, + ACTIONS(280), 1, + anon_sym_LPAREN, + ACTIONS(698), 1, + anon_sym_COLON, + ACTIONS(1290), 1, anon_sym_POUND_, + ACTIONS(1292), 1, + anon_sym_COLON_COLON, + ACTIONS(1294), 1, + aux_sym_str_lit_token1, + ACTIONS(1296), 1, + aux_sym__sym_qualified_token1, + ACTIONS(1298), 1, + anon_sym_CARET, + ACTIONS(1300), 1, + anon_sym_POUND_CARET, + ACTIONS(1302), 1, + anon_sym_LBRACE, + STATE(61), 1, + sym_sym_lit, + STATE(415), 1, + sym__bare_list_lit, + STATE(424), 1, + sym__metadata_lit, + STATE(443), 1, + sym_old_meta_lit, + STATE(445), 1, + sym_meta_lit, + STATE(450), 1, + aux_sym_sym_lit_repeat1, ACTIONS(1330), 2, sym__ws, sym_comment, + STATE(458), 2, + sym_kwd_lit, + sym_auto_res_mark, + STATE(433), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + [4011] = 5, + ACTIONS(1306), 1, + anon_sym_POUND_, + ACTIONS(1304), 2, + sym__ws, + sym_comment, ACTIONS(1334), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_TILDE, - STATE(311), 3, + STATE(310), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, @@ -20534,127 +19986,127 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_TILDE_AT, - [4045] = 19, + [4045] = 5, + ACTIONS(1306), 1, + anon_sym_POUND_, + ACTIONS(1336), 2, + sym__ws, + sym_comment, + ACTIONS(1340), 3, + anon_sym_POUND, + anon_sym_POUND_QMARK, + anon_sym_TILDE, + STATE(309), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(1338), 14, + anon_sym_SLASH, + aux_sym__sym_qualified_token1, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_POUND_EQ, + anon_sym_AT, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_TILDE_AT, + [4079] = 19, ACTIONS(9), 1, anon_sym_SLASH, ACTIONS(25), 1, anon_sym_LPAREN, - ACTIONS(716), 1, + ACTIONS(698), 1, anon_sym_COLON, ACTIONS(1290), 1, anon_sym_POUND_, ACTIONS(1292), 1, anon_sym_COLON_COLON, - ACTIONS(1294), 1, - aux_sym_str_lit_token1, ACTIONS(1296), 1, aux_sym__sym_qualified_token1, ACTIONS(1298), 1, anon_sym_CARET, ACTIONS(1300), 1, anon_sym_POUND_CARET, - ACTIONS(1302), 1, + ACTIONS(1320), 1, + aux_sym_str_lit_token1, + ACTIONS(1322), 1, anon_sym_LBRACE, - STATE(22), 1, + STATE(103), 1, sym_sym_lit, - STATE(236), 1, + STATE(293), 1, sym__bare_list_lit, STATE(424), 1, sym__metadata_lit, - STATE(442), 1, - sym_meta_lit, - STATE(447), 1, + STATE(443), 1, sym_old_meta_lit, - STATE(452), 1, + STATE(445), 1, + sym_meta_lit, + STATE(450), 1, aux_sym_sym_lit_repeat1, - ACTIONS(1336), 2, + ACTIONS(1342), 2, sym__ws, sym_comment, - STATE(454), 2, + STATE(461), 2, sym_kwd_lit, sym_auto_res_mark, STATE(430), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [4107] = 19, + [4141] = 19, ACTIONS(9), 1, anon_sym_SLASH, ACTIONS(280), 1, anon_sym_LPAREN, - ACTIONS(716), 1, + ACTIONS(698), 1, anon_sym_COLON, ACTIONS(1290), 1, anon_sym_POUND_, ACTIONS(1292), 1, anon_sym_COLON_COLON, + ACTIONS(1294), 1, + aux_sym_str_lit_token1, ACTIONS(1296), 1, aux_sym__sym_qualified_token1, ACTIONS(1298), 1, anon_sym_CARET, ACTIONS(1300), 1, anon_sym_POUND_CARET, - ACTIONS(1306), 1, - aux_sym_str_lit_token1, - ACTIONS(1308), 1, + ACTIONS(1302), 1, anon_sym_LBRACE, - STATE(52), 1, + STATE(184), 1, sym_sym_lit, - STATE(342), 1, + STATE(415), 1, sym__bare_list_lit, STATE(424), 1, sym__metadata_lit, - STATE(442), 1, - sym_meta_lit, - STATE(447), 1, + STATE(443), 1, sym_old_meta_lit, - STATE(452), 1, + STATE(445), 1, + sym_meta_lit, + STATE(450), 1, aux_sym_sym_lit_repeat1, - ACTIONS(1338), 2, + ACTIONS(1344), 2, sym__ws, sym_comment, - STATE(461), 2, + STATE(458), 2, sym_kwd_lit, sym_auto_res_mark, STATE(434), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [4169] = 5, - ACTIONS(1343), 1, - anon_sym_POUND_, - ACTIONS(1340), 2, - sym__ws, - sym_comment, - ACTIONS(1192), 3, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_TILDE, - STATE(317), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - ACTIONS(1190), 14, - anon_sym_SLASH, - aux_sym__sym_qualified_token1, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_POUND_EQ, - anon_sym_AT, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_TILDE_AT, [4203] = 19, ACTIONS(9), 1, anon_sym_SLASH, - ACTIONS(25), 1, + ACTIONS(280), 1, anon_sym_LPAREN, - ACTIONS(716), 1, + ACTIONS(698), 1, anon_sym_COLON, ACTIONS(1290), 1, anon_sym_POUND_, @@ -20668,35 +20120,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(1302), 1, anon_sym_LBRACE, - STATE(129), 1, + STATE(160), 1, sym_sym_lit, - STATE(279), 1, + STATE(349), 1, sym__bare_list_lit, STATE(424), 1, sym__metadata_lit, - STATE(442), 1, - sym_meta_lit, - STATE(447), 1, + STATE(443), 1, sym_old_meta_lit, - STATE(452), 1, + STATE(445), 1, + sym_meta_lit, + STATE(450), 1, aux_sym_sym_lit_repeat1, - STATE(456), 1, + STATE(451), 1, sym_kwd_lit, - STATE(463), 1, + STATE(454), 1, sym_auto_res_mark, ACTIONS(1346), 2, sym__ws, sym_comment, - STATE(427), 3, + STATE(425), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [4264] = 19, ACTIONS(9), 1, anon_sym_SLASH, - ACTIONS(280), 1, + ACTIONS(25), 1, anon_sym_LPAREN, - ACTIONS(716), 1, + ACTIONS(698), 1, anon_sym_COLON, ACTIONS(1290), 1, anon_sym_POUND_, @@ -20708,37 +20160,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(1300), 1, anon_sym_POUND_CARET, - ACTIONS(1308), 1, + ACTIONS(1322), 1, anon_sym_LBRACE, - STATE(197), 1, + STATE(120), 1, sym_sym_lit, - STATE(408), 1, + STATE(254), 1, sym__bare_list_lit, STATE(424), 1, sym__metadata_lit, - STATE(442), 1, - sym_meta_lit, - STATE(447), 1, + STATE(443), 1, sym_old_meta_lit, - STATE(451), 1, - sym_auto_res_mark, - STATE(452), 1, + STATE(445), 1, + sym_meta_lit, + STATE(450), 1, aux_sym_sym_lit_repeat1, - STATE(458), 1, + STATE(455), 1, sym_kwd_lit, + STATE(463), 1, + sym_auto_res_mark, ACTIONS(1348), 2, sym__ws, sym_comment, - STATE(426), 3, + STATE(429), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [4325] = 19, ACTIONS(9), 1, anon_sym_SLASH, - ACTIONS(280), 1, + ACTIONS(25), 1, anon_sym_LPAREN, - ACTIONS(716), 1, + ACTIONS(698), 1, anon_sym_COLON, ACTIONS(1290), 1, anon_sym_POUND_, @@ -20750,28 +20202,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(1300), 1, anon_sym_POUND_CARET, - ACTIONS(1308), 1, + ACTIONS(1322), 1, anon_sym_LBRACE, - STATE(32), 1, + STATE(42), 1, sym_sym_lit, - STATE(408), 1, + STATE(254), 1, sym__bare_list_lit, STATE(424), 1, sym__metadata_lit, - STATE(442), 1, - sym_meta_lit, - STATE(447), 1, + STATE(443), 1, sym_old_meta_lit, - STATE(451), 1, - sym_auto_res_mark, - STATE(452), 1, + STATE(445), 1, + sym_meta_lit, + STATE(450), 1, aux_sym_sym_lit_repeat1, - STATE(458), 1, + STATE(455), 1, sym_kwd_lit, + STATE(463), 1, + sym_auto_res_mark, ACTIONS(1350), 2, sym__ws, sym_comment, - STATE(432), 3, + STATE(426), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, @@ -20780,7 +20232,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, ACTIONS(280), 1, anon_sym_LPAREN, - ACTIONS(716), 1, + ACTIONS(698), 1, anon_sym_COLON, ACTIONS(1290), 1, anon_sym_POUND_, @@ -20792,37 +20244,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(1300), 1, anon_sym_POUND_CARET, - ACTIONS(1308), 1, + ACTIONS(1302), 1, anon_sym_LBRACE, - STATE(84), 1, + STATE(77), 1, sym_sym_lit, - STATE(408), 1, + STATE(349), 1, sym__bare_list_lit, STATE(424), 1, sym__metadata_lit, - STATE(442), 1, - sym_meta_lit, - STATE(447), 1, + STATE(443), 1, sym_old_meta_lit, - STATE(451), 1, - sym_auto_res_mark, - STATE(452), 1, + STATE(445), 1, + sym_meta_lit, + STATE(450), 1, aux_sym_sym_lit_repeat1, - STATE(458), 1, + STATE(451), 1, sym_kwd_lit, + STATE(454), 1, + sym_auto_res_mark, ACTIONS(1352), 2, sym__ws, sym_comment, - STATE(433), 3, + STATE(432), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [4447] = 19, ACTIONS(9), 1, anon_sym_SLASH, - ACTIONS(25), 1, + ACTIONS(280), 1, anon_sym_LPAREN, - ACTIONS(716), 1, + ACTIONS(698), 1, anon_sym_COLON, ACTIONS(1290), 1, anon_sym_POUND_, @@ -20836,31 +20288,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(1302), 1, anon_sym_LBRACE, - STATE(136), 1, + STATE(200), 1, sym_sym_lit, - STATE(279), 1, + STATE(349), 1, sym__bare_list_lit, STATE(424), 1, sym__metadata_lit, - STATE(442), 1, - sym_meta_lit, - STATE(447), 1, + STATE(443), 1, sym_old_meta_lit, - STATE(452), 1, + STATE(445), 1, + sym_meta_lit, + STATE(450), 1, aux_sym_sym_lit_repeat1, - STATE(456), 1, + STATE(451), 1, sym_kwd_lit, - STATE(463), 1, + STATE(454), 1, sym_auto_res_mark, ACTIONS(1354), 2, sym__ws, sym_comment, - STATE(425), 3, + STATE(431), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [4508] = 3, - ACTIONS(1356), 1, + [4508] = 8, + ACTIONS(1358), 1, + anon_sym_CARET, + ACTIONS(1361), 1, + anon_sym_POUND_CARET, + STATE(312), 1, + sym_meta_lit, + STATE(315), 1, + sym_old_meta_lit, + STATE(323), 1, + aux_sym_sym_lit_repeat1, + STATE(424), 1, + sym__metadata_lit, + ACTIONS(1364), 3, + anon_sym_POUND, + anon_sym_POUND_QMARK, + anon_sym_TILDE, + ACTIONS(1356), 12, + anon_sym_SLASH, + aux_sym__sym_qualified_token1, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_POUND_EQ, + anon_sym_AT, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_TILDE_AT, + [4546] = 3, + ACTIONS(1366), 1, aux_sym__kwd_leading_slash_token1, ACTIONS(862), 9, anon_sym_POUND_, @@ -20884,42 +20366,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_BQUOTE, anon_sym_TILDE_AT, - [4536] = 8, - ACTIONS(1360), 1, - anon_sym_CARET, - ACTIONS(1363), 1, - anon_sym_POUND_CARET, - STATE(313), 1, - sym_old_meta_lit, - STATE(314), 1, - sym_meta_lit, - STATE(324), 1, - aux_sym_sym_lit_repeat1, - STATE(424), 1, - sym__metadata_lit, - ACTIONS(1366), 3, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_TILDE, - ACTIONS(1358), 12, - anon_sym_SLASH, - aux_sym__sym_qualified_token1, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_POUND_EQ, - anon_sym_AT, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_TILDE_AT, [4574] = 2, - ACTIONS(1118), 3, + ACTIONS(946), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_TILDE, - ACTIONS(1116), 17, + ACTIONS(944), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -20938,11 +20390,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_TILDE_AT, [4599] = 2, - ACTIONS(1130), 3, + ACTIONS(950), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_TILDE, - ACTIONS(1128), 17, + ACTIONS(948), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -20961,11 +20413,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_TILDE_AT, [4624] = 2, - ACTIONS(1062), 3, + ACTIONS(954), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_TILDE, - ACTIONS(1060), 17, + ACTIONS(952), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -20984,11 +20436,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_TILDE_AT, [4649] = 2, - ACTIONS(898), 3, + ACTIONS(958), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_TILDE, - ACTIONS(896), 17, + ACTIONS(956), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -21007,11 +20459,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_TILDE_AT, [4674] = 2, - ACTIONS(914), 3, + ACTIONS(1370), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_TILDE, - ACTIONS(912), 17, + ACTIONS(1368), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -21030,11 +20482,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_TILDE_AT, [4699] = 2, - ACTIONS(898), 3, + ACTIONS(1374), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_TILDE, - ACTIONS(896), 17, + ACTIONS(1372), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -21053,11 +20505,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_TILDE_AT, [4724] = 2, - ACTIONS(1154), 3, + ACTIONS(962), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_TILDE, - ACTIONS(1152), 17, + ACTIONS(960), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -21076,11 +20528,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_TILDE_AT, [4749] = 2, - ACTIONS(1138), 3, + ACTIONS(1378), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_TILDE, - ACTIONS(1136), 17, + ACTIONS(1376), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -21099,11 +20551,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_TILDE_AT, [4774] = 2, - ACTIONS(930), 3, + ACTIONS(966), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_TILDE, - ACTIONS(928), 17, + ACTIONS(964), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -21122,11 +20574,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_TILDE_AT, [4799] = 2, - ACTIONS(1000), 3, + ACTIONS(970), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_TILDE, - ACTIONS(998), 17, + ACTIONS(968), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -21145,11 +20597,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_TILDE_AT, [4824] = 2, - ACTIONS(1004), 3, + ACTIONS(974), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_TILDE, - ACTIONS(1002), 17, + ACTIONS(972), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -21167,17 +20619,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_TILDE_AT, - [4849] = 3, - ACTIONS(1368), 1, - anon_sym_SLASH, - ACTIONS(862), 3, + [4849] = 2, + ACTIONS(900), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_TILDE, - ACTIONS(860), 16, + ACTIONS(898), 17, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_SLASH, aux_sym__sym_qualified_token1, anon_sym_CARET, anon_sym_POUND_CARET, @@ -21191,12 +20642,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_TILDE_AT, - [4876] = 2, - ACTIONS(936), 3, + [4874] = 2, + ACTIONS(872), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_TILDE, - ACTIONS(934), 17, + ACTIONS(870), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -21214,12 +20665,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_TILDE_AT, - [4901] = 2, - ACTIONS(940), 3, + [4899] = 2, + ACTIONS(982), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_TILDE, - ACTIONS(938), 17, + ACTIONS(980), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -21237,12 +20688,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_TILDE_AT, - [4926] = 2, - ACTIONS(944), 3, + [4924] = 2, + ACTIONS(986), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_TILDE, - ACTIONS(942), 17, + ACTIONS(984), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -21260,48 +20711,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_TILDE_AT, - [4951] = 15, - ACTIONS(9), 1, - anon_sym_SLASH, - ACTIONS(25), 1, - anon_sym_LPAREN, - ACTIONS(1296), 1, - aux_sym__sym_qualified_token1, - ACTIONS(1372), 1, - anon_sym_POUND_, - ACTIONS(1374), 1, - anon_sym_CARET, - ACTIONS(1376), 1, - anon_sym_POUND_CARET, - ACTIONS(1378), 1, - anon_sym_POUND_QMARK, - STATE(218), 1, - sym__bare_list_lit, - STATE(424), 1, - sym__metadata_lit, - STATE(437), 1, - sym_old_meta_lit, - STATE(438), 1, - sym_meta_lit, - STATE(441), 1, - aux_sym_sym_lit_repeat1, - ACTIONS(1370), 2, - sym__ws, - sym_comment, - STATE(241), 3, - sym_sym_lit, - sym_list_lit, - sym_read_cond_lit, - STATE(383), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - [5002] = 2, - ACTIONS(948), 3, + [4949] = 2, + ACTIONS(990), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_TILDE, - ACTIONS(946), 17, + ACTIONS(988), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -21319,12 +20734,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_TILDE_AT, - [5027] = 2, - ACTIONS(952), 3, + [4974] = 2, + ACTIONS(994), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_TILDE, - ACTIONS(950), 17, + ACTIONS(992), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -21342,12 +20757,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_TILDE_AT, - [5052] = 2, - ACTIONS(956), 3, + [4999] = 2, + ACTIONS(998), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_TILDE, - ACTIONS(954), 17, + ACTIONS(996), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -21365,12 +20780,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_TILDE_AT, - [5077] = 2, - ACTIONS(960), 3, + [5024] = 2, + ACTIONS(1002), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_TILDE, - ACTIONS(958), 17, + ACTIONS(1000), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -21388,12 +20803,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_TILDE_AT, - [5102] = 2, - ACTIONS(964), 3, + [5049] = 2, + ACTIONS(1006), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_TILDE, - ACTIONS(962), 17, + ACTIONS(1004), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -21411,12 +20826,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_TILDE_AT, - [5127] = 2, - ACTIONS(1158), 3, + [5074] = 2, + ACTIONS(1010), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_TILDE, - ACTIONS(1156), 17, + ACTIONS(1008), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -21434,12 +20849,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_TILDE_AT, - [5152] = 2, - ACTIONS(968), 3, + [5099] = 2, + ACTIONS(1014), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_TILDE, - ACTIONS(966), 17, + ACTIONS(1012), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -21457,12 +20872,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_TILDE_AT, - [5177] = 2, - ACTIONS(926), 3, + [5124] = 2, + ACTIONS(1018), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_TILDE, - ACTIONS(924), 17, + ACTIONS(1016), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -21480,12 +20895,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_TILDE_AT, - [5202] = 2, - ACTIONS(926), 3, + [5149] = 2, + ACTIONS(912), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_TILDE, - ACTIONS(924), 17, + ACTIONS(910), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -21503,12 +20918,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_TILDE_AT, - [5227] = 2, - ACTIONS(910), 3, + [5174] = 2, + ACTIONS(1022), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_TILDE, - ACTIONS(908), 17, + ACTIONS(1020), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -21526,12 +20941,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_TILDE_AT, - [5252] = 2, - ACTIONS(906), 3, + [5199] = 2, + ACTIONS(1026), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_TILDE, - ACTIONS(904), 17, + ACTIONS(1024), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -21549,12 +20964,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_TILDE_AT, - [5277] = 2, - ACTIONS(894), 3, + [5224] = 2, + ACTIONS(1030), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_TILDE, - ACTIONS(892), 17, + ACTIONS(1028), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -21572,12 +20987,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_TILDE_AT, - [5302] = 2, - ACTIONS(972), 3, + [5249] = 2, + ACTIONS(1182), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_TILDE, - ACTIONS(970), 17, + ACTIONS(1180), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -21595,48 +21010,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_TILDE_AT, - [5327] = 15, - ACTIONS(268), 1, + [5274] = 3, + ACTIONS(1380), 1, anon_sym_SLASH, - ACTIONS(280), 1, - anon_sym_LPAREN, - ACTIONS(1372), 1, + ACTIONS(912), 3, + anon_sym_POUND, + anon_sym_POUND_QMARK, + anon_sym_TILDE, + ACTIONS(910), 16, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(1374), 1, + aux_sym__sym_qualified_token1, anon_sym_CARET, - ACTIONS(1376), 1, anon_sym_POUND_CARET, - ACTIONS(1382), 1, - aux_sym__sym_qualified_token1, - ACTIONS(1384), 1, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_POUND_EQ, + anon_sym_AT, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_TILDE_AT, + [5301] = 2, + ACTIONS(1038), 3, + anon_sym_POUND, anon_sym_POUND_QMARK, - STATE(392), 1, - sym__bare_list_lit, - STATE(424), 1, - sym__metadata_lit, - STATE(437), 1, - sym_old_meta_lit, - STATE(438), 1, - sym_meta_lit, - STATE(440), 1, - aux_sym_sym_lit_repeat1, - ACTIONS(1380), 2, + anon_sym_TILDE, + ACTIONS(1036), 17, sym__ws, sym_comment, - STATE(418), 3, - sym_sym_lit, - sym_list_lit, - sym_read_cond_lit, - STATE(439), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - [5378] = 2, - ACTIONS(980), 3, + anon_sym_POUND_, + anon_sym_SLASH, + aux_sym__sym_qualified_token1, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_POUND_EQ, + anon_sym_AT, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_TILDE_AT, + [5326] = 2, + ACTIONS(1038), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_TILDE, - ACTIONS(978), 17, + ACTIONS(1036), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -21654,12 +21080,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_TILDE_AT, - [5403] = 2, - ACTIONS(1034), 3, + [5351] = 2, + ACTIONS(1038), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_TILDE, - ACTIONS(1032), 17, + ACTIONS(1036), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -21677,12 +21103,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_TILDE_AT, - [5428] = 2, - ACTIONS(902), 3, + [5376] = 17, + ACTIONS(268), 1, + anon_sym_SLASH, + ACTIONS(280), 1, + anon_sym_LPAREN, + ACTIONS(1384), 1, + anon_sym_POUND_, + ACTIONS(1386), 1, + aux_sym__sym_qualified_token1, + ACTIONS(1388), 1, + anon_sym_CARET, + ACTIONS(1390), 1, + anon_sym_POUND_CARET, + ACTIONS(1392), 1, + anon_sym_POUND_QMARK, + STATE(382), 1, + sym_sym_lit, + STATE(383), 1, + sym_list_lit, + STATE(384), 1, + sym_read_cond_lit, + STATE(402), 1, + sym__bare_list_lit, + STATE(424), 1, + sym__metadata_lit, + STATE(437), 1, + sym_meta_lit, + STATE(438), 1, + sym_old_meta_lit, + STATE(440), 1, + aux_sym_sym_lit_repeat1, + ACTIONS(1382), 2, + sym__ws, + sym_comment, + STATE(436), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + [5431] = 2, + ACTIONS(1042), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_TILDE, - ACTIONS(900), 17, + ACTIONS(1040), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -21700,12 +21164,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_TILDE_AT, - [5453] = 2, - ACTIONS(1034), 3, + [5456] = 15, + ACTIONS(9), 1, + anon_sym_SLASH, + ACTIONS(25), 1, + anon_sym_LPAREN, + ACTIONS(1296), 1, + aux_sym__sym_qualified_token1, + ACTIONS(1384), 1, + anon_sym_POUND_, + ACTIONS(1388), 1, + anon_sym_CARET, + ACTIONS(1390), 1, + anon_sym_POUND_CARET, + ACTIONS(1394), 1, + anon_sym_POUND_QMARK, + STATE(299), 1, + sym__bare_list_lit, + STATE(424), 1, + sym__metadata_lit, + STATE(437), 1, + sym_meta_lit, + STATE(438), 1, + sym_old_meta_lit, + STATE(441), 1, + aux_sym_sym_lit_repeat1, + ACTIONS(1382), 2, + sym__ws, + sym_comment, + STATE(248), 3, + sym_sym_lit, + sym_list_lit, + sym_read_cond_lit, + STATE(436), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + [5507] = 2, + ACTIONS(1046), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_TILDE, - ACTIONS(1032), 17, + ACTIONS(1044), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -21723,12 +21223,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_TILDE_AT, - [5478] = 2, - ACTIONS(1178), 3, + [5532] = 17, + ACTIONS(268), 1, + anon_sym_SLASH, + ACTIONS(280), 1, + anon_sym_LPAREN, + ACTIONS(1384), 1, + anon_sym_POUND_, + ACTIONS(1386), 1, + aux_sym__sym_qualified_token1, + ACTIONS(1388), 1, + anon_sym_CARET, + ACTIONS(1390), 1, + anon_sym_POUND_CARET, + ACTIONS(1392), 1, + anon_sym_POUND_QMARK, + STATE(354), 1, + sym_sym_lit, + STATE(355), 1, + sym_list_lit, + STATE(356), 1, + sym_read_cond_lit, + STATE(402), 1, + sym__bare_list_lit, + STATE(424), 1, + sym__metadata_lit, + STATE(437), 1, + sym_meta_lit, + STATE(438), 1, + sym_old_meta_lit, + STATE(440), 1, + aux_sym_sym_lit_repeat1, + ACTIONS(1396), 2, + sym__ws, + sym_comment, + STATE(357), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + [5587] = 2, + ACTIONS(1054), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_TILDE, - ACTIONS(1176), 17, + ACTIONS(1052), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -21746,50 +21284,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_TILDE_AT, - [5503] = 17, + [5612] = 17, ACTIONS(9), 1, anon_sym_SLASH, ACTIONS(25), 1, anon_sym_LPAREN, ACTIONS(1296), 1, aux_sym__sym_qualified_token1, - ACTIONS(1372), 1, + ACTIONS(1384), 1, anon_sym_POUND_, - ACTIONS(1374), 1, + ACTIONS(1388), 1, anon_sym_CARET, - ACTIONS(1376), 1, + ACTIONS(1390), 1, anon_sym_POUND_CARET, - ACTIONS(1378), 1, + ACTIONS(1394), 1, anon_sym_POUND_QMARK, - STATE(218), 1, - sym__bare_list_lit, - STATE(228), 1, + STATE(280), 1, sym_sym_lit, - STATE(232), 1, + STATE(281), 1, sym_list_lit, - STATE(242), 1, + STATE(282), 1, sym_read_cond_lit, + STATE(299), 1, + sym__bare_list_lit, STATE(424), 1, sym__metadata_lit, STATE(437), 1, - sym_old_meta_lit, - STATE(438), 1, sym_meta_lit, + STATE(438), 1, + sym_old_meta_lit, STATE(441), 1, aux_sym_sym_lit_repeat1, - ACTIONS(1380), 2, + ACTIONS(1382), 2, sym__ws, sym_comment, - STATE(439), 3, + STATE(436), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [5558] = 2, - ACTIONS(1388), 3, + [5667] = 2, + ACTIONS(876), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_TILDE, - ACTIONS(1386), 17, + ACTIONS(874), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -21807,12 +21345,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_TILDE_AT, - [5583] = 2, - ACTIONS(1174), 3, + [5692] = 2, + ACTIONS(1058), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_TILDE, - ACTIONS(1172), 17, + ACTIONS(1056), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -21830,12 +21368,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_TILDE_AT, - [5608] = 2, - ACTIONS(1392), 3, + [5717] = 2, + ACTIONS(1062), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_TILDE, - ACTIONS(1390), 17, + ACTIONS(1060), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -21853,12 +21391,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_TILDE_AT, - [5633] = 2, - ACTIONS(1170), 3, + [5742] = 2, + ACTIONS(1070), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_TILDE, - ACTIONS(1168), 17, + ACTIONS(1068), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -21876,12 +21414,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_TILDE_AT, - [5658] = 2, - ACTIONS(1166), 3, + [5767] = 2, + ACTIONS(1074), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_TILDE, - ACTIONS(1164), 17, + ACTIONS(1072), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -21899,12 +21437,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_TILDE_AT, - [5683] = 2, - ACTIONS(984), 3, + [5792] = 2, + ACTIONS(1078), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_TILDE, - ACTIONS(982), 17, + ACTIONS(1076), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -21922,12 +21460,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_TILDE_AT, - [5708] = 2, - ACTIONS(988), 3, + [5817] = 2, + ACTIONS(1082), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_TILDE, - ACTIONS(986), 17, + ACTIONS(1080), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -21945,12 +21483,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_TILDE_AT, - [5733] = 2, - ACTIONS(1162), 3, + [5842] = 2, + ACTIONS(1086), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_TILDE, - ACTIONS(1160), 17, + ACTIONS(1084), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -21968,81 +21506,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_TILDE_AT, - [5758] = 2, - ACTIONS(1110), 3, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_TILDE, - ACTIONS(1108), 17, - sym__ws, - sym_comment, - anon_sym_POUND_, + [5867] = 15, + ACTIONS(9), 1, anon_sym_SLASH, - aux_sym__sym_qualified_token1, - anon_sym_CARET, - anon_sym_POUND_CARET, + ACTIONS(25), 1, anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_POUND_EQ, - anon_sym_AT, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_TILDE_AT, - [5783] = 2, - ACTIONS(992), 3, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_TILDE, - ACTIONS(990), 17, - sym__ws, - sym_comment, - anon_sym_POUND_, - anon_sym_SLASH, + ACTIONS(1296), 1, aux_sym__sym_qualified_token1, + ACTIONS(1384), 1, + anon_sym_POUND_, + ACTIONS(1388), 1, anon_sym_CARET, + ACTIONS(1390), 1, anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_POUND_EQ, - anon_sym_AT, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_TILDE_AT, - [5808] = 2, - ACTIONS(996), 3, - anon_sym_POUND, + ACTIONS(1394), 1, anon_sym_POUND_QMARK, - anon_sym_TILDE, - ACTIONS(994), 17, + STATE(299), 1, + sym__bare_list_lit, + STATE(424), 1, + sym__metadata_lit, + STATE(437), 1, + sym_meta_lit, + STATE(438), 1, + sym_old_meta_lit, + STATE(441), 1, + aux_sym_sym_lit_repeat1, + ACTIONS(1398), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_SLASH, - aux_sym__sym_qualified_token1, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_POUND_EQ, - anon_sym_AT, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_TILDE_AT, - [5833] = 2, - ACTIONS(1008), 3, + STATE(223), 3, + sym_sym_lit, + sym_list_lit, + sym_read_cond_lit, + STATE(359), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + [5918] = 2, + ACTIONS(1090), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_TILDE, - ACTIONS(1006), 17, + ACTIONS(1088), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -22060,17 +21565,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_TILDE_AT, - [5858] = 3, - ACTIONS(1394), 1, - anon_sym_SLASH, - ACTIONS(1008), 3, + [5943] = 2, + ACTIONS(904), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_TILDE, - ACTIONS(1006), 16, + ACTIONS(902), 17, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_SLASH, aux_sym__sym_qualified_token1, anon_sym_CARET, anon_sym_POUND_CARET, @@ -22084,12 +21588,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_TILDE_AT, - [5885] = 2, - ACTIONS(922), 3, + [5968] = 2, + ACTIONS(1094), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_TILDE, - ACTIONS(920), 17, + ACTIONS(1092), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -22107,50 +21611,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_TILDE_AT, - [5910] = 17, - ACTIONS(268), 1, - anon_sym_SLASH, - ACTIONS(280), 1, - anon_sym_LPAREN, - ACTIONS(1372), 1, - anon_sym_POUND_, - ACTIONS(1374), 1, - anon_sym_CARET, - ACTIONS(1376), 1, - anon_sym_POUND_CARET, - ACTIONS(1382), 1, - aux_sym__sym_qualified_token1, - ACTIONS(1384), 1, - anon_sym_POUND_QMARK, - STATE(326), 1, - sym_read_cond_lit, - STATE(392), 1, - sym__bare_list_lit, - STATE(400), 1, - sym_list_lit, - STATE(402), 1, - sym_sym_lit, - STATE(424), 1, - sym__metadata_lit, - STATE(437), 1, - sym_old_meta_lit, - STATE(438), 1, - sym_meta_lit, - STATE(440), 1, - aux_sym_sym_lit_repeat1, - ACTIONS(1396), 2, - sym__ws, - sym_comment, - STATE(394), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - [5965] = 2, - ACTIONS(882), 3, + [5993] = 2, + ACTIONS(1098), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_TILDE, - ACTIONS(878), 17, + ACTIONS(1096), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -22168,12 +21634,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_TILDE_AT, - [5990] = 2, - ACTIONS(1014), 3, + [6018] = 2, + ACTIONS(942), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_TILDE, - ACTIONS(1012), 17, + ACTIONS(940), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -22191,12 +21657,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_TILDE_AT, - [6015] = 2, - ACTIONS(1054), 3, + [6043] = 2, + ACTIONS(1094), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_TILDE, - ACTIONS(1052), 17, + ACTIONS(1092), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -22214,12 +21680,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_TILDE_AT, - [6040] = 2, - ACTIONS(876), 3, + [6068] = 2, + ACTIONS(1102), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_TILDE, - ACTIONS(874), 17, + ACTIONS(1100), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -22237,12 +21703,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_TILDE_AT, - [6065] = 2, - ACTIONS(1018), 3, + [6093] = 2, + ACTIONS(1106), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_TILDE, - ACTIONS(1016), 17, + ACTIONS(1104), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -22260,12 +21726,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_TILDE_AT, - [6090] = 2, - ACTIONS(1022), 3, + [6118] = 2, + ACTIONS(1110), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_TILDE, - ACTIONS(1020), 17, + ACTIONS(1108), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -22283,12 +21749,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_TILDE_AT, - [6115] = 2, - ACTIONS(1026), 3, + [6143] = 2, + ACTIONS(1114), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_TILDE, - ACTIONS(1024), 17, + ACTIONS(1112), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -22306,48 +21772,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_TILDE_AT, - [6140] = 15, - ACTIONS(9), 1, - anon_sym_SLASH, - ACTIONS(25), 1, - anon_sym_LPAREN, - ACTIONS(1296), 1, - aux_sym__sym_qualified_token1, - ACTIONS(1372), 1, - anon_sym_POUND_, - ACTIONS(1374), 1, - anon_sym_CARET, - ACTIONS(1376), 1, - anon_sym_POUND_CARET, - ACTIONS(1378), 1, - anon_sym_POUND_QMARK, - STATE(218), 1, - sym__bare_list_lit, - STATE(424), 1, - sym__metadata_lit, - STATE(437), 1, - sym_old_meta_lit, - STATE(438), 1, - sym_meta_lit, - STATE(441), 1, - aux_sym_sym_lit_repeat1, - ACTIONS(1380), 2, - sym__ws, - sym_comment, - STATE(272), 3, - sym_sym_lit, - sym_list_lit, - sym_read_cond_lit, - STATE(439), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - [6191] = 2, - ACTIONS(1150), 3, + [6168] = 2, + ACTIONS(1114), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_TILDE, - ACTIONS(1148), 17, + ACTIONS(1112), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -22365,12 +21795,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_TILDE_AT, - [6216] = 2, - ACTIONS(1094), 3, + [6193] = 2, + ACTIONS(1114), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_TILDE, - ACTIONS(1092), 17, + ACTIONS(1112), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -22388,12 +21818,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_TILDE_AT, - [6241] = 2, - ACTIONS(1030), 3, + [6218] = 2, + ACTIONS(1118), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_TILDE, - ACTIONS(1028), 17, + ACTIONS(1116), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -22411,12 +21841,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_TILDE_AT, - [6266] = 2, - ACTIONS(1038), 3, + [6243] = 2, + ACTIONS(1122), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_TILDE, - ACTIONS(1036), 17, + ACTIONS(1120), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -22434,17 +21864,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_TILDE_AT, - [6291] = 3, - ACTIONS(1398), 1, - anon_sym_SLASH, - ACTIONS(882), 3, + [6268] = 2, + ACTIONS(1126), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_TILDE, - ACTIONS(878), 16, + ACTIONS(1124), 17, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_SLASH, aux_sym__sym_qualified_token1, anon_sym_CARET, anon_sym_POUND_CARET, @@ -22458,12 +21887,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_TILDE_AT, - [6318] = 2, - ACTIONS(1402), 3, + [6293] = 2, + ACTIONS(1130), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_TILDE, - ACTIONS(1400), 17, + ACTIONS(1128), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -22476,53 +21905,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_POUND_QMARK_AT, anon_sym_POUND_SQUOTE, - anon_sym_POUND_EQ, - anon_sym_AT, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_TILDE_AT, - [6343] = 15, - ACTIONS(268), 1, - anon_sym_SLASH, - ACTIONS(280), 1, - anon_sym_LPAREN, - ACTIONS(1372), 1, - anon_sym_POUND_, - ACTIONS(1374), 1, - anon_sym_CARET, - ACTIONS(1376), 1, - anon_sym_POUND_CARET, - ACTIONS(1382), 1, - aux_sym__sym_qualified_token1, - ACTIONS(1384), 1, - anon_sym_POUND_QMARK, - STATE(392), 1, - sym__bare_list_lit, - STATE(424), 1, - sym__metadata_lit, - STATE(437), 1, - sym_old_meta_lit, - STATE(438), 1, - sym_meta_lit, - STATE(440), 1, - aux_sym_sym_lit_repeat1, - ACTIONS(1404), 2, - sym__ws, - sym_comment, - STATE(353), 3, - sym_sym_lit, - sym_list_lit, - sym_read_cond_lit, - STATE(354), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - [6394] = 2, - ACTIONS(1142), 3, + anon_sym_POUND_EQ, + anon_sym_AT, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_TILDE_AT, + [6318] = 2, + ACTIONS(1134), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_TILDE, - ACTIONS(1140), 17, + ACTIONS(1132), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -22540,12 +21933,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_TILDE_AT, - [6419] = 2, - ACTIONS(886), 3, + [6343] = 2, + ACTIONS(1138), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_TILDE, - ACTIONS(884), 17, + ACTIONS(1136), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -22563,12 +21956,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_TILDE_AT, - [6444] = 2, - ACTIONS(1134), 3, + [6368] = 2, + ACTIONS(1142), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_TILDE, - ACTIONS(1132), 17, + ACTIONS(1140), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -22586,50 +21979,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_TILDE_AT, - [6469] = 17, - ACTIONS(268), 1, - anon_sym_SLASH, - ACTIONS(280), 1, - anon_sym_LPAREN, - ACTIONS(1372), 1, - anon_sym_POUND_, - ACTIONS(1374), 1, - anon_sym_CARET, - ACTIONS(1376), 1, - anon_sym_POUND_CARET, - ACTIONS(1382), 1, - aux_sym__sym_qualified_token1, - ACTIONS(1384), 1, + [6393] = 2, + ACTIONS(1146), 3, + anon_sym_POUND, anon_sym_POUND_QMARK, - STATE(348), 1, - sym_list_lit, - STATE(349), 1, - sym_sym_lit, - STATE(392), 1, - sym__bare_list_lit, - STATE(407), 1, - sym_read_cond_lit, - STATE(424), 1, - sym__metadata_lit, - STATE(437), 1, - sym_old_meta_lit, - STATE(438), 1, - sym_meta_lit, - STATE(440), 1, - aux_sym_sym_lit_repeat1, - ACTIONS(1380), 2, + anon_sym_TILDE, + ACTIONS(1144), 17, sym__ws, sym_comment, - STATE(439), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - [6524] = 2, - ACTIONS(1042), 3, + anon_sym_POUND_, + anon_sym_SLASH, + aux_sym__sym_qualified_token1, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_POUND_EQ, + anon_sym_AT, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_TILDE_AT, + [6418] = 2, + ACTIONS(1142), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_TILDE, - ACTIONS(1040), 17, + ACTIONS(1140), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -22647,12 +22025,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_TILDE_AT, - [6549] = 2, - ACTIONS(1046), 3, + [6443] = 2, + ACTIONS(1150), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_TILDE, - ACTIONS(1044), 17, + ACTIONS(1148), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -22670,12 +22048,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_TILDE_AT, - [6574] = 2, - ACTIONS(1050), 3, + [6468] = 2, + ACTIONS(884), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_TILDE, - ACTIONS(1048), 17, + ACTIONS(882), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -22693,12 +22071,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_TILDE_AT, - [6599] = 2, - ACTIONS(1058), 3, + [6493] = 2, + ACTIONS(1158), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_TILDE, - ACTIONS(1056), 17, + ACTIONS(1156), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -22716,12 +22094,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_TILDE_AT, - [6624] = 2, - ACTIONS(1408), 3, + [6518] = 2, + ACTIONS(920), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_TILDE, - ACTIONS(1406), 17, + ACTIONS(916), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -22739,12 +22117,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_TILDE_AT, - [6649] = 2, - ACTIONS(1130), 3, + [6543] = 2, + ACTIONS(896), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_TILDE, - ACTIONS(1128), 17, + ACTIONS(894), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -22762,16 +22140,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_TILDE_AT, - [6674] = 2, - ACTIONS(872), 3, + [6568] = 3, + ACTIONS(1400), 1, + anon_sym_SLASH, + ACTIONS(920), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_TILDE, - ACTIONS(870), 17, + ACTIONS(916), 16, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_SLASH, aux_sym__sym_qualified_token1, anon_sym_CARET, anon_sym_POUND_CARET, @@ -22785,12 +22164,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_TILDE_AT, - [6699] = 2, - ACTIONS(1130), 3, + [6595] = 15, + ACTIONS(268), 1, + anon_sym_SLASH, + ACTIONS(280), 1, + anon_sym_LPAREN, + ACTIONS(1384), 1, + anon_sym_POUND_, + ACTIONS(1386), 1, + aux_sym__sym_qualified_token1, + ACTIONS(1388), 1, + anon_sym_CARET, + ACTIONS(1390), 1, + anon_sym_POUND_CARET, + ACTIONS(1392), 1, + anon_sym_POUND_QMARK, + STATE(402), 1, + sym__bare_list_lit, + STATE(424), 1, + sym__metadata_lit, + STATE(437), 1, + sym_meta_lit, + STATE(438), 1, + sym_old_meta_lit, + STATE(440), 1, + aux_sym_sym_lit_repeat1, + ACTIONS(1402), 2, + sym__ws, + sym_comment, + STATE(374), 3, + sym_sym_lit, + sym_list_lit, + sym_read_cond_lit, + STATE(407), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + [6646] = 2, + ACTIONS(1406), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_TILDE, - ACTIONS(1128), 17, + ACTIONS(1404), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -22808,12 +22223,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_TILDE_AT, - [6724] = 2, - ACTIONS(890), 3, + [6671] = 2, + ACTIONS(1178), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_TILDE, - ACTIONS(888), 17, + ACTIONS(1176), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -22831,12 +22246,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_TILDE_AT, - [6749] = 2, - ACTIONS(1066), 3, + [6696] = 2, + ACTIONS(868), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_TILDE, - ACTIONS(1064), 17, + ACTIONS(866), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -22854,12 +22269,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_TILDE_AT, - [6774] = 2, - ACTIONS(1126), 3, + [6721] = 2, + ACTIONS(880), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_TILDE, - ACTIONS(1124), 17, + ACTIONS(878), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -22877,12 +22292,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_TILDE_AT, - [6799] = 2, - ACTIONS(1122), 3, + [6746] = 2, + ACTIONS(888), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_TILDE, - ACTIONS(1120), 17, + ACTIONS(886), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -22900,12 +22315,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_TILDE_AT, - [6824] = 2, - ACTIONS(926), 3, + [6771] = 2, + ACTIONS(908), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_TILDE, - ACTIONS(924), 17, + ACTIONS(906), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -22923,12 +22338,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_TILDE_AT, - [6849] = 2, - ACTIONS(1114), 3, + [6796] = 15, + ACTIONS(268), 1, + anon_sym_SLASH, + ACTIONS(280), 1, + anon_sym_LPAREN, + ACTIONS(1384), 1, + anon_sym_POUND_, + ACTIONS(1386), 1, + aux_sym__sym_qualified_token1, + ACTIONS(1388), 1, + anon_sym_CARET, + ACTIONS(1390), 1, + anon_sym_POUND_CARET, + ACTIONS(1392), 1, + anon_sym_POUND_QMARK, + STATE(402), 1, + sym__bare_list_lit, + STATE(424), 1, + sym__metadata_lit, + STATE(437), 1, + sym_meta_lit, + STATE(438), 1, + sym_old_meta_lit, + STATE(440), 1, + aux_sym_sym_lit_repeat1, + ACTIONS(1382), 2, + sym__ws, + sym_comment, + STATE(342), 3, + sym_sym_lit, + sym_list_lit, + sym_read_cond_lit, + STATE(436), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + [6847] = 2, + ACTIONS(892), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_TILDE, - ACTIONS(1112), 17, + ACTIONS(890), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -22946,16 +22397,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_TILDE_AT, - [6874] = 2, - ACTIONS(1070), 3, + [6872] = 3, + ACTIONS(1408), 1, + anon_sym_SLASH, + ACTIONS(862), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_TILDE, - ACTIONS(1068), 17, + ACTIONS(860), 16, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_SLASH, aux_sym__sym_qualified_token1, anon_sym_CARET, anon_sym_POUND_CARET, @@ -22970,11 +22422,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_TILDE_AT, [6899] = 2, - ACTIONS(1146), 3, + ACTIONS(978), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_TILDE, - ACTIONS(1144), 17, + ACTIONS(976), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -22993,11 +22445,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_TILDE_AT, [6924] = 2, - ACTIONS(1182), 3, + ACTIONS(1034), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_TILDE, - ACTIONS(1180), 17, + ACTIONS(1032), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -23016,11 +22468,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_TILDE_AT, [6949] = 2, - ACTIONS(1106), 3, + ACTIONS(1050), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_TILDE, - ACTIONS(1104), 17, + ACTIONS(1048), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -23039,11 +22491,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_TILDE_AT, [6974] = 2, - ACTIONS(1074), 3, + ACTIONS(1066), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_TILDE, - ACTIONS(1072), 17, + ACTIONS(1064), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -23062,11 +22514,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_TILDE_AT, [6999] = 2, - ACTIONS(868), 3, + ACTIONS(926), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_TILDE, - ACTIONS(866), 17, + ACTIONS(924), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -23085,11 +22537,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_TILDE_AT, [7024] = 2, - ACTIONS(1102), 3, + ACTIONS(1154), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_TILDE, - ACTIONS(1100), 17, + ACTIONS(1152), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -23108,11 +22560,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_TILDE_AT, [7049] = 2, - ACTIONS(1098), 3, + ACTIONS(1162), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_TILDE, - ACTIONS(1096), 17, + ACTIONS(1160), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -23131,11 +22583,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_TILDE_AT, [7074] = 2, - ACTIONS(976), 3, + ACTIONS(1166), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_TILDE, - ACTIONS(974), 17, + ACTIONS(1164), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -23154,11 +22606,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_TILDE_AT, [7099] = 2, - ACTIONS(1090), 3, + ACTIONS(1170), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_TILDE, - ACTIONS(1088), 17, + ACTIONS(1168), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -23177,11 +22629,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_TILDE_AT, [7124] = 2, - ACTIONS(1086), 3, + ACTIONS(1174), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_TILDE, - ACTIONS(1084), 17, + ACTIONS(1172), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -23200,11 +22652,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_TILDE_AT, [7149] = 2, - ACTIONS(1082), 3, + ACTIONS(930), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_TILDE, - ACTIONS(1080), 17, + ACTIONS(928), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -23223,11 +22675,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_TILDE_AT, [7174] = 2, - ACTIONS(1078), 3, + ACTIONS(934), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_TILDE, - ACTIONS(1076), 17, + ACTIONS(932), 17, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_SLASH, + aux_sym__sym_qualified_token1, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_POUND_EQ, + anon_sym_AT, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_TILDE_AT, + [7199] = 2, + ACTIONS(938), 3, + anon_sym_POUND, + anon_sym_POUND_QMARK, + anon_sym_TILDE, + ACTIONS(936), 17, sym__ws, sym_comment, anon_sym_POUND_, @@ -23245,67 +22720,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_TILDE_AT, - [7199] = 17, + [7224] = 17, ACTIONS(9), 1, anon_sym_SLASH, ACTIONS(25), 1, anon_sym_LPAREN, ACTIONS(1296), 1, aux_sym__sym_qualified_token1, - ACTIONS(1372), 1, + ACTIONS(1384), 1, anon_sym_POUND_, - ACTIONS(1374), 1, + ACTIONS(1388), 1, anon_sym_CARET, - ACTIONS(1376), 1, + ACTIONS(1390), 1, anon_sym_POUND_CARET, - ACTIONS(1378), 1, + ACTIONS(1394), 1, anon_sym_POUND_QMARK, - STATE(218), 1, - sym__bare_list_lit, - STATE(284), 1, + STATE(258), 1, sym_sym_lit, - STATE(285), 1, + STATE(259), 1, sym_list_lit, - STATE(286), 1, + STATE(260), 1, sym_read_cond_lit, + STATE(299), 1, + sym__bare_list_lit, STATE(424), 1, sym__metadata_lit, STATE(437), 1, - sym_old_meta_lit, - STATE(438), 1, sym_meta_lit, + STATE(438), 1, + sym_old_meta_lit, STATE(441), 1, aux_sym_sym_lit_repeat1, ACTIONS(1410), 2, sym__ws, sym_comment, - STATE(360), 3, + STATE(363), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [7254] = 2, - ACTIONS(918), 3, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_TILDE, - ACTIONS(916), 17, - sym__ws, - sym_comment, - anon_sym_POUND_, - anon_sym_SLASH, - aux_sym__sym_qualified_token1, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_POUND_EQ, - anon_sym_AT, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_TILDE_AT, [7279] = 2, ACTIONS(1414), 3, anon_sym_POUND, @@ -23337,20 +22789,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(1300), 1, anon_sym_POUND_CARET, - STATE(126), 1, + STATE(169), 1, sym_sym_lit, STATE(424), 1, sym__metadata_lit, - STATE(442), 1, - sym_meta_lit, - STATE(447), 1, + STATE(443), 1, sym_old_meta_lit, - STATE(452), 1, + STATE(445), 1, + sym_meta_lit, + STATE(450), 1, aux_sym_sym_lit_repeat1, ACTIONS(1416), 2, sym__ws, sym_comment, - STATE(446), 3, + STATE(444), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, @@ -23365,20 +22817,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(1300), 1, anon_sym_POUND_CARET, - STATE(180), 1, + STATE(51), 1, sym_sym_lit, STATE(424), 1, sym__metadata_lit, - STATE(442), 1, - sym_meta_lit, - STATE(447), 1, + STATE(443), 1, sym_old_meta_lit, - STATE(452), 1, + STATE(445), 1, + sym_meta_lit, + STATE(450), 1, aux_sym_sym_lit_repeat1, ACTIONS(1416), 2, sym__ws, sym_comment, - STATE(446), 3, + STATE(444), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, @@ -23393,20 +22845,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(1300), 1, anon_sym_POUND_CARET, - STATE(166), 1, + STATE(159), 1, sym_sym_lit, STATE(424), 1, sym__metadata_lit, - STATE(442), 1, - sym_meta_lit, - STATE(447), 1, + STATE(443), 1, sym_old_meta_lit, - STATE(452), 1, + STATE(445), 1, + sym_meta_lit, + STATE(450), 1, aux_sym_sym_lit_repeat1, ACTIONS(1416), 2, sym__ws, sym_comment, - STATE(446), 3, + STATE(444), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, @@ -23421,20 +22873,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(1300), 1, anon_sym_POUND_CARET, - STATE(137), 1, + STATE(41), 1, sym_sym_lit, STATE(424), 1, sym__metadata_lit, - STATE(442), 1, - sym_meta_lit, - STATE(447), 1, + STATE(443), 1, sym_old_meta_lit, - STATE(452), 1, + STATE(445), 1, + sym_meta_lit, + STATE(450), 1, aux_sym_sym_lit_repeat1, ACTIONS(1416), 2, sym__ws, sym_comment, - STATE(446), 3, + STATE(444), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, @@ -23449,20 +22901,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(1300), 1, anon_sym_POUND_CARET, - STATE(202), 1, + STATE(129), 1, sym_sym_lit, STATE(424), 1, sym__metadata_lit, - STATE(442), 1, - sym_meta_lit, - STATE(447), 1, + STATE(443), 1, sym_old_meta_lit, - STATE(452), 1, + STATE(445), 1, + sym_meta_lit, + STATE(450), 1, aux_sym_sym_lit_repeat1, ACTIONS(1416), 2, sym__ws, sym_comment, - STATE(446), 3, + STATE(444), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, @@ -23477,20 +22929,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(1300), 1, anon_sym_POUND_CARET, - STATE(115), 1, + STATE(119), 1, sym_sym_lit, STATE(424), 1, sym__metadata_lit, - STATE(442), 1, - sym_meta_lit, - STATE(447), 1, + STATE(443), 1, sym_old_meta_lit, - STATE(452), 1, + STATE(445), 1, + sym_meta_lit, + STATE(450), 1, aux_sym_sym_lit_repeat1, ACTIONS(1416), 2, sym__ws, sym_comment, - STATE(446), 3, + STATE(444), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, @@ -23505,20 +22957,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(1300), 1, anon_sym_POUND_CARET, - STATE(85), 1, + STATE(209), 1, sym_sym_lit, STATE(424), 1, sym__metadata_lit, - STATE(442), 1, - sym_meta_lit, - STATE(447), 1, + STATE(443), 1, sym_old_meta_lit, - STATE(452), 1, + STATE(445), 1, + sym_meta_lit, + STATE(450), 1, aux_sym_sym_lit_repeat1, ACTIONS(1416), 2, sym__ws, sym_comment, - STATE(446), 3, + STATE(444), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, @@ -23533,20 +22985,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(1300), 1, anon_sym_POUND_CARET, - STATE(175), 1, + STATE(86), 1, sym_sym_lit, STATE(424), 1, sym__metadata_lit, - STATE(442), 1, - sym_meta_lit, - STATE(447), 1, + STATE(443), 1, sym_old_meta_lit, - STATE(452), 1, + STATE(445), 1, + sym_meta_lit, + STATE(450), 1, aux_sym_sym_lit_repeat1, ACTIONS(1416), 2, sym__ws, sym_comment, - STATE(446), 3, + STATE(444), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, @@ -23561,20 +23013,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(1300), 1, anon_sym_POUND_CARET, - STATE(71), 1, + STATE(76), 1, sym_sym_lit, STATE(424), 1, sym__metadata_lit, - STATE(442), 1, - sym_meta_lit, - STATE(447), 1, + STATE(443), 1, sym_old_meta_lit, - STATE(452), 1, + STATE(445), 1, + sym_meta_lit, + STATE(450), 1, aux_sym_sym_lit_repeat1, ACTIONS(1416), 2, sym__ws, sym_comment, - STATE(446), 3, + STATE(444), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, @@ -23589,34 +23041,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(1300), 1, anon_sym_POUND_CARET, - STATE(33), 1, + STATE(199), 1, sym_sym_lit, STATE(424), 1, sym__metadata_lit, - STATE(442), 1, - sym_meta_lit, - STATE(447), 1, + STATE(443), 1, sym_old_meta_lit, - STATE(452), 1, + STATE(445), 1, + sym_meta_lit, + STATE(450), 1, aux_sym_sym_lit_repeat1, ACTIONS(1416), 2, sym__ws, sym_comment, - STATE(446), 3, + STATE(444), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [7701] = 4, - ACTIONS(1372), 1, + ACTIONS(1384), 1, anon_sym_POUND_, - ACTIONS(1380), 2, + ACTIONS(1382), 2, sym__ws, sym_comment, - STATE(439), 3, + STATE(436), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(1314), 6, + ACTIONS(1308), 6, anon_sym_SLASH, aux_sym__sym_qualified_token1, anon_sym_CARET, @@ -23624,16 +23076,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_POUND_QMARK, [7722] = 4, - ACTIONS(1372), 1, + ACTIONS(1421), 1, anon_sym_POUND_, - ACTIONS(1380), 2, + ACTIONS(1418), 2, sym__ws, sym_comment, - STATE(439), 3, + STATE(436), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(1318), 6, + ACTIONS(1190), 6, anon_sym_SLASH, aux_sym__sym_qualified_token1, anon_sym_CARET, @@ -23641,12 +23093,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_POUND_QMARK, [7743] = 4, - ACTIONS(1372), 1, + ACTIONS(1384), 1, anon_sym_POUND_, - ACTIONS(1418), 2, + ACTIONS(1424), 2, sym__ws, sym_comment, - STATE(435), 3, + STATE(439), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, @@ -23658,16 +23110,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_POUND_QMARK, [7764] = 4, - ACTIONS(1372), 1, + ACTIONS(1384), 1, anon_sym_POUND_, - ACTIONS(1420), 2, + ACTIONS(1426), 2, sym__ws, sym_comment, - STATE(436), 3, + STATE(435), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(1332), 6, + ACTIONS(1338), 6, anon_sym_SLASH, aux_sym__sym_qualified_token1, anon_sym_CARET, @@ -23675,16 +23127,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_POUND_QMARK, [7785] = 4, - ACTIONS(1425), 1, + ACTIONS(1384), 1, anon_sym_POUND_, - ACTIONS(1422), 2, + ACTIONS(1382), 2, sym__ws, sym_comment, - STATE(439), 3, + STATE(436), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(1190), 6, + ACTIONS(1332), 6, anon_sym_SLASH, aux_sym__sym_qualified_token1, anon_sym_CARET, @@ -23698,21 +23150,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, ACTIONS(1224), 1, aux_sym__sym_qualified_token1, - ACTIONS(1374), 1, + ACTIONS(1388), 1, anon_sym_CARET, - ACTIONS(1376), 1, + ACTIONS(1390), 1, anon_sym_POUND_CARET, ACTIONS(1428), 1, anon_sym_POUND_QMARK, - STATE(377), 1, + STATE(414), 1, sym__bare_list_lit, STATE(424), 1, sym__metadata_lit, STATE(437), 1, - sym_old_meta_lit, - STATE(438), 1, sym_meta_lit, - STATE(444), 1, + STATE(438), 1, + sym_old_meta_lit, + STATE(448), 1, aux_sym_sym_lit_repeat1, [7840] = 11, ACTIONS(25), 1, @@ -23721,91 +23173,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, ACTIONS(1200), 1, aux_sym__sym_qualified_token1, - ACTIONS(1374), 1, + ACTIONS(1388), 1, anon_sym_CARET, - ACTIONS(1376), 1, + ACTIONS(1390), 1, anon_sym_POUND_CARET, ACTIONS(1430), 1, anon_sym_POUND_QMARK, - STATE(253), 1, + STATE(230), 1, sym__bare_list_lit, STATE(424), 1, sym__metadata_lit, STATE(437), 1, - sym_old_meta_lit, - STATE(438), 1, sym_meta_lit, - STATE(444), 1, + STATE(438), 1, + sym_old_meta_lit, + STATE(448), 1, aux_sym_sym_lit_repeat1, [7874] = 4, ACTIONS(1290), 1, anon_sym_POUND_, - ACTIONS(1432), 2, + ACTIONS(1416), 2, sym__ws, sym_comment, - STATE(448), 3, + STATE(444), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(1332), 4, - anon_sym_SLASH, - aux_sym__sym_qualified_token1, - anon_sym_CARET, - anon_sym_POUND_CARET, - [7893] = 3, - ACTIONS(1356), 1, - aux_sym__kwd_leading_slash_token1, - ACTIONS(862), 4, - anon_sym_POUND_, + ACTIONS(1308), 4, anon_sym_SLASH, aux_sym__sym_qualified_token1, - anon_sym_POUND_QMARK, - ACTIONS(860), 5, - sym__ws, - sym_comment, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LPAREN, - [7910] = 7, - ACTIONS(1434), 1, anon_sym_CARET, - ACTIONS(1437), 1, anon_sym_POUND_CARET, - STATE(424), 1, - sym__metadata_lit, - STATE(437), 1, - sym_old_meta_lit, - STATE(438), 1, - sym_meta_lit, - STATE(444), 1, - aux_sym_sym_lit_repeat1, - ACTIONS(1358), 4, - anon_sym_SLASH, - aux_sym__sym_qualified_token1, - anon_sym_LPAREN, - anon_sym_POUND_QMARK, - [7935] = 4, + [7893] = 4, ACTIONS(1290), 1, anon_sym_POUND_, - ACTIONS(1416), 2, + ACTIONS(1432), 2, sym__ws, sym_comment, - STATE(446), 3, + STATE(442), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(1314), 4, + ACTIONS(1338), 4, anon_sym_SLASH, aux_sym__sym_qualified_token1, anon_sym_CARET, anon_sym_POUND_CARET, - [7954] = 4, - ACTIONS(1443), 1, + [7912] = 4, + ACTIONS(1437), 1, anon_sym_POUND_, - ACTIONS(1440), 2, + ACTIONS(1434), 2, sym__ws, sym_comment, - STATE(446), 3, + STATE(444), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, @@ -23814,13 +23234,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__sym_qualified_token1, anon_sym_CARET, anon_sym_POUND_CARET, - [7973] = 4, + [7931] = 4, ACTIONS(1290), 1, anon_sym_POUND_, - ACTIONS(1446), 2, + ACTIONS(1440), 2, sym__ws, sym_comment, - STATE(445), 3, + STATE(447), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, @@ -23829,90 +23249,122 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__sym_qualified_token1, anon_sym_CARET, anon_sym_POUND_CARET, - [7992] = 4, + [7950] = 3, + ACTIONS(1366), 1, + aux_sym__kwd_leading_slash_token1, + ACTIONS(862), 4, + anon_sym_POUND_, + anon_sym_SLASH, + aux_sym__sym_qualified_token1, + anon_sym_POUND_QMARK, + ACTIONS(860), 5, + sym__ws, + sym_comment, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + [7967] = 4, ACTIONS(1290), 1, anon_sym_POUND_, ACTIONS(1416), 2, sym__ws, sym_comment, - STATE(446), 3, + STATE(444), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(1318), 4, + ACTIONS(1332), 4, anon_sym_SLASH, aux_sym__sym_qualified_token1, anon_sym_CARET, anon_sym_POUND_CARET, - [8011] = 7, - ACTIONS(1448), 1, + [7986] = 7, + ACTIONS(1442), 1, anon_sym_CARET, - ACTIONS(1451), 1, + ACTIONS(1445), 1, anon_sym_POUND_CARET, STATE(424), 1, sym__metadata_lit, - STATE(442), 1, + STATE(437), 1, sym_meta_lit, - STATE(447), 1, + STATE(438), 1, sym_old_meta_lit, - STATE(449), 1, + STATE(448), 1, aux_sym_sym_lit_repeat1, - ACTIONS(1358), 2, + ACTIONS(1356), 4, anon_sym_SLASH, aux_sym__sym_qualified_token1, - [8034] = 5, + anon_sym_LPAREN, + anon_sym_POUND_QMARK, + [8011] = 5, ACTIONS(282), 1, anon_sym_LBRACE, - ACTIONS(1456), 1, + ACTIONS(1450), 1, anon_sym_POUND_, - STATE(330), 1, + STATE(393), 1, sym__bare_map_lit, - ACTIONS(1454), 2, + ACTIONS(1448), 2, sym__ws, sym_comment, STATE(464), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [8053] = 5, + [8030] = 8, + ACTIONS(1198), 1, + anon_sym_SLASH, + ACTIONS(1200), 1, + aux_sym__sym_qualified_token1, + ACTIONS(1298), 1, + anon_sym_CARET, + ACTIONS(1300), 1, + anon_sym_POUND_CARET, + STATE(424), 1, + sym__metadata_lit, + STATE(443), 1, + sym_old_meta_lit, + STATE(445), 1, + sym_meta_lit, + STATE(452), 1, + aux_sym_sym_lit_repeat1, + [8055] = 5, ACTIONS(282), 1, anon_sym_LBRACE, - ACTIONS(1456), 1, + ACTIONS(1450), 1, anon_sym_POUND_, - STATE(356), 1, + STATE(375), 1, sym__bare_map_lit, - ACTIONS(1458), 2, + ACTIONS(1452), 2, sym__ws, sym_comment, - STATE(450), 3, + STATE(457), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [8072] = 8, - ACTIONS(1198), 1, - anon_sym_SLASH, - ACTIONS(1200), 1, - aux_sym__sym_qualified_token1, - ACTIONS(1298), 1, + [8074] = 7, + ACTIONS(1454), 1, anon_sym_CARET, - ACTIONS(1300), 1, + ACTIONS(1457), 1, anon_sym_POUND_CARET, STATE(424), 1, sym__metadata_lit, - STATE(442), 1, - sym_meta_lit, - STATE(447), 1, + STATE(443), 1, sym_old_meta_lit, - STATE(449), 1, + STATE(445), 1, + sym_meta_lit, + STATE(452), 1, aux_sym_sym_lit_repeat1, + ACTIONS(1356), 2, + anon_sym_SLASH, + aux_sym__sym_qualified_token1, [8097] = 5, ACTIONS(27), 1, anon_sym_LBRACE, - ACTIONS(1456), 1, + ACTIONS(1450), 1, anon_sym_POUND_, - STATE(296), 1, + STATE(291), 1, sym__bare_map_lit, - ACTIONS(1454), 2, + ACTIONS(1448), 2, sym__ws, sym_comment, STATE(464), 3, @@ -23920,123 +23372,123 @@ static const uint16_t ts_small_parse_table[] = { sym_dis_expr, aux_sym_dis_expr_repeat1, [8116] = 5, - ACTIONS(27), 1, + ACTIONS(282), 1, anon_sym_LBRACE, - ACTIONS(1456), 1, + ACTIONS(1450), 1, anon_sym_POUND_, - STATE(266), 1, + STATE(378), 1, sym__bare_map_lit, ACTIONS(1460), 2, sym__ws, sym_comment, - STATE(453), 3, + STATE(449), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [8135] = 3, - ACTIONS(1356), 1, - aux_sym__kwd_leading_slash_token1, - ACTIONS(862), 3, - anon_sym_POUND_, - anon_sym_SLASH, - aux_sym__sym_qualified_token1, - ACTIONS(860), 4, - sym__ws, - sym_comment, - anon_sym_CARET, - anon_sym_POUND_CARET, - [8150] = 5, + [8135] = 5, ACTIONS(27), 1, anon_sym_LBRACE, - ACTIONS(1456), 1, + ACTIONS(1450), 1, anon_sym_POUND_, - STATE(273), 1, + STATE(274), 1, sym__bare_map_lit, ACTIONS(1462), 2, sym__ws, sym_comment, - STATE(462), 3, + STATE(456), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [8169] = 5, + [8154] = 5, ACTIONS(27), 1, anon_sym_LBRACE, - ACTIONS(1456), 1, + ACTIONS(1450), 1, anon_sym_POUND_, - STATE(294), 1, + STATE(289), 1, sym__bare_map_lit, - ACTIONS(1454), 2, + ACTIONS(1448), 2, sym__ws, sym_comment, STATE(464), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [8188] = 5, + [8173] = 5, ACTIONS(282), 1, anon_sym_LBRACE, - ACTIONS(1456), 1, + ACTIONS(1450), 1, anon_sym_POUND_, - STATE(358), 1, + STATE(391), 1, sym__bare_map_lit, - ACTIONS(1464), 2, + ACTIONS(1448), 2, sym__ws, sym_comment, - STATE(459), 3, + STATE(464), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [8207] = 5, + [8192] = 5, ACTIONS(282), 1, anon_sym_LBRACE, - ACTIONS(1456), 1, + ACTIONS(1450), 1, anon_sym_POUND_, - STATE(328), 1, + STATE(334), 1, sym__bare_map_lit, - ACTIONS(1454), 2, + ACTIONS(1464), 2, sym__ws, sym_comment, - STATE(464), 3, + STATE(459), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [8226] = 5, + [8211] = 5, ACTIONS(282), 1, anon_sym_LBRACE, - ACTIONS(1456), 1, + ACTIONS(1450), 1, anon_sym_POUND_, - STATE(365), 1, + STATE(369), 1, sym__bare_map_lit, - ACTIONS(1454), 2, + ACTIONS(1448), 2, sym__ws, sym_comment, STATE(464), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, + [8230] = 3, + ACTIONS(1366), 1, + aux_sym__kwd_leading_slash_token1, + ACTIONS(862), 3, + anon_sym_POUND_, + anon_sym_SLASH, + aux_sym__sym_qualified_token1, + ACTIONS(860), 4, + sym__ws, + sym_comment, + anon_sym_CARET, + anon_sym_POUND_CARET, [8245] = 5, - ACTIONS(282), 1, + ACTIONS(27), 1, anon_sym_LBRACE, - ACTIONS(1456), 1, + ACTIONS(1450), 1, anon_sym_POUND_, - STATE(404), 1, + STATE(241), 1, sym__bare_map_lit, ACTIONS(1466), 2, sym__ws, sym_comment, - STATE(460), 3, + STATE(462), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [8264] = 5, ACTIONS(27), 1, anon_sym_LBRACE, - ACTIONS(1456), 1, + ACTIONS(1450), 1, anon_sym_POUND_, - STATE(221), 1, + STATE(270), 1, sym__bare_map_lit, - ACTIONS(1454), 2, + ACTIONS(1448), 2, sym__ws, sym_comment, STATE(464), 3, @@ -24046,14 +23498,14 @@ static const uint16_t ts_small_parse_table[] = { [8283] = 5, ACTIONS(27), 1, anon_sym_LBRACE, - ACTIONS(1456), 1, + ACTIONS(1450), 1, anon_sym_POUND_, - STATE(258), 1, + STATE(276), 1, sym__bare_map_lit, ACTIONS(1468), 2, sym__ws, sym_comment, - STATE(457), 3, + STATE(453), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, @@ -24090,148 +23542,148 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, anon_sym_LBRACE, [8345] = 4, - ACTIONS(280), 1, + ACTIONS(25), 1, anon_sym_LPAREN, ACTIONS(1484), 1, sym__ws, - STATE(351), 1, + STATE(255), 1, sym__bare_list_lit, - STATE(483), 1, + STATE(468), 1, aux_sym_read_cond_lit_repeat1, [8358] = 4, - ACTIONS(280), 1, + ACTIONS(25), 1, anon_sym_LPAREN, ACTIONS(1486), 1, sym__ws, - STATE(325), 1, + STATE(277), 1, sym__bare_list_lit, - STATE(476), 1, + STATE(483), 1, aux_sym_read_cond_lit_repeat1, [8371] = 4, - ACTIONS(25), 1, + ACTIONS(280), 1, anon_sym_LPAREN, - ACTIONS(1488), 1, + ACTIONS(1486), 1, sym__ws, - STATE(282), 1, + STATE(339), 1, sym__bare_list_lit, - STATE(475), 1, + STATE(483), 1, aux_sym_read_cond_lit_repeat1, [8384] = 4, ACTIONS(280), 1, anon_sym_LPAREN, - ACTIONS(1484), 1, + ACTIONS(1486), 1, sym__ws, - STATE(421), 1, + STATE(379), 1, sym__bare_list_lit, STATE(483), 1, aux_sym_read_cond_lit_repeat1, [8397] = 4, ACTIONS(280), 1, anon_sym_LPAREN, - ACTIONS(1484), 1, + ACTIONS(1486), 1, sym__ws, - STATE(413), 1, + STATE(380), 1, sym__bare_list_lit, STATE(483), 1, aux_sym_read_cond_lit_repeat1, [8410] = 4, - ACTIONS(25), 1, + ACTIONS(280), 1, anon_sym_LPAREN, - ACTIONS(1484), 1, + ACTIONS(1486), 1, sym__ws, - STATE(269), 1, + STATE(338), 1, sym__bare_list_lit, STATE(483), 1, aux_sym_read_cond_lit_repeat1, [8423] = 4, - ACTIONS(25), 1, + ACTIONS(280), 1, anon_sym_LPAREN, - ACTIONS(1484), 1, + ACTIONS(1488), 1, sym__ws, - STATE(220), 1, + STATE(350), 1, sym__bare_list_lit, - STATE(483), 1, + STATE(470), 1, aux_sym_read_cond_lit_repeat1, [8436] = 4, - ACTIONS(25), 1, + ACTIONS(280), 1, anon_sym_LPAREN, ACTIONS(1490), 1, sym__ws, - STATE(281), 1, + STATE(351), 1, sym__bare_list_lit, - STATE(473), 1, + STATE(471), 1, aux_sym_read_cond_lit_repeat1, [8449] = 4, ACTIONS(25), 1, anon_sym_LPAREN, - ACTIONS(1484), 1, + ACTIONS(1492), 1, sym__ws, - STATE(223), 1, + STATE(295), 1, sym__bare_list_lit, - STATE(483), 1, + STATE(478), 1, aux_sym_read_cond_lit_repeat1, [8462] = 4, ACTIONS(280), 1, anon_sym_LPAREN, - ACTIONS(1484), 1, + ACTIONS(1494), 1, sym__ws, - STATE(352), 1, + STATE(416), 1, sym__bare_list_lit, - STATE(483), 1, + STATE(472), 1, aux_sym_read_cond_lit_repeat1, [8475] = 4, - ACTIONS(25), 1, + ACTIONS(280), 1, anon_sym_LPAREN, - ACTIONS(1492), 1, + ACTIONS(1496), 1, sym__ws, - STATE(238), 1, + STATE(417), 1, sym__bare_list_lit, - STATE(472), 1, + STATE(469), 1, aux_sym_read_cond_lit_repeat1, [8488] = 4, ACTIONS(25), 1, anon_sym_LPAREN, - ACTIONS(1494), 1, + ACTIONS(1486), 1, sym__ws, - STATE(237), 1, + STATE(244), 1, sym__bare_list_lit, - STATE(482), 1, + STATE(483), 1, aux_sym_read_cond_lit_repeat1, [8501] = 4, - ACTIONS(280), 1, + ACTIONS(25), 1, anon_sym_LPAREN, - ACTIONS(1496), 1, + ACTIONS(1486), 1, sym__ws, - STATE(344), 1, + STATE(278), 1, sym__bare_list_lit, - STATE(470), 1, + STATE(483), 1, aux_sym_read_cond_lit_repeat1, [8514] = 4, - ACTIONS(280), 1, + ACTIONS(25), 1, anon_sym_LPAREN, ACTIONS(1498), 1, sym__ws, - STATE(343), 1, + STATE(296), 1, sym__bare_list_lit, - STATE(471), 1, + STATE(481), 1, aux_sym_read_cond_lit_repeat1, [8527] = 4, - ACTIONS(280), 1, + ACTIONS(25), 1, anon_sym_LPAREN, - ACTIONS(1500), 1, + ACTIONS(1486), 1, sym__ws, - STATE(406), 1, + STATE(245), 1, sym__bare_list_lit, - STATE(467), 1, + STATE(483), 1, aux_sym_read_cond_lit_repeat1, [8540] = 4, ACTIONS(25), 1, anon_sym_LPAREN, - ACTIONS(1484), 1, + ACTIONS(1500), 1, sym__ws, - STATE(268), 1, + STATE(256), 1, sym__bare_list_lit, - STATE(483), 1, + STATE(479), 1, aux_sym_read_cond_lit_repeat1, [8553] = 3, ACTIONS(1502), 1, @@ -24246,13 +23698,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1509), 1, aux_sym__kwd_qualified_token1, [8570] = 2, - ACTIONS(1480), 1, - anon_sym_SLASH, ACTIONS(1509), 1, aux_sym__kwd_qualified_token1, - [8577] = 2, ACTIONS(1511), 1, anon_sym_SLASH, + [8577] = 2, + ACTIONS(1480), 1, + anon_sym_SLASH, ACTIONS(1513), 1, aux_sym__kwd_qualified_token1, [8584] = 2, @@ -24261,7 +23713,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1515), 1, anon_sym_SLASH, [8591] = 2, - ACTIONS(1513), 1, + ACTIONS(1509), 1, aux_sym__kwd_qualified_token1, ACTIONS(1517), 1, anon_sym_SLASH, @@ -24276,16 +23728,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__sym_qualified_token2, [8610] = 1, ACTIONS(1525), 1, - aux_sym__sym_qualified_token2, + aux_sym__kwd_leading_slash_token1, [8614] = 1, ACTIONS(1527), 1, - ts_builtin_sym_end, + aux_sym__sym_qualified_token2, [8618] = 1, ACTIONS(1529), 1, - aux_sym__kwd_leading_slash_token1, + aux_sym__sym_qualified_token2, [8622] = 1, ACTIONS(1531), 1, - aux_sym__sym_qualified_token2, + ts_builtin_sym_end, }; static const uint32_t ts_small_parse_table_map[] = { @@ -24294,41 +23746,41 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(215)] = 77, [SMALL_STATE(216)] = 114, [SMALL_STATE(217)] = 151, - [SMALL_STATE(218)] = 190, - [SMALL_STATE(219)] = 227, - [SMALL_STATE(220)] = 264, - [SMALL_STATE(221)] = 301, - [SMALL_STATE(222)] = 338, - [SMALL_STATE(223)] = 375, - [SMALL_STATE(224)] = 412, - [SMALL_STATE(225)] = 449, - [SMALL_STATE(226)] = 486, + [SMALL_STATE(218)] = 188, + [SMALL_STATE(219)] = 225, + [SMALL_STATE(220)] = 262, + [SMALL_STATE(221)] = 299, + [SMALL_STATE(222)] = 336, + [SMALL_STATE(223)] = 373, + [SMALL_STATE(224)] = 410, + [SMALL_STATE(225)] = 447, + [SMALL_STATE(226)] = 484, [SMALL_STATE(227)] = 523, - [SMALL_STATE(228)] = 560, - [SMALL_STATE(229)] = 597, - [SMALL_STATE(230)] = 634, - [SMALL_STATE(231)] = 673, - [SMALL_STATE(232)] = 710, - [SMALL_STATE(233)] = 747, - [SMALL_STATE(234)] = 784, - [SMALL_STATE(235)] = 821, - [SMALL_STATE(236)] = 858, - [SMALL_STATE(237)] = 895, - [SMALL_STATE(238)] = 932, - [SMALL_STATE(239)] = 969, - [SMALL_STATE(240)] = 1006, - [SMALL_STATE(241)] = 1043, - [SMALL_STATE(242)] = 1080, - [SMALL_STATE(243)] = 1117, - [SMALL_STATE(244)] = 1154, - [SMALL_STATE(245)] = 1191, - [SMALL_STATE(246)] = 1228, - [SMALL_STATE(247)] = 1265, - [SMALL_STATE(248)] = 1302, - [SMALL_STATE(249)] = 1339, - [SMALL_STATE(250)] = 1376, - [SMALL_STATE(251)] = 1413, - [SMALL_STATE(252)] = 1450, + [SMALL_STATE(228)] = 562, + [SMALL_STATE(229)] = 601, + [SMALL_STATE(230)] = 638, + [SMALL_STATE(231)] = 675, + [SMALL_STATE(232)] = 712, + [SMALL_STATE(233)] = 749, + [SMALL_STATE(234)] = 786, + [SMALL_STATE(235)] = 823, + [SMALL_STATE(236)] = 860, + [SMALL_STATE(237)] = 897, + [SMALL_STATE(238)] = 934, + [SMALL_STATE(239)] = 971, + [SMALL_STATE(240)] = 1008, + [SMALL_STATE(241)] = 1045, + [SMALL_STATE(242)] = 1082, + [SMALL_STATE(243)] = 1119, + [SMALL_STATE(244)] = 1156, + [SMALL_STATE(245)] = 1193, + [SMALL_STATE(246)] = 1230, + [SMALL_STATE(247)] = 1267, + [SMALL_STATE(248)] = 1304, + [SMALL_STATE(249)] = 1341, + [SMALL_STATE(250)] = 1378, + [SMALL_STATE(251)] = 1415, + [SMALL_STATE(252)] = 1452, [SMALL_STATE(253)] = 1489, [SMALL_STATE(254)] = 1526, [SMALL_STATE(255)] = 1563, @@ -24386,21 +23838,21 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(307)] = 3647, [SMALL_STATE(308)] = 3723, [SMALL_STATE(309)] = 3785, - [SMALL_STATE(310)] = 3847, - [SMALL_STATE(311)] = 3881, + [SMALL_STATE(310)] = 3819, + [SMALL_STATE(311)] = 3853, [SMALL_STATE(312)] = 3915, - [SMALL_STATE(313)] = 3977, + [SMALL_STATE(313)] = 3949, [SMALL_STATE(314)] = 4011, [SMALL_STATE(315)] = 4045, - [SMALL_STATE(316)] = 4107, - [SMALL_STATE(317)] = 4169, + [SMALL_STATE(316)] = 4079, + [SMALL_STATE(317)] = 4141, [SMALL_STATE(318)] = 4203, [SMALL_STATE(319)] = 4264, [SMALL_STATE(320)] = 4325, [SMALL_STATE(321)] = 4386, [SMALL_STATE(322)] = 4447, [SMALL_STATE(323)] = 4508, - [SMALL_STATE(324)] = 4536, + [SMALL_STATE(324)] = 4546, [SMALL_STATE(325)] = 4574, [SMALL_STATE(326)] = 4599, [SMALL_STATE(327)] = 4624, @@ -24413,79 +23865,79 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(334)] = 4799, [SMALL_STATE(335)] = 4824, [SMALL_STATE(336)] = 4849, - [SMALL_STATE(337)] = 4876, - [SMALL_STATE(338)] = 4901, - [SMALL_STATE(339)] = 4926, - [SMALL_STATE(340)] = 4951, - [SMALL_STATE(341)] = 5002, - [SMALL_STATE(342)] = 5027, - [SMALL_STATE(343)] = 5052, - [SMALL_STATE(344)] = 5077, - [SMALL_STATE(345)] = 5102, - [SMALL_STATE(346)] = 5127, - [SMALL_STATE(347)] = 5152, - [SMALL_STATE(348)] = 5177, - [SMALL_STATE(349)] = 5202, - [SMALL_STATE(350)] = 5227, - [SMALL_STATE(351)] = 5252, - [SMALL_STATE(352)] = 5277, - [SMALL_STATE(353)] = 5302, - [SMALL_STATE(354)] = 5327, - [SMALL_STATE(355)] = 5378, - [SMALL_STATE(356)] = 5403, - [SMALL_STATE(357)] = 5428, - [SMALL_STATE(358)] = 5453, - [SMALL_STATE(359)] = 5478, - [SMALL_STATE(360)] = 5503, - [SMALL_STATE(361)] = 5558, - [SMALL_STATE(362)] = 5583, - [SMALL_STATE(363)] = 5608, - [SMALL_STATE(364)] = 5633, - [SMALL_STATE(365)] = 5658, - [SMALL_STATE(366)] = 5683, - [SMALL_STATE(367)] = 5708, - [SMALL_STATE(368)] = 5733, - [SMALL_STATE(369)] = 5758, - [SMALL_STATE(370)] = 5783, - [SMALL_STATE(371)] = 5808, - [SMALL_STATE(372)] = 5833, - [SMALL_STATE(373)] = 5858, - [SMALL_STATE(374)] = 5885, - [SMALL_STATE(375)] = 5910, - [SMALL_STATE(376)] = 5965, - [SMALL_STATE(377)] = 5990, - [SMALL_STATE(378)] = 6015, - [SMALL_STATE(379)] = 6040, - [SMALL_STATE(380)] = 6065, - [SMALL_STATE(381)] = 6090, - [SMALL_STATE(382)] = 6115, - [SMALL_STATE(383)] = 6140, - [SMALL_STATE(384)] = 6191, - [SMALL_STATE(385)] = 6216, - [SMALL_STATE(386)] = 6241, - [SMALL_STATE(387)] = 6266, - [SMALL_STATE(388)] = 6291, + [SMALL_STATE(337)] = 4874, + [SMALL_STATE(338)] = 4899, + [SMALL_STATE(339)] = 4924, + [SMALL_STATE(340)] = 4949, + [SMALL_STATE(341)] = 4974, + [SMALL_STATE(342)] = 4999, + [SMALL_STATE(343)] = 5024, + [SMALL_STATE(344)] = 5049, + [SMALL_STATE(345)] = 5074, + [SMALL_STATE(346)] = 5099, + [SMALL_STATE(347)] = 5124, + [SMALL_STATE(348)] = 5149, + [SMALL_STATE(349)] = 5174, + [SMALL_STATE(350)] = 5199, + [SMALL_STATE(351)] = 5224, + [SMALL_STATE(352)] = 5249, + [SMALL_STATE(353)] = 5274, + [SMALL_STATE(354)] = 5301, + [SMALL_STATE(355)] = 5326, + [SMALL_STATE(356)] = 5351, + [SMALL_STATE(357)] = 5376, + [SMALL_STATE(358)] = 5431, + [SMALL_STATE(359)] = 5456, + [SMALL_STATE(360)] = 5507, + [SMALL_STATE(361)] = 5532, + [SMALL_STATE(362)] = 5587, + [SMALL_STATE(363)] = 5612, + [SMALL_STATE(364)] = 5667, + [SMALL_STATE(365)] = 5692, + [SMALL_STATE(366)] = 5717, + [SMALL_STATE(367)] = 5742, + [SMALL_STATE(368)] = 5767, + [SMALL_STATE(369)] = 5792, + [SMALL_STATE(370)] = 5817, + [SMALL_STATE(371)] = 5842, + [SMALL_STATE(372)] = 5867, + [SMALL_STATE(373)] = 5918, + [SMALL_STATE(374)] = 5943, + [SMALL_STATE(375)] = 5968, + [SMALL_STATE(376)] = 5993, + [SMALL_STATE(377)] = 6018, + [SMALL_STATE(378)] = 6043, + [SMALL_STATE(379)] = 6068, + [SMALL_STATE(380)] = 6093, + [SMALL_STATE(381)] = 6118, + [SMALL_STATE(382)] = 6143, + [SMALL_STATE(383)] = 6168, + [SMALL_STATE(384)] = 6193, + [SMALL_STATE(385)] = 6218, + [SMALL_STATE(386)] = 6243, + [SMALL_STATE(387)] = 6268, + [SMALL_STATE(388)] = 6293, [SMALL_STATE(389)] = 6318, [SMALL_STATE(390)] = 6343, - [SMALL_STATE(391)] = 6394, - [SMALL_STATE(392)] = 6419, - [SMALL_STATE(393)] = 6444, - [SMALL_STATE(394)] = 6469, - [SMALL_STATE(395)] = 6524, - [SMALL_STATE(396)] = 6549, - [SMALL_STATE(397)] = 6574, - [SMALL_STATE(398)] = 6599, - [SMALL_STATE(399)] = 6624, - [SMALL_STATE(400)] = 6649, - [SMALL_STATE(401)] = 6674, - [SMALL_STATE(402)] = 6699, - [SMALL_STATE(403)] = 6724, - [SMALL_STATE(404)] = 6749, - [SMALL_STATE(405)] = 6774, - [SMALL_STATE(406)] = 6799, - [SMALL_STATE(407)] = 6824, - [SMALL_STATE(408)] = 6849, - [SMALL_STATE(409)] = 6874, + [SMALL_STATE(391)] = 6368, + [SMALL_STATE(392)] = 6393, + [SMALL_STATE(393)] = 6418, + [SMALL_STATE(394)] = 6443, + [SMALL_STATE(395)] = 6468, + [SMALL_STATE(396)] = 6493, + [SMALL_STATE(397)] = 6518, + [SMALL_STATE(398)] = 6543, + [SMALL_STATE(399)] = 6568, + [SMALL_STATE(400)] = 6595, + [SMALL_STATE(401)] = 6646, + [SMALL_STATE(402)] = 6671, + [SMALL_STATE(403)] = 6696, + [SMALL_STATE(404)] = 6721, + [SMALL_STATE(405)] = 6746, + [SMALL_STATE(406)] = 6771, + [SMALL_STATE(407)] = 6796, + [SMALL_STATE(408)] = 6847, + [SMALL_STATE(409)] = 6872, [SMALL_STATE(410)] = 6899, [SMALL_STATE(411)] = 6924, [SMALL_STATE(412)] = 6949, @@ -24499,7 +23951,7 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(420)] = 7149, [SMALL_STATE(421)] = 7174, [SMALL_STATE(422)] = 7199, - [SMALL_STATE(423)] = 7254, + [SMALL_STATE(423)] = 7224, [SMALL_STATE(424)] = 7279, [SMALL_STATE(425)] = 7301, [SMALL_STATE(426)] = 7341, @@ -24520,23 +23972,23 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(441)] = 7840, [SMALL_STATE(442)] = 7874, [SMALL_STATE(443)] = 7893, - [SMALL_STATE(444)] = 7910, - [SMALL_STATE(445)] = 7935, - [SMALL_STATE(446)] = 7954, - [SMALL_STATE(447)] = 7973, - [SMALL_STATE(448)] = 7992, + [SMALL_STATE(444)] = 7912, + [SMALL_STATE(445)] = 7931, + [SMALL_STATE(446)] = 7950, + [SMALL_STATE(447)] = 7967, + [SMALL_STATE(448)] = 7986, [SMALL_STATE(449)] = 8011, - [SMALL_STATE(450)] = 8034, - [SMALL_STATE(451)] = 8053, - [SMALL_STATE(452)] = 8072, + [SMALL_STATE(450)] = 8030, + [SMALL_STATE(451)] = 8055, + [SMALL_STATE(452)] = 8074, [SMALL_STATE(453)] = 8097, [SMALL_STATE(454)] = 8116, [SMALL_STATE(455)] = 8135, - [SMALL_STATE(456)] = 8150, - [SMALL_STATE(457)] = 8169, - [SMALL_STATE(458)] = 8188, - [SMALL_STATE(459)] = 8207, - [SMALL_STATE(460)] = 8226, + [SMALL_STATE(456)] = 8154, + [SMALL_STATE(457)] = 8173, + [SMALL_STATE(458)] = 8192, + [SMALL_STATE(459)] = 8211, + [SMALL_STATE(460)] = 8230, [SMALL_STATE(461)] = 8245, [SMALL_STATE(462)] = 8264, [SMALL_STATE(463)] = 8283, @@ -24577,750 +24029,754 @@ static const uint32_t ts_small_parse_table_map[] = { static const TSParseActionEntry ts_parse_actions[] = { [0] = {.entry = {.count = 0, .reusable = false}}, [1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(), - [3] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source, 0), - [5] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), - [7] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), - [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(484), - [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), - [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(19), - [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(217), - [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), - [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), - [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(315), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(478), - [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), - [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), - [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [45] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(28), - [53] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 21), SHIFT_REPEAT(2), - [56] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 21), SHIFT_REPEAT(106), - [59] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 21), SHIFT_REPEAT(302), - [62] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 21), SHIFT_REPEAT(280), - [65] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 21), SHIFT_REPEAT(484), - [68] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 21), SHIFT_REPEAT(484), - [71] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 21), SHIFT_REPEAT(216), - [74] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 21), SHIFT_REPEAT(302), - [77] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 21), SHIFT_REPEAT(217), - [80] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 21), SHIFT_REPEAT(164), - [83] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 21), SHIFT_REPEAT(162), - [86] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 21), SHIFT_REPEAT(9), - [89] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 21), - [91] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 21), SHIFT_REPEAT(10), - [94] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 21), SHIFT_REPEAT(11), - [97] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 21), SHIFT_REPEAT(315), - [100] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 21), SHIFT_REPEAT(478), - [103] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 21), SHIFT_REPEAT(477), - [106] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 21), SHIFT_REPEAT(110), - [109] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 21), SHIFT_REPEAT(118), - [112] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 21), SHIFT_REPEAT(340), - [115] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 21), SHIFT_REPEAT(24), - [118] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 21), SHIFT_REPEAT(25), - [121] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 21), SHIFT_REPEAT(26), - [124] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 21), SHIFT_REPEAT(27), - [127] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 21), SHIFT_REPEAT(28), - [130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), + [3] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source, 0, 0, 0), + [5] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [7] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(487), + [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), + [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6), + [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(227), + [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), + [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), + [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(311), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(475), + [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), + [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [45] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), + [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(39), + [53] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, 0, 21), SHIFT_REPEAT(2), + [56] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, 0, 21), SHIFT_REPEAT(128), + [59] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, 0, 21), SHIFT_REPEAT(302), + [62] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, 0, 21), SHIFT_REPEAT(229), + [65] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, 0, 21), SHIFT_REPEAT(487), + [68] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, 0, 21), SHIFT_REPEAT(487), + [71] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, 0, 21), SHIFT_REPEAT(221), + [74] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, 0, 21), SHIFT_REPEAT(302), + [77] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, 0, 21), SHIFT_REPEAT(227), + [80] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, 0, 21), SHIFT_REPEAT(90), + [83] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, 0, 21), SHIFT_REPEAT(89), + [86] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, 0, 21), SHIFT_REPEAT(3), + [89] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, 0, 21), + [91] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, 0, 21), SHIFT_REPEAT(5), + [94] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, 0, 21), SHIFT_REPEAT(4), + [97] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, 0, 21), SHIFT_REPEAT(311), + [100] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, 0, 21), SHIFT_REPEAT(475), + [103] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, 0, 21), SHIFT_REPEAT(480), + [106] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, 0, 21), SHIFT_REPEAT(102), + [109] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, 0, 21), SHIFT_REPEAT(117), + [112] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, 0, 21), SHIFT_REPEAT(372), + [115] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, 0, 21), SHIFT_REPEAT(192), + [118] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, 0, 21), SHIFT_REPEAT(22), + [121] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, 0, 21), SHIFT_REPEAT(31), + [124] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, 0, 21), SHIFT_REPEAT(38), + [127] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, 0, 21), SHIFT_REPEAT(39), + [130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), [132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), [134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(302), - [136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), - [138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), - [140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), - [142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), - [144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), - [146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), - [148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), - [150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), - [152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), - [154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), - [156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), - [158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), - [162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), - [166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), - [168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), - [174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), - [176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), - [180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), - [184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source, 1), - [186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(20), - [190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2), - [192] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2), SHIFT_REPEAT(20), - [195] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2), SHIFT_REPEAT(106), - [198] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2), SHIFT_REPEAT(280), - [201] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_repeat1, 2), SHIFT_REPEAT(484), - [204] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2), SHIFT_REPEAT(484), - [207] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2), SHIFT_REPEAT(216), - [210] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_repeat1, 2), SHIFT_REPEAT(20), - [213] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_repeat1, 2), SHIFT_REPEAT(217), - [216] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2), SHIFT_REPEAT(164), - [219] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2), SHIFT_REPEAT(162), - [222] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2), SHIFT_REPEAT(9), - [225] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2), SHIFT_REPEAT(10), - [228] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2), SHIFT_REPEAT(11), - [231] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_repeat1, 2), SHIFT_REPEAT(315), - [234] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_repeat1, 2), SHIFT_REPEAT(478), - [237] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2), SHIFT_REPEAT(477), - [240] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2), SHIFT_REPEAT(110), - [243] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2), SHIFT_REPEAT(118), - [246] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2), SHIFT_REPEAT(340), - [249] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2), SHIFT_REPEAT(24), - [252] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2), SHIFT_REPEAT(25), - [255] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2), SHIFT_REPEAT(26), - [258] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2), SHIFT_REPEAT(27), - [261] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_repeat1, 2), SHIFT_REPEAT(28), - [264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), - [266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), - [268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), - [270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(486), - [272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), - [274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), - [276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(420), - [278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(388), + [136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), + [140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), + [144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source, 1, 0, 0), + [148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11), + [152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), + [154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), + [162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2, 0, 0), + [166] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2, 0, 0), SHIFT_REPEAT(11), + [169] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2, 0, 0), SHIFT_REPEAT(128), + [172] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2, 0, 0), SHIFT_REPEAT(229), + [175] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_repeat1, 2, 0, 0), SHIFT_REPEAT(487), + [178] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2, 0, 0), SHIFT_REPEAT(487), + [181] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2, 0, 0), SHIFT_REPEAT(221), + [184] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_repeat1, 2, 0, 0), SHIFT_REPEAT(11), + [187] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_repeat1, 2, 0, 0), SHIFT_REPEAT(227), + [190] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2, 0, 0), SHIFT_REPEAT(90), + [193] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2, 0, 0), SHIFT_REPEAT(89), + [196] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2, 0, 0), SHIFT_REPEAT(3), + [199] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2, 0, 0), SHIFT_REPEAT(5), + [202] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2, 0, 0), SHIFT_REPEAT(4), + [205] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_repeat1, 2, 0, 0), SHIFT_REPEAT(311), + [208] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_repeat1, 2, 0, 0), SHIFT_REPEAT(475), + [211] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2, 0, 0), SHIFT_REPEAT(480), + [214] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2, 0, 0), SHIFT_REPEAT(102), + [217] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2, 0, 0), SHIFT_REPEAT(117), + [220] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2, 0, 0), SHIFT_REPEAT(372), + [223] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2, 0, 0), SHIFT_REPEAT(192), + [226] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2, 0, 0), SHIFT_REPEAT(22), + [229] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2, 0, 0), SHIFT_REPEAT(31), + [232] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2, 0, 0), SHIFT_REPEAT(38), + [235] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_repeat1, 2, 0, 0), SHIFT_REPEAT(39), + [238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), + [242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), + [246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), + [260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(484), + [272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), + [274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), + [276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(352), + [278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(399), [280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), - [282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), - [286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(312), - [288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(480), - [290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), - [292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), - [296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), - [298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), - [300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), - [302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), - [306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(109), - [308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(267), - [314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), - [318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(347), - [320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), - [324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(244), - [326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), - [328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(245), - [332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), - [334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(246), - [338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), - [340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(247), - [344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), - [346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(248), - [350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), - [352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(487), - [354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), - [356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(334), - [358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(316), - [360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), - [362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), - [364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), - [366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), - [372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(55), - [374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), - [376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(417), - [378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), - [380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(389), - [382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(357), - [388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(362), - [394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), - [396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(364), - [398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), - [402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(378), - [404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), - [406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(384), - [410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), - [412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), - [414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(410), - [416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), - [418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), - [420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(391), - [422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(257), - [426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(488), - [428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), - [430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(309), - [432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), - [440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(195), - [446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(393), - [452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), - [454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), - [456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(405), - [458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), - [460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(369), - [462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), - [464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(399), - [466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), - [468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(412), - [470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), - [472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(414), - [474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), - [476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(415), - [478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), - [480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(416), - [482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), - [484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(419), - [486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), - [490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(409), - [492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), - [494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(386), - [496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), - [500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(345), - [502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), - [504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), - [506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(371), - [508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), - [510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(370), - [514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), - [516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(367), - [520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), - [524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(366), - [526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), - [528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(355), - [532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), - [534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(270), - [540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(271), - [544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), - [546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), - [548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(363), - [550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), - [552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(361), - [556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), - [560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(333), - [562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(332), - [566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), - [568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(275), - [570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), - [572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), - [574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(331), - [576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), - [578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(276), - [580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), - [582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(329), - [584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), - [586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(214), - [588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(327), - [592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), - [594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(277), - [596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), - [598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(411), - [600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), - [602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(278), - [604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), - [606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(385), - [608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), - [610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(335), - [612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(350), - [616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), - [618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), - [624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(283), - [626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), - [630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(287), - [632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), - [636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(289), - [638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), - [642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(290), - [644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), - [648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(291), - [650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(263), - [656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), - [658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), - [662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), - [664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), - [666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), - [668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(229), - [676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), - [682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), - [684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(239), - [686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(297), - [696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), - [700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(298), - [702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), - [706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(240), - [710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), - [714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(485), - [718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), - [720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(308), - [722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), - [728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(168), - [736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), - [738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(288), - [740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), - [742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), - [744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(292), - [746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(225), - [750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(265), - [754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), - [758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(222), - [760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), - [762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(300), - [764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(274), - [768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), - [770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(250), - [772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(249), - [776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), - [778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(243), - [780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), - [782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(224), - [784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), - [786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), - [788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), - [792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), - [794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), - [796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), - [798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), - [800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), - [806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), - [826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), - [828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), - [832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), - [836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), - [838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), - [856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), - [860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_kwd_lit, 2, .production_id = 8), - [862] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_kwd_lit, 2, .production_id = 8), - [864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(259), - [866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_syn_quoting_lit, 3, .production_id = 17), - [868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_syn_quoting_lit, 3, .production_id = 17), - [870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__bare_set_lit, 3, .production_id = 22), - [872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__bare_set_lit, 3, .production_id = 22), - [874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_str_lit, 1), - [876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_str_lit, 1), - [878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sym_lit, 1, .production_id = 1), - [880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), - [882] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sym_lit, 1, .production_id = 1), - [884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_lit, 1, .production_id = 5), - [886] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_lit, 1, .production_id = 5), - [888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map_lit, 1, .production_id = 5), - [890] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map_lit, 1, .production_id = 5), - [892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_read_cond_lit, 4, .production_id = 36), - [894] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_read_cond_lit, 4, .production_id = 36), - [896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ns_map_lit, 5, .production_id = 39), - [898] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ns_map_lit, 5, .production_id = 39), - [900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tagged_or_ctor_lit, 4, .production_id = 35), - [902] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tagged_or_ctor_lit, 4, .production_id = 35), - [904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_splicing_read_cond_lit, 4, .production_id = 36), - [906] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_splicing_read_cond_lit, 4, .production_id = 36), - [908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_quoting_lit, 4, .production_id = 37), - [910] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_var_quoting_lit, 4, .production_id = 37), - [912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tagged_or_ctor_lit, 5, .production_id = 40), - [914] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tagged_or_ctor_lit, 5, .production_id = 40), - [916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_vec_lit, 1, .production_id = 5), - [918] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_vec_lit, 1, .production_id = 5), - [920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_set_lit, 1, .production_id = 6), - [922] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_set_lit, 1, .production_id = 6), - [924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_evaling_lit, 4, .production_id = 37), - [926] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_evaling_lit, 4, .production_id = 37), - [928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dis_expr, 2, .production_id = 7), - [930] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dis_expr, 2, .production_id = 7), - [932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), - [934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__bare_list_lit, 2, .production_id = 9), - [936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__bare_list_lit, 2, .production_id = 9), - [938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__bare_map_lit, 2, .production_id = 9), - [940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__bare_map_lit, 2, .production_id = 9), - [942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__bare_vec_lit, 2, .production_id = 9), - [944] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__bare_vec_lit, 2, .production_id = 9), - [946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex_lit, 2, .production_id = 11), - [948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regex_lit, 2, .production_id = 11), - [950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anon_fn_lit, 2, .production_id = 12), - [952] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anon_fn_lit, 2, .production_id = 12), - [954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_read_cond_lit, 2, .production_id = 12), - [956] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_read_cond_lit, 2, .production_id = 12), - [958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_splicing_read_cond_lit, 2, .production_id = 12), - [960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_splicing_read_cond_lit, 2, .production_id = 12), - [962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_quoting_lit, 2, .production_id = 7), - [964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_var_quoting_lit, 2, .production_id = 7), - [966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sym_val_lit, 2, .production_id = 7), - [968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sym_val_lit, 2, .production_id = 7), - [970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_evaling_lit, 2, .production_id = 7), - [972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_evaling_lit, 2, .production_id = 7), - [974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derefing_lit, 4, .production_id = 37), - [976] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_derefing_lit, 4, .production_id = 37), - [978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derefing_lit, 2, .production_id = 7), - [980] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_derefing_lit, 2, .production_id = 7), - [982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoting_lit, 2, .production_id = 7), - [984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoting_lit, 2, .production_id = 7), - [986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_syn_quoting_lit, 2, .production_id = 7), - [988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_syn_quoting_lit, 2, .production_id = 7), - [990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquote_splicing_lit, 2, .production_id = 7), - [992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquote_splicing_lit, 2, .production_id = 7), - [994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquoting_lit, 2, .production_id = 7), - [996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquoting_lit, 2, .production_id = 7), - [998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoting_lit, 4, .production_id = 37), - [1000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoting_lit, 4, .production_id = 37), - [1002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_syn_quoting_lit, 4, .production_id = 37), - [1004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_syn_quoting_lit, 4, .production_id = 37), - [1006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sym_lit, 2, .production_id = 13), - [1008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sym_lit, 2, .production_id = 13), - [1010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), - [1012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_lit, 2, .production_id = 14), - [1014] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_lit, 2, .production_id = 14), - [1016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map_lit, 2, .production_id = 14), - [1018] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map_lit, 2, .production_id = 14), - [1020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_vec_lit, 2, .production_id = 14), - [1022] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_vec_lit, 2, .production_id = 14), - [1024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_set_lit, 2, .production_id = 15), - [1026] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_set_lit, 2, .production_id = 15), - [1028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dis_expr, 3, .production_id = 17), - [1030] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dis_expr, 3, .production_id = 17), - [1032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ns_map_lit, 4, .production_id = 34), - [1034] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ns_map_lit, 4, .production_id = 34), - [1036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_kwd_lit, 3, .production_id = 18), - [1038] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_kwd_lit, 3, .production_id = 18), - [1040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sym_lit, 3, .production_id = 19), - [1042] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sym_lit, 3, .production_id = 19), - [1044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__bare_list_lit, 3, .production_id = 20), - [1046] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__bare_list_lit, 3, .production_id = 20), - [1048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__bare_map_lit, 3, .production_id = 20), - [1050] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__bare_map_lit, 3, .production_id = 20), - [1052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquoting_lit, 3, .production_id = 27), - [1054] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquoting_lit, 3, .production_id = 27), - [1056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__bare_vec_lit, 3, .production_id = 20), - [1058] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__bare_vec_lit, 3, .production_id = 20), - [1060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tagged_or_ctor_lit, 5, .production_id = 38), - [1062] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tagged_or_ctor_lit, 5, .production_id = 38), - [1064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ns_map_lit, 3, .production_id = 23), - [1066] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ns_map_lit, 3, .production_id = 23), - [1068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tagged_or_ctor_lit, 3, .production_id = 24), - [1070] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tagged_or_ctor_lit, 3, .production_id = 24), - [1072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_read_cond_lit, 3, .production_id = 25), - [1074] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_read_cond_lit, 3, .production_id = 25), - [1076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_splicing_read_cond_lit, 3, .production_id = 25), - [1078] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_splicing_read_cond_lit, 3, .production_id = 25), - [1080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_quoting_lit, 3, .production_id = 17), - [1082] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_var_quoting_lit, 3, .production_id = 17), - [1084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sym_val_lit, 3, .production_id = 17), - [1086] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sym_val_lit, 3, .production_id = 17), - [1088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_evaling_lit, 3, .production_id = 17), - [1090] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_evaling_lit, 3, .production_id = 17), - [1092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquote_splicing_lit, 4, .production_id = 37), - [1094] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquote_splicing_lit, 4, .production_id = 37), - [1096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derefing_lit, 3, .production_id = 17), - [1098] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_derefing_lit, 3, .production_id = 17), - [1100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoting_lit, 3, .production_id = 17), - [1102] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoting_lit, 3, .production_id = 17), - [1104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquote_splicing_lit, 3, .production_id = 17), - [1106] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquote_splicing_lit, 3, .production_id = 17), - [1108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquoting_lit, 3, .production_id = 17), - [1110] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquoting_lit, 3, .production_id = 17), - [1112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anon_fn_lit, 3, .production_id = 26), - [1114] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anon_fn_lit, 3, .production_id = 26), - [1116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_read_cond_lit, 3, .production_id = 26), - [1118] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_read_cond_lit, 3, .production_id = 26), - [1120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_splicing_read_cond_lit, 3, .production_id = 26), - [1122] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_splicing_read_cond_lit, 3, .production_id = 26), - [1124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_quoting_lit, 3, .production_id = 27), - [1126] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_var_quoting_lit, 3, .production_id = 27), - [1128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_evaling_lit, 3, .production_id = 27), - [1130] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_evaling_lit, 3, .production_id = 27), - [1132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derefing_lit, 3, .production_id = 27), - [1134] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_derefing_lit, 3, .production_id = 27), - [1136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tagged_or_ctor_lit, 6, .production_id = 42), - [1138] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tagged_or_ctor_lit, 6, .production_id = 42), - [1140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoting_lit, 3, .production_id = 27), - [1142] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoting_lit, 3, .production_id = 27), - [1144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_syn_quoting_lit, 3, .production_id = 27), - [1146] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_syn_quoting_lit, 3, .production_id = 27), - [1148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquote_splicing_lit, 3, .production_id = 27), - [1150] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquote_splicing_lit, 3, .production_id = 27), - [1152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tagged_or_ctor_lit, 5, .production_id = 41), - [1154] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tagged_or_ctor_lit, 5, .production_id = 41), - [1156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_kwd_lit, 4, .production_id = 28), - [1158] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_kwd_lit, 4, .production_id = 28), - [1160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__bare_set_lit, 4, .production_id = 29), - [1162] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__bare_set_lit, 4, .production_id = 29), - [1164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ns_map_lit, 4, .production_id = 30), - [1166] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ns_map_lit, 4, .production_id = 30), - [1168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tagged_or_ctor_lit, 4, .production_id = 31), - [1170] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tagged_or_ctor_lit, 4, .production_id = 31), - [1172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tagged_or_ctor_lit, 4, .production_id = 32), - [1174] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tagged_or_ctor_lit, 4, .production_id = 32), - [1176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sym_lit, 4, .production_id = 33), - [1178] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sym_lit, 4, .production_id = 33), - [1180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquoting_lit, 4, .production_id = 37), - [1182] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquoting_lit, 4, .production_id = 37), - [1184] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(301), - [1187] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(106), - [1190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), - [1192] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_dis_expr_repeat1, 2), - [1194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 1, .production_id = 10), - [1196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__bare_list_lit_repeat1, 1, .production_id = 10), - [1198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [1200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [1202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(322), - [1204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(474), - [1206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), - [1208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), - [1210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), - [1212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [1214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [1216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), - [1218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [1220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(141), - [1222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), - [1224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), - [1226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(321), - [1228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(468), - [1230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), - [1232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), - [1234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), - [1236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [1238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), - [1240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [1242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [1244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(93), - [1246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(318), - [1248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), - [1250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [1252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), - [1254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [1256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [1258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(92), - [1260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(319), - [1262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), - [1264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [1266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [1268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [1270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [1272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(105), - [1274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(320), - [1276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), - [1278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), - [1280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [1282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [1284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), - [1286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(35), - [1288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), - [1290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(317), + [288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(476), + [290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), + [292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(182), + [308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(216), + [314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(242), + [320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(246), + [326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(247), + [330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(249), + [334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(250), + [338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(251), + [342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(252), + [346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(253), + [350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), + [354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(218), + [356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(300), + [362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(261), + [368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(262), + [374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(264), + [380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(265), + [386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(266), + [392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(220), + [398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(222), + [404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(271), + [408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), + [410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(272), + [414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(275), + [420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(279), + [424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(283), + [428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(284), + [432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(285), + [436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(286), + [440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(287), + [444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(288), + [448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(290), + [452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(292), + [458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(294), + [462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), + [464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), + [466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(485), + [468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), + [470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(418), + [472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(313), + [474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(59), + [488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), + [490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), + [492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(419), + [494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(337), + [500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), + [502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(364), + [506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), + [508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), + [510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(395), + [512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), + [514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), + [516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(408), + [518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), + [522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(336), + [524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), + [526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(488), + [528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), + [530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(377), + [532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(308), + [534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), + [538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(142), + [548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(335), + [554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(340), + [558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), + [560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(341), + [562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(343), + [566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(344), + [570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(345), + [574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), + [576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(346), + [578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), + [580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(347), + [582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), + [584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(358), + [590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(360), + [596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(362), + [602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), + [606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(365), + [608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), + [612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(366), + [614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(370), + [618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), + [620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(371), + [624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(376), + [630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(381), + [634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), + [636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(385), + [638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(386), + [642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(387), + [646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), + [648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(388), + [650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(389), + [654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), + [656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(390), + [658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), + [660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(392), + [662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(394), + [668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(396), + [672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), + [674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), + [676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(406), + [678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(332), + [684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), + [688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(401), + [690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(234), + [694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(486), + [700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), + [702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(297), + [704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(316), + [706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(98), + [720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(298), + [726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(215), + [732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(329), + [744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(330), + [748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), + [756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(224), + [776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), + [784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), + [794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_kwd_lit, 2, 0, 8), + [862] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_kwd_lit, 2, 0, 8), + [864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(235), + [866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map_lit, 1, 0, 5), + [868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map_lit, 1, 0, 5), + [870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derefing_lit, 2, 0, 7), + [872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_derefing_lit, 2, 0, 7), + [874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoting_lit, 2, 0, 7), + [876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoting_lit, 2, 0, 7), + [878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_vec_lit, 1, 0, 5), + [880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_vec_lit, 1, 0, 5), + [882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_syn_quoting_lit, 2, 0, 7), + [884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_syn_quoting_lit, 2, 0, 7), + [886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_set_lit, 1, 0, 6), + [888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_set_lit, 1, 0, 6), + [890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquote_splicing_lit, 2, 0, 7), + [892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquote_splicing_lit, 2, 0, 7), + [894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_str_lit, 1, 0, 0), + [896] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_str_lit, 1, 0, 0), + [898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquoting_lit, 2, 0, 7), + [900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquoting_lit, 2, 0, 7), + [902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_evaling_lit, 2, 0, 7), + [904] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_evaling_lit, 2, 0, 7), + [906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dis_expr, 2, 0, 7), + [908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dis_expr, 2, 0, 7), + [910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sym_lit, 2, 0, 13), + [912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sym_lit, 2, 0, 13), + [914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), + [916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sym_lit, 1, 0, 1), + [918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), + [920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sym_lit, 1, 0, 1), + [922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_lit, 2, 0, 14), + [926] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_lit, 2, 0, 14), + [928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map_lit, 2, 0, 14), + [930] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map_lit, 2, 0, 14), + [932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_vec_lit, 2, 0, 14), + [934] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_vec_lit, 2, 0, 14), + [936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_set_lit, 2, 0, 15), + [938] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_set_lit, 2, 0, 15), + [940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dis_expr, 3, 0, 17), + [942] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dis_expr, 3, 0, 17), + [944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_kwd_lit, 3, 0, 18), + [946] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_kwd_lit, 3, 0, 18), + [948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sym_lit, 3, 0, 19), + [950] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sym_lit, 3, 0, 19), + [952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__bare_list_lit, 3, 0, 20), + [954] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__bare_list_lit, 3, 0, 20), + [956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__bare_map_lit, 3, 0, 20), + [958] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__bare_map_lit, 3, 0, 20), + [960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__bare_vec_lit, 3, 0, 20), + [962] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__bare_vec_lit, 3, 0, 20), + [964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__bare_set_lit, 3, 0, 22), + [966] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__bare_set_lit, 3, 0, 22), + [968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ns_map_lit, 3, 0, 23), + [970] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ns_map_lit, 3, 0, 23), + [972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tagged_or_ctor_lit, 3, 0, 24), + [974] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tagged_or_ctor_lit, 3, 0, 24), + [976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__bare_list_lit, 2, 0, 9), + [978] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__bare_list_lit, 2, 0, 9), + [980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_read_cond_lit, 3, 0, 25), + [982] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_read_cond_lit, 3, 0, 25), + [984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_splicing_read_cond_lit, 3, 0, 25), + [986] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_splicing_read_cond_lit, 3, 0, 25), + [988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_quoting_lit, 3, 0, 17), + [990] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_var_quoting_lit, 3, 0, 17), + [992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sym_val_lit, 3, 0, 17), + [994] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sym_val_lit, 3, 0, 17), + [996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_evaling_lit, 3, 0, 17), + [998] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_evaling_lit, 3, 0, 17), + [1000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derefing_lit, 3, 0, 17), + [1002] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_derefing_lit, 3, 0, 17), + [1004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoting_lit, 3, 0, 17), + [1006] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoting_lit, 3, 0, 17), + [1008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_syn_quoting_lit, 3, 0, 17), + [1010] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_syn_quoting_lit, 3, 0, 17), + [1012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquote_splicing_lit, 3, 0, 17), + [1014] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquote_splicing_lit, 3, 0, 17), + [1016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquoting_lit, 3, 0, 17), + [1018] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquoting_lit, 3, 0, 17), + [1020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anon_fn_lit, 3, 0, 26), + [1022] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anon_fn_lit, 3, 0, 26), + [1024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_read_cond_lit, 3, 0, 26), + [1026] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_read_cond_lit, 3, 0, 26), + [1028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_splicing_read_cond_lit, 3, 0, 26), + [1030] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_splicing_read_cond_lit, 3, 0, 26), + [1032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__bare_map_lit, 2, 0, 9), + [1034] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__bare_map_lit, 2, 0, 9), + [1036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_evaling_lit, 3, 0, 27), + [1038] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_evaling_lit, 3, 0, 27), + [1040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derefing_lit, 3, 0, 27), + [1042] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_derefing_lit, 3, 0, 27), + [1044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoting_lit, 3, 0, 27), + [1046] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoting_lit, 3, 0, 27), + [1048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__bare_vec_lit, 2, 0, 9), + [1050] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__bare_vec_lit, 2, 0, 9), + [1052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_syn_quoting_lit, 3, 0, 27), + [1054] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_syn_quoting_lit, 3, 0, 27), + [1056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquote_splicing_lit, 3, 0, 27), + [1058] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquote_splicing_lit, 3, 0, 27), + [1060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquoting_lit, 3, 0, 27), + [1062] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquoting_lit, 3, 0, 27), + [1064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex_lit, 2, 0, 11), + [1066] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regex_lit, 2, 0, 11), + [1068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_kwd_lit, 4, 0, 28), + [1070] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_kwd_lit, 4, 0, 28), + [1072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__bare_set_lit, 4, 0, 29), + [1074] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__bare_set_lit, 4, 0, 29), + [1076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ns_map_lit, 4, 0, 30), + [1078] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ns_map_lit, 4, 0, 30), + [1080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tagged_or_ctor_lit, 4, 0, 31), + [1082] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tagged_or_ctor_lit, 4, 0, 31), + [1084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tagged_or_ctor_lit, 4, 0, 32), + [1086] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tagged_or_ctor_lit, 4, 0, 32), + [1088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sym_lit, 4, 0, 33), + [1090] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sym_lit, 4, 0, 33), + [1092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ns_map_lit, 4, 0, 34), + [1094] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ns_map_lit, 4, 0, 34), + [1096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tagged_or_ctor_lit, 4, 0, 35), + [1098] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tagged_or_ctor_lit, 4, 0, 35), + [1100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_read_cond_lit, 4, 0, 36), + [1102] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_read_cond_lit, 4, 0, 36), + [1104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_splicing_read_cond_lit, 4, 0, 36), + [1106] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_splicing_read_cond_lit, 4, 0, 36), + [1108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_quoting_lit, 4, 0, 37), + [1110] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_var_quoting_lit, 4, 0, 37), + [1112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_evaling_lit, 4, 0, 37), + [1114] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_evaling_lit, 4, 0, 37), + [1116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derefing_lit, 4, 0, 37), + [1118] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_derefing_lit, 4, 0, 37), + [1120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoting_lit, 4, 0, 37), + [1122] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoting_lit, 4, 0, 37), + [1124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_syn_quoting_lit, 4, 0, 37), + [1126] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_syn_quoting_lit, 4, 0, 37), + [1128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquote_splicing_lit, 4, 0, 37), + [1130] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquote_splicing_lit, 4, 0, 37), + [1132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquoting_lit, 4, 0, 37), + [1134] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquoting_lit, 4, 0, 37), + [1136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tagged_or_ctor_lit, 5, 0, 38), + [1138] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tagged_or_ctor_lit, 5, 0, 38), + [1140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ns_map_lit, 5, 0, 39), + [1142] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ns_map_lit, 5, 0, 39), + [1144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tagged_or_ctor_lit, 5, 0, 40), + [1146] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tagged_or_ctor_lit, 5, 0, 40), + [1148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tagged_or_ctor_lit, 5, 0, 41), + [1150] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tagged_or_ctor_lit, 5, 0, 41), + [1152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anon_fn_lit, 2, 0, 12), + [1154] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anon_fn_lit, 2, 0, 12), + [1156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tagged_or_ctor_lit, 6, 0, 42), + [1158] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tagged_or_ctor_lit, 6, 0, 42), + [1160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_read_cond_lit, 2, 0, 12), + [1162] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_read_cond_lit, 2, 0, 12), + [1164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_splicing_read_cond_lit, 2, 0, 12), + [1166] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_splicing_read_cond_lit, 2, 0, 12), + [1168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_quoting_lit, 2, 0, 7), + [1170] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_var_quoting_lit, 2, 0, 7), + [1172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sym_val_lit, 2, 0, 7), + [1174] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sym_val_lit, 2, 0, 7), + [1176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_lit, 1, 0, 5), + [1178] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_lit, 1, 0, 5), + [1180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_quoting_lit, 3, 0, 27), + [1182] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_var_quoting_lit, 3, 0, 27), + [1184] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2, 0, 0), SHIFT_REPEAT(301), + [1187] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2, 0, 0), SHIFT_REPEAT(128), + [1190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2, 0, 0), + [1192] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_dis_expr_repeat1, 2, 0, 0), + [1194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 1, 0, 10), + [1196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__bare_list_lit_repeat1, 1, 0, 10), + [1198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [1200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [1202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(319), + [1204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(467), + [1206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), + [1208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [1210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), + [1212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [1214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), + [1216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [1218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [1220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(116), + [1222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [1224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [1226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(318), + [1228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(473), + [1230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), + [1232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [1234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [1236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [1238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [1240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [1242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [1244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(157), + [1246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(320), + [1248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [1250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [1252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [1254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [1256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [1258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(37), + [1260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(321), + [1262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [1264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [1266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), + [1268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [1270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [1272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(74), + [1274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(322), + [1276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [1278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [1280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [1282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [1284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [1286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(197), + [1288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), + [1290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), [1292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), - [1294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), - [1296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [1298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [1300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), - [1302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), - [1304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), - [1306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), - [1308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), - [1310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), - [1312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [1314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__metadata_lit, 2, .production_id = 4), - [1316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__metadata_lit, 2, .production_id = 4), - [1318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__metadata_lit, 2, .production_id = 3), - [1320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__metadata_lit, 2, .production_id = 3), - [1322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), - [1324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [1326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__metadata_lit, 1, .production_id = 4), - [1328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__metadata_lit, 1, .production_id = 4), - [1330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), - [1332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__metadata_lit, 1, .production_id = 3), - [1334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__metadata_lit, 1, .production_id = 3), - [1336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), - [1338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), - [1340] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(317), - [1343] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(177), - [1346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), - [1348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), - [1350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), - [1352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), - [1354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), - [1356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(387), - [1358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_sym_lit_repeat1, 2, .production_id = 16), - [1360] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sym_lit_repeat1, 2, .production_id = 16), SHIFT_REPEAT(164), - [1363] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sym_lit_repeat1, 2, .production_id = 16), SHIFT_REPEAT(162), - [1366] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_sym_lit_repeat1, 2, .production_id = 16), - [1368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), - [1370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), - [1372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), - [1374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), - [1376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), - [1378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), - [1380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), - [1382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), - [1384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), - [1386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_lit, 2, .production_id = 7), - [1388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_meta_lit, 2, .production_id = 7), - [1390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_old_meta_lit, 2, .production_id = 7), - [1392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_old_meta_lit, 2, .production_id = 7), - [1394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), - [1396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [1398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), - [1400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_old_meta_lit, 3, .production_id = 17), - [1402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_old_meta_lit, 3, .production_id = 17), - [1404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [1406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_lit, 3, .production_id = 17), - [1408] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_meta_lit, 3, .production_id = 17), - [1410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [1412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_sym_lit_repeat1, 1, .production_id = 2), - [1414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_sym_lit_repeat1, 1, .production_id = 2), - [1416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), - [1418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), - [1420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), - [1422] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(439), - [1425] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(68), - [1428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), - [1430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), - [1432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), - [1434] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sym_lit_repeat1, 2, .production_id = 16), SHIFT_REPEAT(67), - [1437] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sym_lit_repeat1, 2, .production_id = 16), SHIFT_REPEAT(66), - [1440] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(446), - [1443] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(178), - [1446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), - [1448] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sym_lit_repeat1, 2, .production_id = 16), SHIFT_REPEAT(122), - [1451] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sym_lit_repeat1, 2, .production_id = 16), SHIFT_REPEAT(121), - [1454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), - [1456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), - [1458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), - [1460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), - [1462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [1294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), + [1296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [1298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [1300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [1302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [1304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [1306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [1308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__metadata_lit, 2, 0, 4), + [1310] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__metadata_lit, 2, 0, 4), + [1312] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2, 0, 0), SHIFT_REPEAT(310), + [1315] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2, 0, 0), SHIFT_REPEAT(211), + [1318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), + [1320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [1322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), + [1324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [1326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__metadata_lit, 1, 0, 3), + [1328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__metadata_lit, 1, 0, 3), + [1330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), + [1332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__metadata_lit, 2, 0, 3), + [1334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__metadata_lit, 2, 0, 3), + [1336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [1338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__metadata_lit, 1, 0, 4), + [1340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__metadata_lit, 1, 0, 4), + [1342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), + [1344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), + [1346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), + [1348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), + [1350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), + [1352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), + [1354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), + [1356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_sym_lit_repeat1, 2, 0, 16), + [1358] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sym_lit_repeat1, 2, 0, 16), SHIFT_REPEAT(90), + [1361] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sym_lit_repeat1, 2, 0, 16), SHIFT_REPEAT(89), + [1364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_sym_lit_repeat1, 2, 0, 16), + [1366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(325), + [1368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_lit, 3, 0, 17), + [1370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_meta_lit, 3, 0, 17), + [1372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_old_meta_lit, 3, 0, 17), + [1374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_old_meta_lit, 3, 0, 17), + [1376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_old_meta_lit, 2, 0, 7), + [1378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_old_meta_lit, 2, 0, 7), + [1380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), + [1382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), + [1384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [1386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), + [1388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [1390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [1392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), + [1394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), + [1396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [1398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [1400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), + [1402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), + [1404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_lit, 2, 0, 7), + [1406] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_meta_lit, 2, 0, 7), + [1408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), + [1410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), + [1412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_sym_lit_repeat1, 1, 0, 2), + [1414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_sym_lit_repeat1, 1, 0, 2), + [1416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), + [1418] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2, 0, 0), SHIFT_REPEAT(436), + [1421] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2, 0, 0), SHIFT_REPEAT(171), + [1424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), + [1426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), + [1428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), + [1430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), + [1432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [1434] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2, 0, 0), SHIFT_REPEAT(444), + [1437] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2, 0, 0), SHIFT_REPEAT(88), + [1440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [1442] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sym_lit_repeat1, 2, 0, 16), SHIFT_REPEAT(172), + [1445] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sym_lit_repeat1, 2, 0, 16), SHIFT_REPEAT(173), + [1448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), + [1450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [1452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [1454] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sym_lit_repeat1, 2, 0, 16), SHIFT_REPEAT(132), + [1457] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sym_lit_repeat1, 2, 0, 16), SHIFT_REPEAT(133), + [1460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), + [1462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), [1464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), - [1466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), - [1468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), - [1470] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(464), - [1473] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(123), - [1476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_auto_res_mark, 1), - [1478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_auto_res_mark, 1), + [1466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [1468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [1470] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2, 0, 0), SHIFT_REPEAT(464), + [1473] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2, 0, 0), SHIFT_REPEAT(131), + [1476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_auto_res_mark, 1, 0, 0), + [1478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_auto_res_mark, 1, 0, 0), [1480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), - [1482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(230), - [1484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), - [1486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), - [1488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), - [1490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), - [1492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), - [1494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), - [1496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), - [1498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), - [1500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), - [1502] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_read_cond_lit_repeat1, 2), SHIFT_REPEAT(483), - [1505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_read_cond_lit_repeat1, 2), - [1507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [1509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), - [1511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), - [1513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [1515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), - [1517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [1519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), - [1521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [1523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [1525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), - [1527] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [1529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [1531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [1482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(228), + [1484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), + [1486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), + [1488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), + [1490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), + [1492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), + [1494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), + [1496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), + [1498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), + [1500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), + [1502] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_read_cond_lit_repeat1, 2, 0, 0), SHIFT_REPEAT(483), + [1505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_read_cond_lit_repeat1, 2, 0, 0), + [1507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [1509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), + [1511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [1513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [1515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [1517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), + [1519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [1521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [1523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [1525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [1527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [1529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [1531] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), }; #ifdef __cplusplus extern "C" { #endif -#ifdef _WIN32 -#define extern __declspec(dllexport) +#ifdef TREE_SITTER_HIDE_SYMBOLS +#define TS_PUBLIC +#elif defined(_WIN32) +#define TS_PUBLIC __declspec(dllexport) +#else +#define TS_PUBLIC __attribute__((visibility("default"))) #endif -extern const TSLanguage *tree_sitter_clojure(void) { +TS_PUBLIC const TSLanguage *tree_sitter_clojure(void) { static const TSLanguage language = { - .version = LANGUAGE_VERSION, + .abi_version = LANGUAGE_VERSION, .symbol_count = SYMBOL_COUNT, .alias_count = ALIAS_COUNT, .token_count = TOKEN_COUNT, @@ -25328,6 +24784,7 @@ extern const TSLanguage *tree_sitter_clojure(void) { .state_count = STATE_COUNT, .large_state_count = LARGE_STATE_COUNT, .production_id_count = PRODUCTION_ID_COUNT, + .supertype_count = SUPERTYPE_COUNT, .field_count = FIELD_COUNT, .max_alias_sequence_length = MAX_ALIAS_SEQUENCE_LENGTH, .parse_table = &ts_parse_table[0][0], @@ -25342,9 +24799,16 @@ extern const TSLanguage *tree_sitter_clojure(void) { .public_symbol_map = ts_symbol_map, .alias_map = ts_non_terminal_alias_map, .alias_sequences = &ts_alias_sequences[0][0], - .lex_modes = ts_lex_modes, + .lex_modes = (const void*)ts_lex_modes, .lex_fn = ts_lex, .primary_state_ids = ts_primary_state_ids, + .name = "clojure", + .max_reserved_word_set_size = 0, + .metadata = { + .major_version = 0, + .minor_version = 0, + .patch_version = 14, + }, }; return &language; } diff --git a/src/tree_sitter/alloc.h b/src/tree_sitter/alloc.h new file mode 100644 index 0000000..1abdd12 --- /dev/null +++ b/src/tree_sitter/alloc.h @@ -0,0 +1,54 @@ +#ifndef TREE_SITTER_ALLOC_H_ +#define TREE_SITTER_ALLOC_H_ + +#ifdef __cplusplus +extern "C" { +#endif + +#include +#include +#include + +// Allow clients to override allocation functions +#ifdef TREE_SITTER_REUSE_ALLOCATOR + +extern void *(*ts_current_malloc)(size_t size); +extern void *(*ts_current_calloc)(size_t count, size_t size); +extern void *(*ts_current_realloc)(void *ptr, size_t size); +extern void (*ts_current_free)(void *ptr); + +#ifndef ts_malloc +#define ts_malloc ts_current_malloc +#endif +#ifndef ts_calloc +#define ts_calloc ts_current_calloc +#endif +#ifndef ts_realloc +#define ts_realloc ts_current_realloc +#endif +#ifndef ts_free +#define ts_free ts_current_free +#endif + +#else + +#ifndef ts_malloc +#define ts_malloc malloc +#endif +#ifndef ts_calloc +#define ts_calloc calloc +#endif +#ifndef ts_realloc +#define ts_realloc realloc +#endif +#ifndef ts_free +#define ts_free free +#endif + +#endif + +#ifdef __cplusplus +} +#endif + +#endif // TREE_SITTER_ALLOC_H_ diff --git a/src/tree_sitter/array.h b/src/tree_sitter/array.h new file mode 100644 index 0000000..e99918e --- /dev/null +++ b/src/tree_sitter/array.h @@ -0,0 +1,347 @@ +#ifndef TREE_SITTER_ARRAY_H_ +#define TREE_SITTER_ARRAY_H_ + +#ifdef __cplusplus +extern "C" { +#endif + +#include "./alloc.h" + +#include +#include +#include +#include +#include + +#ifdef _MSC_VER +#pragma warning(push) +#pragma warning(disable : 4101) +#elif defined(__GNUC__) || defined(__clang__) +#pragma GCC diagnostic push +#pragma GCC diagnostic ignored "-Wunused-variable" +#endif + +#define Array(T) \ + struct { \ + T *contents; \ + uint32_t size; \ + uint32_t capacity; \ + } + +/// Initialize an array. +#define array_init(self) \ + ((self)->size = 0, (self)->capacity = 0, (self)->contents = NULL) + +/// Create an empty array. +#define array_new() \ + { NULL, 0, 0 } + +/// Get a pointer to the element at a given `index` in the array. +#define array_get(self, _index) \ + (assert((uint32_t)(_index) < (self)->size), &(self)->contents[_index]) + +/// Get a pointer to the first element in the array. +#define array_front(self) array_get(self, 0) + +/// Get a pointer to the last element in the array. +#define array_back(self) array_get(self, (self)->size - 1) + +/// Clear the array, setting its size to zero. Note that this does not free any +/// memory allocated for the array's contents. +#define array_clear(self) ((self)->size = 0) + +/// Reserve `new_capacity` elements of space in the array. If `new_capacity` is +/// less than the array's current capacity, this function has no effect. +#define array_reserve(self, new_capacity) \ + ((self)->contents = _array__reserve( \ + (void *)(self)->contents, &(self)->capacity, \ + array_elem_size(self), new_capacity) \ + ) + +/// Free any memory allocated for this array. Note that this does not free any +/// memory allocated for the array's contents. +#define array_delete(self) _array__delete((self), (void *)(self)->contents, sizeof(*self)) + +/// Push a new `element` onto the end of the array. +#define array_push(self, element) \ + do { \ + (self)->contents = _array__grow( \ + (void *)(self)->contents, (self)->size, &(self)->capacity, \ + 1, array_elem_size(self) \ + ); \ + (self)->contents[(self)->size++] = (element); \ + } while(0) + +/// Increase the array's size by `count` elements. +/// New elements are zero-initialized. +#define array_grow_by(self, count) \ + do { \ + if ((count) == 0) break; \ + (self)->contents = _array__grow( \ + (self)->contents, (self)->size, &(self)->capacity, \ + count, array_elem_size(self) \ + ); \ + memset((self)->contents + (self)->size, 0, (count) * array_elem_size(self)); \ + (self)->size += (count); \ + } while (0) + +/// Append all elements from one array to the end of another. +#define array_push_all(self, other) \ + array_extend((self), (other)->size, (other)->contents) + +/// Append `count` elements to the end of the array, reading their values from the +/// `contents` pointer. +#define array_extend(self, count, other_contents) \ + (self)->contents = _array__splice( \ + (void*)(self)->contents, &(self)->size, &(self)->capacity, \ + array_elem_size(self), (self)->size, 0, count, other_contents \ + ) + +/// Remove `old_count` elements from the array starting at the given `index`. At +/// the same index, insert `new_count` new elements, reading their values from the +/// `new_contents` pointer. +#define array_splice(self, _index, old_count, new_count, new_contents) \ + (self)->contents = _array__splice( \ + (void *)(self)->contents, &(self)->size, &(self)->capacity, \ + array_elem_size(self), _index, old_count, new_count, new_contents \ + ) + +/// Insert one `element` into the array at the given `index`. +#define array_insert(self, _index, element) \ + (self)->contents = _array__splice( \ + (void *)(self)->contents, &(self)->size, &(self)->capacity, \ + array_elem_size(self), _index, 0, 1, &(element) \ + ) + +/// Remove one element from the array at the given `index`. +#define array_erase(self, _index) \ + _array__erase((void *)(self)->contents, &(self)->size, array_elem_size(self), _index) + +/// Pop the last element off the array, returning the element by value. +#define array_pop(self) ((self)->contents[--(self)->size]) + +/// Assign the contents of one array to another, reallocating if necessary. +#define array_assign(self, other) \ + (self)->contents = _array__assign( \ + (void *)(self)->contents, &(self)->size, &(self)->capacity, \ + (const void *)(other)->contents, (other)->size, array_elem_size(self) \ + ) + +/// Swap one array with another +#define array_swap(self, other) \ + do { \ + struct Swap swapped_contents = _array__swap( \ + (void *)(self)->contents, &(self)->size, &(self)->capacity, \ + (void *)(other)->contents, &(other)->size, &(other)->capacity \ + ); \ + (self)->contents = swapped_contents.self_contents; \ + (other)->contents = swapped_contents.other_contents; \ + } while (0) + +/// Get the size of the array contents +#define array_elem_size(self) (sizeof *(self)->contents) + +/// Search a sorted array for a given `needle` value, using the given `compare` +/// callback to determine the order. +/// +/// If an existing element is found to be equal to `needle`, then the `index` +/// out-parameter is set to the existing value's index, and the `exists` +/// out-parameter is set to true. Otherwise, `index` is set to an index where +/// `needle` should be inserted in order to preserve the sorting, and `exists` +/// is set to false. +#define array_search_sorted_with(self, compare, needle, _index, _exists) \ + _array__search_sorted(self, 0, compare, , needle, _index, _exists) + +/// Search a sorted array for a given `needle` value, using integer comparisons +/// of a given struct field (specified with a leading dot) to determine the order. +/// +/// See also `array_search_sorted_with`. +#define array_search_sorted_by(self, field, needle, _index, _exists) \ + _array__search_sorted(self, 0, _compare_int, field, needle, _index, _exists) + +/// Insert a given `value` into a sorted array, using the given `compare` +/// callback to determine the order. +#define array_insert_sorted_with(self, compare, value) \ + do { \ + unsigned _index, _exists; \ + array_search_sorted_with(self, compare, &(value), &_index, &_exists); \ + if (!_exists) array_insert(self, _index, value); \ + } while (0) + +/// Insert a given `value` into a sorted array, using integer comparisons of +/// a given struct field (specified with a leading dot) to determine the order. +/// +/// See also `array_search_sorted_by`. +#define array_insert_sorted_by(self, field, value) \ + do { \ + unsigned _index, _exists; \ + array_search_sorted_by(self, field, (value) field, &_index, &_exists); \ + if (!_exists) array_insert(self, _index, value); \ + } while (0) + +// Private + +// Pointers to individual `Array` fields (rather than the entire `Array` itself) +// are passed to the various `_array__*` functions below to address strict aliasing +// violations that arises when the _entire_ `Array` struct is passed as `Array(void)*`. +// +// The `Array` type itself was not altered as a solution in order to avoid breakage +// with existing consumers (in particular, parsers with external scanners). + +/// This is not what you're looking for, see `array_delete`. +static inline void _array__delete(void *self, void *contents, size_t self_size) { + if (contents) ts_free(contents); + if (self) memset(self, 0, self_size); +} + +/// This is not what you're looking for, see `array_erase`. +static inline void _array__erase(void* self_contents, uint32_t *size, + size_t element_size, uint32_t index) { + assert(index < *size); + char *contents = (char *)self_contents; + memmove(contents + index * element_size, contents + (index + 1) * element_size, + (*size - index - 1) * element_size); + (*size)--; +} + +/// This is not what you're looking for, see `array_reserve`. +static inline void *_array__reserve(void *contents, uint32_t *capacity, + size_t element_size, uint32_t new_capacity) { + void *new_contents = contents; + if (new_capacity > *capacity) { + if (contents) { + new_contents = ts_realloc(contents, new_capacity * element_size); + } else { + new_contents = ts_malloc(new_capacity * element_size); + } + *capacity = new_capacity; + } + return new_contents; +} + +/// This is not what you're looking for, see `array_assign`. +static inline void *_array__assign(void* self_contents, uint32_t *self_size, uint32_t *self_capacity, + const void *other_contents, uint32_t other_size, size_t element_size) { + void *new_contents = _array__reserve(self_contents, self_capacity, element_size, other_size); + *self_size = other_size; + memcpy(new_contents, other_contents, *self_size * element_size); + return new_contents; +} + +struct Swap { + void *self_contents; + void *other_contents; +}; + +/// This is not what you're looking for, see `array_swap`. +// static inline void _array__swap(Array *self, Array *other) { +static inline struct Swap _array__swap(void *self_contents, uint32_t *self_size, uint32_t *self_capacity, + void *other_contents, uint32_t *other_size, uint32_t *other_capacity) { + void *new_self_contents = other_contents; + uint32_t new_self_size = *other_size; + uint32_t new_self_capacity = *other_capacity; + + void *new_other_contents = self_contents; + *other_size = *self_size; + *other_capacity = *self_capacity; + + *self_size = new_self_size; + *self_capacity = new_self_capacity; + + struct Swap out = { + .self_contents = new_self_contents, + .other_contents = new_other_contents, + }; + return out; +} + +/// This is not what you're looking for, see `array_push` or `array_grow_by`. +static inline void *_array__grow(void *contents, uint32_t size, uint32_t *capacity, + uint32_t count, size_t element_size) { + void *new_contents = contents; + uint32_t new_size = size + count; + if (new_size > *capacity) { + uint32_t new_capacity = *capacity * 2; + if (new_capacity < 8) new_capacity = 8; + if (new_capacity < new_size) new_capacity = new_size; + new_contents = _array__reserve(contents, capacity, element_size, new_capacity); + } + return new_contents; +} + +/// This is not what you're looking for, see `array_splice`. +static inline void *_array__splice(void *self_contents, uint32_t *size, uint32_t *capacity, + size_t element_size, + uint32_t index, uint32_t old_count, + uint32_t new_count, const void *elements) { + uint32_t new_size = *size + new_count - old_count; + uint32_t old_end = index + old_count; + uint32_t new_end = index + new_count; + assert(old_end <= *size); + + void *new_contents = _array__reserve(self_contents, capacity, element_size, new_size); + + char *contents = (char *)new_contents; + if (*size > old_end) { + memmove( + contents + new_end * element_size, + contents + old_end * element_size, + (*size - old_end) * element_size + ); + } + if (new_count > 0) { + if (elements) { + memcpy( + (contents + index * element_size), + elements, + new_count * element_size + ); + } else { + memset( + (contents + index * element_size), + 0, + new_count * element_size + ); + } + } + *size += new_count - old_count; + + return new_contents; +} + +/// A binary search routine, based on Rust's `std::slice::binary_search_by`. +/// This is not what you're looking for, see `array_search_sorted_with` or `array_search_sorted_by`. +#define _array__search_sorted(self, start, compare, suffix, needle, _index, _exists) \ + do { \ + *(_index) = start; \ + *(_exists) = false; \ + uint32_t size = (self)->size - *(_index); \ + if (size == 0) break; \ + int comparison; \ + while (size > 1) { \ + uint32_t half_size = size / 2; \ + uint32_t mid_index = *(_index) + half_size; \ + comparison = compare(&((self)->contents[mid_index] suffix), (needle)); \ + if (comparison <= 0) *(_index) = mid_index; \ + size -= half_size; \ + } \ + comparison = compare(&((self)->contents[*(_index)] suffix), (needle)); \ + if (comparison == 0) *(_exists) = true; \ + else if (comparison < 0) *(_index) += 1; \ + } while (0) + +/// Helper macro for the `_sorted_by` routines below. This takes the left (existing) +/// parameter by reference in order to work with the generic sorting function above. +#define _compare_int(a, b) ((int)*(a) - (int)(b)) + +#ifdef _MSC_VER +#pragma warning(pop) +#elif defined(__GNUC__) || defined(__clang__) +#pragma GCC diagnostic pop +#endif + +#ifdef __cplusplus +} +#endif + +#endif // TREE_SITTER_ARRAY_H_ diff --git a/src/tree_sitter/parser.h b/src/tree_sitter/parser.h index 17b4fde..858107d 100644 --- a/src/tree_sitter/parser.h +++ b/src/tree_sitter/parser.h @@ -18,6 +18,11 @@ typedef uint16_t TSStateId; typedef uint16_t TSSymbol; typedef uint16_t TSFieldId; typedef struct TSLanguage TSLanguage; +typedef struct TSLanguageMetadata { + uint8_t major_version; + uint8_t minor_version; + uint8_t patch_version; +} TSLanguageMetadata; #endif typedef struct { @@ -26,10 +31,11 @@ typedef struct { bool inherited; } TSFieldMapEntry; +// Used to index the field and supertype maps. typedef struct { uint16_t index; uint16_t length; -} TSFieldMapSlice; +} TSMapSlice; typedef struct { bool visible; @@ -47,6 +53,7 @@ struct TSLexer { uint32_t (*get_column)(TSLexer *); bool (*is_at_included_range_start)(const TSLexer *); bool (*eof)(const TSLexer *); + void (*log)(const TSLexer *, const char *, ...); }; typedef enum { @@ -78,6 +85,12 @@ typedef struct { uint16_t external_lex_state; } TSLexMode; +typedef struct { + uint16_t lex_state; + uint16_t external_lex_state; + uint16_t reserved_word_set_id; +} TSLexerMode; + typedef union { TSParseAction action; struct { @@ -86,8 +99,13 @@ typedef union { } entry; } TSParseActionEntry; +typedef struct { + int32_t start; + int32_t end; +} TSCharacterRange; + struct TSLanguage { - uint32_t version; + uint32_t abi_version; uint32_t symbol_count; uint32_t alias_count; uint32_t token_count; @@ -103,13 +121,13 @@ struct TSLanguage { const TSParseActionEntry *parse_actions; const char * const *symbol_names; const char * const *field_names; - const TSFieldMapSlice *field_map_slices; + const TSMapSlice *field_map_slices; const TSFieldMapEntry *field_map_entries; const TSSymbolMetadata *symbol_metadata; const TSSymbol *public_symbol_map; const uint16_t *alias_map; const TSSymbol *alias_sequences; - const TSLexMode *lex_modes; + const TSLexerMode *lex_modes; bool (*lex_fn)(TSLexer *, TSStateId); bool (*keyword_lex_fn)(TSLexer *, TSStateId); TSSymbol keyword_capture_token; @@ -123,8 +141,34 @@ struct TSLanguage { void (*deserialize)(void *, const char *, unsigned); } external_scanner; const TSStateId *primary_state_ids; + const char *name; + const TSSymbol *reserved_words; + uint16_t max_reserved_word_set_size; + uint32_t supertype_count; + const TSSymbol *supertype_symbols; + const TSMapSlice *supertype_map_slices; + const TSSymbol *supertype_map_entries; + TSLanguageMetadata metadata; }; +static inline bool set_contains(const TSCharacterRange *ranges, uint32_t len, int32_t lookahead) { + uint32_t index = 0; + uint32_t size = len - index; + while (size > 1) { + uint32_t half_size = size / 2; + uint32_t mid_index = index + half_size; + const TSCharacterRange *range = &ranges[mid_index]; + if (lookahead >= range->start && lookahead <= range->end) { + return true; + } else if (lookahead > range->end) { + index = mid_index; + } + size -= half_size; + } + const TSCharacterRange *range = &ranges[index]; + return (lookahead >= range->start && lookahead <= range->end); +} + /* * Lexer Macros */ @@ -154,6 +198,17 @@ struct TSLanguage { goto next_state; \ } +#define ADVANCE_MAP(...) \ + { \ + static const uint16_t map[] = { __VA_ARGS__ }; \ + for (uint32_t i = 0; i < sizeof(map) / sizeof(map[0]); i += 2) { \ + if (map[i] == lookahead) { \ + state = map[i + 1]; \ + goto next_state; \ + } \ + } \ + } + #define SKIP(state_value) \ { \ skip = true; \ @@ -203,14 +258,15 @@ struct TSLanguage { } \ }} -#define REDUCE(symbol_val, child_count_val, ...) \ - {{ \ - .reduce = { \ - .type = TSParseActionTypeReduce, \ - .symbol = symbol_val, \ - .child_count = child_count_val, \ - __VA_ARGS__ \ - }, \ +#define REDUCE(symbol_name, children, precedence, prod_id) \ + {{ \ + .reduce = { \ + .type = TSParseActionTypeReduce, \ + .symbol = symbol_name, \ + .child_count = children, \ + .dynamic_precedence = precedence, \ + .production_id = prod_id \ + }, \ }} #define RECOVER() \ From 9f92f691d61637bd395f37665ed835cfdc48fe1d Mon Sep 17 00:00:00 2001 From: Salam Elbilig Date: Fri, 13 Feb 2026 08:57:40 -0800 Subject: [PATCH 3/3] docs: update CHANGELOG.md --- CHANGELOG.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index a34b3cf..e3ef625 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,13 @@ Bits may be missing and/or inaccurate :) * Decide about inline use (e.g. add some \_bare\_\* constructs? stop using?) ([#41](https://github.com/sogaiu/tree-sitter-clojure/issues/41)) +### v0.0.14 - 2026-02-17 + +* Features and Fixes + * Add GitHub Actions workflows + * Update version info in package.json and tree-sitter.json + * Generate parser.c and friends with tree-sitter v0.26.5 (ABI version 15) + ### v0.0.13 - 2024-05-15 * Features and Fixes