summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/RegExp/unicodeSets/generated/character-property-escape-intersection-property-of-strings-escape.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/src/tests/test262/built-ins/RegExp/unicodeSets/generated/character-property-escape-intersection-property-of-strings-escape.js')
-rw-r--r--js/src/tests/test262/built-ins/RegExp/unicodeSets/generated/character-property-escape-intersection-property-of-strings-escape.js52
1 files changed, 52 insertions, 0 deletions
diff --git a/js/src/tests/test262/built-ins/RegExp/unicodeSets/generated/character-property-escape-intersection-property-of-strings-escape.js b/js/src/tests/test262/built-ins/RegExp/unicodeSets/generated/character-property-escape-intersection-property-of-strings-escape.js
new file mode 100644
index 0000000000..42e1095769
--- /dev/null
+++ b/js/src/tests/test262/built-ins/RegExp/unicodeSets/generated/character-property-escape-intersection-property-of-strings-escape.js
@@ -0,0 +1,52 @@
+// Copyright 2022 Mathias Bynens. All rights reserved.
+// This code is governed by the BSD license found in the LICENSE file.
+
+/*---
+author: Mathias Bynens
+description: >
+ Extended character classes enabled by the RegExp `v` flag support
+ properties of strings, string literals, and set operations
+info: |
+ Generated by https://github.com/mathiasbynens/unicode-property-escapes-tests
+ Unicode v14.0.0
+esid: sec-patterns
+features: [regexp-unicode-property-escapes, regexp-v-flag]
+includes: [regExpUtils.js]
+---*/
+
+testExtendedCharacterClass({
+ regExp: /^[\p{ASCII_Hex_Digit}&&\p{Emoji_Keycap_Sequence}]+$/v,
+ expression: "[\p{ASCII_Hex_Digit}&&\p{Emoji_Keycap_Sequence}]",
+ matchStrings: [],
+ nonMatchStrings: [
+ "0",
+ "1",
+ "2",
+ "3",
+ "4",
+ "5",
+ "6",
+ "6\uFE0F\u20E3",
+ "7",
+ "8",
+ "9",
+ "9\uFE0F\u20E3",
+ "A",
+ "B",
+ "C",
+ "D",
+ "E",
+ "F",
+ "a",
+ "b",
+ "c",
+ "d",
+ "e",
+ "f",
+ "\u2603",
+ "\u{1D306}",
+ "\u{1F1E7}\u{1F1EA}"
+ ],
+});
+
+reportCompare(0, 0);