make comp-paths work on lazyseqs for cljs

This commit is contained in:
Nathan Marz 2015-11-03 10:51:42 -05:00
parent 2aa3cd85b8
commit 3980e0f194

View file

@ -223,6 +223,9 @@
#+cljs (coerce-path [this] #+cljs (coerce-path [this]
(coerce-path (vec this))) (coerce-path (vec this)))
#+cljs cljs.core/List #+cljs cljs.core/List
#+cljs (coerce-path [this]
(coerce-path (vec this)))
#+cljs cljs.core/LazySeq
#+cljs (coerce-path [this] #+cljs (coerce-path [this]
(coerce-path (vec this))) (coerce-path (vec this)))