Small fixes
A selection of 80 fixes from 174 pull requests.
7.Cleanup after a throw
The use callback ran before its cleanup handler was installed. If it threw while constructing an Effect, release was skipped. Suspending the callback fixes the order.
11restore(use(a)),suspend(() => restore(use(a))),