Re: If Clojure is to blame for the majority of the startup time, why doesn't ClojureScript proportionally slow down the JavaScript startup time also?

2018-01-25 Thread Stephen Nelson
is 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 unsubscribe from this group and stop receiving emails from it, send an > email to clojure+unsubscr...@google

Re: Lazy Flatten; One seq at a Time

2017-11-22 Thread Stephen Nelson
ups "Clojure" group. >>> >> To post to this group, send email to clo...@googlegroups.com >>> >> >>> Note that posts from new members are moderated - please be patient with >>> your first post. >>> To unsubscribe from this group, send emai

Re: Understanding init (the zero arity function) for transducers.

2016-03-09 Thread Stephen Nelson
This was discussed further in http://dev.clojure.org/jira/browse/CLJ-1569 On Wed, Mar 9, 2016 at 3:43 PM Patrick Curran wrote: > Thanks Alex, > > If you ever do get a chance, I'd be curious to know what it was. The more > I think about it the more I think Dan is correct. Also "scan" seems like a

Re: Implementing Clojure

2016-02-28 Thread Stephen Nelson
You could also consider implementing an interpreter On Mon, Feb 29, 2016 at 8:31 AM, Mark Engelberg wrote: > Look here for some compliance tests: > https://github.com/clojure/clojure/tree/master/test/clojure/test_clojure > > On Sun, Feb 28, 2016 at 10:40 AM, evins.mi...@gmail.com < > evins.mi...

Re: [ClojureScript] [ANN] Clojure 1.7.0-RC1 now available

2015-05-29 Thread Stephen Nelson
I think I might have found a bug that affects multimethod dispatch when using AOT. I've created an example repository: https://github.com/sfnelson/clj-mm-dispatch To me it seems similar to CLJ-979, my hypothesis is that defmethods are using the wrong classloader to get class references. Is anyone

Re: Question about ClojureScript Testing

2015-02-11 Thread Stephen Nelson
That's really not the answer Elric is looking for. Figwheel does all the things you're talking about but doesn't provide a javascript execution environment, which is required for running tests (which you might want for testing in a CI environment, for example). If you want a purely leiningen/JVM s