Closed ulsa closed 9 years ago
I attached to CLJS-1334 a clojurescript patch for the issue with the for macro.
@asheldo I tested it with cljs-bootstrap and see it is resolved there. I couldn't confirm it being fixed with Replete (still getting the recur
error).
@mfikes I need to update Xcode etc in order to try this with Replete/simulator.
I did better testing this time, still not with replete, just with cljs-bootstrap. Patch v2 is uploaded -- fix is to the when-first reference in the core.cljc for defmacro.
@asheldo Your latest patch works for me.
Fixed for (for [x [1] y [2]] y)
(for [x 1 y 2] y)
crashes with "Can't recur here"