Skip to content

Commit b6c48c7

Browse files
anmonteirodnolen
authored and
dnolen
committed
CLJS-1751: port fix lost type hints in map destructuring
same as Clojure commit e8065ab
1 parent f41d40b commit b6c48c7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/clojure/cljs/core.cljc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -682,7 +682,7 @@
682682
bk (val (first bes))
683683
local (if #?(:clj (core/instance? clojure.lang.Named bb)
684684
:cljs (cljs.core/implements? INamed bb))
685-
(symbol nil (name bb))
685+
(with-meta (symbol nil (name bb)) (meta bb))
686686
bb)
687687
bv (if (contains? defaults local)
688688
(core/list 'cljs.core/get gmap bk (defaults local))

0 commit comments

Comments
 (0)