// Copyright 2022 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=Cherokee` info: | Generated by https://github.com/mathiasbynens/unicode-property-escapes-tests Unicode v15.0.0 esid: sec-static-semantics-unicodematchproperty-p features: [regexp-unicode-property-escapes] includes: [regExpUtils.js] ---*/ const matchSymbols = buildString({ loneCodePoints: [], ranges: [ [0x0013A0, 0x0013F5], [0x0013F8, 0x0013FD], [0x00AB70, 0x00ABBF] ] }); testPropertyEscapes( /^\p{Script=Cherokee}+$/u, matchSymbols, "\\p{Script=Cherokee}" ); testPropertyEscapes( /^\p{Script=Cher}+$/u, matchSymbols, "\\p{Script=Cher}" ); testPropertyEscapes( /^\p{sc=Cherokee}+$/u, matchSymbols, "\\p{sc=Cherokee}" ); testPropertyEscapes( /^\p{sc=Cher}+$/u, matchSymbols, "\\p{sc=Cher}" ); const nonMatchSymbols = buildString({ loneCodePoints: [], ranges: [ [0x00DC00, 0x00DFFF], [0x000000, 0x00139F], [0x0013F6, 0x0013F7], [0x0013FE, 0x00AB6F], [0x00ABC0, 0x00DBFF], [0x00E000, 0x10FFFF] ] }); testPropertyEscapes( /^\P{Script=Cherokee}+$/u, nonMatchSymbols, "\\P{Script=Cherokee}" ); testPropertyEscapes( /^\P{Script=Cher}+$/u, nonMatchSymbols, "\\P{Script=Cher}" ); testPropertyEscapes( /^\P{sc=Cherokee}+$/u, nonMatchSymbols, "\\P{sc=Cherokee}" ); testPropertyEscapes( /^\P{sc=Cher}+$/u, nonMatchSymbols, "\\P{sc=Cher}" ); reportCompare(0, 0);