File tree Expand file tree Collapse file tree 2 files changed +50
-1
lines changed Expand file tree Collapse file tree 2 files changed +50
-1
lines changed Original file line number Diff line number Diff line change @@ -12261,6 +12261,9 @@ reduces them without incurring seq initialization"
12261
12261
IWithMeta
12262
12262
(-with-meta [coll meta] (Vector. meta array __hash))
12263
12263
12264
+ ICloneable
12265
+ (-clone [coll] (Vector. meta array __hash))
12266
+
12264
12267
IMeta
12265
12268
(-meta [coll] meta)
12266
12269
@@ -12462,6 +12465,9 @@ reduces them without incurring seq initialization"
12462
12465
IMeta
12463
12466
(-meta [coll] meta)
12464
12467
12468
+ ICloneable
12469
+ (-clone [coll] (ObjMap. meta keys strobj __hash))
12470
+
12465
12471
ICollection
12466
12472
(-conj [coll entry]
12467
12473
(if (vector? entry)
@@ -12632,6 +12638,9 @@ reduces them without incurring seq initialization"
12632
12638
IMeta
12633
12639
(-meta [coll] meta)
12634
12640
12641
+ ICloneable
12642
+ (-clone [coll] (HashMap. meta count hashobj __hash))
12643
+
12635
12644
ICollection
12636
12645
(-conj [coll entry]
12637
12646
(if (vector? entry)
@@ -12786,6 +12795,9 @@ reduces them without incurring seq initialization"
12786
12795
IMeta
12787
12796
(-meta [coll] meta)
12788
12797
12798
+ ICloneable
12799
+ (-clone [coll] (Set. meta hash-map __hash))
12800
+
12789
12801
ICollection
12790
12802
(-conj [coll o]
12791
12803
(Set. meta (assoc hash-map o nil ) nil ))
Original file line number Diff line number Diff line change 8
8
9
9
(ns lite-test-runner
10
10
(:require [cljs.test :refer-macros [run-tests]]
11
+ [cljs.apply-test]
12
+ [cljs.primitives-test]
13
+ [cljs.destructuring-test]
14
+ [cljs.new-new-test]
15
+ [cljs.seqs-test]
16
+ [cljs.hashing-test]
17
+ [cljs.interop-test]
18
+ [cljs.iterator-test]
19
+ [cljs.binding-test]
20
+ [cljs.ns-test]
21
+ [clojure.set-test]
22
+ [clojure.string-test]
23
+ [clojure.data-test]
24
+ [clojure.datafy-test]
25
+ [clojure.edn-test]
26
+ [clojure.walk-test]
27
+ [clojure.math-test]
28
+ [cljs.macro-test]
29
+ [cljs.letfn-test]
11
30
[cljs.core-test]
12
31
[cljs.lite-collections-test]))
13
32
19
38
(enable-console-print! ))
20
39
21
40
(run-tests
22
- 'cljs.lite-collections-test
41
+ 'cljs.apply-test
42
+ 'cljs.primitives-test
43
+ 'cljs.destructuring-test
44
+ 'cljs.new-new-test
45
+ #_'cljs.seqs-test ; ; rseq Vector
46
+ #_'cljs.hashing-test
47
+ #_'cljs.interop-test ; ; ES6 stuff
48
+ #_'cljs.iterator-test
49
+ 'cljs.binding-test
50
+ 'cljs.ns-test
51
+ 'clojure.set-test
52
+ 'clojure.string-test
53
+ #_'clojure.data-test ; ; 1 failure #object[Error Error: No item 1 in vector of length 1]
54
+ 'clojure.datafy-test
55
+ 'clojure.edn-test
56
+ 'clojure.walk-test
57
+ 'clojure.math-test
58
+ 'cljs.macro-test
23
59
'cljs.core-test
60
+ 'cljs.lite-collections-test
24
61
)
You can’t perform that action at this time.
0 commit comments