tor-browser

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

Script_-_Myanmar.js (1608B)


      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=Myanmar`
      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    [0x001000, 0x00109F],
     20    [0x00A9E0, 0x00A9FE],
     21    [0x00AA60, 0x00AA7F],
     22    [0x0116D0, 0x0116E3]
     23  ]
     24 });
     25 testPropertyEscapes(
     26  /^\p{Script=Myanmar}+$/u,
     27  matchSymbols,
     28  "\\p{Script=Myanmar}"
     29 );
     30 testPropertyEscapes(
     31  /^\p{Script=Mymr}+$/u,
     32  matchSymbols,
     33  "\\p{Script=Mymr}"
     34 );
     35 testPropertyEscapes(
     36  /^\p{sc=Myanmar}+$/u,
     37  matchSymbols,
     38  "\\p{sc=Myanmar}"
     39 );
     40 testPropertyEscapes(
     41  /^\p{sc=Mymr}+$/u,
     42  matchSymbols,
     43  "\\p{sc=Mymr}"
     44 );
     45 
     46 const nonMatchSymbols = buildString({
     47  loneCodePoints: [],
     48  ranges: [
     49    [0x00DC00, 0x00DFFF],
     50    [0x000000, 0x000FFF],
     51    [0x0010A0, 0x00A9DF],
     52    [0x00A9FF, 0x00AA5F],
     53    [0x00AA80, 0x00DBFF],
     54    [0x00E000, 0x0116CF],
     55    [0x0116E4, 0x10FFFF]
     56  ]
     57 });
     58 testPropertyEscapes(
     59  /^\P{Script=Myanmar}+$/u,
     60  nonMatchSymbols,
     61  "\\P{Script=Myanmar}"
     62 );
     63 testPropertyEscapes(
     64  /^\P{Script=Mymr}+$/u,
     65  nonMatchSymbols,
     66  "\\P{Script=Mymr}"
     67 );
     68 testPropertyEscapes(
     69  /^\P{sc=Myanmar}+$/u,
     70  nonMatchSymbols,
     71  "\\P{sc=Myanmar}"
     72 );
     73 testPropertyEscapes(
     74  /^\P{sc=Mymr}+$/u,
     75  nonMatchSymbols,
     76  "\\P{sc=Mymr}"
     77 );
     78 
     79 reportCompare(0, 0);