Is code that follows an await statement supposed to get executed in
the same tick in which the statement's awaited promise is resolved?
F.e.:
```js
let resolve = null
const somePromise = new Promise(r => resolve = r)
~async function() {
await somePromise
doSomething()
}()
// ... time passes
resolve()
```
Should `doSomething()` fire in that same tick as when `resolve()` is
called? I already know that if this is true, there's at least one
exception: `await Promise.resolve()`, in that the await statement must
still defer to a future tick even though the given Promise is already
resolved. I suppose I'm asking for cases where the await statement's
promise is unresolved.
- Joe
_______________________________________________
es-discuss mailing list
[email protected]
https://mail.mozilla.org/listinfo/es-discuss