You can reference macros defined in *clojure* files that are on your
classpath like this:

(ns my.namespace
  (:require-macros [my.macros :as my])

The ClojureScript compiler will use these macros to expand your
ClojureScript source.

Works great.

David

On Tue, Sep 13, 2011 at 6:31 PM, Timothy Baldridge <[email protected]>wrote:

> While working with ClojureScript I came across a interesting question.
> When compiling cljs files, how does Clojure handle macros? Normally
> macros are run at compile-time, but in this case the compile-time
> platform is completely different than the run time platform. My guess
> is that the compiler assumes that clojure.core.first (for instance)
> functions exactly the same for both the JVM and the JS versions of
> Clojure, but I could be wrong there. The only other possibility I can
> see is if ClojureScript has some internal JS VM it uses only for macro
> expanding.
>
> So what is the situation here?
>
> Thanks for your time,
>
> Timothy
>
> --
> “One of the main causes of the fall of the Roman Empire was
> that–lacking zero–they had no way to indicate successful termination
> of their C programs.”
> (Robert Firth)
>
> --
> You received this message because you are subscribed to the Google
> Groups "Clojure" group.
> To post to this group, send email to [email protected]
> Note that posts from new members are moderated - please be patient with
> your first post.
> To unsubscribe from this group, send email to
> [email protected]
> 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 post to this group, send email to [email protected]
Note that posts from new members are moderated - please be patient with your 
first post.
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/clojure?hl=en

Reply via email to