summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/RegExp/property-escapes/generated/Pattern_Syntax.js
blob: 6fd908921af50feacf910b9e3169576f1a8e39cc (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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
// 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 `Pattern_Syntax`
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: [
    0x000060,
    0x0000A9,
    0x0000AE,
    0x0000B6,
    0x0000BB,
    0x0000BF,
    0x0000D7,
    0x0000F7,
    0x003030
  ],
  ranges: [
    [0x000021, 0x00002F],
    [0x00003A, 0x000040],
    [0x00005B, 0x00005E],
    [0x00007B, 0x00007E],
    [0x0000A1, 0x0000A7],
    [0x0000AB, 0x0000AC],
    [0x0000B0, 0x0000B1],
    [0x002010, 0x002027],
    [0x002030, 0x00203E],
    [0x002041, 0x002053],
    [0x002055, 0x00205E],
    [0x002190, 0x00245F],
    [0x002500, 0x002775],
    [0x002794, 0x002BFF],
    [0x002E00, 0x002E7F],
    [0x003001, 0x003003],
    [0x003008, 0x003020],
    [0x00FD3E, 0x00FD3F],
    [0x00FE45, 0x00FE46]
  ]
});
testPropertyEscapes(
  /^\p{Pattern_Syntax}+$/u,
  matchSymbols,
  "\\p{Pattern_Syntax}"
);
testPropertyEscapes(
  /^\p{Pat_Syn}+$/u,
  matchSymbols,
  "\\p{Pat_Syn}"
);

const nonMatchSymbols = buildString({
  loneCodePoints: [
    0x00005F,
    0x0000A8,
    0x0000AA,
    0x0000AD,
    0x0000AF,
    0x002054
  ],
  ranges: [
    [0x00DC00, 0x00DFFF],
    [0x000000, 0x000020],
    [0x000030, 0x000039],
    [0x000041, 0x00005A],
    [0x000061, 0x00007A],
    [0x00007F, 0x0000A0],
    [0x0000B2, 0x0000B5],
    [0x0000B7, 0x0000BA],
    [0x0000BC, 0x0000BE],
    [0x0000C0, 0x0000D6],
    [0x0000D8, 0x0000F6],
    [0x0000F8, 0x00200F],
    [0x002028, 0x00202F],
    [0x00203F, 0x002040],
    [0x00205F, 0x00218F],
    [0x002460, 0x0024FF],
    [0x002776, 0x002793],
    [0x002C00, 0x002DFF],
    [0x002E80, 0x003000],
    [0x003004, 0x003007],
    [0x003021, 0x00302F],
    [0x003031, 0x00DBFF],
    [0x00E000, 0x00FD3D],
    [0x00FD40, 0x00FE44],
    [0x00FE47, 0x10FFFF]
  ]
});
testPropertyEscapes(
  /^\P{Pattern_Syntax}+$/u,
  nonMatchSymbols,
  "\\P{Pattern_Syntax}"
);
testPropertyEscapes(
  /^\P{Pat_Syn}+$/u,
  nonMatchSymbols,
  "\\P{Pat_Syn}"
);

reportCompare(0, 0);