Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
async/await: Don't trigger uncaught rejection handlers on throwaway P…
…romises This patch implements a bug fix to the async/await specification described at tc39/ecma262#692 (comment) Namely, the intermediate values of Promises may be rejected, and they do not have .then called on them anymore (now that the memory leak is fixed), but they do not correspond do unhandled rejections. This change has been tested manually with integration with Blink; once it is checked in and rolled, then further tests can be added on the Blink side for the uncaught rejection handler and async/await. BUG=v8:4483 Review-Url: https://codereview.chromium.org/2338273007 Cr-Commit-Position: refs/heads/master@{#39480}
- Loading branch information