// Copyright 2025 Mathias Bynens. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- author: Mathias Bynens description: > Unicode property escapes for `Script=Sidetic` info: | Generated by https://github.com/mathiasbynens/unicode-property-escapes-tests Unicode v17.0.0 esid: sec-static-semantics-unicodematchproperty-p features: [regexp-unicode-property-escapes] includes: [regExpUtils.js] ---*/ const matchSymbols = buildString({ loneCodePoints: [], ranges: [ [0x010940, 0x010959] ] }); testPropertyEscapes( /^\p{Script=Sidetic}+$/u, matchSymbols, "\\p{Script=Sidetic}" ); testPropertyEscapes( /^\p{Script=Sidt}+$/u, matchSymbols, "\\p{Script=Sidt}" ); testPropertyEscapes( /^\p{sc=Sidetic}+$/u, matchSymbols, "\\p{sc=Sidetic}" ); testPropertyEscapes( /^\p{sc=Sidt}+$/u, matchSymbols, "\\p{sc=Sidt}" ); const nonMatchSymbols = buildString({ loneCodePoints: [], ranges: [ [0x00DC00, 0x00DFFF], [0x000000, 0x00DBFF], [0x00E000, 0x01093F], [0x01095A, 0x10FFFF] ] }); testPropertyEscapes( /^\P{Script=Sidetic}+$/u, nonMatchSymbols, "\\P{Script=Sidetic}" ); testPropertyEscapes( /^\P{Script=Sidt}+$/u, nonMatchSymbols, "\\P{Script=Sidt}" ); testPropertyEscapes( /^\P{sc=Sidetic}+$/u, nonMatchSymbols, "\\P{sc=Sidetic}" ); testPropertyEscapes( /^\P{sc=Sidt}+$/u, nonMatchSymbols, "\\P{sc=Sidt}" ); reportCompare(0, 0);