@lee np - re: comments from you and borkdude at #calva-dev > I did recently fix a bug where I was using the wrong clojure reader in one spot. > that can surely make a difference. using tools.reader/... vs tools.reader.edn/... can make things go bad with graalvm are there any relevant commits i might take a look at?
ah, may be it's this one: https://github.com/lread/rewrite-cljs-playground/commit/630ac1074a87185e997f4250d661235aa3d78b82
yup @sogaiu, that is the one!
tnx
@lee oh, that might have done the trick -- i'll need to verify in detail, but at least the build seems to have succeeded.
atm, my take is that at least the build issue i was experiencing may be solved by using:
[clojure.tools.reader.edn :as edn]
instead of:
[clojure.tools.reader :as edn]
in parser/keyword.cljc
since you've already made that change, may be the particular situation i was encountering is taken care of.
hopefully, i can exhibit something that's clearer soon.that sounds promising @sogaiu, thanks so much for your perseverance on this!