js/src/jit-test/tests/ion/bug741241.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.

     2 function f1() {};
     3 new f1();
     5 function f2() {
     6     try{} catch (x) {}
     7 };
     8 new f2();
    10 function f3() {
    11     for (var j = 0; j < 100; j++) {}
    12 };
    13 new f3();
    15 function notEager1(){
    16     function g1() {};
    17     new g1();
    18 }
    19 for (var i = 0; i < 100; i++)
    20     notEager1();
    22 function notEager2(){
    23     function g2() {};
    24     new g2();
    25 }
    26 for (var i = 0; i < 100; i++)
    27     notEager2();
    29 function notEager3(){
    30     function g3() {
    31         for (var j = 0; j < 100; j++) {}
    32     };
    33     new g3();
    34 }
    35 for (var i = 0; i < 100; i++)
    36     notEager3();

mercurial