Skip to content

Commit

Permalink
v0.4.79
Browse files Browse the repository at this point in the history
  • Loading branch information
borkdude committed Dec 9, 2023
1 parent 119d5b5 commit e8b0797
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

[Squint](https://github.com/squint-cljs/squint): ClojureScript syntax to JavaScript compiler

## v0.4.79 (2023-12-09)

- The `children` function in `tree-seq` may return `nil`

## v0.4.78 (2023-12-09)

- Add `clojure.set/join`
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "squint-cljs",
"type": "module",
"sideEffects": false,
"version": "0.4.78",
"version": "0.4.79",
"files": [
"core.js",
"src/squint/core.js",
Expand Down
3 changes: 2 additions & 1 deletion test/squint/compiler_test.cljs
Original file line number Diff line number Diff line change
Expand Up @@ -2104,7 +2104,8 @@ new Foo();")
(is (eq [1 1 1 1] (f js-obj)))))

(deftest flatten-test
(is (eq [1 2 3 4 3] (jsv! '(vec (flatten '(1 2 (3 (4 (((3))))))))))))
(is (eq [1 2 3 4 3] (jsv! '(vec (flatten '(1 2 (3 (4 (((3)))))))))))
(is (eq 0 (jsv! '(first (flatten (map range (range))))))))

(deftest counted?-test
(is (true? (jsv! '(counted? {})))))
Expand Down

0 comments on commit e8b0797

Please sign in to comment.