Each pipeline will? Or all pipelines share one?
each
is it possible to have a macro emit <!
when used within a go
-block, and it park correctly?
I'm running into some issues and I realized that go
probably expands and analyzes the body before my macro that emits <!
runs
hmm nvm that appears to be what cljs.core.async.interop/<p!
does
I must have some other error in my code
The go macro does a complete macro expansion (or attempts one) before doing its thing
yes, it turned out to be other unrelated malarkey - was getting errors about keywords not being IObjs when the CLJS analyzer was doing something with a go
block. fixed it by fully qualifying namespaces when emitting go
and <!
:S