blob: 3d89d09f32e65f92175ede0337bc8c0d924bb890 [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.length, 0, "The value of `Set.prototype.values.length` is `0`");
verifyNotEnumerable(Set.prototype.values, "length");
verifyNotWritable(Set.prototype.values, "length");
verifyConfigurable(Set.prototype.values, "length");