blob: e0cc04bda4e5a50c2b5bc53ad9fb21fe7193e947 [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.
/*---
esid: sec-set.prototype.values
description: >
Set.prototype.values ( )
17 ECMAScript Standard Built-in Objects
includes: [propertyHelper.js]
---*/
assert.sameValue(Set.prototype.values.name, "values", "The value of `Set.prototype.values.name` is `'values'`");
verifyNotEnumerable(Set.prototype.values, "name");
verifyNotWritable(Set.prototype.values, "name");
verifyConfigurable(Set.prototype.values, "name");