Bug 1892041 - Part 2: Update test262. r=spidermonkey-reviewers,dminor
[gecko.git] / js / src / tests / test262 / built-ins / WeakSet / constructor.js
blob21e8e80f7e1522e1303205f843f06e55556217de
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-weakset-constructor
5 description: >
6   The WeakSet constructor is the %WeakSet% intrinsic object and the initial
7   value of the WeakSet property of the global object.
8 ---*/
10 assert.sameValue(
11   typeof WeakSet, 'function',
12   'typeof WeakSet is "function"'
15 reportCompare(0, 0);