tor-browser

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

prop-desc.js (578B)


      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: 19.4.2.8
      5 description: >
      6    `Symbol.replace` property descriptor
      7 info: |
      8    This property has the attributes { [[Writable]]: false, [[Enumerable]]:
      9    false, [[Configurable]]: false }.
     10 includes: [propertyHelper.js]
     11 features: [Symbol.replace]
     12 ---*/
     13 
     14 assert.sameValue(typeof Symbol.replace, 'symbol');
     15 verifyProperty(Symbol, 'replace', {
     16  writable: false,
     17  enumerable: false,
     18  configurable: false,
     19 });
     20 
     21 reportCompare(0, 0);