blob: 5797a17b29b024a86a7737f6d5f7349e1dcaee26 [file] [log] [blame]
// Copyright (C) 2015 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-get-regexp.prototype.flags
description: >
get RegExp.prototype.flags.name is "get flags".
info: |
get RegExp.prototype.flags
17 ECMAScript Standard Built-in Objects
Functions that are specified as get or set accessor functions of built-in
properties have "get " or "set " prepended to the property name string.
Unless otherwise specified, the name property of a built-in function object,
if it exists, has the attributes { [[Writable]]: false, [[Enumerable]]: false,
[[Configurable]]: true }.
includes: [propertyHelper.js]
---*/
var get = Object.getOwnPropertyDescriptor(RegExp.prototype, 'flags').get;
verifyProperty(get, 'name', {
value: 'get flags',
writable: false,
enumerable: false,
configurable: true,
});