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
|
setJitCompilerOption("ion.warmup.trigger", 4);
function testBasic() {
var f = function() {
var result = "abc".match("b");
assertEq(result.length, 1);
assertEq(result.index, 1);
assertEq(result[0], "b");
};
for (var i = 0; i < 40; i++) {
f();
}
}
testBasic();
function testMod(apply, unapply) {
var f = function(applied) {
var result = "abc".match("b");
assertEq(result.length, 1);
if (applied) {
assertEq(result[0], "mod");
} else {
assertEq(result.index, 1);
assertEq(result[0], "b");
}
};
var applied = false;
for (var i = 0; i < 120; i++) {
f(applied);
if (i == 40) {
apply();
applied = true;
}
if (i == 80) {
unapply();
applied = false;
}
}
}
testMod(() => {
String.prototype[Symbol.match] = () => ["mod"];
}, () => {
delete String.prototype[Symbol.match];
});
testMod(() => {
Object.prototype[Symbol.match] = () => ["mod"];
}, () => {
delete Object.prototype[Symbol.match];
});
testMod(() => {
Object.setPrototypeOf(String.prototype, {
[Symbol.match]: () => ["mod"]
});
}, () => {
Object.setPrototypeOf(String.prototype, Object.prototype);
});
var orig_exec = RegExp.prototype.exec;
testMod(() => {
RegExp.prototype.exec = () => ["mod"];
}, () => {
RegExp.prototype.exec = orig_exec;
});
var orig_match = RegExp.prototype[Symbol.match];
testMod(() => {
RegExp.prototype[Symbol.match] = () => ["mod"];
}, () => {
RegExp.prototype[Symbol.match] = orig_match;
});
|