Bug 1892041 - Part 2: Update test262. r=spidermonkey-reviewers,dminor
[gecko.git] / js / src / tests / test262 / built-ins / WeakMap / prototype / delete / name.js
blob129943adcf402bb553082965e39cb61d9b68bfb2
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-weakmap.prototype.delete
5 description: >
6   WeakMap.prototype.delete.name value and writability.
7 info: |
8   WeakMap.prototype.delete ( value )
10   17 ECMAScript Standard Built-in Objects
12 includes: [propertyHelper.js]
13 ---*/
15 verifyProperty(WeakMap.prototype.delete, "name", {
16   value: "delete",
17   writable: false,
18   enumerable: false,
19   configurable: true
20 });
22 reportCompare(0, 0);