summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Telugu.js
blob: 21a3857734ce305ce96a2900b65b0d7b0699f15f (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
// 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_Extensions=Telugu`
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: [
    0x000C5D,
    0x001CDA,
    0x001CF2
  ],
  ranges: [
    [0x000951, 0x000952],
    [0x000964, 0x000965],
    [0x000C00, 0x000C0C],
    [0x000C0E, 0x000C10],
    [0x000C12, 0x000C28],
    [0x000C2A, 0x000C39],
    [0x000C3C, 0x000C44],
    [0x000C46, 0x000C48],
    [0x000C4A, 0x000C4D],
    [0x000C55, 0x000C56],
    [0x000C58, 0x000C5A],
    [0x000C60, 0x000C63],
    [0x000C66, 0x000C6F],
    [0x000C77, 0x000C7F]
  ]
});
testPropertyEscapes(
  /^\p{Script_Extensions=Telugu}+$/u,
  matchSymbols,
  "\\p{Script_Extensions=Telugu}"
);
testPropertyEscapes(
  /^\p{Script_Extensions=Telu}+$/u,
  matchSymbols,
  "\\p{Script_Extensions=Telu}"
);
testPropertyEscapes(
  /^\p{scx=Telugu}+$/u,
  matchSymbols,
  "\\p{scx=Telugu}"
);
testPropertyEscapes(
  /^\p{scx=Telu}+$/u,
  matchSymbols,
  "\\p{scx=Telu}"
);

const nonMatchSymbols = buildString({
  loneCodePoints: [
    0x000C0D,
    0x000C11,
    0x000C29,
    0x000C45,
    0x000C49,
    0x000C57
  ],
  ranges: [
    [0x00DC00, 0x00DFFF],
    [0x000000, 0x000950],
    [0x000953, 0x000963],
    [0x000966, 0x000BFF],
    [0x000C3A, 0x000C3B],
    [0x000C4E, 0x000C54],
    [0x000C5B, 0x000C5C],
    [0x000C5E, 0x000C5F],
    [0x000C64, 0x000C65],
    [0x000C70, 0x000C76],
    [0x000C80, 0x001CD9],
    [0x001CDB, 0x001CF1],
    [0x001CF3, 0x00DBFF],
    [0x00E000, 0x10FFFF]
  ]
});
testPropertyEscapes(
  /^\P{Script_Extensions=Telugu}+$/u,
  nonMatchSymbols,
  "\\P{Script_Extensions=Telugu}"
);
testPropertyEscapes(
  /^\P{Script_Extensions=Telu}+$/u,
  nonMatchSymbols,
  "\\P{Script_Extensions=Telu}"
);
testPropertyEscapes(
  /^\P{scx=Telugu}+$/u,
  nonMatchSymbols,
  "\\P{scx=Telugu}"
);
testPropertyEscapes(
  /^\P{scx=Telu}+$/u,
  nonMatchSymbols,
  "\\P{scx=Telu}"
);

reportCompare(0, 0);