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
|
if (typeof parseRegExp === 'undefined')
quit();
load(libdir + "regexp_parse.js");
// Leading and trailing .* are ignored if match_only==true.
test_match_only(".*abc", all_flags,
Atom("abc"));
test_match_only("abc.*", all_flags,
Atom("abc"));
test_match_only(".*?abc", no_unicode_flags,
Alternative([
Quantifier(0, kInfinity, "NON_GREEDY",
CharacterClass([
["\u0000", "\u0009"],
["\u000b", "\u000c"],
["\u000e", "\u2027"],
["\u202A", "\uFFFF"]
])),
Atom("abc")
]));
test_match_only(".*?abc", unicode_flags,
Alternative([
Quantifier(0, kInfinity, "NON_GREEDY",
AllSurrogateAndCharacterClass([
["\u0000", "\u0009"],
["\u000b", "\u000c"],
["\u000e", "\u2027"],
["\u202A", "\uD7FF"],
["\uE000", "\uFFFF"]
])),
Atom("abc")
]));
|