blob: 7c271ba0561cab83b4a247ed3a250337a5cea966 [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.
/*---
es6id: 21.2.5.12
description: >
RegExp.prototype.sticky name
info: |
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.
includes: [propertyHelper.js]
---*/
var descriptor = Object.getOwnPropertyDescriptor(RegExp.prototype, 'sticky');
assert.sameValue(
descriptor.get.name,
'get sticky'
);
verifyNotEnumerable(descriptor.get, 'name');
verifyNotWritable(descriptor.get, 'name');
verifyConfigurable(descriptor.get, 'name');