tor-browser

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

name.js (407B)


      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  Symbol ( [ description ] )
      8 
      9 includes: [propertyHelper.js]
     10 features: [Symbol]
     11 ---*/
     12 
     13 verifyProperty(Symbol, "name", {
     14  value: "Symbol",
     15  writable: false,
     16  enumerable: false,
     17  configurable: true
     18 });
     19 
     20 reportCompare(0, 0);