File tree 1 file changed +14
-9
lines changed
1 file changed +14
-9
lines changed Original file line number Diff line number Diff line change 62
62
(=
63
63
(do
64
64
(require 'clojure.set)
65
- (println
66
- " Difference in Size:"
67
- (clojure.set/difference (into (hash-set ) (.getSignature sio))
68
- (into (hash-set ) (.getSignature sio-rendered))))
69
- (print " sio:" (count (.getSignature sio)))
70
- (print " ren:" (count (.getSignature sio-rendered)))
71
- (count (.getSignature sio)))
72
- ; ; to account for the annotation Pproperty
73
- (count (.getSignature sio-rendered)))))
65
+ ; ; (println
66
+ ; ; "Difference in signature:"
67
+ ; ; (clojure.set/difference (into (hash-set) (.getSignature sio))
68
+ ; ; (into (hash-set) (.getSignature sio-rendered))))
69
+ ; ; (let [s (into (sorted-set) (.getSignature sio))
70
+ ; ; r (into (sorted-set) (.getSignature sio-rendered))
71
+ ; ; ]
72
+ ; ; (doseq [i
73
+ ; ; (map vector s r)]
74
+ ; ; (println (get i 0) "\t" (get i 1))))
75
+ ; ; (print "sio:" (count (.getSignature sio)) "\n")
76
+ ; ; (print "ren:" (count (.getSignature sio-rendered)) "\n")
77
+ (count (remove #(.isBuiltIn %) (.getSignature sio))))
78
+ (count (remove #(.isBuiltIn %) (.getSignature sio-rendered))))))
74
79
75
80
(deftest classes
76
81
(is
You can’t perform that action at this time.
0 commit comments