tor-browser

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

symbol.js (485B)


      1 // Copyright (C) 2017 Aleksey Shvayka. All rights reserved.
      2 // This code is governed by the BSD license found in the LICENSE file.
      3 
      4 /*---
      5 esid: sec-symbol-constructor
      6 description: >
      7  The Symbol constructor is the %Symbol% intrinsic object and the initial
      8  value of the Symbol property of the global object.
      9 
     10 includes: [propertyHelper.js]
     11 features: [Symbol]
     12 ---*/
     13 
     14 verifyProperty(this, "Symbol", {
     15  writable: true,
     16  enumerable: false,
     17  configurable: true
     18 });
     19 
     20 reportCompare(0, 0);