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