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