tor-browser

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

constructor.js (426B)


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