Fork me on GitHub
#rewrite-clj
<
2019-11-01
>
sogaiu01:11:41

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

lread02:11:45

yup @sogaiu, that is the one!

sogaiu02:11:49

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

sogaiu03:11:24

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.

lread10:11:14

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