Re: clojurescript error

2012-05-26 Thread Alexander Kellett
A clean of temp files (namely, rm -rf resources/public/cljs) source tree should have fixed it. Just worked for me after upgrading to latest ClojureScript. On Monday, May 14, 2012 3:29:16 AM UTC+2, Murtaza Husain wrote: I am using Chris Ganger's noir-cljs. Any leads on how I could debug

Re: Clojure on PyPy

2011-11-27 Thread Alexander Kellett
On Thursday, November 17, 2011 5:09:49 PM UTC+1, tbc++ wrote: I also felt that sticking with the official Java implementation of Clojure would be more practical. It would certainly be fun to put Clojure on PyPy, though. There is one insanely off-the-wall idea I've been thinking about

Re: ClojureScript new branches - feedback please

2011-11-27 Thread Alexander Kellett
'prop-lookup'++. First thing that really tricked me up with ClojureScript is (goog.net.XhrIo/send uri #(.getResponseJson (.target %))) blowing up in my face as it isn't using getResponseJson() but rather returning the function. Ended up using (.getResponseJson (...) nil) to work around it.