Skip to content

Commit a4f94bc

Browse files
committed
fully qualify get and req! for bootstrapped
1 parent 3f81d6f commit a4f94bc

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/main/clojure/cljs/core.cljc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -702,7 +702,7 @@
702702
:cljs (cljs.core/implements? INamed bb))
703703
(with-meta (core/symbol nil (name bb)) (meta bb)) bb))
704704
push1 (core/fn [ret bb bk req?]
705-
(core/let [getter (if req? `req! `get)
705+
(core/let [getter (if req? `cljs.core/req! `cljs.core/get)
706706
local (localize bb)
707707
local-default? (contains? defaults local)
708708
key-default? (contains? defaults bk)
@@ -717,7 +717,7 @@
717717
(core/str "Can't supply default value for required key: " bk)))
718718
:cljs (throw (new js/Error
719719
(core/str "Can't supply default value for required key: " bk))))
720-
(core/list `get gmap bk (if local-default? (gdefaults local) (gdefaults bk)))))
720+
(core/list `cljs.core/get gmap bk (if local-default? (gdefaults local) (gdefaults bk)))))
721721
(core/list getter gmap bk))]
722722
(if (ident? bb)
723723
(core/-> ret (conj local bv))

0 commit comments

Comments
 (0)