We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6b9c8c1 commit ade4ab7Copy full SHA for ade4ab7
1 file changed
src/main/clojure/cljs/closure.clj
@@ -661,6 +661,12 @@
661
(-compile [this opts] (-compile (io/file this) opts))
662
(-find-sources [this opts] (-find-sources (io/file this) opts))
663
664
+ clojure.lang.Symbol
665
+ (-compile [this opts]
666
+ (-compile (util/ns->source this) opts))
667
+ (-find-sources [this opts]
668
+ (-find-sources (util/ns->source this) opts))
669
+
670
clojure.lang.PersistentVector
671
(-compile [this opts] (compile-form-seq this))
672
(-find-sources [this opts]
@@ -686,6 +692,8 @@
686
692
(-compile '[(ns test.app (:require [goog.array :as array]))
687
693
(defn plus-one [x] (inc x))]
688
694
{})
695
696
+ (-find-sources 'cljs.core {})
689
697
)
690
698
691
699
(defn js-dependencies
0 commit comments