Script_-_Tifinagh.js (1555B)
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=Tifinagh` 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 0x002D7F 19 ], 20 ranges: [ 21 [0x002D30, 0x002D67], 22 [0x002D6F, 0x002D70] 23 ] 24 }); 25 testPropertyEscapes( 26 /^\p{Script=Tifinagh}+$/u, 27 matchSymbols, 28 "\\p{Script=Tifinagh}" 29 ); 30 testPropertyEscapes( 31 /^\p{Script=Tfng}+$/u, 32 matchSymbols, 33 "\\p{Script=Tfng}" 34 ); 35 testPropertyEscapes( 36 /^\p{sc=Tifinagh}+$/u, 37 matchSymbols, 38 "\\p{sc=Tifinagh}" 39 ); 40 testPropertyEscapes( 41 /^\p{sc=Tfng}+$/u, 42 matchSymbols, 43 "\\p{sc=Tfng}" 44 ); 45 46 const nonMatchSymbols = buildString({ 47 loneCodePoints: [], 48 ranges: [ 49 [0x00DC00, 0x00DFFF], 50 [0x000000, 0x002D2F], 51 [0x002D68, 0x002D6E], 52 [0x002D71, 0x002D7E], 53 [0x002D80, 0x00DBFF], 54 [0x00E000, 0x10FFFF] 55 ] 56 }); 57 testPropertyEscapes( 58 /^\P{Script=Tifinagh}+$/u, 59 nonMatchSymbols, 60 "\\P{Script=Tifinagh}" 61 ); 62 testPropertyEscapes( 63 /^\P{Script=Tfng}+$/u, 64 nonMatchSymbols, 65 "\\P{Script=Tfng}" 66 ); 67 testPropertyEscapes( 68 /^\P{sc=Tifinagh}+$/u, 69 nonMatchSymbols, 70 "\\P{sc=Tifinagh}" 71 ); 72 testPropertyEscapes( 73 /^\P{sc=Tfng}+$/u, 74 nonMatchSymbols, 75 "\\P{sc=Tfng}" 76 ); 77 78 reportCompare(0, 0);