Skip to content

Commit

Permalink
CLJS-285: fix type hints on TransientHashMap's fields
Browse files Browse the repository at this point in the history
  • Loading branch information
michalmarczyk authored and David Nolen committed May 31, 2012
1 parent f5a0006 commit 8e7e10f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/cljs/cljs/core.cljs
Expand Up @@ -4640,10 +4640,10 @@ reduces them without incurring seq initialization"
(recur (inc i) (assoc! out (aget ks i) (aget vs i)))
(persistent! out))))))

(deftype TransientHashMap [^{:mutable true :tag 'boolean} edit
(deftype TransientHashMap [^:mutable ^boolean edit
^:mutable root
^:mutable count
^{:mutable true :tag 'boolean} has-nil?
^:mutable ^boolean has-nil?
^:mutable nil-val]
Object
(conj! [tcoll o]
Expand Down

0 comments on commit 8e7e10f

Please sign in to comment.