summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Tibetan.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/src/tests/test262/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Tibetan.js')
-rw-r--r--js/src/tests/test262/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Tibetan.js86
1 files changed, 86 insertions, 0 deletions
diff --git a/js/src/tests/test262/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Tibetan.js b/js/src/tests/test262/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Tibetan.js
new file mode 100644
index 0000000000..b35d41ae2a
--- /dev/null
+++ b/js/src/tests/test262/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Tibetan.js
@@ -0,0 +1,86 @@
+// 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_Extensions=Tibetan`
+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: [],
+ ranges: [
+ [0x000F00, 0x000F47],
+ [0x000F49, 0x000F6C],
+ [0x000F71, 0x000F97],
+ [0x000F99, 0x000FBC],
+ [0x000FBE, 0x000FCC],
+ [0x000FCE, 0x000FD4],
+ [0x000FD9, 0x000FDA]
+ ]
+});
+testPropertyEscapes(
+ /^\p{Script_Extensions=Tibetan}+$/u,
+ matchSymbols,
+ "\\p{Script_Extensions=Tibetan}"
+);
+testPropertyEscapes(
+ /^\p{Script_Extensions=Tibt}+$/u,
+ matchSymbols,
+ "\\p{Script_Extensions=Tibt}"
+);
+testPropertyEscapes(
+ /^\p{scx=Tibetan}+$/u,
+ matchSymbols,
+ "\\p{scx=Tibetan}"
+);
+testPropertyEscapes(
+ /^\p{scx=Tibt}+$/u,
+ matchSymbols,
+ "\\p{scx=Tibt}"
+);
+
+const nonMatchSymbols = buildString({
+ loneCodePoints: [
+ 0x000F48,
+ 0x000F98,
+ 0x000FBD,
+ 0x000FCD
+ ],
+ ranges: [
+ [0x00DC00, 0x00DFFF],
+ [0x000000, 0x000EFF],
+ [0x000F6D, 0x000F70],
+ [0x000FD5, 0x000FD8],
+ [0x000FDB, 0x00DBFF],
+ [0x00E000, 0x10FFFF]
+ ]
+});
+testPropertyEscapes(
+ /^\P{Script_Extensions=Tibetan}+$/u,
+ nonMatchSymbols,
+ "\\P{Script_Extensions=Tibetan}"
+);
+testPropertyEscapes(
+ /^\P{Script_Extensions=Tibt}+$/u,
+ nonMatchSymbols,
+ "\\P{Script_Extensions=Tibt}"
+);
+testPropertyEscapes(
+ /^\P{scx=Tibetan}+$/u,
+ nonMatchSymbols,
+ "\\P{scx=Tibetan}"
+);
+testPropertyEscapes(
+ /^\P{scx=Tibt}+$/u,
+ nonMatchSymbols,
+ "\\P{scx=Tibt}"
+);
+
+reportCompare(0, 0);