|
636 | 636 | (core/let [gmap (gensym "map__") |
637 | 637 | defaults (:or b)] |
638 | 638 | (core/loop [ret (core/-> bvec (conj gmap) (conj v) |
639 | | - (conj gmap) (conj `(if (implements? ISeq ~gmap) (apply hash-map ~gmap) ~gmap)) |
| 639 | + (conj gmap) (conj `(if (implements? ISeq ~gmap) (apply cljs.core/hash-map ~gmap) ~gmap)) |
640 | 640 | ((core/fn [ret] |
641 | 641 | (if (:as b) |
642 | 642 | (conj ret (:as b) gmap) |
|
654 | 654 | bk (val (first bes)) |
655 | 655 | has-default (contains? defaults bb)] |
656 | 656 | (recur (pb ret bb (if has-default |
657 | | - (core/list `get gmap bk (defaults bb)) |
658 | | - (core/list `get gmap bk))) |
| 657 | + (core/list 'cljs.core/get gmap bk (defaults bb)) |
| 658 | + (core/list 'cljs.core/get gmap bk))) |
659 | 659 | (next bes))) |
660 | 660 | ret))))] |
661 | 661 | (core/cond |
|
1391 | 1391 | `(fn ~[this-sym argsym] |
1392 | 1392 | (this-as ~this-sym |
1393 | 1393 | (.apply (.-call ~this-sym) ~this-sym |
1394 | | - (.concat (array ~this-sym) (aclone ~argsym))))) |
| 1394 | + (.concat (array ~this-sym) (cljs.core/aclone ~argsym))))) |
1395 | 1395 | (meta form)))] |
1396 | 1396 | (ifn-invoke-methods type type-sym form)))) |
1397 | 1397 |
|
|
1714 | 1714 | `(~'-lookup [this# ~ksym else#] |
1715 | 1715 | (case ~ksym |
1716 | 1716 | ~@(mapcat (core/fn [f] [(keyword f) f]) base-fields) |
1717 | | - (get ~'__extmap ~ksym else#))) |
| 1717 | + (cljs.core/get ~'__extmap ~ksym else#))) |
1718 | 1718 | 'ICounted |
1719 | 1719 | `(~'-count [this#] (+ ~(count base-fields) (count ~'__extmap))) |
1720 | 1720 | 'ICollection |
|
2366 | 2366 | `(js/Array. ~size)) |
2367 | 2367 | assoc :tag 'array)) |
2368 | 2368 | ([type size] |
2369 | | - `(make-array ~size)) |
| 2369 | + `(cljs.core/make-array ~size)) |
2370 | 2370 | ([type size & more-sizes] |
2371 | 2371 | (vary-meta |
2372 | 2372 | `(let [dims# (list ~@more-sizes) |
2373 | | - dimarray# (make-array ~size)] |
| 2373 | + dimarray# (cljs.core/make-array ~size)] |
2374 | 2374 | (dotimes [i# (alength dimarray#)] |
2375 | | - (aset dimarray# i# (apply make-array nil dims#))) |
| 2375 | + (aset dimarray# i# (apply cljs.core/make-array nil dims#))) |
2376 | 2376 | dimarray#) |
2377 | 2377 | assoc :tag 'array))) |
2378 | 2378 |
|
|
2471 | 2471 | array ret." |
2472 | 2472 | [a idx ret expr] |
2473 | 2473 | `(let [a# ~a |
2474 | | - ~ret (aclone a#)] |
| 2474 | + ~ret (cljs.core/aclone a#)] |
2475 | 2475 | (loop [~idx 0] |
2476 | 2476 | (if (< ~idx (alength a#)) |
2477 | 2477 | (do |
|
2556 | 2556 | prefer-table# (atom {}) |
2557 | 2557 | method-cache# (atom {}) |
2558 | 2558 | cached-hierarchy# (atom {}) |
2559 | | - hierarchy# (get ~options :hierarchy (cljs.core/get-global-hierarchy))] |
| 2559 | + hierarchy# (cljs.core/get ~options :hierarchy (cljs.core/get-global-hierarchy))] |
2560 | 2560 | (cljs.core/MultiFn. (cljs.core/symbol ~mm-ns ~(name mm-name)) ~dispatch-fn ~default hierarchy# |
2561 | 2561 | method-table# prefer-table# method-cache# cached-hierarchy#)))))) |
2562 | 2562 |
|
|
0 commit comments