function-property-descriptor.js (426B)
1 // Copyright (C) 2015 Jordan Harband. All rights reserved. 2 // This code is governed by the BSD license found in the LICENSE file. 3 4 /*--- 5 esid: sec-object.entries 6 description: Object.entries should be writable, non-enumerable, and configurable 7 author: Jordan Harband 8 includes: [propertyHelper.js] 9 ---*/ 10 11 verifyProperty(Object, "entries", { 12 writable: true, 13 enumerable: false, 14 configurable: true, 15 }); 16 17 reportCompare(0, 0);