tor-browser

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

constructor.js (402B)


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