Skip to content

Commit 474bfec

Browse files
committed
fix ObjMap/EMPTY hash
1 parent a529a38 commit 474bfec

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/main/cljs/cljs/core.cljs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12678,7 +12678,7 @@ reduces them without incurring seq initialization"
1267812678

1267912679
(es6-iterable ObjMap)
1268012680

12681-
(set! (. ObjMap -EMPTY) (ObjMap. nil (array) (js-obj) empty-ordered-hash))
12681+
(set! (. ObjMap -EMPTY) (ObjMap. nil (array) (js-obj) empty-unordered-hash))
1268212682

1268312683
(set! (. ObjMap -fromObject) (fn [ks obj] (ObjMap. nil ks obj nil)))
1268412684

src/test/cljs/lite_test_runner.cljs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@
7878
'cljs.printing-test
7979
'cljs.new-new-test
8080
'cljs.seqs-test
81-
#_'cljs.hashing-test
81+
'cljs.hashing-test
8282
'cljs.interop-test ;; ES6 stuff
8383
#_'cljs.iterator-test
8484
'cljs.reader-test

0 commit comments

Comments
 (0)