summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/RegExp/property-escapes/generated/Deprecated.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/src/tests/test262/built-ins/RegExp/property-escapes/generated/Deprecated.js')
-rw-r--r--js/src/tests/test262/built-ins/RegExp/property-escapes/generated/Deprecated.js69
1 files changed, 69 insertions, 0 deletions
diff --git a/js/src/tests/test262/built-ins/RegExp/property-escapes/generated/Deprecated.js b/js/src/tests/test262/built-ins/RegExp/property-escapes/generated/Deprecated.js
new file mode 100644
index 0000000000..01b38e3650
--- /dev/null
+++ b/js/src/tests/test262/built-ins/RegExp/property-escapes/generated/Deprecated.js
@@ -0,0 +1,69 @@
+// 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 `Deprecated`
+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: [
+ 0x000149,
+ 0x000673,
+ 0x000F77,
+ 0x000F79,
+ 0x0E0001
+ ],
+ ranges: [
+ [0x0017A3, 0x0017A4],
+ [0x00206A, 0x00206F],
+ [0x002329, 0x00232A]
+ ]
+});
+testPropertyEscapes(
+ /^\p{Deprecated}+$/u,
+ matchSymbols,
+ "\\p{Deprecated}"
+);
+testPropertyEscapes(
+ /^\p{Dep}+$/u,
+ matchSymbols,
+ "\\p{Dep}"
+);
+
+const nonMatchSymbols = buildString({
+ loneCodePoints: [
+ 0x000F78
+ ],
+ ranges: [
+ [0x00DC00, 0x00DFFF],
+ [0x000000, 0x000148],
+ [0x00014A, 0x000672],
+ [0x000674, 0x000F76],
+ [0x000F7A, 0x0017A2],
+ [0x0017A5, 0x002069],
+ [0x002070, 0x002328],
+ [0x00232B, 0x00DBFF],
+ [0x00E000, 0x0E0000],
+ [0x0E0002, 0x10FFFF]
+ ]
+});
+testPropertyEscapes(
+ /^\P{Deprecated}+$/u,
+ nonMatchSymbols,
+ "\\P{Deprecated}"
+);
+testPropertyEscapes(
+ /^\P{Dep}+$/u,
+ nonMatchSymbols,
+ "\\P{Dep}"
+);
+
+reportCompare(0, 0);