summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/RegExp/property-escapes/generated/strings/Emoji_Keycap_Sequence.js
blob: 767195f2db86b636ad446b1e57b0861eae698b0c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
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: >
  Unicode property escapes for `Emoji_Keycap_Sequence` (property of strings)
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, regexp-v-flag]
includes: [regExpUtils.js]
---*/

testPropertyOfStrings({
  regExp: /^\p{Emoji_Keycap_Sequence}+$/v,
  expression: "\\p{Emoji_Keycap_Sequence}",
  matchStrings: [
    "#\uFE0F\u20E3",
    "*\uFE0F\u20E3",
    "0\uFE0F\u20E3",
    "1\uFE0F\u20E3",
    "2\uFE0F\u20E3",
    "3\uFE0F\u20E3",
    "4\uFE0F\u20E3",
    "5\uFE0F\u20E3",
    "6\uFE0F\u20E3",
    "7\uFE0F\u20E3",
    "8\uFE0F\u20E3",
    "9\uFE0F\u20E3"
  ],
  nonMatchStrings: [
    "\uFE0F\u20E3",
    "#\uFE0F",
    "#\u20E3",
    "\uFE0F\u20E3",
    "*\uFE0F",
    "*\u20E3",
    "\uFE0F\u20E3",
    "0\uFE0F",
    "0\u20E3",
    "\uFE0F\u20E3",
    "1\uFE0F",
    "1\u20E3",
    "\uFE0F\u20E3",
    "2\uFE0F",
    "2\u20E3"
  ],
});

reportCompare(0, 0);