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