Codebase list test-check-clojure / 63f5b1c
Upgrade CLJS even further Had to add a workaround for something that seems like a bug in closure-library. Gary Fredericks 8 years ago
2 changed file(s) with 4 addition(s) and 2 deletion(s). Raw diff Collapse all Expand all
77 :test-paths ["src/test/clojure"]
88 :jvm-opts ^:replace ["-Xmx512m" "-server"]
99 :profiles {:dev {:dependencies [[org.clojure/clojure "1.7.0"]
10 [org.clojure/clojurescript "1.7.28"]]}
10 [org.clojure/clojurescript "1.7.48"]]}
1111 :1.5 {:dependencies [[org.clojure/clojure "1.5.1"]]}}
1212 :global-vars {*warn-on-reflection* true}
1313 :plugins [[codox "0.8.10"]
5252 (instance? goog.math.Long x)
5353 x))
5454
55 (def ONE long/ONE)
55 ;; this used to be long/ONE but that turned out to be nil in more
56 ;; recent versions of closure-library for some reason
57 (def ONE (long/fromNumber 1))
5658
5759 (def bit-count bit-count/bit-count)