mirror of
https://github.com/tc39/test262.git
synced 2025-08-18 08:28:27 +02:00
85 lines
1.7 KiB
JavaScript
85 lines
1.7 KiB
JavaScript
// Copyright 2024 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=Adlam`
|
|
info: |
|
|
Generated by https://github.com/mathiasbynens/unicode-property-escapes-tests
|
|
Unicode v16.0.0
|
|
esid: sec-static-semantics-unicodematchproperty-p
|
|
features: [regexp-unicode-property-escapes]
|
|
includes: [regExpUtils.js]
|
|
---*/
|
|
|
|
const matchSymbols = buildString({
|
|
loneCodePoints: [
|
|
0x00061F,
|
|
0x000640,
|
|
0x00204F,
|
|
0x002E41
|
|
],
|
|
ranges: [
|
|
[0x01E900, 0x01E94B],
|
|
[0x01E950, 0x01E959],
|
|
[0x01E95E, 0x01E95F]
|
|
]
|
|
});
|
|
testPropertyEscapes(
|
|
/^\p{Script_Extensions=Adlam}+$/u,
|
|
matchSymbols,
|
|
"\\p{Script_Extensions=Adlam}"
|
|
);
|
|
testPropertyEscapes(
|
|
/^\p{Script_Extensions=Adlm}+$/u,
|
|
matchSymbols,
|
|
"\\p{Script_Extensions=Adlm}"
|
|
);
|
|
testPropertyEscapes(
|
|
/^\p{scx=Adlam}+$/u,
|
|
matchSymbols,
|
|
"\\p{scx=Adlam}"
|
|
);
|
|
testPropertyEscapes(
|
|
/^\p{scx=Adlm}+$/u,
|
|
matchSymbols,
|
|
"\\p{scx=Adlm}"
|
|
);
|
|
|
|
const nonMatchSymbols = buildString({
|
|
loneCodePoints: [],
|
|
ranges: [
|
|
[0x00DC00, 0x00DFFF],
|
|
[0x000000, 0x00061E],
|
|
[0x000620, 0x00063F],
|
|
[0x000641, 0x00204E],
|
|
[0x002050, 0x002E40],
|
|
[0x002E42, 0x00DBFF],
|
|
[0x00E000, 0x01E8FF],
|
|
[0x01E94C, 0x01E94F],
|
|
[0x01E95A, 0x01E95D],
|
|
[0x01E960, 0x10FFFF]
|
|
]
|
|
});
|
|
testPropertyEscapes(
|
|
/^\P{Script_Extensions=Adlam}+$/u,
|
|
nonMatchSymbols,
|
|
"\\P{Script_Extensions=Adlam}"
|
|
);
|
|
testPropertyEscapes(
|
|
/^\P{Script_Extensions=Adlm}+$/u,
|
|
nonMatchSymbols,
|
|
"\\P{Script_Extensions=Adlm}"
|
|
);
|
|
testPropertyEscapes(
|
|
/^\P{scx=Adlam}+$/u,
|
|
nonMatchSymbols,
|
|
"\\P{scx=Adlam}"
|
|
);
|
|
testPropertyEscapes(
|
|
/^\P{scx=Adlm}+$/u,
|
|
nonMatchSymbols,
|
|
"\\P{scx=Adlm}"
|
|
);
|