| // Copyright (c) 2012 Ecma International. All rights reserved. |
| // This code is governed by the BSD license found in the LICENSE file. |
| ES5 Attributes - property ([[Get]] is a Function, [[Set]] is |
| undefined, [[Enumerable]] is true, [[Configurable]] is true) is |
| var propertyFound = false; |
| var getFunc = function () { |
| Object.defineProperty(obj, "prop", { |
| var propertyDefineCorrect = obj.hasOwnProperty("prop"); |
| var desc = Object.getOwnPropertyDescriptor(obj, "prop"); |
| assert(propertyFound, 'Property not found'); |
| assert(propertyDefineCorrect, 'propertyDefineCorrect !== true'); |
| assert.sameValue(desc.enumerable, true, 'desc.enumerable'); |