Bug 1583528: Delete properties in ascending order in ArrayNativeSort. r=arai

This ensures our native Array.prototype.sort implementation matches the proposed
semantics in <https://github.com/tc39/ecma262/pull/1585>. (Our self-hosted
implementation was already deleting the properties in ascending order.)

Differential Revision: https://phabricator.services.mozilla.com/D52350

--HG--
extra : moz-landing-system : lando
This commit is contained in:
André Bargull 2019-11-08 15:56:45 +00:00
Родитель d10bbb5692
Коммит c1c03d0bd5
2 изменённых файлов: 39 добавлений и 2 удалений

Просмотреть файл

@ -2354,8 +2354,8 @@ bool js::intrinsic_ArrayNativeSort(JSContext* cx, unsigned argc, Value* vp) {
}
/* Re-create any holes that sorted to the end of the array. */
while (len > n) {
if (!CheckForInterrupt(cx) || !DeletePropertyOrThrow(cx, obj, --len)) {
for (uint32_t i = n; i < len; i++) {
if (!CheckForInterrupt(cx) || !DeletePropertyOrThrow(cx, obj, i)) {
return false;
}
}

Просмотреть файл

@ -0,0 +1,37 @@
// Calls Array.prototype.sort and tests that properties are deleted in the same order in the
// native and the self-hosted implementation.
function createProxy() {
var deleted = [];
var proxy = new Proxy([, , 0], {
deleteProperty(t, pk){
deleted.push(pk);
return delete t[pk];
}
});
return {proxy, deleted};
}
function compareFn(a, b) {
return a < b ? -1 : a > b ? 1 : 0;
}
// Sort an array without a comparator function. This calls the native sort implementation.
var {proxy, deleted} = createProxy();
assertEqArray(deleted, []);
proxy.sort()
assertEqArray(deleted, ["1", "2"]);
// Now sort an array with a comparator function. This calls the self-hosted sort implementation.
var {proxy, deleted} = createProxy();
assertEqArray(deleted, []);
proxy.sort(compareFn);
assertEqArray(deleted, ["1", "2"]);
if (typeof reportCompare === "function")
reportCompare(true, true);