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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
|
// Side-effects when calling ToLength(regExp.lastIndex) in
// RegExp.prototype[@@replace] for non-global RegExp can recompile the RegExp.
for (var flag of ["", "y"]) {
var regExp = new RegExp("a", flag);
regExp.lastIndex = {
valueOf() {
regExp.compile("b");
return 0;
}
};
var result = regExp[Symbol.replace]("b", "pass");
assertEq(result, "pass");
}
// Recompilation modifies flag:
// Case 1: Adds global flag, validate by checking lastIndex.
var regExp = new RegExp("a", "");
regExp.lastIndex = {
valueOf() {
// |regExp| is now in global mode, RegExpBuiltinExec should update the
// lastIndex property to reflect last match.
regExp.compile("a", "g");
return 0;
}
};
regExp[Symbol.replace]("a", "");
assertEq(regExp.lastIndex, 1);
// Case 2: Removes sticky flag with match, validate by checking lastIndex.
var regExp = new RegExp("a", "y");
regExp.lastIndex = {
valueOf() {
// |regExp| is no longer sticky, RegExpBuiltinExec shouldn't modify the
// lastIndex property.
regExp.compile("a", "");
regExp.lastIndex = 9000;
return 0;
}
};
regExp[Symbol.replace]("a", "");
assertEq(regExp.lastIndex, 9000);
// Case 3.a: Removes sticky flag without match, validate by checking lastIndex.
var regExp = new RegExp("a", "y");
regExp.lastIndex = {
valueOf() {
// |regExp| is no longer sticky, RegExpBuiltinExec shouldn't modify the
// lastIndex property.
regExp.compile("b", "");
regExp.lastIndex = 9001;
return 0;
}
};
regExp[Symbol.replace]("a", "");
assertEq(regExp.lastIndex, 9001);
// Case 3.b: Removes sticky flag without match, validate by checking lastIndex.
var regExp = new RegExp("a", "y");
regExp.lastIndex = {
valueOf() {
// |regExp| is no longer sticky, RegExpBuiltinExec shouldn't modify the
// lastIndex property.
regExp.compile("b", "");
regExp.lastIndex = 9002;
return 10000;
}
};
regExp[Symbol.replace]("a", "");
assertEq(regExp.lastIndex, 9002);
if (typeof reportCompare === "function")
reportCompare(true, true);
|