blob: 7c88b6b9248d19ac6e328d3e985b2792f450fab4 [file] [log] [blame]
// Copyright (c) 2012 Ecma International. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
es5id: B.2.5
description: >
Object.getOwnPropertyDescriptor returns data desc for functions on
built-ins (Date.prototype.setYear)
includes: [propertyHelper.js]
---*/
verifyProperty(Date.prototype, "setYear", {
enumerable: false,
writable: true,
configurable: true
});