rewrite-clj

https://github.com/clj-commons/rewrite-clj
2019-11-01T01:46:41.006900Z

@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?

lread 2019-11-01T02:37:45.007600Z

yup @sogaiu, that is the one!

2019-11-01T02:38:36.007900Z

tnx

2019-11-01T02:48:49.008800Z

@lee oh, that might have done the trick -- i'll need to verify in detail, but at least the build seems to have succeeded.

2019-11-01T03:20:24.011700Z

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.

lread 2019-11-01T10:57:14.013900Z

that sounds promising @sogaiu, thanks so much for your perseverance on this!