• caitpotter88's avatar
    [promise] Make Promise.all match spec, and always respect [[AlreadyResolved]] · 7459d8ce
    caitpotter88 authored
    Testing the promise status is not enough to ensure that resolve functions are
    called only once.
    
    This change adds a similar version of the [[AlreadyResolved]] slot to the
    Promise.all resolve element function, and also ensures that [[AlreadyResolved]]
    is respected in the Promise executor, and when resolving thenables. This means
    replacing PromiseReject() shortcuts with promiseCapability.reject(), which has
    an [[AlreadyResolved]] record in a context slot.
    
    Also ensures that changes to the list accumulator in Promise.all() is not observable
    via accessors installed in the Array prototype chain, using the same mechanism used
    in several Array methods.
    
    Fixes the following Test262 tests:
    - built-ins/Promise/all/call-resolve-element-items.js
    - built-ins/Promise/all/call-resolve-element.js
    - built-ins/Promise/all/call-resolve-element-after-return.js
    - built-ins/Promise/all/same-reject-function.js
    - built-ins/Promise/all/resolve-from-same-thenable.js
    - built-ins/Promise/all/resolve-before-loop-exit.js
    - built-ins/Promise/all/resolve-before-loop-exit-from-same.js
    - built-ins/Promise/exception-after-resolve-in-executor.js
    - built-ins/Promise/exception-after-resolve-in-thenable-job.js
    - built-ins/Promise/all/does-not-invoke-array-setters.js
    
    BUG=v8:4633
    LOG=N
    R=littledan@chromium.org, cbruni@chromium.org
    
    Review URL: https://codereview.chromium.org/1534813005
    
    Cr-Commit-Position: refs/heads/master@{#33163}
    7459d8ce
Name
Last commit
Last update
benchmarks Loading commit data...
build Loading commit data...
docs Loading commit data...
include Loading commit data...
infra Loading commit data...
samples Loading commit data...
src Loading commit data...
test Loading commit data...
testing Loading commit data...
third_party/binutils Loading commit data...
tools Loading commit data...
.clang-format Loading commit data...
.gitignore Loading commit data...
.ycm_extra_conf.py Loading commit data...
AUTHORS Loading commit data...
BUILD.gn Loading commit data...
ChangeLog Loading commit data...
DEPS Loading commit data...
LICENSE Loading commit data...
LICENSE.strongtalk Loading commit data...
LICENSE.v8 Loading commit data...
LICENSE.valgrind Loading commit data...
Makefile Loading commit data...
Makefile.android Loading commit data...
Makefile.nacl Loading commit data...
OWNERS Loading commit data...
PRESUBMIT.py Loading commit data...
README.md Loading commit data...
WATCHLISTS Loading commit data...
codereview.settings Loading commit data...
snapshot_toolchain.gni Loading commit data...