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
|
if (typeof parseRegExp === 'undefined')
quit();
load(libdir + "regexp_parse.js");
test_mix("a", all_flags,
Atom("a"));
test_mix("abc\u3042\u3044\u3046", all_flags,
Atom("abc\u3042\u3044\u3046"));
// raw brace
test("{", no_unicode_flags,
Atom("{"));
test("{a", no_unicode_flags,
Atom("{a"));
test("a{b", no_unicode_flags,
Atom("a{b"));
test("}", no_unicode_flags,
Atom("}"));
test("}a", no_unicode_flags,
Atom("}a"));
test("a}b", no_unicode_flags,
Atom("a}b"));
// raw surrogate pair
test("X\uD83D\uDC38Y", unicode_flags,
Text([
Atom("X"),
Atom("\uD83D\uDC38"),
Atom("Y")
]));
test("X\uD83DY", unicode_flags,
Alternative([
Atom("X"),
Alternative([
Atom("\uD83D"),
NegativeLookahead(CharacterClass([["\uDC00", "\uDFFF"]]))
]),
Atom("Y")
]));
test("X\uDC38Y", unicode_flags,
Alternative([
Atom("X"),
Alternative([
Assertion("NOT_AFTER_LEAD_SURROGATE"),
Atom("\uDC38"),
]),
Atom("Y")
]));
|