js/src/jit-test/tests/ion/bug723271.js

Wed, 31 Dec 2014 06:09:35 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 06:09:35 +0100
changeset 0
6474c204b198
permissions
-rw-r--r--

Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.

     1 function addConstraint(blaat) {
     2     return blaat.v1
     3 }
     5 function ScaleConstraint() {
     6     this.direction = null
     7     this.v1 = {};
     8     addConstraint(this);
     9 }
    11 function EqualityConstraint() {
    12     this.v1 = {};
    13     addConstraint(this);
    14 }
    16 function deltaBlue() {
    17     new EqualityConstraint();
    18     new ScaleConstraint();
    19 }
    21 for (var n = 0; n<100; n++) {
    22     deltaBlue()
    23 }

mercurial