Skip to content

Commit 9ca7931

Browse files
committed
Revert "remove the deprecated access pattern that clashed w/ namespaces"
This reverts commit 1f38c96.
1 parent 1f38c96 commit 9ca7931

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

src/main/cljs/cljs/core.cljs

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12432,7 +12432,7 @@ reduces them without incurring seq initialization"
1243212432
(Vector. meta new-array)))
1243312433

1243412434
IEmptyableCollection
12435-
(-empty [coll] (with-meta (. Vector -EMPTY) meta))
12435+
(-empty [coll] (with-meta cljs.core.Vector/EMPTY meta))
1243612436

1243712437
ISequential
1243812438
IEquiv
@@ -12534,7 +12534,7 @@ reduces them without incurring seq initialization"
1253412534
entry)))
1253512535

1253612536
IEmptyableCollection
12537-
(-empty [coll] (with-meta (. ObjMap -EMPTY) meta))
12537+
(-empty [coll] (with-meta cljs.core.ObjMap/EMPTY meta))
1253812538

1253912539
IEquiv
1254012540
(-equiv [coll other] (equiv-map coll other))
@@ -12630,7 +12630,7 @@ reduces them without incurring seq initialization"
1263012630
entry)))
1263112631

1263212632
IEmptyableCollection
12633-
(-empty [coll] (with-meta (. HashMap -EMPTY) meta))
12633+
(-empty [coll] (with-meta cljs.core.HashMap/EMPTY meta))
1263412634

1263512635
IEquiv
1263612636
(-equiv [coll other] (equiv-map coll other))
@@ -12709,9 +12709,9 @@ reduces them without incurring seq initialization"
1270912709

1271012710
(set! (. HashMap -EMPTY) (HashMap. nil 0 (js-obj)))
1271112711

12712-
(set! (. HashMap -fromArrays) (fn [ks vs]
12712+
(set! cljs.core.HashMap/fromArrays (fn [ks vs]
1271312713
(let [len (.-length ks)]
12714-
(loop [i 0, out (. HashMap -EMPTY)]
12714+
(loop [i 0, out cljs.core.HashMap/EMPTY]
1271512715
(if (< i len)
1271612716
(recur (inc i) (assoc out (aget ks i) (aget vs i)))
1271712717
out)))))
@@ -12728,7 +12728,7 @@ reduces them without incurring seq initialization"
1272812728
(Set. meta (assoc hash-map o nil)))
1272912729

1273012730
IEmptyableCollection
12731-
(-empty [coll] (with-meta (. Set -EMPTY) meta))
12731+
(-empty [coll] (with-meta cljs.core.Set/EMPTY meta))
1273212732

1273312733
IEquiv
1273412734
(-equiv [coll other]

0 commit comments

Comments
 (0)