@borkdude couldn't find any issues w/ async/await patch, I added some additional simple tests
async/await support merged - would be good for folks to play around with
thanks for the merge.
one more idea I had is to improve the async testing story.
the cljs.test async macro now has support for async/await. we can just document this:
(deftest foo
(async done
(try
(let [x (await 10)] ...)
(finally done)))
or we could support
(deftest ^:async foo
(let [x (await 10)] ...))
to get rid of the ceremony by automatically doing the first version based on the metadatayeah, something to think about