tor-browser

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

RegExp-trailing-escape.js (451B)


      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    RegularExpressionChar :: BackslashSequence :: \NonTerminator,
      7    RegularExpressionFlags :: [empty]
      8 es5id: 7.8.5_A2.4_T1
      9 es6id: 11.8.5
     10 description: Check similar to (/a\1/.source === "a\\1")
     11 ---*/
     12 
     13 assert.sameValue(/a\1/.source, "a\\1");
     14 assert.sameValue(/a\a/.source, "a\\a");
     15 
     16 reportCompare(0, 0);