summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/Set/prototype/entries/name.js
blob: ffcfec6df13ddd95339a06db8d5e424b73ff62bd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// Copyright (C) 2015 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-set.prototype.entries
description: >
    Set.prototype.entries ( )

    17 ECMAScript Standard Built-in Objects

includes: [propertyHelper.js]
---*/

assert.sameValue(Set.prototype.entries.name, "entries", "The value of `Set.prototype.entries.name` is `'entries'`");

verifyNotEnumerable(Set.prototype.entries, "name");
verifyNotWritable(Set.prototype.entries, "name");
verifyConfigurable(Set.prototype.entries, "name");

reportCompare(0, 0);