summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Georgian.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/src/tests/test262/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Georgian.js')
-rw-r--r--js/src/tests/test262/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Georgian.js91
1 files changed, 91 insertions, 0 deletions
diff --git a/js/src/tests/test262/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Georgian.js b/js/src/tests/test262/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Georgian.js
new file mode 100644
index 0000000000..750be25148
--- /dev/null
+++ b/js/src/tests/test262/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Georgian.js
@@ -0,0 +1,91 @@
+// 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=Georgian`
+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: [
+ 0x0010C7,
+ 0x0010CD,
+ 0x002D27,
+ 0x002D2D
+ ],
+ ranges: [
+ [0x0010A0, 0x0010C5],
+ [0x0010D0, 0x0010FF],
+ [0x001C90, 0x001CBA],
+ [0x001CBD, 0x001CBF],
+ [0x002D00, 0x002D25]
+ ]
+});
+testPropertyEscapes(
+ /^\p{Script_Extensions=Georgian}+$/u,
+ matchSymbols,
+ "\\p{Script_Extensions=Georgian}"
+);
+testPropertyEscapes(
+ /^\p{Script_Extensions=Geor}+$/u,
+ matchSymbols,
+ "\\p{Script_Extensions=Geor}"
+);
+testPropertyEscapes(
+ /^\p{scx=Georgian}+$/u,
+ matchSymbols,
+ "\\p{scx=Georgian}"
+);
+testPropertyEscapes(
+ /^\p{scx=Geor}+$/u,
+ matchSymbols,
+ "\\p{scx=Geor}"
+);
+
+const nonMatchSymbols = buildString({
+ loneCodePoints: [
+ 0x0010C6,
+ 0x002D26
+ ],
+ ranges: [
+ [0x00DC00, 0x00DFFF],
+ [0x000000, 0x00109F],
+ [0x0010C8, 0x0010CC],
+ [0x0010CE, 0x0010CF],
+ [0x001100, 0x001C8F],
+ [0x001CBB, 0x001CBC],
+ [0x001CC0, 0x002CFF],
+ [0x002D28, 0x002D2C],
+ [0x002D2E, 0x00DBFF],
+ [0x00E000, 0x10FFFF]
+ ]
+});
+testPropertyEscapes(
+ /^\P{Script_Extensions=Georgian}+$/u,
+ nonMatchSymbols,
+ "\\P{Script_Extensions=Georgian}"
+);
+testPropertyEscapes(
+ /^\P{Script_Extensions=Geor}+$/u,
+ nonMatchSymbols,
+ "\\P{Script_Extensions=Geor}"
+);
+testPropertyEscapes(
+ /^\P{scx=Georgian}+$/u,
+ nonMatchSymbols,
+ "\\P{scx=Georgian}"
+);
+testPropertyEscapes(
+ /^\P{scx=Geor}+$/u,
+ nonMatchSymbols,
+ "\\P{scx=Geor}"
+);
+
+reportCompare(0, 0);