@@ -12432,7 +12432,7 @@ reduces them without incurring seq initialization"
12432
12432
(Vector. meta new-array)))
12433
12433
12434
12434
IEmptyableCollection
12435
- (-empty [coll] (with-meta ( . Vector - EMPTY) meta))
12435
+ (-empty [coll] (with-meta cljs.core. Vector/ EMPTY meta))
12436
12436
12437
12437
ISequential
12438
12438
IEquiv
@@ -12534,7 +12534,7 @@ reduces them without incurring seq initialization"
12534
12534
entry)))
12535
12535
12536
12536
IEmptyableCollection
12537
- (-empty [coll] (with-meta ( . ObjMap - EMPTY) meta))
12537
+ (-empty [coll] (with-meta cljs.core. ObjMap/ EMPTY meta))
12538
12538
12539
12539
IEquiv
12540
12540
(-equiv [coll other] (equiv-map coll other))
@@ -12630,7 +12630,7 @@ reduces them without incurring seq initialization"
12630
12630
entry)))
12631
12631
12632
12632
IEmptyableCollection
12633
- (-empty [coll] (with-meta ( . HashMap - EMPTY) meta))
12633
+ (-empty [coll] (with-meta cljs.core. HashMap/ EMPTY meta))
12634
12634
12635
12635
IEquiv
12636
12636
(-equiv [coll other] (equiv-map coll other))
@@ -12709,9 +12709,9 @@ reduces them without incurring seq initialization"
12709
12709
12710
12710
(set! (. HashMap -EMPTY) (HashMap. nil 0 (js-obj )))
12711
12711
12712
- (set! ( . HashMap - fromArrays) (fn [ks vs]
12712
+ (set! cljs.core. HashMap/ fromArrays (fn [ks vs]
12713
12713
(let [len (.-length ks)]
12714
- (loop [i 0 , out ( . HashMap - EMPTY) ]
12714
+ (loop [i 0 , out cljs.core. HashMap/ EMPTY]
12715
12715
(if (< i len)
12716
12716
(recur (inc i) (assoc out (aget ks i) (aget vs i)))
12717
12717
out)))))
@@ -12728,7 +12728,7 @@ reduces them without incurring seq initialization"
12728
12728
(Set. meta (assoc hash-map o nil )))
12729
12729
12730
12730
IEmptyableCollection
12731
- (-empty [coll] (with-meta ( . Set - EMPTY) meta))
12731
+ (-empty [coll] (with-meta cljs.core. Set/ EMPTY meta))
12732
12732
12733
12733
IEquiv
12734
12734
(-equiv [coll other]
0 commit comments