tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

constructor.js (410B)


      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-constructor
      5 description: >
      6    The Set constructor is the %Set% intrinsic object and the
      7    initial value of the Set property of the global object.
      8 ---*/
      9 
     10 assert.sameValue(typeof Set, "function", "`typeof Set` is `'function'`");
     11 
     12 reportCompare(0, 0);