Skip to content

Commit

Permalink
1.10.739
Browse files Browse the repository at this point in the history
  • Loading branch information
swannodette committed Apr 24, 2020
1 parent ec32b73 commit 99d669f
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 14 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,14 @@ Official web site: http://clojurescript.org

## Releases and dependency information ##

Latest stable release: 1.10.738
Latest stable release: 1.10.739

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

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

```
[org.clojure/clojurescript "1.10.738"]
[org.clojure/clojurescript "1.10.739"]
```

[Maven](http://maven.apache.org) dependency information:
Expand All @@ -22,7 +22,7 @@ Latest stable release: 1.10.738
<dependency>
<groupId>org.clojure</groupId>
<artifactId>clojurescript</artifactId>
<version>1.10.738</version>
<version>1.10.739</version>
</dependency>
```

Expand Down
2 changes: 1 addition & 1 deletion changes.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## 1.10.738
## 1.10.739

### Changes
* Removed REPL/target support for Rhino, Nashorn, Graaljs
Expand Down
1 change: 1 addition & 0 deletions src/main/clojure/cljs/analyzer.cljc
Original file line number Diff line number Diff line change
Expand Up @@ -3502,6 +3502,7 @@
;; warning without this - David
(cond
(nil? t) true
(= 'clj-nil t) true
(js-tag? t) true ;; TODO: revisit
:else
(if (and (symbol? t) (some? (get NUMERIC_SET t)))
Expand Down
10 changes: 0 additions & 10 deletions src/test/clojure/cljs/analyzer_tests.clj
Original file line number Diff line number Diff line change
Expand Up @@ -1367,16 +1367,6 @@
(env/with-compiler-env test-cenv
(:tag (analyze test-env '(demunge-str "")))))))

(deftest test-cljs-3086
(let [ws (atom [])]
(try
(ana/with-warning-handlers [(collecting-warning-handler ws)]
(cljs.env/with-compiler-env test-cenv
(analyze (ana/empty-env)
'(+ nil 1))))
(catch Exception _))
(is (= ["cljs.core/+, all arguments must be numbers, got [clj-nil number] instead"] @ws))))

(deftest test-cljs-3120
(let [cenv (core-env)
_ (analyze-forms cenv
Expand Down

0 comments on commit 99d669f

Please sign in to comment.