leonoel / cloroutine

Coroutine support for clojure
Eclipse Public License 2.0
230 stars 10 forks source link

reflective method call generates field access #24

Open leonoel opened 1 year ago

leonoel commented 1 year ago

Repro :

(def tls (ThreadLocal.))
(macroexpand '(cloroutine.core/cr {} (.get tls)))

(.get tls) is turned into (. tls -get)