summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/ion/regexp-exec.js
blob: d9cec788efb62e1c143ea2ae1186da84cb699542 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// RegExp.exec -> RegExp.test optimization should use the builtin test method.
function f() {
    var res = 0;
    for (var i=0; i<100; i++) {
        if (/a/.exec("a"))
            res++;
    }
    assertEq(res, 100);
}
delete RegExp.prototype.test;
gc();
f();

RegExp.prototype.test = function() { assertEq(0, 1); }
gc();
f();

Object.defineProperty(RegExp.prototype, "test", {get: function() { assertEq(0, 1); }});
gc();
f();