summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/RegExp/property-escapes/generated/Script_-_Cyrillic.js
blob: 34a7845c4dc73f1c16b4b440dc811fa87395347b (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
// 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 `Script=Cyrillic`
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: [
    0x001D2B,
    0x001D78,
    0x01E08F
  ],
  ranges: [
    [0x000400, 0x000484],
    [0x000487, 0x00052F],
    [0x001C80, 0x001C88],
    [0x002DE0, 0x002DFF],
    [0x00A640, 0x00A69F],
    [0x00FE2E, 0x00FE2F],
    [0x01E030, 0x01E06D]
  ]
});
testPropertyEscapes(
  /^\p{Script=Cyrillic}+$/u,
  matchSymbols,
  "\\p{Script=Cyrillic}"
);
testPropertyEscapes(
  /^\p{Script=Cyrl}+$/u,
  matchSymbols,
  "\\p{Script=Cyrl}"
);
testPropertyEscapes(
  /^\p{sc=Cyrillic}+$/u,
  matchSymbols,
  "\\p{sc=Cyrillic}"
);
testPropertyEscapes(
  /^\p{sc=Cyrl}+$/u,
  matchSymbols,
  "\\p{sc=Cyrl}"
);

const nonMatchSymbols = buildString({
  loneCodePoints: [],
  ranges: [
    [0x00DC00, 0x00DFFF],
    [0x000000, 0x0003FF],
    [0x000485, 0x000486],
    [0x000530, 0x001C7F],
    [0x001C89, 0x001D2A],
    [0x001D2C, 0x001D77],
    [0x001D79, 0x002DDF],
    [0x002E00, 0x00A63F],
    [0x00A6A0, 0x00DBFF],
    [0x00E000, 0x00FE2D],
    [0x00FE30, 0x01E02F],
    [0x01E06E, 0x01E08E],
    [0x01E090, 0x10FFFF]
  ]
});
testPropertyEscapes(
  /^\P{Script=Cyrillic}+$/u,
  nonMatchSymbols,
  "\\P{Script=Cyrillic}"
);
testPropertyEscapes(
  /^\P{Script=Cyrl}+$/u,
  nonMatchSymbols,
  "\\P{Script=Cyrl}"
);
testPropertyEscapes(
  /^\P{sc=Cyrillic}+$/u,
  nonMatchSymbols,
  "\\P{sc=Cyrillic}"
);
testPropertyEscapes(
  /^\P{sc=Cyrl}+$/u,
  nonMatchSymbols,
  "\\P{sc=Cyrl}"
);

reportCompare(0, 0);