blob: 965a0d348f6510578db469f098703cfc337763e8 [file] [log] [blame]
// 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: [propertyHelper.js]
---*/
verifyProperty(RegExp.prototype, "compile", {
enumerable: false,
writable: true,
configurable: true
});