summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/RegExp/property-escapes/generated/Script_-_Georgian.js
blob: d7acea54afdbd03b27311366517af04d93321578 (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
// 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=Georgian`
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: [
    0x0010C7,
    0x0010CD,
    0x002D27,
    0x002D2D
  ],
  ranges: [
    [0x0010A0, 0x0010C5],
    [0x0010D0, 0x0010FA],
    [0x0010FC, 0x0010FF],
    [0x001C90, 0x001CBA],
    [0x001CBD, 0x001CBF],
    [0x002D00, 0x002D25]
  ]
});
testPropertyEscapes(
  /^\p{Script=Georgian}+$/u,
  matchSymbols,
  "\\p{Script=Georgian}"
);
testPropertyEscapes(
  /^\p{Script=Geor}+$/u,
  matchSymbols,
  "\\p{Script=Geor}"
);
testPropertyEscapes(
  /^\p{sc=Georgian}+$/u,
  matchSymbols,
  "\\p{sc=Georgian}"
);
testPropertyEscapes(
  /^\p{sc=Geor}+$/u,
  matchSymbols,
  "\\p{sc=Geor}"
);

const nonMatchSymbols = buildString({
  loneCodePoints: [
    0x0010C6,
    0x0010FB,
    0x002D26
  ],
  ranges: [
    [0x00DC00, 0x00DFFF],
    [0x000000, 0x00109F],
    [0x0010C8, 0x0010CC],
    [0x0010CE, 0x0010CF],
    [0x001100, 0x001C8F],
    [0x001CBB, 0x001CBC],
    [0x001CC0, 0x002CFF],
    [0x002D28, 0x002D2C],
    [0x002D2E, 0x00DBFF],
    [0x00E000, 0x10FFFF]
  ]
});
testPropertyEscapes(
  /^\P{Script=Georgian}+$/u,
  nonMatchSymbols,
  "\\P{Script=Georgian}"
);
testPropertyEscapes(
  /^\P{Script=Geor}+$/u,
  nonMatchSymbols,
  "\\P{Script=Geor}"
);
testPropertyEscapes(
  /^\P{sc=Georgian}+$/u,
  nonMatchSymbols,
  "\\P{sc=Georgian}"
);
testPropertyEscapes(
  /^\P{sc=Geor}+$/u,
  nonMatchSymbols,
  "\\P{sc=Geor}"
);

reportCompare(0, 0);