mirror of https://github.com/tc39/test262.git
22 lines
614 B
JavaScript
22 lines
614 B
JavaScript
// Copyright (c) 2012 Ecma International. All rights reserved.
|
|
// This code is governed by the BSD license found in the LICENSE file.
|
|
|
|
/*---
|
|
es6id: B.2.5.1
|
|
description: >
|
|
Object.getOwnPropertyDescriptor returns data desc for functions on
|
|
built-ins (RegExp.prototype.compile)
|
|
includes: [runTestCase.js]
|
|
---*/
|
|
|
|
function testcase() {
|
|
var desc = Object.getOwnPropertyDescriptor(RegExp.prototype, "compile");
|
|
if (desc.value === RegExp.prototype.compile &&
|
|
desc.writable === true &&
|
|
desc.enumerable === false &&
|
|
desc.configurable === true) {
|
|
return true;
|
|
}
|
|
}
|
|
runTestCase(testcase);
|