Script_-_Marchen.js (1546B)
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=Marchen` 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 [0x011C70, 0x011C8F], 20 [0x011C92, 0x011CA7], 21 [0x011CA9, 0x011CB6] 22 ] 23 }); 24 testPropertyEscapes( 25 /^\p{Script=Marchen}+$/u, 26 matchSymbols, 27 "\\p{Script=Marchen}" 28 ); 29 testPropertyEscapes( 30 /^\p{Script=Marc}+$/u, 31 matchSymbols, 32 "\\p{Script=Marc}" 33 ); 34 testPropertyEscapes( 35 /^\p{sc=Marchen}+$/u, 36 matchSymbols, 37 "\\p{sc=Marchen}" 38 ); 39 testPropertyEscapes( 40 /^\p{sc=Marc}+$/u, 41 matchSymbols, 42 "\\p{sc=Marc}" 43 ); 44 45 const nonMatchSymbols = buildString({ 46 loneCodePoints: [ 47 0x011CA8 48 ], 49 ranges: [ 50 [0x00DC00, 0x00DFFF], 51 [0x000000, 0x00DBFF], 52 [0x00E000, 0x011C6F], 53 [0x011C90, 0x011C91], 54 [0x011CB7, 0x10FFFF] 55 ] 56 }); 57 testPropertyEscapes( 58 /^\P{Script=Marchen}+$/u, 59 nonMatchSymbols, 60 "\\P{Script=Marchen}" 61 ); 62 testPropertyEscapes( 63 /^\P{Script=Marc}+$/u, 64 nonMatchSymbols, 65 "\\P{Script=Marc}" 66 ); 67 testPropertyEscapes( 68 /^\P{sc=Marchen}+$/u, 69 nonMatchSymbols, 70 "\\P{sc=Marchen}" 71 ); 72 testPropertyEscapes( 73 /^\P{sc=Marc}+$/u, 74 nonMatchSymbols, 75 "\\P{sc=Marc}" 76 ); 77 78 reportCompare(0, 0);