summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/basic/regexp-removed-dot-star.js
blob: 521849488360d546f56d46e0bb11a7e44a7a983b (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
// Test that removal of leading or trailing .* from RegExp test() calls
// does not affect lastMatch or other RegExpStatics info.

function first(input) {
    var re = /.*b(cd)/;
    for (var i = 0; i < 10; i++)
	re.test(input);
}

first("1234\nabcdefg\n1234");
assertEq(RegExp.lastMatch, "abcd");
assertEq(RegExp.$1, "cd");
assertEq(RegExp.input, "1234\nabcdefg\n1234");
assertEq(RegExp.leftContext, "1234\n");
assertEq(RegExp.rightContext, "efg\n1234");
assertEq(RegExp.lastParen, "cd");


// Test that removal of leading or trailing .* from RegExp test() calls
// does not affect lastMatch or other RegExpStatics info.

function second(input) {
    var re = /bcd.*/;
    for (var i = 0; i < 10; i++)
	re.test(input);
}

second("1234\nabcdefg\n1234");
assertEq(RegExp.lastMatch, "bcdefg");
assertEq(RegExp.$1, "");
assertEq(RegExp.input, "1234\nabcdefg\n1234");
assertEq(RegExp.leftContext, "1234\na");
assertEq(RegExp.rightContext, "\n1234");
assertEq(RegExp.lastParen, "");

function third(input) {
    var re = /.*bcd.*/;
    for (var i = 0; i < 10; i++)
	re.test(input);
}

third("1234\nabcdefg\n1234");
assertEq(RegExp.lastMatch, "abcdefg");
assertEq(RegExp.$1, "");
assertEq(RegExp.input, "1234\nabcdefg\n1234");
assertEq(RegExp.leftContext, "1234\n");
assertEq(RegExp.rightContext, "\n1234");
assertEq(RegExp.lastParen, "");