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
|
// 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 `Ideographic`
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: [
0x016FE4
],
ranges: [
[0x003006, 0x003007],
[0x003021, 0x003029],
[0x003038, 0x00303A],
[0x003400, 0x004DBF],
[0x004E00, 0x009FFF],
[0x00F900, 0x00FA6D],
[0x00FA70, 0x00FAD9],
[0x017000, 0x0187F7],
[0x018800, 0x018CD5],
[0x018D00, 0x018D08],
[0x01B170, 0x01B2FB],
[0x020000, 0x02A6DF],
[0x02A700, 0x02B739],
[0x02B740, 0x02B81D],
[0x02B820, 0x02CEA1],
[0x02CEB0, 0x02EBE0],
[0x02F800, 0x02FA1D],
[0x030000, 0x03134A],
[0x031350, 0x0323AF]
]
});
testPropertyEscapes(
/^\p{Ideographic}+$/u,
matchSymbols,
"\\p{Ideographic}"
);
testPropertyEscapes(
/^\p{Ideo}+$/u,
matchSymbols,
"\\p{Ideo}"
);
const nonMatchSymbols = buildString({
loneCodePoints: [],
ranges: [
[0x00DC00, 0x00DFFF],
[0x000000, 0x003005],
[0x003008, 0x003020],
[0x00302A, 0x003037],
[0x00303B, 0x0033FF],
[0x004DC0, 0x004DFF],
[0x00A000, 0x00DBFF],
[0x00E000, 0x00F8FF],
[0x00FA6E, 0x00FA6F],
[0x00FADA, 0x016FE3],
[0x016FE5, 0x016FFF],
[0x0187F8, 0x0187FF],
[0x018CD6, 0x018CFF],
[0x018D09, 0x01B16F],
[0x01B2FC, 0x01FFFF],
[0x02A6E0, 0x02A6FF],
[0x02B73A, 0x02B73F],
[0x02B81E, 0x02B81F],
[0x02CEA2, 0x02CEAF],
[0x02EBE1, 0x02F7FF],
[0x02FA1E, 0x02FFFF],
[0x03134B, 0x03134F],
[0x0323B0, 0x10FFFF]
]
});
testPropertyEscapes(
/^\P{Ideographic}+$/u,
nonMatchSymbols,
"\\P{Ideographic}"
);
testPropertyEscapes(
/^\P{Ideo}+$/u,
nonMatchSymbols,
"\\P{Ideo}"
);
reportCompare(0, 0);
|