-
Notifications
You must be signed in to change notification settings - Fork 414
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
self-hosted clojurescript #361
Comments
@sonwh98 With respect to your point (1) above, in self-hosted ClojureScript, macros are defined in Perhaps your last question above is answered by https://github.com/clojure/clojurescript/wiki/Bootstrapped-ClojureScript-FAQ#with-bootstrapped-clojurescript-can-we-now-have-namespaces-that-mix-both-macros-and-functions |
I'd like to add self-host test case at some point to the project. Those interop macros will probably be removed at some point which hopefully will help with this: #325. |
With respect to self-host test cases, support for |
What's the status of self-hosted cljs? Both Lumo and Planck seem a bit old and haven't been updated to the latest clojurescript versions? |
I am trying to get reagent working in self-hosted clojurescript. I am encountering two problems.
macros are defined in .clj files. For example, there is reagent.interop.cljs and reagent.interop.clj . the cljs does nothing but (:require-macros [reagent.interop]) . To fix this problem, I just copied the .clj into the .cljs
My load-fn does not know where to extract cljsjs dependencies. I asked a question here about it https://groups.google.com/forum/#!topic/clojurescript/E7H1cuZQpys
Now that clojurescript can run macros, is there a reason why macro expansions can't be done in cljs instead of clj?
The text was updated successfully, but these errors were encountered: