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