Skip to content

Commit 99d669f

Browse files
committed
1.10.739
1 parent ec32b73 commit 99d669f

File tree

4 files changed

+5
-14
lines changed

4 files changed

+5
-14
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,14 @@ Official web site: http://clojurescript.org
66

77
## Releases and dependency information ##
88

9-
Latest stable release: 1.10.738
9+
Latest stable release: 1.10.739
1010

1111
* [All released versions](http://search.maven.org/#search%7Cgav%7C1%7Cg%3A%22org.clojure%22%20AND%20a%3A%22clojurescript%22)
1212

1313
[Leiningen](http://github.com/technomancy/leiningen/) dependency information:
1414

1515
```
16-
[org.clojure/clojurescript "1.10.738"]
16+
[org.clojure/clojurescript "1.10.739"]
1717
```
1818

1919
[Maven](http://maven.apache.org) dependency information:
@@ -22,7 +22,7 @@ Latest stable release: 1.10.738
2222
<dependency>
2323
<groupId>org.clojure</groupId>
2424
<artifactId>clojurescript</artifactId>
25-
<version>1.10.738</version>
25+
<version>1.10.739</version>
2626
</dependency>
2727
```
2828

changes.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## 1.10.738
1+
## 1.10.739
22

33
### Changes
44
* Removed REPL/target support for Rhino, Nashorn, Graaljs

src/main/clojure/cljs/analyzer.cljc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3502,6 +3502,7 @@
35023502
;; warning without this - David
35033503
(cond
35043504
(nil? t) true
3505+
(= 'clj-nil t) true
35053506
(js-tag? t) true ;; TODO: revisit
35063507
:else
35073508
(if (and (symbol? t) (some? (get NUMERIC_SET t)))

src/test/clojure/cljs/analyzer_tests.clj

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1367,16 +1367,6 @@
13671367
(env/with-compiler-env test-cenv
13681368
(:tag (analyze test-env '(demunge-str "")))))))
13691369

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-
13801370
(deftest test-cljs-3120
13811371
(let [cenv (core-env)
13821372
_ (analyze-forms cenv

0 commit comments

Comments
 (0)