sixthnormal / clj-3df

Clojure(Script) client for Declarative Dataflow.
Eclipse Public License 2.0
328 stars 13 forks source link

Cljs: clj_3df.compiler.trace_bindings is undefined #39

Open theronic opened 5 years ago

theronic commented 5 years ago

Tried latest master https://github.com/comnik/clj-3df/commit/80fa1845053dc902f85e39bb94a102eba1b43fe2 .cljc files in a Cljs project. Getting some macro errors because trace-bindings is a macro. I'm guessing needs some :require-macros in the cljs version

comnik commented 5 years ago

Interesting, I don't get that error from within a CLJS project, but definitely seems like a problem. Will take a look.

theronic commented 5 years ago

Is there a Cljs project example? Might be because I'm running Clojure 1.10.

Here's what I did: copied folder src/clj_3df into a Cljs project src folder and (:require [clj-3df.core :as df]). That's where I get the macro issues. Server-side works, though.

Super excited for this to come together!