blob: 4dc470a310f2a357fc05768c3285939e9c805df5 [file] [log] [blame]
// Copyright 2019 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_Extensions=Marchen`
info: |
Generated by https://github.com/mathiasbynens/unicode-property-escapes-tests
Unicode v12.1.0
esid: sec-static-semantics-unicodematchproperty-p
features: [regexp-unicode-property-escapes]
includes: [regExpUtils.js]
---*/
const matchSymbols = buildString({
loneCodePoints: [],
ranges: [
[0x011C70, 0x011C8F],
[0x011C92, 0x011CA7],
[0x011CA9, 0x011CB6]
]
});
testPropertyEscapes(
/^\p{Script_Extensions=Marchen}+$/u,
matchSymbols,
"\\p{Script_Extensions=Marchen}"
);
testPropertyEscapes(
/^\p{Script_Extensions=Marc}+$/u,
matchSymbols,
"\\p{Script_Extensions=Marc}"
);
testPropertyEscapes(
/^\p{scx=Marchen}+$/u,
matchSymbols,
"\\p{scx=Marchen}"
);
testPropertyEscapes(
/^\p{scx=Marc}+$/u,
matchSymbols,
"\\p{scx=Marc}"
);
const nonMatchSymbols = buildString({
loneCodePoints: [
0x011CA8
],
ranges: [
[0x00DC00, 0x00DFFF],
[0x000000, 0x00DBFF],
[0x00E000, 0x011C6F],
[0x011C90, 0x011C91],
[0x011CB7, 0x10FFFF]
]
});
testPropertyEscapes(
/^\P{Script_Extensions=Marchen}+$/u,
nonMatchSymbols,
"\\P{Script_Extensions=Marchen}"
);
testPropertyEscapes(
/^\P{Script_Extensions=Marc}+$/u,
nonMatchSymbols,
"\\P{Script_Extensions=Marc}"
);
testPropertyEscapes(
/^\P{scx=Marchen}+$/u,
nonMatchSymbols,
"\\P{scx=Marchen}"
);
testPropertyEscapes(
/^\P{scx=Marc}+$/u,
nonMatchSymbols,
"\\P{scx=Marc}"
);