File tree 3 files changed +18
-2
lines changed
3 files changed +18
-2
lines changed Original file line number Diff line number Diff line change 2907
2907
(parse-ns-error-msg spec
2908
2908
" Each of :as and :refer options may only be specified once in :require / :require-macros" ))))))
2909
2909
2910
- (defn parse-ns-excludes [env args]
2910
+ (defn- parse-ns-excludes-impl [env args]
2911
2911
(reduce
2912
2912
(fn [s [k & filters]]
2913
2913
(if (= k :refer-clojure )
2947
2947
{:excludes #{}
2948
2948
:renames {}} args))
2949
2949
2950
+ (defn parse-ns-excludes [env args]
2951
+ (let [s (parse-ns-excludes-impl env args)]
2952
+ (update s :excludes into (keys (:renames s)))))
2953
+
2950
2954
(defn use->require [env [lib & filters :as spec]]
2951
2955
(when-not (and (symbol? lib) (odd? (count spec)))
2952
2956
(throw
Original file line number Diff line number Diff line change 48
48
(deftest test-cljs-3399
49
49
(is (= ::fake/foo :fake.ns/foo )
50
50
(is (= `fake/foo 'fake.ns/foo))))
51
+
52
+ (deftest test-cljs-2292
53
+ (is (= false (exists? mapv)))
54
+ (is (= true (exists? core-mapv))))
Original file line number Diff line number Diff line change 338
338
'(ns foo.core
339
339
(:refer-clojure :rename {when always
340
340
map core-map}))))]
341
- (is (= (-> parsed-ns :excludes ) #{ }))
341
+ (is (= (-> parsed-ns :excludes ) '#{ when map }))
342
342
(is (= (-> parsed-ns :rename-macros ) '{always cljs.core/when}))
343
343
(is (= (-> parsed-ns :renames ) '{core-map cljs.core/map})))
344
344
(is (thrown? Exception (env/with-compiler-env test-cenv
379
379
:renames {}}))
380
380
(is (set? (:excludes parsed)))))
381
381
382
+
383
+ (deftest test-cljs-2292
384
+ (let [parsed (ana/parse-ns-excludes {} '((:refer-clojure :rename {map clj-map})))]
385
+ (is (= parsed
386
+ '{:excludes #{map}
387
+ :renames {map clj-map}}))
388
+ (is (set? (:excludes parsed)))))
389
+
382
390
(deftest test-cljs-1785-js-shadowed-by-local
383
391
(let [ws (atom [])]
384
392
(ana/with-warning-handlers [(collecting-warning-handler ws)]
You can’t perform that action at this time.
0 commit comments