add comments about workaround for cljs bug

This commit is contained in:
nathanmarz 2017-05-29 21:52:40 -04:00
parent af029ac149
commit 1411ac495e
2 changed files with 6 additions and 0 deletions

View file

@ -14,6 +14,9 @@
[com.rpl.specter.util-macros :refer
[doseqres]]))
;; workaround for cljs bug that emits warnings for vars named the same as a
;; private var in cljs.core (in this case `NONE`, added as private var to
;; cljs.core with 1.9.562)
#?(:cljs (:refer-clojure :exclude [NONE]))
(:use [com.rpl.specter.protocols :only [ImplicitNav RichNavigator]]

View file

@ -2,6 +2,9 @@
#?(:cljs (:require-macros
[com.rpl.specter.util-macros
:refer [doseqres mk-comp-navs mk-late-fn mk-late-fn-records]]))
;; workaround for cljs bug that emits warnings for vars named the same as a
;; private var in cljs.core (in this case `NONE`, added as private var to
;; cljs.core with 1.9.562)
#?(:cljs (:refer-clojure :exclude [NONE]))
(:use [com.rpl.specter.protocols :only
[select* transform* collect-val RichNavigator]]