[heycam/webidl] "promise-calling" replacement (#795)

There used to be a thing called "promise-calling", defined as:

> The result of <dfn id="promise-calling">promise-calling</dfn> <var>f</var>(...<var>args</var>) is:
>
> - If the call returns a value <var>v</var>, the result of <a href="#resolved-as-a-promise">resolving</a> <var>v</var> as a promise.
> - If the call throws an exception <var>e</var>, a promise <a href="#a-promise-rejected-with">rejected with</a> <var>e</var>.

Fetch uses this in https://fetch.spec.whatwg.org/#concept-construct-readablestream. What's the suggested replacement? Is it waiting for `ReadableStream` to become an IDL construct as well? Should I simply wait for that to happen and remove the broken reference for now or turn it into an XXX or some such?

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/heycam/webidl/issues/795

Received on Wednesday, 11 September 2019 14:41:34 UTC