tor-browser

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

subclassing.js (364B)


      1 // Copyright 2015 Cubane Canada, Inc.  All rights reserved.
      2 // See LICENSE for details.
      3 
      4 /*---
      5 info: |
      6 Symbol.species is retained on subclassing
      7 author: Sam Mikes
      8 description: Symbol.species is retained on subclassing
      9 features: [Symbol.species]
     10 ---*/
     11 
     12 class MyRegExp extends RegExp {};
     13 
     14 assert.sameValue(MyRegExp[Symbol.species], MyRegExp);
     15 
     16 reportCompare(0, 0);