2015-05-19 18:48:52 +02:00
|
|
|
// Copyright (C) 2015 the V8 project authors. All rights reserved.
|
|
|
|
// This code is governed by the BSD license found in the LICENSE file.
|
|
|
|
/*---
|
2021-12-07 17:00:43 +01:00
|
|
|
esid: sec-set-constructor
|
2015-05-19 18:48:52 +02:00
|
|
|
description: >
|
|
|
|
Set ( [ iterable ] )
|
|
|
|
|
|
|
|
17 ECMAScript Standard Built-in Objects
|
|
|
|
|
|
|
|
includes: [propertyHelper.js]
|
|
|
|
---*/
|
|
|
|
|
|
|
|
assert.sameValue(Set.name, "Set", "The value of `Set.name` is `'Set'`");
|
|
|
|
|
|
|
|
verifyNotEnumerable(Set, "name");
|
|
|
|
verifyNotWritable(Set, "name");
|
|
|
|
verifyConfigurable(Set, "name");
|