mirror of https://github.com/tc39/test262.git
104 lines
2.1 KiB
JavaScript
104 lines
2.1 KiB
JavaScript
// Copyright 2018 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=Tamil`
|
|
info: |
|
|
Generated by https://github.com/mathiasbynens/unicode-property-escapes-tests
|
|
Unicode v11.0.0
|
|
esid: sec-static-semantics-unicodematchproperty-p
|
|
features: [regexp-unicode-property-escapes]
|
|
includes: [regExpUtils.js]
|
|
---*/
|
|
|
|
const matchSymbols = buildString({
|
|
loneCodePoints: [
|
|
0x000B9C,
|
|
0x000BD0,
|
|
0x000BD7
|
|
],
|
|
ranges: [
|
|
[0x000B82, 0x000B83],
|
|
[0x000B85, 0x000B8A],
|
|
[0x000B8E, 0x000B90],
|
|
[0x000B92, 0x000B95],
|
|
[0x000B99, 0x000B9A],
|
|
[0x000B9E, 0x000B9F],
|
|
[0x000BA3, 0x000BA4],
|
|
[0x000BA8, 0x000BAA],
|
|
[0x000BAE, 0x000BB9],
|
|
[0x000BBE, 0x000BC2],
|
|
[0x000BC6, 0x000BC8],
|
|
[0x000BCA, 0x000BCD],
|
|
[0x000BE6, 0x000BFA]
|
|
]
|
|
});
|
|
testPropertyEscapes(
|
|
/^\p{Script=Tamil}+$/u,
|
|
matchSymbols,
|
|
"\\p{Script=Tamil}"
|
|
);
|
|
testPropertyEscapes(
|
|
/^\p{Script=Taml}+$/u,
|
|
matchSymbols,
|
|
"\\p{Script=Taml}"
|
|
);
|
|
testPropertyEscapes(
|
|
/^\p{sc=Tamil}+$/u,
|
|
matchSymbols,
|
|
"\\p{sc=Tamil}"
|
|
);
|
|
testPropertyEscapes(
|
|
/^\p{sc=Taml}+$/u,
|
|
matchSymbols,
|
|
"\\p{sc=Taml}"
|
|
);
|
|
|
|
const nonMatchSymbols = buildString({
|
|
loneCodePoints: [
|
|
0x000B84,
|
|
0x000B91,
|
|
0x000B9B,
|
|
0x000B9D,
|
|
0x000BC9
|
|
],
|
|
ranges: [
|
|
[0x00DC00, 0x00DFFF],
|
|
[0x000000, 0x000B81],
|
|
[0x000B8B, 0x000B8D],
|
|
[0x000B96, 0x000B98],
|
|
[0x000BA0, 0x000BA2],
|
|
[0x000BA5, 0x000BA7],
|
|
[0x000BAB, 0x000BAD],
|
|
[0x000BBA, 0x000BBD],
|
|
[0x000BC3, 0x000BC5],
|
|
[0x000BCE, 0x000BCF],
|
|
[0x000BD1, 0x000BD6],
|
|
[0x000BD8, 0x000BE5],
|
|
[0x000BFB, 0x00DBFF],
|
|
[0x00E000, 0x10FFFF]
|
|
]
|
|
});
|
|
testPropertyEscapes(
|
|
/^\P{Script=Tamil}+$/u,
|
|
nonMatchSymbols,
|
|
"\\P{Script=Tamil}"
|
|
);
|
|
testPropertyEscapes(
|
|
/^\P{Script=Taml}+$/u,
|
|
nonMatchSymbols,
|
|
"\\P{Script=Taml}"
|
|
);
|
|
testPropertyEscapes(
|
|
/^\P{sc=Tamil}+$/u,
|
|
nonMatchSymbols,
|
|
"\\P{sc=Tamil}"
|
|
);
|
|
testPropertyEscapes(
|
|
/^\P{sc=Taml}+$/u,
|
|
nonMatchSymbols,
|
|
"\\P{sc=Taml}"
|
|
);
|