Bug 1892041 - Part 2: Update test262. r=spidermonkey-reviewers,dminor
[gecko.git] / js / src / tests / test262 / built-ins / Set / prototype / add / name.js
blobae4e54bbe1f127db873741190d71aec07bd7405e
1 // Copyright (C) 2015 the V8 project authors. All rights reserved.
2 // This code is governed by the BSD license found in the LICENSE file.
3 /*---
4 esid: sec-set.prototype.add
5 description: >
6     Set.prototype.add ( value )
8     17 ECMAScript Standard Built-in Objects
10 includes: [propertyHelper.js]
11 ---*/
13 verifyProperty(Set.prototype.add, "name", {
14   value: "add",
15   writable: false,
16   enumerable: false,
17   configurable: true
18 });
20 reportCompare(0, 0);