Skip to content

Commit

Permalink
Fix to handle LazySeq correctly #9
Browse files Browse the repository at this point in the history
  • Loading branch information
liquidz committed Jul 11, 2020
1 parent 8fd1aaf commit 6c6738b
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/iced/nrepl/debug.clj
Original file line number Diff line number Diff line change
Expand Up @@ -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)]))))
Expand Down

0 comments on commit 6c6738b

Please sign in to comment.