blob: 4f525e35640d0717504e08aca401be51b366c241 [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.forEach
description: >
Set.prototype.forEach ( callbackfn [ , thisArg ] )
The length property of the forEach method is 1.
includes: [propertyHelper.js]
---*/
assert.sameValue(Set.prototype.forEach.length, 1, "The value of `Set.prototype.forEach.length` is `1`");
verifyNotEnumerable(Set.prototype.forEach, "length");
verifyNotWritable(Set.prototype.forEach, "length");
verifyConfigurable(Set.prototype.forEach, "length");