cloroutine
cloroutine copied to clipboard
Coroutine support for clojure
Results
12
cloroutine issues
Sort by
recently updated
recently updated
newest added
This interop syntax is incorrectly interpreted as a function call and throws `#object[TypeError TypeError: PromiseResolve called on non-object]` due to unbound `this`. ```clojure ((cr {} (js/Promise.resolve "hi"))) ``` Note :...
bug
Repro : ``` (def tls (ThreadLocal.)) (macroexpand '(cloroutine.core/cr {} (.get tls))) ``` `(.get tls)` is turned into `(. tls -get)`