prop-desc.js (474B)
1 // Copyright (C) 2019 Bocoup. All rights reserved. 2 // This code is governed by the BSD license found in the LICENSE file. 3 4 /*--- 5 esid: sec-undefined 6 description: Property descriptor of undefined 7 info: | 8 This property has the attributes { [[Writable]]: false, [[Enumerable]]: 9 false, [[Configurable]]: false }. 10 includes: [propertyHelper.js] 11 ---*/ 12 13 verifyProperty(this, "undefined", { 14 enumerable: false, 15 writable: false, 16 configurable: false 17 }); 18 19 reportCompare(0, 0);