summaryrefslogtreecommitdiffstats
path: root/js/src/tests/ecma_6/RegExp/class-null.js
blob: c95e5a4d790cfc3c0af03e77b912959b81de7112 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
var BUGNUMBER = 1279467;
var summary = "Null in character class in RegExp with unicode flag.";

print(BUGNUMBER + ": " + summary);

var m = /([\0]+)/u.exec("\u0000");
assertEq(m.length, 2);
assertEq(m[0], '\u0000');
assertEq(m[1], '\u0000');

var m = /([\0]+)/u.exec("0");
assertEq(m, null);

if (typeof reportCompare === "function")
    reportCompare(true, true);