summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/RegExp/property-escapes/generated/General_Category_-_Control.js
blob: 830e4e3e01f3702ae204472bf73c96a05c6e7a0e (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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
// 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 `General_Category=Control`
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: [],
  ranges: [
    [0x000000, 0x00001F],
    [0x00007F, 0x00009F]
  ]
});
testPropertyEscapes(
  /^\p{General_Category=Control}+$/u,
  matchSymbols,
  "\\p{General_Category=Control}"
);
testPropertyEscapes(
  /^\p{General_Category=Cc}+$/u,
  matchSymbols,
  "\\p{General_Category=Cc}"
);
testPropertyEscapes(
  /^\p{General_Category=cntrl}+$/u,
  matchSymbols,
  "\\p{General_Category=cntrl}"
);
testPropertyEscapes(
  /^\p{gc=Control}+$/u,
  matchSymbols,
  "\\p{gc=Control}"
);
testPropertyEscapes(
  /^\p{gc=Cc}+$/u,
  matchSymbols,
  "\\p{gc=Cc}"
);
testPropertyEscapes(
  /^\p{gc=cntrl}+$/u,
  matchSymbols,
  "\\p{gc=cntrl}"
);
testPropertyEscapes(
  /^\p{Control}+$/u,
  matchSymbols,
  "\\p{Control}"
);
testPropertyEscapes(
  /^\p{Cc}+$/u,
  matchSymbols,
  "\\p{Cc}"
);
testPropertyEscapes(
  /^\p{cntrl}+$/u,
  matchSymbols,
  "\\p{cntrl}"
);

const nonMatchSymbols = buildString({
  loneCodePoints: [],
  ranges: [
    [0x00DC00, 0x00DFFF],
    [0x000020, 0x00007E],
    [0x0000A0, 0x00DBFF],
    [0x00E000, 0x10FFFF]
  ]
});
testPropertyEscapes(
  /^\P{General_Category=Control}+$/u,
  nonMatchSymbols,
  "\\P{General_Category=Control}"
);
testPropertyEscapes(
  /^\P{General_Category=Cc}+$/u,
  nonMatchSymbols,
  "\\P{General_Category=Cc}"
);
testPropertyEscapes(
  /^\P{General_Category=cntrl}+$/u,
  nonMatchSymbols,
  "\\P{General_Category=cntrl}"
);
testPropertyEscapes(
  /^\P{gc=Control}+$/u,
  nonMatchSymbols,
  "\\P{gc=Control}"
);
testPropertyEscapes(
  /^\P{gc=Cc}+$/u,
  nonMatchSymbols,
  "\\P{gc=Cc}"
);
testPropertyEscapes(
  /^\P{gc=cntrl}+$/u,
  nonMatchSymbols,
  "\\P{gc=cntrl}"
);
testPropertyEscapes(
  /^\P{Control}+$/u,
  nonMatchSymbols,
  "\\P{Control}"
);
testPropertyEscapes(
  /^\P{Cc}+$/u,
  nonMatchSymbols,
  "\\P{Cc}"
);
testPropertyEscapes(
  /^\P{cntrl}+$/u,
  nonMatchSymbols,
  "\\P{cntrl}"
);

reportCompare(0, 0);