summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/RegExp/property-escapes/generated/Script_-_Telugu.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/src/tests/test262/built-ins/RegExp/property-escapes/generated/Script_-_Telugu.js')
-rw-r--r--js/src/tests/test262/built-ins/RegExp/property-escapes/generated/Script_-_Telugu.js99
1 files changed, 99 insertions, 0 deletions
diff --git a/js/src/tests/test262/built-ins/RegExp/property-escapes/generated/Script_-_Telugu.js b/js/src/tests/test262/built-ins/RegExp/property-escapes/generated/Script_-_Telugu.js
new file mode 100644
index 0000000000..56ed03c4fe
--- /dev/null
+++ b/js/src/tests/test262/built-ins/RegExp/property-escapes/generated/Script_-_Telugu.js
@@ -0,0 +1,99 @@
+// 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=Telugu`
+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: [
+ 0x000C5D
+ ],
+ ranges: [
+ [0x000C00, 0x000C0C],
+ [0x000C0E, 0x000C10],
+ [0x000C12, 0x000C28],
+ [0x000C2A, 0x000C39],
+ [0x000C3C, 0x000C44],
+ [0x000C46, 0x000C48],
+ [0x000C4A, 0x000C4D],
+ [0x000C55, 0x000C56],
+ [0x000C58, 0x000C5A],
+ [0x000C60, 0x000C63],
+ [0x000C66, 0x000C6F],
+ [0x000C77, 0x000C7F]
+ ]
+});
+testPropertyEscapes(
+ /^\p{Script=Telugu}+$/u,
+ matchSymbols,
+ "\\p{Script=Telugu}"
+);
+testPropertyEscapes(
+ /^\p{Script=Telu}+$/u,
+ matchSymbols,
+ "\\p{Script=Telu}"
+);
+testPropertyEscapes(
+ /^\p{sc=Telugu}+$/u,
+ matchSymbols,
+ "\\p{sc=Telugu}"
+);
+testPropertyEscapes(
+ /^\p{sc=Telu}+$/u,
+ matchSymbols,
+ "\\p{sc=Telu}"
+);
+
+const nonMatchSymbols = buildString({
+ loneCodePoints: [
+ 0x000C0D,
+ 0x000C11,
+ 0x000C29,
+ 0x000C45,
+ 0x000C49,
+ 0x000C57
+ ],
+ ranges: [
+ [0x00DC00, 0x00DFFF],
+ [0x000000, 0x000BFF],
+ [0x000C3A, 0x000C3B],
+ [0x000C4E, 0x000C54],
+ [0x000C5B, 0x000C5C],
+ [0x000C5E, 0x000C5F],
+ [0x000C64, 0x000C65],
+ [0x000C70, 0x000C76],
+ [0x000C80, 0x00DBFF],
+ [0x00E000, 0x10FFFF]
+ ]
+});
+testPropertyEscapes(
+ /^\P{Script=Telugu}+$/u,
+ nonMatchSymbols,
+ "\\P{Script=Telugu}"
+);
+testPropertyEscapes(
+ /^\P{Script=Telu}+$/u,
+ nonMatchSymbols,
+ "\\P{Script=Telu}"
+);
+testPropertyEscapes(
+ /^\P{sc=Telugu}+$/u,
+ nonMatchSymbols,
+ "\\P{sc=Telugu}"
+);
+testPropertyEscapes(
+ /^\P{sc=Telu}+$/u,
+ nonMatchSymbols,
+ "\\P{sc=Telu}"
+);
+
+reportCompare(0, 0);