From 6c6738b3c8eff591c4bee1c5194ed74e09e16a32 Mon Sep 17 00:00:00 2001 From: liquidz Date: Sun, 12 Jul 2020 05:47:01 +0900 Subject: [PATCH] Fix to handle LazySeq correctly #9 --- src/iced/nrepl/debug.clj | 1 + 1 file changed, 1 insertion(+) diff --git a/src/iced/nrepl/debug.clj b/src/iced/nrepl/debug.clj index 4724b3a..b74454b 100644 --- a/src/iced/nrepl/debug.clj +++ b/src/iced/nrepl/debug.clj @@ -118,6 +118,7 @@ clojure.lang.IPersistentMap (map #(wrap-child % true) (keys x)) clojure.lang.IPersistentList (->> x count range (map #(wrap-child % true))) clojure.lang.IPersistentVector (->> x count range (map #(wrap-child % true))) + clojure.lang.LazySeq (->> x count range (map #(wrap-child % true))) (if (nil? x) [] [(wrap-child x false)]))))