How do I deal with required Clojurescript code from Clojurescript macros?
问题 Let us say I have a X.clojurescript and a X.clojure namespace. Everything in X.clojurescript is Clojurescript code, everything in X.clojure is Clojure code. Unfortunately, I cannot define macros directly in Clojurescript, I have to define them in Clojure and then bring them into a Clojurescript namespace using (ns X.clojurescript.abc (:require-macros [X.clojure.def :as clj])) This is fine. However, what if the macro (defined in X.clojure) is going to need to reference something defined in a