Fork me on GitHub
#squint
<
2022-12-24
>
borkdude16:12:48

I set up mirroring the compiler-common/squint subdirectory in the https://github.com/squint-cljs/squint repo - so all code / commits are visible there

borkdude16:12:32

I'll do the same for cherry

borkdude16:12:26

This trickery took me all day due to github permissions being so hard to debug 😞

alexdavis17:12:34

Interestingly you can't always replace .- with a keyword:

(set! (.-current foo) e) => foo["current"] = e;
which works, but
(set! (:current foo) e) => get(foo, "current") = e;
which isn't valid js

borkdude19:12:07

yep, that's expected ;)