tor-browser

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

Script_-_Sundanese.js (1522B)


      1 // Copyright 2025 Mathias Bynens. All rights reserved.
      2 // This code is governed by the BSD license found in the LICENSE file.
      3 
      4 /*---
      5 author: Mathias Bynens
      6 description: >
      7  Unicode property escapes for `Script=Sundanese`
      8 info: |
      9  Generated by https://github.com/mathiasbynens/unicode-property-escapes-tests
     10  Unicode v17.0.0
     11 esid: sec-static-semantics-unicodematchproperty-p
     12 features: [regexp-unicode-property-escapes]
     13 includes: [regExpUtils.js]
     14 ---*/
     15 
     16 const matchSymbols = buildString({
     17  loneCodePoints: [],
     18  ranges: [
     19    [0x001B80, 0x001BBF],
     20    [0x001CC0, 0x001CC7]
     21  ]
     22 });
     23 testPropertyEscapes(
     24  /^\p{Script=Sundanese}+$/u,
     25  matchSymbols,
     26  "\\p{Script=Sundanese}"
     27 );
     28 testPropertyEscapes(
     29  /^\p{Script=Sund}+$/u,
     30  matchSymbols,
     31  "\\p{Script=Sund}"
     32 );
     33 testPropertyEscapes(
     34  /^\p{sc=Sundanese}+$/u,
     35  matchSymbols,
     36  "\\p{sc=Sundanese}"
     37 );
     38 testPropertyEscapes(
     39  /^\p{sc=Sund}+$/u,
     40  matchSymbols,
     41  "\\p{sc=Sund}"
     42 );
     43 
     44 const nonMatchSymbols = buildString({
     45  loneCodePoints: [],
     46  ranges: [
     47    [0x00DC00, 0x00DFFF],
     48    [0x000000, 0x001B7F],
     49    [0x001BC0, 0x001CBF],
     50    [0x001CC8, 0x00DBFF],
     51    [0x00E000, 0x10FFFF]
     52  ]
     53 });
     54 testPropertyEscapes(
     55  /^\P{Script=Sundanese}+$/u,
     56  nonMatchSymbols,
     57  "\\P{Script=Sundanese}"
     58 );
     59 testPropertyEscapes(
     60  /^\P{Script=Sund}+$/u,
     61  nonMatchSymbols,
     62  "\\P{Script=Sund}"
     63 );
     64 testPropertyEscapes(
     65  /^\P{sc=Sundanese}+$/u,
     66  nonMatchSymbols,
     67  "\\P{sc=Sundanese}"
     68 );
     69 testPropertyEscapes(
     70  /^\P{sc=Sund}+$/u,
     71  nonMatchSymbols,
     72  "\\P{sc=Sund}"
     73 );
     74 
     75 reportCompare(0, 0);