string-literal-intersection-property-of-strings-escape.js (903B)
1 // Copyright 2025 Mathias Bynens. All rights reserved. 2 // This code is governed by the BSD license found in the LICENSE file. 3 4 /*--- 5 author: Mathias Bynens 6 description: > 7 Extended character classes enabled by the RegExp `v` flag support 8 properties of strings, string literals, and set operations 9 info: | 10 Generated by https://github.com/mathiasbynens/unicode-property-escapes-tests 11 Unicode v17.0.0 12 esid: sec-patterns 13 features: [regexp-unicode-property-escapes, regexp-v-flag] 14 includes: [regExpUtils.js] 15 ---*/ 16 17 testExtendedCharacterClass({ 18 regExp: /^[\q{0|2|4|9\uFE0F\u20E3}&&\p{Emoji_Keycap_Sequence}]+$/v, 19 expression: "[\q{0|2|4|9\uFE0F\u20E3}&&\p{Emoji_Keycap_Sequence}]", 20 matchStrings: [ 21 "9\uFE0F\u20E3" 22 ], 23 nonMatchStrings: [ 24 "0", 25 "2", 26 "4", 27 "6\uFE0F\u20E3", 28 "7", 29 "C", 30 "\u2603", 31 "\u{1D306}", 32 "\u{1F1E7}\u{1F1EA}" 33 ], 34 }); 35 36 reportCompare(0, 0);