blob: f9426e10f83e7d5ea7c0544fa9dfea83c5a23dee [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.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);