length.js (676B)
1 // Copyright (C) 2025 André Bargull. All rights reserved. 2 // This code is governed by the BSD license found in the LICENSE file. 3 4 /*--- 5 esid: sec-iterator.zipkeyed 6 description: > 7 Iterator.zipKeyed has a "length" property whose value is 1. 8 info: | 9 ECMAScript Standard Built-in Objects 10 11 Unless otherwise specified, the length property of a built-in 12 Function object has the attributes { [[Writable]]: false, [[Enumerable]]: 13 false, [[Configurable]]: true }. 14 features: [joint-iteration] 15 includes: [propertyHelper.js] 16 ---*/ 17 18 verifyProperty(Iterator.zipKeyed, "length", { 19 value: 1, 20 writable: false, 21 enumerable: false, 22 configurable: true, 23 }); 24 25 reportCompare(0, 0);