clojurescript
clojurescript copied to clipboard
Clojure to JS compiler (patched to allow compiling of compiler to ClojureScript)
cljs.user=> (mod -3 12) -3 The correct answer should be 9.
I cannot build using `./script/compile`; I get this: ``` # There is insufficient memory for the Java Runtime Environment to continue. # Native memory allocation (malloc) failed to allocate 1879048192...
The bootstrap script was failing to fetch the Closure compiler jar because it was using an outdated download URL. I updated the download URL, allowing the bootstrap script to run...
I've finally tracked down the issues to try/catch and surgically bisected out the relevant changes that were made to the master fork of Clojurescript for `CLJS613`. This unifies the `try`/`catch`...
Applied CLJS-417 from https://github.com/clojure/clojurescript/commit/14bd16ef5894458a3709ebfee3e78a876938bfa6 This corrects the lack of `js-mod` that was causing `core.async` to break.
Implement CLJS-495 on the clojure version of the compiler by applying https://github.com/clojure/clojurescript/commit/3ee148acac436dd489396fc6783ba72bbd7ff79f -- on the cljs version, it's a `defn` that calls `goog/typeOf`.
I am trying to get core.async built with the compiler in the cljsc-in-cljsc tree. It looks like it takes exception to the `js` namespace for catch. https://github.com/clojure/core.async/blob/master/src/main/clojure/cljs/core/async.cljs#L700 ``` (catch js/Object...
The code base was forked from upstream ClojureScript several months ago and has not been merged with it since then. One of the big features that is being added to...
I believe this is a goal, but not sure what's are the blockers to get there. Maybe we can discuss and link remaining issues here.
The web editor Pentadactyl has a feature for eval-ing javascript source files. I tried to eval the files of the demo to obtain the repl but with not luck. Any...