File tree Expand file tree Collapse file tree 4 files changed +5
-14
lines changed Expand file tree Collapse file tree 4 files changed +5
-14
lines changed Original file line number Diff line number Diff line change @@ -6,14 +6,14 @@ Official web site: http://clojurescript.org
6
6
7
7
## Releases and dependency information ##
8
8
9
- Latest stable release: 1.10.738
9
+ Latest stable release: 1.10.739
10
10
11
11
* [ All released versions] ( http://search.maven.org/#search%7Cgav%7C1%7Cg%3A%22org.clojure%22%20AND%20a%3A%22clojurescript%22 )
12
12
13
13
[ Leiningen] ( http://github.com/technomancy/leiningen/ ) dependency information:
14
14
15
15
```
16
- [org.clojure/clojurescript "1.10.738 "]
16
+ [org.clojure/clojurescript "1.10.739 "]
17
17
```
18
18
19
19
[ Maven] ( http://maven.apache.org ) dependency information:
@@ -22,7 +22,7 @@ Latest stable release: 1.10.738
22
22
<dependency>
23
23
<groupId>org.clojure</groupId>
24
24
<artifactId>clojurescript</artifactId>
25
- <version>1.10.738 </version>
25
+ <version>1.10.739 </version>
26
26
</dependency>
27
27
```
28
28
Original file line number Diff line number Diff line change 1
- ## 1.10.738
1
+ ## 1.10.739
2
2
3
3
### Changes
4
4
* Removed REPL/target support for Rhino, Nashorn, Graaljs
Original file line number Diff line number Diff line change 3502
3502
; ; warning without this - David
3503
3503
(cond
3504
3504
(nil? t) true
3505
+ (= 'clj-nil t) true
3505
3506
(js-tag? t) true ; ; TODO: revisit
3506
3507
:else
3507
3508
(if (and (symbol? t) (some? (get NUMERIC_SET t)))
Original file line number Diff line number Diff line change 1367
1367
(env/with-compiler-env test-cenv
1368
1368
(:tag (analyze test-env '(demunge-str " " )))))))
1369
1369
1370
- (deftest test-cljs-3086
1371
- (let [ws (atom [])]
1372
- (try
1373
- (ana/with-warning-handlers [(collecting-warning-handler ws)]
1374
- (cljs.env/with-compiler-env test-cenv
1375
- (analyze (ana/empty-env )
1376
- '(+ nil 1 ))))
1377
- (catch Exception _))
1378
- (is (= [" cljs.core/+, all arguments must be numbers, got [clj-nil number] instead" ] @ws))))
1379
-
1380
1370
(deftest test-cljs-3120
1381
1371
(let [cenv (core-env )
1382
1372
_ (analyze-forms cenv
You can’t perform that action at this time.
0 commit comments