15.2.3.6-4-521.js (853B)
1 // Copyright (c) 2012 Ecma International. All rights reserved. 2 // This code is governed by the BSD license found in the LICENSE file. 3 4 /*--- 5 es5id: 15.2.3.6-4-521 6 description: > 7 ES5 Attributes - [[Get]] attribute of accessor property ([[Get]] 8 is a Function, [[Set]] is undefined, [[Enumerable]] is false, 9 [[Configurable]] is false) is the expected function 10 ---*/ 11 12 var obj = {}; 13 14 var getFunc = function() { 15 return 1001; 16 }; 17 18 Object.defineProperty(obj, "prop", { 19 get: getFunc, 20 set: undefined, 21 enumerable: false, 22 configurable: false 23 }); 24 25 var propertyDefineCorrect = obj.hasOwnProperty("prop"); 26 var desc = Object.getOwnPropertyDescriptor(obj, "prop"); 27 28 assert(propertyDefineCorrect, 'propertyDefineCorrect !== true'); 29 assert.sameValue(desc.get, getFunc, 'desc.get'); 30 assert.sameValue(obj.prop, 1001, 'obj.prop'); 31 32 reportCompare(0, 0);