aboutsummaryrefslogtreecommitdiff
path: root/lux-bootstrapper/src/lux/compiler/cache/ann.clj
diff options
context:
space:
mode:
Diffstat (limited to 'lux-bootstrapper/src/lux/compiler/cache/ann.clj')
-rw-r--r--lux-bootstrapper/src/lux/compiler/cache/ann.clj4
1 files changed, 2 insertions, 2 deletions
diff --git a/lux-bootstrapper/src/lux/compiler/cache/ann.clj b/lux-bootstrapper/src/lux/compiler/cache/ann.clj
index 4c08af276..9d5a8e97f 100644
--- a/lux-bootstrapper/src/lux/compiler/cache/ann.clj
+++ b/lux-bootstrapper/src/lux/compiler/cache/ann.clj
@@ -96,12 +96,12 @@
(defn ^:private deserialize-seq [deserializer ^String input]
(cond (.startsWith input nil-signal)
- [&/$Nil (.substring input 1)]
+ [&/$End (.substring input 1)]
(.startsWith input cons-signal)
(when-let [[head ^String input*] (deserializer (.substring input 1))]
(when-let [[tail ^String input*] (deserialize-seq deserializer input*)]
- [(&/$Cons head tail) input*]))
+ [(&/$Item head tail) input*]))
))
(defn ^:private deserialize-kv [input]