summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/RegExp/prototype/Symbol.search/prop-desc.js
blob: c38f0f62d8c84e4cdca08f1b208d57372ebca2de (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// 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.9
description: RegExp.prototype[Symbol.search] property descriptor
info: |
    ES6 Section 17

    Every other data property described in clauses 18 through 26 and in Annex
    B.2 has the attributes { [[Writable]]: true, [[Enumerable]]: false,
    [[Configurable]]: true } unless otherwise specified.
includes: [propertyHelper.js]
features: [Symbol.search]
---*/

verifyNotEnumerable(RegExp.prototype, Symbol.search);
verifyWritable(RegExp.prototype, Symbol.search);
verifyConfigurable(RegExp.prototype, Symbol.search);

reportCompare(0, 0);