2019-03-12 09:47:27 +01:00
|
|
|
// Copyright 2019 Mathias Bynens. All rights reserved.
|
2017-04-13 17:22:49 +02:00
|
|
|
// This code is governed by the BSD license found in the LICENSE file.
|
|
|
|
|
|
|
|
/*---
|
|
|
|
author: Mathias Bynens
|
|
|
|
description: >
|
|
|
|
Unicode property escapes for `Script_Extensions=Nko`
|
|
|
|
info: |
|
|
|
|
Generated by https://github.com/mathiasbynens/unicode-property-escapes-tests
|
2019-03-12 09:47:27 +01:00
|
|
|
Unicode v12.0.0
|
2017-04-13 17:22:49 +02:00
|
|
|
esid: sec-static-semantics-unicodematchproperty-p
|
|
|
|
features: [regexp-unicode-property-escapes]
|
|
|
|
includes: [regExpUtils.js]
|
|
|
|
---*/
|
|
|
|
|
|
|
|
const matchSymbols = buildString({
|
|
|
|
loneCodePoints: [],
|
|
|
|
ranges: [
|
2018-06-07 15:32:41 +02:00
|
|
|
[0x0007C0, 0x0007FA],
|
|
|
|
[0x0007FD, 0x0007FF]
|
2017-04-13 17:22:49 +02:00
|
|
|
]
|
|
|
|
});
|
|
|
|
testPropertyEscapes(
|
|
|
|
/^\p{Script_Extensions=Nko}+$/u,
|
|
|
|
matchSymbols,
|
|
|
|
"\\p{Script_Extensions=Nko}"
|
|
|
|
);
|
|
|
|
testPropertyEscapes(
|
|
|
|
/^\p{Script_Extensions=Nkoo}+$/u,
|
|
|
|
matchSymbols,
|
|
|
|
"\\p{Script_Extensions=Nkoo}"
|
|
|
|
);
|
|
|
|
testPropertyEscapes(
|
|
|
|
/^\p{scx=Nko}+$/u,
|
|
|
|
matchSymbols,
|
|
|
|
"\\p{scx=Nko}"
|
|
|
|
);
|
|
|
|
testPropertyEscapes(
|
|
|
|
/^\p{scx=Nkoo}+$/u,
|
|
|
|
matchSymbols,
|
|
|
|
"\\p{scx=Nkoo}"
|
|
|
|
);
|
|
|
|
|
|
|
|
const nonMatchSymbols = buildString({
|
|
|
|
loneCodePoints: [],
|
|
|
|
ranges: [
|
|
|
|
[0x00DC00, 0x00DFFF],
|
|
|
|
[0x000000, 0x0007BF],
|
2018-06-07 15:32:41 +02:00
|
|
|
[0x0007FB, 0x0007FC],
|
|
|
|
[0x000800, 0x00DBFF],
|
2017-04-13 17:22:49 +02:00
|
|
|
[0x00E000, 0x10FFFF]
|
|
|
|
]
|
|
|
|
});
|
|
|
|
testPropertyEscapes(
|
|
|
|
/^\P{Script_Extensions=Nko}+$/u,
|
|
|
|
nonMatchSymbols,
|
|
|
|
"\\P{Script_Extensions=Nko}"
|
|
|
|
);
|
|
|
|
testPropertyEscapes(
|
|
|
|
/^\P{Script_Extensions=Nkoo}+$/u,
|
|
|
|
nonMatchSymbols,
|
|
|
|
"\\P{Script_Extensions=Nkoo}"
|
|
|
|
);
|
|
|
|
testPropertyEscapes(
|
|
|
|
/^\P{scx=Nko}+$/u,
|
|
|
|
nonMatchSymbols,
|
|
|
|
"\\P{scx=Nko}"
|
|
|
|
);
|
|
|
|
testPropertyEscapes(
|
|
|
|
/^\P{scx=Nkoo}+$/u,
|
|
|
|
nonMatchSymbols,
|
|
|
|
"\\P{scx=Nkoo}"
|
|
|
|
);
|