Skip to content

Commit d438d07

Browse files
author
dnolen
committed
1.9.494
1 parent e5b6218 commit d438d07

File tree

3 files changed

+33
-33
lines changed

3 files changed

+33
-33
lines changed

README.md

+3-3
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.9.493
9+
Latest stable release: 1.9.494
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.9.493"]
16+
[org.clojure/clojurescript "1.9.494"]
1717
```
1818

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

changes.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## 1.9.494
2+
3+
### Fixes
4+
* revert CLJS-1636: Mark some symbols in core macros ns as private
5+
16
## 1.9.493
27

38
### Fixes

src/main/clojure/cljs/core.cljc

+25-30
Original file line numberDiff line numberDiff line change
@@ -610,7 +610,7 @@
610610
`(when-not (exists? ~x)
611611
(def ~x ~init)))
612612

613-
(core/defn- destructure [bindings]
613+
(core/defn destructure [bindings]
614614
(core/let [bents (partition 2 bindings)
615615
pb (core/fn pb [bvec b v]
616616
(core/let [pvec
@@ -779,7 +779,7 @@
779779
(let ~(vec (interleave bs gs))
780780
~@body)))))))
781781

782-
(def ^:private fast-path-protocols
782+
(def fast-path-protocols
783783
"protocol fqn -> [partition number, bit]"
784784
(zipmap (map #(symbol "cljs.core" (core/str %))
785785
'[IFn ICounted IEmptyableCollection ICollection IIndexed ASeq ISeq INext
@@ -797,7 +797,7 @@
797797
:cljs (core/* 2 b))]))
798798
[0 1])))
799799

800-
(def ^:private fast-path-protocol-partitions-count
800+
(def fast-path-protocol-partitions-count
801801
"total number of partitions"
802802
(core/let [c (count fast-path-protocols)
803803
m (core/mod c 32)]
@@ -861,46 +861,41 @@
861861
(core/defmacro some? [x]
862862
`(not (nil? ~x)))
863863

864-
;; internal - do not use.
865-
(core/defmacro ^:private coercive-not [x]
864+
(core/defmacro coercive-not [x]
866865
(bool-expr (core/list 'js* "(!~{})" x)))
867866

868-
;; internal - do not use.
869-
(core/defmacro ^:private coercive-not= [x y]
867+
(core/defmacro coercive-not= [x y]
870868
(bool-expr (core/list 'js* "(~{} != ~{})" x y)))
871869

872-
;; internal - do not use.
873-
(core/defmacro ^:private coercive-= [x y]
870+
(core/defmacro coercive-= [x y]
874871
(bool-expr (core/list 'js* "(~{} == ~{})" x y)))
875872

876-
;; internal - do not use.
877-
(core/defmacro ^:private coercive-boolean [x]
873+
(core/defmacro coercive-boolean [x]
878874
(with-meta (core/list 'js* "~{}" x)
879875
{:tag 'boolean}))
880876

881877
;; internal - do not use.
882-
(core/defmacro ^:private truth_ [x]
878+
(core/defmacro truth_ [x]
883879
(core/assert (core/symbol? x) "x is substituted twice")
884880
(core/list 'js* "(~{} != null && ~{} !== false)" x x))
885881

886-
;; internal - do not use
887-
(core/defmacro ^:private js-arguments []
882+
(core/defmacro js-arguments []
888883
(core/list 'js* "arguments"))
889884

890-
(core/defmacro ^:private js-delete [obj key]
885+
(core/defmacro js-delete [obj key]
891886
(core/list 'js* "delete ~{}[~{}]" obj key))
892887

893-
(core/defmacro ^:private js-in [key obj]
888+
(core/defmacro js-in [key obj]
894889
(core/list 'js* "~{} in ~{}" key obj))
895890

896-
(core/defmacro ^:private js-debugger
891+
(core/defmacro js-debugger
897892
"Emit JavaScript \"debugger;\" statement"
898893
[]
899894
(core/list 'do
900895
(core/list 'js* "debugger")
901896
nil))
902897

903-
(core/defmacro ^:private js-comment
898+
(core/defmacro js-comment
904899
"Emit a top-level JavaScript multi-line comment. New lines will create a
905900
new comment line. Comment block will be preceded and followed by a newline"
906901
[comment]
@@ -914,13 +909,13 @@
914909
(reduce core/str ""))
915910
" */\n"))))
916911

917-
(core/defmacro ^:private unsafe-cast
912+
(core/defmacro unsafe-cast
918913
"EXPERIMENTAL: Subject to change. Unsafely cast a value to a different type."
919914
[t x]
920915
(core/let [cast-expr (core/str "~{} = /** @type {" t "} */ (~{})")]
921916
(core/list 'js* cast-expr x x)))
922917

923-
(core/defmacro ^:private js-inline-comment
918+
(core/defmacro js-inline-comment
924919
"Emit an inline JavaScript comment."
925920
[comment]
926921
(core/list 'js* (core/str "/**" comment "*/")))
@@ -1127,7 +1122,7 @@
11271122
([x y & more] `(bit-and (bit-and ~x ~y) ~@more)))
11281123

11291124
;; internal do not use
1130-
(core/defmacro ^:private ^::ana/numeric unsafe-bit-and
1125+
(core/defmacro ^::ana/numeric unsafe-bit-and
11311126
([x y] (bool-expr (core/list 'js* "(~{} & ~{})" x y)))
11321127
([x y & more] `(unsafe-bit-and (unsafe-bit-and ~x ~y) ~@more)))
11331128

@@ -1171,15 +1166,15 @@
11711166
(core/list 'js* "(~{} | (1 << ~{}))" x n))
11721167

11731168
;; internal
1174-
(core/defmacro ^:private mask [hash shift]
1169+
(core/defmacro mask [hash shift]
11751170
(core/list 'js* "((~{} >>> ~{}) & 0x01f)" hash shift))
11761171

11771172
;; internal
1178-
(core/defmacro ^:private bitpos [hash shift]
1173+
(core/defmacro bitpos [hash shift]
11791174
(core/list 'js* "(1 << ~{})" `(mask ~hash ~shift)))
11801175

11811176
;; internal
1182-
(core/defmacro ^:private caching-hash [coll hash-fn hash-key]
1177+
(core/defmacro caching-hash [coll hash-fn hash-key]
11831178
(core/assert (clojure.core/symbol? hash-key) "hash-key is substituted twice")
11841179
`(let [h# ~hash-key]
11851180
(if-not (nil? h#)
@@ -1608,7 +1603,7 @@
16081603
(vary-meta (cons f (map #(cons (second %) (nnext %)) sigs))
16091604
merge annots)))
16101605

1611-
(core/defn- dt->et
1606+
(core/defn dt->et
16121607
([type specs fields]
16131608
(dt->et type specs fields false))
16141609
([type specs fields inline]
@@ -2661,7 +2656,7 @@
26612656
~(gen-apply-to-helper (core/inc n))))
26622657
`(throw (js/Error. "Only up to 20 arguments supported on functions"))))))
26632658

2664-
(core/defmacro ^:private gen-apply-to []
2659+
(core/defmacro gen-apply-to []
26652660
`(do
26662661
(set! ~'*unchecked-if* true)
26672662
(defn ~'apply-to [~'f ~'argc ~'args]
@@ -2691,10 +2686,10 @@
26912686
[& colls]
26922687
`(concat ~@(map #(core/list `lazy-seq %) colls)))
26932688

2694-
(core/defmacro ^:private js-str [s]
2689+
(core/defmacro js-str [s]
26952690
(core/list 'js* "''+~{}" s))
26962691

2697-
(core/defmacro ^:private es6-iterable [ty]
2692+
(core/defmacro es6-iterable [ty]
26982693
`(aset (.-prototype ~ty) cljs.core/ITER_SYMBOL
26992694
(fn []
27002695
(this-as this#
@@ -2832,7 +2827,7 @@
28322827
`(~'ns* ~(cons :refer-clojure args)))
28332828

28342829
;; INTERNAL - do not use, only for Node.js
2835-
(core/defmacro ^:private load-file* [f]
2830+
(core/defmacro load-file* [f]
28362831
`(. js/goog (~'nodeGlobalRequire ~f)))
28372832

28382833
(core/defmacro macroexpand-1
@@ -2901,7 +2896,7 @@
29012896
(set! (. ~sym ~'-cljs$lang$applyTo)
29022897
~(apply-to)))))))
29032898

2904-
(core/defmacro ^:private copy-arguments [dest]
2899+
(core/defmacro copy-arguments [dest]
29052900
`(let [len# (alength (js-arguments))]
29062901
(loop [i# 0]
29072902
(when (< i# len#)

0 commit comments

Comments
 (0)