You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add emscripten_promise_await_unchecked API (#26954)
This works with ASYNCIFY like the existing `emscripten_promise_await`
but is a lot simpler since it only handles the fulfilled case.
In this case we can simple return the result directly without needing to
allocate a `em_promise_result_t` struct to deal with the out param (i.e.
no memory access needed).
This can be useful in cases where we don't want to handle the rejections
case.
Split out from #26947
0 commit comments