summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/regexp_parse/Everything.js
blob: c1539a58bb9e78bb6ad0c009a0a126af3d342f9a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
if (typeof parseRegExp === 'undefined')
    quit();

load(libdir + "regexp_parse.js");

test_mix(".", no_unicode_flags,
         CharacterClass([
             ["\u0000", "\u0009"],
             ["\u000b", "\u000c"],
             ["\u000e", "\u2027"],
             ["\u202A", "\uFFFF"]
         ]));

test_mix(".", unicode_flags,
         AllSurrogateAndCharacterClass([
             ["\u0000", "\u0009"],
             ["\u000b", "\u000c"],
             ["\u000e", "\u2027"],
             ["\u202A", "\uD7FF"],
             ["\uE000", "\uFFFF"]
         ]));