js/src/jit-test/tests/basic/bug679977.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 var Test = function (foo) {
     2     var a = [];
     4     this.fillArray = function() {
     5         a = [];
     6         for (var i = 0; i < 10; i++)
     7             a.push(0);
     8         assertEq(a.length, 10);
     9     }
    11     foo.go(this);
    12 };
    14 // Import assertEq now to prevent global object shape from changing.
    15 assertEq(true, true);
    17 (new Test({ go: function(p) {
    18     p.fill = function() {
    19         p.fillArray();
    20     }
    21 }})).fill();
    23 new Test({ go: function(p) {
    24     for (var k = 0; k < 10; k++)
    25         p.fillArray();
    26 }});

mercurial