mirror of
https://github.com/tc39/test262.git
synced 2025-11-28 17:43:19 +01:00
52 lines
1.0 KiB
JavaScript
52 lines
1.0 KiB
JavaScript
// Copyright (C) 2025 André Bargull. All rights reserved.
|
|
// This code is governed by the BSD license found in the LICENSE file.
|
|
|
|
/*---
|
|
esid: sec-iterator.zipkeyed
|
|
description: >
|
|
Deleted properties are skipped in "iterables" iteration.
|
|
info: |
|
|
Iterator.zipKeyed ( iterables [ , options ] )
|
|
...
|
|
10. Let allKeys be ? iterables.[[OwnPropertyKeys]]().
|
|
11. Let keys be a new empty List.
|
|
12. For each element key of allKeys, do
|
|
a. Let desc be Completion(iterables.[[GetOwnProperty]](key)).
|
|
...
|
|
c. If desc is not undefined and desc.[[Enumerable]] is true, then
|
|
...
|
|
includes: [compareArray.js]
|
|
features: [joint-iteration]
|
|
---*/
|
|
|
|
var log = [];
|
|
|
|
var iterables = {
|
|
get a() {
|
|
log.push("get a");
|
|
|
|
// Delete property "b".
|
|
delete iterables.b;
|
|
|
|
return [];
|
|
},
|
|
get b() {
|
|
throw new Test262Error("unexpected get b");
|
|
},
|
|
get c() {
|
|
log.push("get c");
|
|
|
|
// Add new property "d".
|
|
iterables.d = null;
|
|
|
|
return [];
|
|
},
|
|
};
|
|
|
|
Iterator.zipKeyed(iterables);
|
|
|
|
assert.compareArray(log, [
|
|
"get a",
|
|
"get c",
|
|
]);
|