summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/String/prototype/Symbol.iterator/prop-desc.js
blob: afea256f3e5a2c07e7f5f27741af88a6b5d2591e (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: 25.1.3.27
description: 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.
features: [Symbol.iterator]
includes: [propertyHelper.js]
---*/

assert.sameValue(typeof String.prototype[Symbol.iterator], 'function');
verifyNotEnumerable(String.prototype, Symbol.iterator);
verifyWritable(String.prototype, Symbol.iterator);
verifyConfigurable(String.prototype, Symbol.iterator);

reportCompare(0, 0);