tor-browser

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

RegExp-leading-escape.js (485B)


      1 // Copyright 2009 the Sputnik authors.  All rights reserved.
      2 // This code is governed by the BSD license found in the LICENSE file.
      3 
      4 /*---
      5 info: |
      6    RegularExpressionFirstChar :: BackslashSequence :: \NonTerminator,
      7    RegularExpressionChars :: [empty], RegularExpressionFlags :: [empty]
      8 es5id: 7.8.5_A1.4_T1
      9 es6id: 11.8.5
     10 description: Check similar to (/\1/.source === "\\1")
     11 ---*/
     12 
     13 assert.sameValue(/\1/.source, "\\1");
     14 assert.sameValue(/\a/.source, "\\a");
     15 
     16 reportCompare(0, 0);