(:require-macros
[cljs.core.async.macros :refer [go]]
))
:but when I compile I get:
{:error #error {:message "Could not eval cljs.core.async.macros", :data {:tag :cljs/analysis-error}, :cause #error {:message "Invalid token: //", :data {:type :reader-exception, :line 11, :column 27, :file cljs.core.async.macros}}}}
I am trying to get core.async (go macros to work in cljs in cljs but they seem to do nothing. I try fully qualifying them as well with (cljs.core.async.macros/go but it makes no difference. Anyone else have core.async working with cljs in cljs?
--
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.
To post to this group, send email to clojur...@googlegroups.com.
Visit this group at https://groups.google.com/group/clojurescript.
Ok, but how does it work right now. Are you the main contributor for core.async for ClojureScript, or is someone at Cognitect working on it as well?
Ok, makes sense. Is there a roadmap or something for Clojurescript in Clojurescript so I can get a better sense of what it will and won't support in the future?
Hi Zubair,
Basic `core.async` constructs now work in self-hosted ClojureScript in the fork I've been messing with. See https://gist.github.com/mfikes/22f553d8c9186dcc613e1263ca9deeda
- Mike
i know I have been pushing for core.async to be pushed into master but I have since changed my mind as i have seen that running macros in bootstrapped clojurescript is very slow