--
Note that posts from new members are moderated - please be patient with your first post.
---
You received this message because you are subscribed to a topic in the Google Groups "ClojureScript" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/clojurescript/qnRQdmu5yT8/unsubscribe.
To unsubscribe from this group and all its topics, send an email to clojurescrip...@googlegroups.com.
To post to this group, send email to clojur...@googlegroups.com.
Visit this group at http://groups.google.com/group/clojurescript.
Are you trying that with an existing project that may have a stale target directory lying around? If you can reproduce this issue after a `lein cljsbuild clean` then yes please open a ticket with a minimal project that exhibits the issue.Thanks!David
--
--
You received this message because you are subscribed to the Google
Groups "Clojure" group.
To post to this group, send email to clo...@googlegroups.com
Note that posts from new members are moderated - please be patient with your first post.
--To unsubscribe from this group, send email to
clojure+u...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/clojure?hl=en
---
You received this message because you are subscribed to the Google Groups "Clojure" group.
To unsubscribe from this group and stop receiving emails from it, send an email to clojure+u...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.
--
You received this message because you are subscribed to the Google
Groups "Clojure" group.
To post to this group, send email to clo...@googlegroups.com
Note that posts from new members are moderated - please be patient with your first post.
To unsubscribe from this group, send email to
clojure+u...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/clojure?hl=en
---
You received this message because you are subscribed to the Google Groups "Clojure" group.
To unsubscribe from this group and stop receiving emails from it, send an email to clojure+u...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.
Previously in ClojureScript, strings could be invoked to look themselves up as keys inside maps, just like keywords. So both (:a {:a 10 "b" 20}) and ("b" {:a 10 "b" 20}) would work (the latter will not work in vanilla Clojure). We had a few places where we (Zenbox) were doing this without realizing it (think (defn my-fn [k] (k @profiles)) and k ends up being a string).
A large percentage of tests for my core.async based library are failing. Any thoughts?
--
Note that posts from new members are moderated - please be patient with your first post.
---
You received this message because you are subscribed to the Google Groups "ClojureScript" group.
To unsubscribe from this group and stop receiving emails from it, send an email to clojurescrip...@googlegroups.com.
You received this message because you are subscribed to the Google Groups "ClojureScript" group.
To unsubscribe from this group and stop receiving emails from it, send an email to clojurescrip...@googlegroups.com.
You received this message because you are subscribed to a topic in the Google Groups "ClojureScript" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/clojurescript/qnRQdmu5yT8/unsubscribe.
To unsubscribe from this group and all its topics, send an email to clojurescrip...@googlegroups.com.
--
Note that posts from new members are moderated - please be patient with your first post.
---
You received this message because you are subscribed to a topic in the Google Groups "ClojureScript" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/clojurescript/qnRQdmu5yT8/unsubscribe.
To unsubscribe from this group and all its topics, send an email to clojurescrip...@googlegroups.com.
I can't get core.async working with 0.0-1877+: nothing is executed in go block without any warnings and errors. When I use 0.0-1859 everything goes fine. (I've surely done lein cljsbuild clean)
Clone the core.async to a convenient location. cd into the repo and run lein install.
Then add [core.async "0.1.0-SNAPSHOT"] as your dependency.
That's exactly what David did for his async-tests repo.
This pair is passing my codebase's unit and integration tests.
[org.clojure/clojurescript "0.0-1909"]
[org.clojure/core.async "0.1.242.0-44b1e3-alpha"]