summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/RegExp/prototype/sticky/prop-desc.js
blob: 349219513bafc104ba8747d3cfaec49553a2a9f0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// 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: >
    `sticky` property descriptor
info: |
    RegExp.prototype.sticky is an accessor property whose set accessor
    function is undefined.
---*/

var desc = Object.getOwnPropertyDescriptor(RegExp.prototype, 'sticky');

assert.sameValue(desc.set, undefined);
assert.sameValue(typeof desc.get, 'function');

reportCompare(0, 0);