2014-07-22 01:09:02 +02:00
|
|
|
// Copyright (c) 2012 Ecma International. All rights reserved.
|
2015-07-17 17:42:45 +02:00
|
|
|
// This code is governed by the BSD license found in the LICENSE file.
|
2014-07-22 01:09:02 +02:00
|
|
|
|
|
|
|
/*---
|
2015-02-10 22:01:39 +01:00
|
|
|
es5id: B.2.2
|
2014-07-22 01:09:02 +02:00
|
|
|
description: >
|
|
|
|
Object.getOwnPropertyDescriptor returns data desc for functions on
|
|
|
|
built-ins (Global.unescape)
|
2016-04-22 19:07:00 +02:00
|
|
|
includes: [propertyHelper.js]
|
2014-07-22 01:09:02 +02:00
|
|
|
---*/
|
|
|
|
|
2016-04-22 19:07:00 +02:00
|
|
|
verifyWritable(this, "unescape");
|
|
|
|
verifyNotEnumerable(this, "unescape");
|
|
|
|
verifyConfigurable(this, "unescape");
|