Re: [ClojureScript] are Vars available for macros? Println from macros?

2014-07-07 Thread Nahuel Greco
just for the record, it seems you can resolve CLJS vars at compile time to get their metadata by using (cljs.analyzer/resolve-var (dissoc &env :locals) varsym) (thanks @w01fe*)* Saludos, Nahuel Greco. On Sat, May 31, 2014 at 12:43 PM, Nahuel Greco wrote: > You already answered the println ques

[ClojureScript] Om SPA architecture

2014-07-07 Thread Ahmad Hammad
Hi, Are there any good examples of how to structure and architect a medium to large CLJS single page app using Om. I am particularly interested in: a) How data is synced to a server API (assuming the backend might not be Clojure, and therefor probably expect JSON rather than EDN). b) Is Facebo

Re: [ClojureScript] Re: ClojureScript & Clojure 1.6.0

2014-07-07 Thread David Nolen
Those are just warnings they shouldn't prevent you from generating the code. ClojureScript exposes Closure Compiler warning suppression. If you find these particular warnings annoying you can toggle them: :closure-warnings {:check-useless-code :off} should do the trick in your build settings. Da