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