js/src/jit-test/tests/ion/regexp-exec.js

Thu, 15 Jan 2015 15:55:04 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Thu, 15 Jan 2015 15:55:04 +0100
branch
TOR_BUG_9701
changeset 9
a63d609f5ebe
permissions
-rw-r--r--

Back out 97036ab72558 which inappropriately compared turds to third parties.

     1 // RegExp.exec -> RegExp.test optimization should use the builtin test method.
     2 function f() {
     3     var res = 0;
     4     for (var i=0; i<100; i++) {
     5         if (/a/.exec("a"))
     6             res++;
     7     }
     8     assertEq(res, 100);
     9 }
    10 delete RegExp.prototype.test;
    11 gc();
    12 f();
    14 RegExp.prototype.test = function() { assertEq(0, 1); }
    15 gc();
    16 f();
    18 Object.defineProperty(RegExp.prototype, "test", {get: function() { assertEq(0, 1); }});
    19 gc();
    20 f();

mercurial