swannodette / mies

Minimal ClojureScript project template
Eclipse Public License 1.0
369 stars 49 forks source link

"Too much recursion" when trying to reload in browser REPL #25

Closed jdeisenberg closed 9 years ago

jdeisenberg commented 9 years ago

In one terminal window, create a project:

[david@localhost mtest]$ lein new mies m060
[david@localhost mtest]$ cd m060
[david@localhost m060]$ vi src/m060/core.cljs # uncomment  (repl/connect "http://localhost:9000/repl")
[david@localhost m060]$ scripts/watch

In a second terminal window, do scripts\brepl. Open up a browser and connect, and show the web console. In a third terminal window, edit src/m060/core.cljs and add (defn cube [x] (* x x x)) ; the In the REPL: (require 'm060.core :reload)

The web console says: too much recursion

jdeisenberg commented 9 years ago

Put issue in JIRA, where it properly belongs.